linearlayout垂直布局属性

一、LinearLayout 线性布局
LinearLayout 是一个视图组,用于使所有子视图在单个方向(垂直或水平)保持对齐 。您可以使用 android:orientation 属性指定布局方向 。

  • android:orientation,指定布局方向,vertical-竖向布局,horizontal-横向布局
  • android:layout_weight,为各个子视图分配权重(数字)
  • android:layout_gravity,容器自身相对于的上级容器的排列方式
  • android:gravity,容器内部组件的排列方式(top,bottom,start,end,center)
<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="***/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" > <TextView android:layout_width="match_parent" android:layout_height="wrap_content" android:text="文本标签1" android:background="@color/teal_700" android:textColor="@color/white" android:textSize="60sp" /> <TextView android:layout_width="match_parent" android:layout_height="wrap_content" android:text="文本标签2" android:background="@color/teal_200" android:textColor="@color/white" android:textSize="60sp" /> <TextView android:layout_width="match_parent" android:layout_height="wrap_content" android:text="文本标签3" android:background="@color/purple_200" android:textColor="@color/white" android:textSize="60sp" /></LinearLayout>
linearlayout垂直布局属性

文章插图
线性布局 - 均等分布
如果要让每个子视图使用大小相同的屏幕空间,请将每个视图的 android:layout

    推荐阅读