1
AndroidのTableLayoutを作成しようとしていますが、ワードラップを使用できません。 私が望むのは、3列目のデータが複数の行に収まることです。 しかし、私が得る最後の列のデータが画面の消えてしまうということですTableLayoutのAndroidワードラップ
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<TableLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<TableRow android:id="@+id/tableRow1" >
<TextView android:text="1" />
<TextView android:text="aaa" />
<TextView android:text="AAAAA AAAAA AAAAA AAAA AAAAA AAAAA AAAA" />
</TableRow>
<TableRow android:id="@+id/tableRow2" >
<TextView android:text="2" />
<TextView android:text="bbb bbbb bb" />
<TextView android:text="BBBB BBBB BBB BBB BBB BBB BBBB BBBBB BB" />
</TableRow>
</TableLayout>
</ScrollView>