帮我写在AS页面布局文件中让垂直排列的Butten与左侧边框增加合适间隔的Java代码
时间: 2024-05-14 20:12:38 浏览: 70
用RadioButten或CheckBox实现div的显示与隐藏
好的,以下是在AS页面布局文件中让垂直排列的Button与左侧边框增加合适间隔的Java代码:
```
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="10dp"
android:text="Button 1"/>
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="10dp"
android:text="Button 2"/>
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="10dp"
android:text="Button 3"/>
</LinearLayout>
```
希望能帮到您!
阅读全文