Android and   in TextView

Viewed 51591

is it possible to add   in TextView? Has anyone achieved similar functionality?

I want to have non-breakable space in TextView.

8 Answers

Strange, but in my case non of these two worked:

  •  
  • \u00A0 The TextView was showing them as text.

So I just inserted non-breaking space as it is: " "

Related