views:

802

answers:

1

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.

+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
Thanks, it really saved my time!
Laimoncijus