在content_main.xml中可以这样写:
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" app:layout_behavior="@string/appbar_scrolling_view_behavior" tools:context="com.example.a1.myfirstp.MainActivity" tools:showIn="@layout/activity_main" android:orientation="vertical" > </LinearLayout>
android:layout_width="match_parent" 表示宽的属性为match_parent(匹配父控件),还可以设置为wrap_content(包含内容)
android:layout_height="match_parent" 高的属性
android:orientation="vertical" orientation表示排列方式,vertical表示垂直排列,也可以用horizontal水平排列
可以嵌套线性布局:
<LinearLayout>
<LinearLayout></LinearLayout>
</LinearLayout>
线性布局中的控件可以使用android:layout_weight属性,表示将父控件的剩余空间按比例分配;
如第一个控件的weight值为1,第二个为1;表示将父控件的剩余空间按1:1分配(不包括控件text内容的大小)
第一个值为2,第二个值为1,表示按2:1分配,以此类推;
本文介绍了Android Studio中LinearLayout布局的使用,重点讲解了`android:layout_height="match_parent"`属性以及`android:layout_weight`属性如何按比例分配控件的剩余空间。通过示例展示了不同权重比对控件布局的影响。
3216

被折叠的 条评论
为什么被折叠?



