7

我有这个可以正常工作的布局,一个带有文本视图的相对布局和两个均匀分布在其下方的按钮。

<RelativeLayout android:id="@+id/entrypopup"
            android:layout_width="fill_parent"
    android:layout_height="wrap_content" android:padding="5px"
    android:visibility="gone"
    android:layout_below="@+id/ad"
    android:background="#80000000">
    <TextView android:id="@+id/title" android:layout_width="fill_parent"
        android:layout_height="wrap_content" android:text="Entry Popup..."
        android:textColor="#ffffffff"
        android:textSize="20sp" />
    <TableLayout android:id="@+id/TableLayout01"
        android:layout_width="fill_parent" 
        android:layout_height="wrap_content"
        android:layout_below="@id/title">
        <TableRow android:layout_weight="1">
            <Button android:id="@+id/buttonVisit" android:text="View"
                android:layout_height="fill_parent"
                android:layout_width="0dip"
                android:layout_weight="1"/>
            <Button android:id="@+id/buttonCancel" android:text="Cancel"
                android:layout_width="0dip"
                android:layout_weight="1" 
                android:layout_height="fill_parent"/>
        </TableRow>
    </TableLayout>
</RelativeLayout>

但是运行 layoutopt 它说“这个 TableRow 布局或其 TableLayout 父级可能没用”。

有没有办法在没有表格的情况下进行这种布局?

4

1 回答 1

11

转储TableLayoutand TableRow,然后在它们的位置使用水平线LinearLayout。“魔力”在于你已经拥有的0dip宽度和体重。1

于 2010-04-08T23:53:33.163 回答