Since AVD tools 16 I\'m getting this warning:
Replace \"...\" with ellipsis character (..., …) ?
in my strings.xml
at thi
If you're using Eclipse then you can always do the following:
This should replace your three dots with the proper Unicode character for ellipsis.
Just a note: The latest version of ADT (21.1) sometimes won't do the replace operation properly, but earlier versions had no problem doing this.
This is the character: …
…
is the unicode for "…" so just replace it. It's better to have it as one char/symbol than three dots.
The quick fix shortcut in Android Studio is Alt
+ Enter
by default.
Best not to ignore it as suggested by some, it seems to me. Use Android Studio to correct it (rather than actually typing in the character code), and the tool will replace the three dots with the three-dot unicode character. Won't be confusing to translators etc.
To make thing short just put …
in place ...
Link to XML character Entities List
The solution to your problem is:
Go to Window -> Preferences -> Android -> Lint Error Checking
And search for "ellipsis". Change the warning level to "Info" or "Ignore".