TableLayout中行之间的空格

时间:2013-08-19 14:59:04

标签: android tablelayout

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

现有布局......

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

追求布局......

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

    <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>

1 个答案:

答案 0 :(得分:1)

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