线性布局嵌套的安卓代码
时间: 2024-03-17 14:42:14 浏览: 53
以下是一个简单的线性布局嵌套的安卓代码示例:
```
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Outer LinearLayout"/>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Inner LinearLayout"/>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button 1"/>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button 2"/>
</LinearLayout>
</LinearLayout>
```
该示例代码中有两个线性布局,一个外部的垂直方向布局和一个内部的水平方向布局。内部布局包含两个按钮和一个文本视图。在实际开发中,您可以根据需要添加和调整布局元素的大小和位置。
阅读全文