Week07 2016/10/25上午1-4节
一、复习
二、无种基本布局
0、布局:布局,控件
Android开发学习笔记:5大布局方式详解 - IT的点点滴滴 - 51CTO技术博客
1、线性布局LinearLayout
(1)android:orientation="horizontal"//水平方向,默认,注:控件宽度不能为match_parent
(2)android:orientation="vertical"//垂直方向,注:控件高度不能为match_parent
(3)android:gravity:文字在控件中的对其方式
android:layout_gravity:控件在布局中的对其方式。
当android:orientation="horizontal"时,垂直方向上对齐方式生效
当android:orientation="vertical"时,水平方向上对齐方式生效
(4)android:layout_weight控件指自己控件所占的高或宽=自己weight值/所有weight之和
AndroidUI设计之布局-详细解析布局实现 - 安卓吧 - 博客园
2、相对布局RelativeLayout
相对布局的位置
相对参考控件的位置
3、帧布局FrameLayout
4、表格布局TableLayout
android:stretchColumns="1"
网友评论