标签:
Android中常用布局 5大布局
1.线性布局LinearLayout
LinearLayout android:orientation="horizontal"//水平布局
LinearLayout android:orientation="vertical"//垂直布局
TextView
EditText
ImageView
Button
2.相对布局
RelativeLayout
3.帧布局
FrameLayout 一层一层向上盖
4.表格布局
TableLayout
一个TableRow 代表一行, TableRow 里的一个控件代表一列
5.绝对布局
AbsoluteLayout
标签:
原文地址:http://www.cnblogs.com/lj-103/p/4962649.html