安卓实现两个按钮并排
时间: 2023-11-26 13:06:41 浏览: 175
安卓(android)怎么实现下拉刷新
可以使用 `LinearLayout` 来实现两个按钮并排显示,如下所示:
```xml
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<Button
android:id="@+id/button1"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="Button 1" />
<Button
android:id="@+id/button2"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="Button 2" />
</LinearLayout>
```
其中,`android:orientation="horizontal"` 表示水平方向排列,`android:layout_weight="1"` 表示两个按钮平分父布局的宽度。
阅读全文