Sayed
Sayed

Reputation: 255

Android replace ... with …

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?

Upvotes: 1

Views: 4628

Answers (3)

Lajos Arpad
Lajos Arpad

Reputation: 76817

… means ...

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

Upvotes: 2

A.R.
A.R.

Reputation: 2641

Replace your string

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

With this string

<string name="scanning">Scanning&#8230;</string>

Upvotes: 0

Sir Codesalot
Sir Codesalot

Reputation: 7293

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

Upvotes: 2

Related Questions