テーブルレイアウトに 2 つのテキストビューがあり、両方のテキストビューを中央に配置したいと考えています。横方向には機能しますが、縦方向には機能しません。
どうしたの?
<TableRow android:id="@+id/TableRow1">
<TextView
android:id="@+id/Feld1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:typeface="sans"
android:layout_weight="1"
android:gravity="center_horizontal|center_vertical"
android:textSize="40sp" />
</TableRow>
<TableRow android:id="@+id/TableRow2" >
<TextView
android:id="@+id/Feld2"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1"
android:typeface="serif"
android:gravity="center_horizontal|center_vertical"
android:textSize="50sp" />
</TableRow>