Я показываю TableLayout со строками следующим образом:
<?xml version="1.0" encoding="utf-8"?>
<TableRow
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/one"
android:layout_marginLeft="10dip"
android:textColor="#B0171F" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/one"
android:id="@+id/two"
android:layout_marginLeft="10dip"
android:ellipsize="none"
android:singleLine="false"
android:scrollHorizontally="false"
android:maxLines="10"
android:textColor="@android:color/black" />
</RelativeLayout>
</TableRow>
Я нахожусь в этом со всем, что могу найти здесь, и могу думать, чтобы текст можно было обернуть во многих строках, но безрезультатно: текст всегда заставляют использовать одну строку, бегущую от экрана. Может показаться, что я работаю внутри TableRow здесь, и насколько я могу судить об этом, на этом сайте не рассматривался.
Итак, как заставить второй TextView переносить многие строки?