I have a text to display as TextView in Android, the text consists of various lines like this:
Text1
Text2
Text3
But the problem is that when displayed it appears like this ignoring the line breaks:
Text1 Text2 Text3
I know what you are thinking, just add \r\n
at the end of every line, but this isn't an option at the moment for me.
Is there a way to have Android respecting the line breaks in the text?
Thanks! Jose