1

在我现有的代码中,我有三个在同一行上水平对齐的按钮,但是,我希望这些按钮出现在不同的行上。

现有布局...

[-------] [-------] [-------]

寻求布局...

[-------]
[-------]
[-------]

    <TableLayout
    android:id="@+id/buttonTableLayout"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_weight="1"
    android:stretchColumns="0,1,2" >

    <TableRow
        android:id="@+id/tableRow0"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal" >
    </TableRow>

    <TableRow
        android:id="@+id/tableRow1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal" >
    </TableRow>

    <TableRow
        android:id="@+id/tableRow2"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal" >
    </TableRow>
</TableLayout>
4

1 回答 1

1

如果你想让一个视图低于另一个视图,布局代码应该没问题!你试过用视图填充它吗?一行中的所有视图都将显示在一行中,因此如果您想要 3 行单独的行,则还需要 3 行(您已正确完成)。

于 2013-08-19T15:58:28.553 回答