画面上に左右の予約スペース (LinearLayout) を作成して、UI が必要に応じてさまざまなサイズの画面で機能することを保証し、途中で TableLayout を作成してビューとコントロールを適用します。 TableRow - Android:layout_width がゼロになりました。TableLayout の幅は実際にはゼロではありませんが、Android:layout_weight="4" を機能させるには、TableLayout に Android:layout_width="0dp" を配置する必要がありました。
TableRow に実際の parnt(TableLayout) 幅を取るように指示するにはどうすればよいですか
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
android:id="@+id/widget32"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
xmlns:android="http://schemas.android.com/apk/res/android">
<LinearLayout
android:id="@+id/widget33"
android:layout_width="0dp"
android:layout_height="fill_parent"
android:layout_weight="1">
</LinearLayout>
<TableLayout
android:id="@+id/widget34"
android:layout_width="0dp"
android:layout_height="fill_parent"
android:orientation="vertical"
android:layout_weight="4">
<TableRow
android:id="@+id/widget64"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<TextView
android:id="@+id/widget72"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="I m here" />
</TableRow>
</TableLayout>
<LinearLayout
android:id="@+id/widget35"
android:layout_width="0dp"
android:layout_height="fill_parent"
android:layout_weight="1">
</LinearLayout>