I have a custom Dialog
that contains only a TextView
to display some text in my application. The documentation lists that only the b
, i
, u
, tt
, big
, small
, sup
, sub
, and strike
tags are supported. I really need to add some newlines for readability. Do I need to change to a more complicated layout, or is there some way to encode newlines in the resource? I tried adding br
tags, but that did not help.
views:
802answers:
1
+2
A:
On a lark, I tried adding \n
to my resource, and happily discovered that it added a newline! I hope this saves someone else the trouble.
shmuelp
2010-03-24 01:33:54
Thanks, it really saved my time!
Laimoncijus
2010-06-21 22:17:57