<LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="horizontal">
时间: 2024-02-25 08:59:07 浏览: 110
Android LinearLayout
这段代码是一个 `LinearLayout` 的布局文件,设置了它的宽度为 `match_parent`,即与父布局宽度相同,高度为 `wrap_content`,即高度根据内容自适应。同时,它的方向为 `horizontal`,即子视图排列方向为水平方向。
在该布局中可以添加其他的子视图,如以下代码:
```
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/image" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="文本" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="按钮" />
</LinearLayout>
```
在上面的代码中,我们将 `ImageView`、`TextView` 和 `Button` 添加到了 `LinearLayout` 中,并设置它们的布局属性,使它们在水平方向上排列。这样,它们就会水平排列在一行上。
阅读全文