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.
I have a custom Dialog that contains only a TextView to display some text
Share
On a lark, I tried adding
\nto my resource, and happily discovered that it added a newline! I hope this saves someone else the trouble.