LinearLayout是线性布局控件,它包含的子控件将以横向或竖向的方式排列。
1.LinearLayout的常用属性
android:orientation="vertical"
该属性决定其他子类控件的排布方式(vertical垂直;horizontal水平)
android:gravity="center"
该属性决定其他子类的xy的位置
常用属性值:
- >center_vertical -- 垂直居中
- >center_horizontal -- 水平居中
- >center -- 水平垂直都居中
- >right -- 右边
- >left -- 左边
- >bottom -- 下面
2.子类控件在LinearLayout中常用到的属性
android:layout_gravity="bottom" ----指本身在当前父容器的XY的一个位置
android:layout_weight="1" ----指本身控件占当前父容器的一个比例
实例:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools" android:id="@+id/activity_main"
android:layout_width="match_parent" android:layout_height="match_parent"
android:orientation="vertical"
tools:context="com.example.demo4.MainActivity">
<Button
android:id="@+id/btn1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="2"
android:text="Button1"/>
<Button
android:id="@+id/btn2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="Button2"/>
</LinearLayout>
效果如下: