1

我想在屏幕上创建左右保留空间(LinearLayout),这让我可以灵活地确保我的 UI 在不同大小的屏幕上工作,并在中间创建一个 TableLayout 来应用视图和控制,一切都很好,除了TableRow - android:layout_width 变为零,TableLayout 宽度不是真的为零但是我必须为 TableLayout 放置 android:layout_width="0dp" 以强制 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>
4

0 回答 0