gpt4 book ai didi

android - TableLayout 中的行间距

转载 作者:行者123 更新时间:2023-11-30 03:25:21 25 4
gpt4 key购买 nike

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

现有布局...

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

追求布局...

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

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

最佳答案

如果你想让一个 View 在另一个 View 之下,布局代码应该没问题!您是否尝试过用 View 填充它?一行中的所有 View 将显示在一行中,因此如果您想要 3 行,则还需要 3 行(您已正确完成)。

关于android - TableLayout 中的行间距,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18316983/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com