标签:ntop relative tom 相对布局 frame ati row str 布局管理
1.LinearLayout(线性布局)
让所有的组件都成为单一的方向,即垂直的或者水平的(默认)。
android:layout_weight //该属性控制水平和垂直方向某个控件所占的比例
2.FrameLayout(帧布局)
帧布局的效果是将其中的所有控件到叠加在一起。
3.TableLayout(表格布局)
<TableLayout>
<TableRow></TableRow> 行
</TableLayout>
android:gravity //文字的摆放的位置。 top,left,right,center,
4.RelativeLayout(相对布局)
android:layout_below(toLeftOf,toRightOf,alignTop,alignBottom,alignLeft,alignRight)
摆放在指定组件的下边(左边,右边,上对齐,下对齐,左对齐,右对齐)
标签:ntop relative tom 相对布局 frame ati row str 布局管理
原文地址:http://www.cnblogs.com/ch123456/p/6856325.html