我想在屏幕上创建左右保留空间(LinearLayout),这给了我felexiblitiy以确保我的UI在我想要的不同大小的屏幕上工作, 并在中间创建一个TableLayout来应用视图和控制,一切都很好 除了TableRow - android:layout_width变为零,TableLayout宽度不是真的为零但是我不得不把android:layout_width =“0dp”用于TableLayout来强制android:layout_weight =“4”工作
如何告诉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>