其他分享
首页 > 其他分享> > 2-2 LinearLayout 线性布局的概念

2-2 LinearLayout 线性布局的概念

作者:互联网

介绍

Android中有六大布局,分别是: LinearLayout(线性布局),RelativeLayout(相对布局),TableLayout(表格布局) FrameLayout(帧布局),AbsoluteLayout(绝对布局),GridLayout(网格布局)。先学习LinearLayout(线性布局)

语法

1.常用属性

  1. orientation

布局中组件的排列方式,有horizontal(水平)和vertical(垂直)两种方式

  1. gravity

控制组件中子组件对齐方式 (left|buttom)

  1. layout_gravity

控制该组件在父容器里的对齐方式

  1. layout_width

布局的宽度(wrap_content组件实际大小;fill_parent或者match_parent填满父容器)

  1. layout_height

布局的高度

  1. id

为该组件设置一个资源id,在java文件中可以通过findViewByid(id)找到该组件

  1. background

背景图片或者颜色

  1. wight

权重 wrap_content按比例划分区域,match_parent(fill_parent):这个则需要计算了

  1. 为LinearLayout设置分割线
<View  
    android:layout_width="match_parent"  
    android:layout_height="1px"  
    android:background="#000000" />  
<View  
    android:layout_width="match_parent"  
    android:layout_height="1px"  
    android:background="#000000" />  

标签:layout,parent,布局,id,组件,线性,LinearLayout
来源: https://www.cnblogs.com/mywifeisMsHu/p/15936251.html