may be someone knows this problem (or why it became one). I have a table of two columns like
Using xml Syntax Highlighting
- <TableLayout>
- <TableRow>
- <TextView></TextView>
- <TextView></TextView>
- </TableRow>
- </TableLayout>
Parsed in 0.001 seconds, using GeSHi 1.0.8.4
If I have long Strings set in the TextView (I use usually the second one) only as much of the String is shown as a single line can show. There is no auto line break to show the whole String as it does in something like
Using xml Syntax Highlighting
- <LinearLayout>
- <TextView></TextView>
- </LinearLayout>
Parsed in 0.001 seconds, using GeSHi 1.0.8.4
Is there a way to let the TextView auto line break the text? I'm not keen to subclass TextView and measure text especially since I have seen it can handle it alone.

