Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android Replace "..." with ellipsis character

Since AVD tools 16 I'm getting this warning:

Replace "..." with ellipsis character (..., …) ? 

in my strings.xml

at this line

 <string name="searching">Searching...</string> 

How do I replace ...? Is it just literally &#8230;?

Could someone explain this encoding?

like image 766
Blundell Avatar asked Dec 16 '11 15:12

Blundell


1 Answers

&#8230; is the unicode for "" so just replace it. It's better to have it as one char/symbol than three dots.

like image 116
WarrenFaith Avatar answered Nov 15 '22 19:11

WarrenFaith