[Android开发]--六大基本布局

1、线性布局(LinearLayout):按照垂直或者水平方向布局的组件
2、帧布局(FrameLayout):组件从屏幕左上方布局组件
3、表格布局(TableLayout):按照行列方式布局组件
4、绝对布局(AbsoluteLayout):按照绝对坐标来布局组件
5、相对布局(RelativeLayout):相对其它组件的布局方式
6、约束布局 (ConstraintLayout):按照约束布局组件

线性布局LinearLayout

[Android开发]--六大基本布局_第1张图片
线性布局效果图.png



    
        
        
        
    

    
        
        
        
    

线性布局特点,同一级组件之间没有互相依赖,按照添加顺序依次排列,其中线性布局最重要的属性是android:orientation,通过该属性可以指定水平方向排列还是纵向排列

帧布局FrameLayout

[Android开发]--六大基本布局_第2张图片
帧布局效果图.png



    

    

    



帧布局会按照添加顺序层叠在一起,默认层叠在左上角位置,本例子因为设置了layout_gravity="center",所以层叠在视图中心位置

表格布局TableLayout

[Android开发]--六大基本布局_第3张图片
表格布局效果图.png



    

        

        
    

    

        

        

        
    

    

        

        
    

TableLayout继承LinearLayout,有元素单独占一行可以不写TableRow
TableLayout的一些属性:

android:shrinkColumns 设置可收缩的列
android:stretchColumns 设置可伸展的列
android:collapseColumns 设置要隐藏的列
默认所有的列为stretchColumns,如只有一个控件则独占一行
每列宽度的计算原则:首先根据可伸展列根据其内容最长的一行占据一行的百分比,再根据可收缩的列等分剩余的部分
例如图中,优先计算“ 111111111111111111111111”的宽度,再由剩下的列等分剩余的空间
如果遇到空间已经不足了,则剩余的列均不显示
控件的一些属性:
android:layout_column表示当前控件在第几列
android:layout_span表示合并单元格个数

绝对布局AbsoluteLayout

难以实现多分辨率适配,不建议使用

相对布局RelativeLayout

[Android开发]--六大基本布局_第4张图片
相对布局效果图.png



    

    

    

    

    


相对布局常用属性:

子类控件相对子类控件:值是另外一个控件的id

android:layout_above----------位于给定DI控件之上
android:layout_below ----------位于给定DI控件之下

android:layout_toLeftOf -------位于给定控件左边
android:layout_toRightOf ------位于给定控件右边

android:layout_alignLeft -------左边与给定ID控件的左边对齐
android:layout_alignRight ------右边与给定ID控件的右边对齐
android:layout_alignTop -------上边与给定ID控件的上边对齐
android:layout_alignBottom ----底边与给定ID控件的底边对齐

android:layout_alignBaseline----对齐到控件基准线

android:layout_above="@id/xxx" --将控件置于给定ID控件之上
android:layout_below="@id/xxx" --将控件置于给定ID控件之下

android:layout_toLeftOf="@id/xxx" --将控件的右边缘和给定ID控件的左边缘对齐
android:layout_toRightOf="@id/xxx" --将控件的左边缘和给定ID控件的右边缘对齐

android:layout_alignLeft="@id/xxx" --将控件的左边缘和给定ID控件的左边缘对齐
android:layout_alignTop="@id/xxx" --将控件的上边缘和给定ID控件的上边缘对齐
android:layout_alignRight="@id/xxx" --将控件的右边缘和给定ID控件的右边缘对齐
android:layout_alignBottom="@id/xxx" --将控件的底边缘和给定ID控件的底边缘对齐
android:layout_alignParentLeft="true" --将控件的左边缘和父控件的左边缘对齐
android:layout_alignParentTop="true" --将控件的上边缘和父控件的上边缘对齐
android:layout_alignParentRight="true" --将控件的右边缘和父控件的右边缘对齐
android:layout_alignParentBottom="true" --将控件的底边缘和父控件的底边缘对齐
android:layout_centerInParent="true" --将控件置于父控件的中心位置
android:layout_centerHorizontal="true" --将控件置于水平方向的中心位置
android:layout_centerVertical="true" --将控件置于垂直方向的中心位置

相对父容器,值是true或false
android:layout_alignParentLeft ------相对于父靠左
android:layout_alignParentTop-------相对于父靠上
android:layout_alignParentRight------相对于父靠右
android:layout_alignParentBottom ---相对于父靠下

android:layout_centerInParent="true" -------相对于父即垂直又水平居中
android:layout_centerHorizontal="true" -----相对于父即水平居中
android:layout_centerVertical="true" --------相对于父即处置居中

相对于父容器位置:
android:layout_margin="10dp"
android:layout_marginLeft
android:layout_marginRight
android:layout_marginTop
android:layout_marginBottom

版本4.2以上相对布局新属性
android:layout_alignStart---------------------将控件对齐给定ID控件的头部
android:layout_alignEnd----------------------将控件对齐给定ID控件的尾部
android:layout_alignParentStart--------------将控件对齐到父控件的头部
android:layout_alignParentEnd---------------将控件对齐到父控件的尾部

android:layout_marginLeft指该控件距离边父控件的边距,
android:paddingLeft指该控件内部内容,如文本距离该控件的边距。

约束布局ConstraintLayout

[Android开发]--六大基本布局_第5张图片
约束布局效果图.png



    

    

    

    

    

你可能感兴趣的:([Android开发]--六大基本布局)