У меня была такая же проблема с таблицей из двух столбцов.Мой текст во втором столбце был отрезан от экрана.Исправлено с помощью android:shrinkColumns="1"
в моем TableLayout
.
Вот мой код, text3 был слишком большим и обрезался на экране, пока я не добавил атрибут shrinkColumns
в свой TableLayout
.
<TableLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:shrinkColumns="1" >
<TableRow
android:layout_width="wrap_content"
android:layout_height="wrap_content"
>
<TextView
android:id="@+id/text1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginRight="10dp" />
<TextView
android:id="@+id/text2"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</TableRow>
<TableRow
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
<TextView
android:id="@+id/text3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_column="1" />
</TableRow>
</TableLayout>