1

I want to use a string like this:

<string name="deleting">Deleting...</string>

I don't know what is the code which should i use instead of ...

Also, does that answer would be different if i choosed another language than english ?

JJ86
  • 5,055
  • 2
  • 35
  • 64
Marco Dinatsoli
  • 10,322
  • 37
  • 139
  • 253

3 Answers3

2

&#8230; is the unicode for so replace Deleting... by &#8230;.

<string name="deleting">Deleting&#8230;</string>

Credits to warren faith source @

Android Replace "..." with ellipsis character

You can use .... The lint will warn you about it (Replace "..." with ellipsis character (..., …) ). You can disable Lint warning. I would not disable lint warning because i feel its useful.

Go to Window -> Preferences -> Android -> Lint Error Checking And search for "ellipsis". Change the warning level to "Info" or "Ignore".

Community
  • 1
  • 1
Raghunandan
  • 132,755
  • 26
  • 225
  • 256
0

You Can Use ANY value between

<string name="deleting">Blank$***_ - ()!@#45 </string>

this tag .... Use and Enjoy Android Development..

best wish to you,

CrazyMind
  • 1,006
  • 1
  • 20
  • 22
0

i hope it's help just replace ... with &#x2026;

Mohamed Hussien
  • 1,084
  • 13
  • 14