Sunday, April 8, 2012

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;



If someone could explain this encoding please?


Source: Tips4all

1 comment:

  1. &#8230; is the unicode for … so just replace it. Its better to have it as one char/symbol than three dots.

    ReplyDelete