Can anyone tell me what\'s going wrong with the text? Text longer than one line doesn\'t wrap to the next line but goes beyond the screen.
Following is the code:
In my case, with a TableRow > ScrollView > TextView nesting, I solved the problem by setting android:layout_width to fill_parent on TableRow, and to wrap_content on ScrollView and TextView.
TableRow > ScrollView > TextView
android:layout_width
fill_parent
TableRow
wrap_content
ScrollView
TextView