作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想按以下格式进行按钮布局。我试过相对布局,我试过线性布局,我试过表格布局,但都让我失望了..
有人可以指导我吗?
代码:
<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>
给出这个结果:
关于android - 如何设置3个按钮的布局为横排,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21352922/
我是一名优秀的程序员,十分优秀!