在我现有的代码中,我有三个按钮,它们在同一行上水平对齐,但是,我希望这些按钮出现在单独的行上。
现有版式...
[-------] [-------] [-------]
寻求布局...
[-------]
[-------]
[-------]
<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>
最佳答案
如果要在另一个视图下查看一个视图,则布局代码应该可以!您是否尝试过添加视图?一行中的所有视图都将显示在一行中,因此,如果要有3条单独的行,则还需要3行(正确完成)。
关于android - TableLayout中行之间的空间,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/18316983/