其他分享
首页 > 其他分享> > andriod学习基础——线性布局LinearLayout(LinearoutCompat)

andriod学习基础——线性布局LinearLayout(LinearoutCompat)

作者:互联网

常用属性

1.layout_width 宽度

2.layout_heigh 高度

(取值有:match_parent其大小跟随父类,wrap_content包裹其自身的内容,尺度大小)

2.orientation 布局方式

(取值有:vertical列,horizontal行)

3.background 背景(可用图片,可用颜色RGB代码)

4.layout_margin 外边距

5.padding 内边距

6.gravity 重力(对齐方式)

7.layout_weight 权重(根据剩余空间分配比例,其值为阿拉伯数字)

 

常犯错误:

1.布局格式编写与视图编写格式不同,在布局类内嵌套布局时容易搞错。<LinearLayout(此处可以设置布局属性)><LinearLayout>和<View/>

2.视图的View的V大写。

标签:layout,LinearoutCompat,布局,视图,andriod,编写,格式,取值,LinearLayout
来源: https://www.cnblogs.com/xiaoxiongaixuexi/p/14366496.html