gpt4 book ai didi

android - 按钮填充 TableLayout 中的整行?

转载 作者:太空宇宙 更新时间:2023-11-03 12:54:07 25 4
gpt4 key购买 nike

我有一个垂直方向的 LinearLayout,在第一行我添加了一个按钮来填充父元素。

我想用 TableLayout 实现同样的事情。
到目前为止我尝试过的是:

enter image description here

<TableLayout 
android:layout_width="fill_parent"
android:layout_height="fill_parent"
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/tableLayout">
<TableRow
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/firstRow">

<Button
android:id="@+id/button1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Button" />
</TableRow >
</TableLayout>

TableRow 填充父级,但行内的按钮不会填充整行。

如何让按钮像这样填充父级?


编辑:

以及如何让它像这样垂直填充父级:

enter image description here

最佳答案

使用 android:layout_weight="1"

   <?xml version="1.0" encoding="utf-8"?>
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >

<TableRow>

<Button
android:layout_width="0dip"
android:layout_height="match_parent"
android:layout_weight="1"
android:text="Why is doing layouts on Android" />
</TableRow>

<TableRow>

<Button
android:layout_width="0dip"
android:layout_height="match_parent"
android:layout_weight="1"
android:text="damn" />
</TableRow>

</TableLayout>

看起来像:

enter image description here

关于android - 按钮填充 TableLayout 中的整行?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24107467/

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