I have a layout which is a table layout with some textviews in the tablerows.
I want to display multiple lines of data in the textviews. At the moment I am just setting the textview to a String and the string contains new line characters. Such as
displayString = "Joe Bloggs" + "n" + "Henry Smith;
etc etc
The problem is that when I do this the second line is indented slightly compared to the first. It's only slight but it is quite annoying. If you look in the screenshot I have provided you will see that the second name in the list of names is always slightly indented.
Is there a better way I should be doing this? One thing I could do is have them as table rows which are created dynamically but I just thought I'd see if someone has a simple solution to the textview problem first.

