gpt4 book ai didi

android - 如何设置3个按钮的布局为横排

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

我想按以下格式进行按钮布局。我试过相对布局,我试过线性布局,我试过表格布局,但都让我失望了..

有人可以指导我吗?

THIS IS WHAT IS WANT

This is what I get

代码:

 <TableRow
android:id="@+id/tableRow12"
android:layout_width="fill_parent"
android:layout_height="wrap_content" >

<Button
android:id="@+id/updateBTN"
style="@style/ButtonInside"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginRight="50dp"
android:paddingTop="100dp"
android:text="Update" />
<Button
android:id="@+id/deleteBTN"
style="@style/ButtonInside"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingTop="100dp"
android:text="Delete" />
<Button
android:id="@+id/cancelBTN"
style="@style/ButtonInside"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingTop="100dp"
android:text="Cancel" />

</TableRow>

最佳答案

这种布局

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:orientation="horizontal"
>
<Button
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="Button 1"
/>
<Button
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="Button 2"
/>
<Button
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="Button 3"
/>
</LinearLayout>
</RelativeLayout>

给出这个结果:

enter image description here

关于android - 如何设置3个按钮的布局为横排,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21352922/

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