1. 程式人生 > >布局管理器(一)

布局管理器(一)

lin 其中 bottom tom left near frame 屬性 strong

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)
擺放在指定組件的下邊(左邊,右邊,上對齊,下對齊,左對齊,右對齊)

布局管理器(一)