私は最終的に重み属性によって最後の投稿の問題を解決しましたが、このURL http://imgur.com/ApL5cに表示されていない複数行のテキストを最後のTextviewに与えると、1つの問題が発生します
コードにスクロール ビューを追加するにはどうすればよいですか?
<?xml version="1.0" encoding="utf-8"?>
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:stretchColumns="1"
android:weightSum="11"
android:layout_margin="5dp">
<TableRow>
<TextView
style="@style/StyleLabel"
android:text="@string/name_lbl"/>
<TextView
android:id="@+id/nameText"
android:layout_weight="2"
style="@style/StyleText"/>
</TableRow>
<TableRow>
<TextView
style="@style/StyleLabel"
android:text="@string/cap_lbl"/>
<TextView
android:id="@+id/capText"
android:layout_weight="2"
style="@style/StyleText"/>
</TableRow>
<TableRow>
<TextView
style="@style/StyleLabel"
android:text="@string/code_lbl"/>
<TextView
android:id="@+id/codeText"
android:layout_weight="1"
style="@style/StyleText"/>
</TableRow>
<TableRow>
<TextView
style="@style/StyleLabel"
android:text="@string/DoneDate_lbl"/>
<TextView
android:id="@+id/Location_lbl"
android:layout_weight="1"
style="@style/StyleText"/>
</TableRow>
<TableRow>
<TextView
style="@style/StyleLabel"
android:text="@string/Notes_lbl"/>
<TextView
android:id="@+id/Notes_lbl"
android:layout_weight="4"
style="@style/StyleText"
/>
</TableRow>
<TableRow>
<TextView
style="@style/StyleLabel"
android:text="@string/person_lbl"/>
<TextView
android:id="@+id/Person_lbl"
android:layout_weight="1"
style="@style/StyleText"/>
</TableRow>