wrap_content:是layout_width和layout_height的属性值之一,表示和自身内容一样的长度。
match_parent:是layout_width和layout_height的属性值之一,表示和父组件一样的长度。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"//垂直
xmlns:android="http://schemas.android.com/apk/res/android">
<Button
android:layout_width="wrap_content"//写的内容规定大小
android:layout_height="wrap_content"//写的内容规定大小
android:text="大小" />
<Button
android:text="大小大小"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
<Button
android:text="大小大小"
android:layout_width="match_parent" //父类大小
android:layout_height="wrap_content"/>
<Button
android:text="大小大小"
android:layout_width="match_parent"//父类大小
android:layout_height="match_parent"//父类大小
/>
</LinearLayout>
标签:layout,布局,height,content,width,wrap,Android,基础知识,android From: https://www.cnblogs.com/JIANGzihao0222/p/17157675.html