安卓实现两个方形按钮并排,并且不占满一行
时间: 2024-03-23 22:43:06 浏览: 65
jquery实现的通栏正方形索引按钮的幻灯片特效源码.zip
可以使用 LinearLayout 来实现两个方形按钮并排显示,并设置 layout_weight 属性来控制按钮的宽度。
以下是一个示例 XML 布局代码:
```xml
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
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"/>
</LinearLayout>
```
在这个布局中,我们创建了一个水平方向的 LinearLayout,并在其中添加了两个 Button。每个按钮的 layout_weight 属性都设置为 1,这将使它们平均分配可用的宽度。同时,按钮的 layout_width 属性设置为 0dp,这将使其宽度由 layout_weight 属性控制。
这样,两个按钮就可以并排显示,且不会占满一行。
阅读全文