1

I'm getting this warning:
Replace "..." with ellipsis character (..., '&#8230';) ?
in my strings.xml at this line:

string name="scanning">Scanning... string>

If someone could help me please?

Sayed
  • 255
  • 1
  • 3
  • 14
  • 3
    possible duplicate of [Android Replace "..." with ellipsis character](http://stackoverflow.com/questions/8536375/android-replace-with-ellipsis-character) – Ziem Feb 08 '15 at 09:40

3 Answers3

2

It suggests you to replace the three '.' characters to a single '...' character.

Sir Codesalot
  • 7,045
  • 2
  • 50
  • 56
2

… means ...

Instead of Scanning... you need Scanning…in that string Resource.

Xenolion
  • 12,035
  • 7
  • 33
  • 48
Lajos Arpad
  • 64,414
  • 37
  • 100
  • 175
0

Replace your string

<string name="scanning">Scanning... </string>

With this string

<string name="scanning">Scanning&#8230;</string>
A.R.
  • 2,631
  • 1
  • 19
  • 22