2-2 LinearLayout 线性布局的概念
作者:互联网
介绍
Android中有六大布局,分别是: LinearLayout(线性布局),RelativeLayout(相对布局),TableLayout(表格布局) FrameLayout(帧布局),AbsoluteLayout(绝对布局),GridLayout(网格布局)。先学习LinearLayout(线性布局)
语法
1.常用属性
- orientation
布局中组件的排列方式,有horizontal(水平)和vertical(垂直)两种方式
- gravity
控制组件中子组件对齐方式 (left|buttom)
- layout_gravity
控制该组件在父容器里的对齐方式
- layout_width
布局的宽度(wrap_content组件实际大小;fill_parent或者match_parent填满父容器)
- layout_height
布局的高度
- id
为该组件设置一个资源id,在java文件中可以通过findViewByid(id)找到该组件
- background
背景图片或者颜色
- wight
权重 wrap_content按比例划分区域,match_parent(fill_parent):这个则需要计算了
- 为LinearLayout设置分割线
- 1.直接在布局中添加一个view
<View
android:layout_width="match_parent"
android:layout_height="1px"
android:background="#000000" />
- 2.使用divider属性
<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