LinearLayout 线性布局管理器

 

线性布局管理器是将放入其中的组件按照垂直或水平方向来布局,每一行或每一列只能放一个组件,并且不会换行,当组件排列到窗体的边缘后,后面的组件就不会显示出来。

基本语法格式:

         属性列表

         >

常用属性:

android:orientation(horizontal 水平,vertical 垂直)

android:gravity(对齐方式)

android:layout_witdth(宽)

android:layout_height(高)

android:id

android:background(背景)

 

 

你可能感兴趣的:(XML)