标签:... bottom str strong ram row relative 文字 top
LinearLayout(线性布局)
让所有的组件都成为单一的方向,即垂直的或者水平的(默认)。
android:layout_weight //该属性控制水平和垂直方向某个控件所占的比例
FrameLayout(帧布局)
TableLayout(表格布局)
<TableLayout>
<TableRow></TableRow> 行
</TableLayout>
android:gravity//文字的摆放的位置. top,left,right,center...
RelativeLayout(相对布局)
android:layout_below 摆放在指定组件的下边
android:layout_toLeftOf 摆放在指定组件的左边
android:layout_toRightOf 摆放在指定组件的右边
android:layout_alignTop 以指定组件为参考进行上对齐
android:layout_alignBottom 以指定组件为参考进行下对齐
android:layout_alignLeft 以指定组件为参考进行左对齐
android:layout_alignRight 以指定组件为参考进行右对齐
AbsoluteLayout(绝对布局)
android:layout_x // x轴的开始坐标
android:layout_y // y轴的开始坐标
标签:... bottom str strong ram row relative 文字 top
原文地址:http://www.cnblogs.com/shuchongzeishuai/p/6868741.html