match_parent 父类
时间: 2023-07-24 19:22:26 浏览: 190
php_primer
在 Android 中,match_parent 是一个布局参数,用于指定一个 View 或 ViewGroup 在其父容器中占据全部可用的空间。它的作用类似于 fill_parent,但是在 API Level 8(Android 2.2)之后,fill_parent 被废弃,建议使用 match_parent。match_parent 可以用于任何 ViewGroup 的子元素,例如 LinearLayout、RelativeLayout、FrameLayout 等。
在布局文件中,可以使用以下方式来指定一个 View 或 ViewGroup 的宽度或高度为 match_parent:
```xml
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<!-- 子元素 -->
</LinearLayout>
```
这个例子中,LinearLayout 的宽度被设置为 match_parent,意味着它会尽可能地占据父容器的宽度。而高度被设置为 wrap_content,意味着它会根据子元素的高度自适应。
阅读全文