--BEGIN ITLIFE365
Android XML布局中,设置两个Button按钮在同一行显示的常用方法
原理:
在Button外面使用线性布局,设置水平属性;
Button的宽设置是wrap;在Button里面分别添加 android:layout_weight=“1” 可以使两个button所占空间一样
XML示例代码:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:orientation="horizontal">
<Button
android:layout_width="100dp"
android:layout_height="wrap_content"
android:text="取消"
android:id="@+id/button_cancel"
android:background="#ff029bda"
android:textColor="#ffcff6fb"
android:layout_marginLeft="30dp"/>
<TextView
android:layout_width="100dp"
android:layout_height="100dp" />
<Button
android:layout_width="100dp"
android:layout_height="wrap_content"
android:text="确定"
android:id="@+id/button_sure"
android:layout_marginTop="30dp"
android:background="#ff029bda"
android:textColor="#ffcff6fb"
android:layout_gravity="end" />
</LinearLayout>
--END BY ITLIFE365
how-android-button-on-same-line