7

このレイアウトは正しく機能します。テキスト ビューとその下に 2 つのボタンが均等に配置された相対レイアウトです。

<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

とをダンプTableLayoutし、代わりTableRowに水平LinearLayoutを使用します。「魔法」はあなたがすでに持っているあなたの0dip幅と重さにあります。1

于 2010-04-08T23:53:33.163 に答える