Android開發中,我們可能會遇到過一些很複雜的布局,對于初學者來說,可能腦子會嗡的一下,“這麼複雜!該怎麼整?!”。
不要擔心!再複雜的布局其實也是由簡單地布局組成的,我們要學會将它分解成基本的布局,那麼問題就迎刃而解了。
Android共有五種常見布局方式,分别是:LinearLayout(線性布局),FrameLayout(單幀布局),AbsoluteLayout(絕對布局),RelativeLayout(相對布局),TableLayout(表格布局)。
下面首先看一下這些布局的關系
由此我們可以看出所有的布局方式都可以歸類為ViewGroup的5個類别,即ViewGroup的5個直接子類。其它的一些布局都擴充自這5個類。
一、LinearLayout,線性布局方式
這種布局比較常用,也比較簡單,就是每個元素占一行,可聲明為橫向或縱向排放,也就是每個元素占一列。
LinearLayout按照垂直或者水準的順序依次排列子元素,每一個子元素都位于前一個元素之後。如果是垂直排列,那麼将是一個N行單列的結構,每一行隻會有一個元素,而不論這個元素的寬度為多少;如果是水準排列,那麼将是一個單行N列的結構。如果搭建兩行兩列的結構,通常的方式是先垂直排列兩個元素,每一個元素裡再包含一個LinearLayout進行水準排列。
LinearLayout中的子元素屬性android:layout_weight生效,它用于描述該子元素在剩餘空間中占有的大小比例。加入一行隻有一個文本框,那麼它的預設值就為0,如果一行中有兩個等長的文本框,那麼他們的android:layout_weight值可以是同為1。如果一行中有兩個不等長的文本框,那麼他們的android:layout_weight值分别為1和2,那麼第一個文本框将占據剩餘空間的三分之一,第二個文本框将占據剩餘空間中的三分之二。
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<TextView
android:layout_width="fill_parent"
android:layout_height="30dp"
android:background="@android:color/holo_blue_bright" />
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="30dp"
android:orientation="horizontal" >
<TextView
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_weight="0.2"
android:background="@android:color/holo_green_dark" />
<TextView
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_weight="0.3"
android:background="@android:color/holo_orange_dark" />
<TextView
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_weight="0.3"
android:background="@android:color/holo_blue_light" />
<!--
android:layout_weight="0.3" 作用:子控件占父控件的比例,即0.3/(0.2+0.3+0.3),
值得注意的是如果有父布局中有一個子控件有weight值,那麼其他同在父布局中的子控件都要有,否則就顯示不出來。
-->
</LinearLayout>
<LinearLayout
android:layout_width="80dp"
android:layout_height="60dp"
android:layout_marginBottom="20dp"
android:layout_marginLeft="20dp"
android:background="@android:color/holo_red_dark" >
<!-- 很容易看出 android:layout_marginBottom="20dp"(離底部20dp)沒有起作用,因為LinearLayout是一個控件挨着一個布局的 -->
</LinearLayout>
</LinearLayout>
效果圖:
二、Relative Layout,相對布局
RelativeLayout按照各子元素之間的位置關系完成布局。在此布局中的子元素裡與位置相關的屬性将生效。例如android:layout_below, android:layout_above, android:layout_centerVertical等。注意在指定位置關系時,引用的ID必須在引用之前,先被定義,否則将出現異常。
RelativeLayout是Android五大布局結構中最靈活的一種布局結構,比較适合一些複雜界面的布局。初學者可以利用可視化編輯器直接拖動控件到指定位置,來熟悉相關的位置屬性。
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TextView
android:id="@+id/a1"
android:layout_width="50dp"
android:layout_height="60dp"
android:background="@android:color/holo_green_dark"/>
<TextView
android:id="@+id/a2"
android:layout_width="70dp"
android:layout_height="60dp"
android:layout_alignParentTop="true"
android:layout_marginLeft="36dp"
android:layout_toRightOf="@+id/a1"
android:background="@android:color/holo_blue_bright" />
<TextView
android:id="@+id/a3"
android:layout_width="30dp"
android:layout_height="60dp"
android:layout_toEndOf="@id/a1"
android:background="@android:color/holo_orange_dark" />
<!-- layout_toEndOf和 layout_toRightOf有什麼差別??-->
<TextView
android:id="@+id/a4"
android:layout_width="70dp"
android:layout_height="60dp"
android:layout_marginLeft="36dp"
android:layout_below="@id/a2"
android:background="@android:color/black" />
<TextView
android:id="@+id/a5"
android:layout_width="90dp"
android:layout_height="30dp"
android:layout_marginLeft="36dp"
android:layout_alignParentRight="true"
android:layout_alignParentBottom="true"
android:background="@android:color/holo_purple" />
</RelativeLayout>
效果圖:
三、AbsoluteLayout,絕對位置布局
在此布局中的子元素的android:layout_x和android:layout_y屬性将生效,用于描述該子元素的坐标位置。螢幕左上角為坐标原點(0,0),第一個0代表橫坐标,向右移動此值增大,第二個0代表縱坐标,向下移動,此值增大。在此布局中的子元素可以互相重疊。在實際開發中,通常不采用此布局格式,因為它的界面代碼過于剛性,以至于有可能不能很好的适配各種終端。
<AbsoluteLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<TextView
android:layout_width="90dp"
android:layout_height="30dp"
android:layout_x="0dp"
android:layout_y="0dp"
android:background="@android:color/holo_orange_dark"/>
<TextView
android:layout_width="90dp"
android:layout_height="50dp"
android:layout_x="100dp"
android:layout_y="200dp"
android:background="@android:color/holo_blue_light"/>
<!-- 絕對布局是寫死的坐标,不具有适配性,不建議使用 -->
</AbsoluteLayout>
效果圖:
四、FrameLayout,幀布局
FrameLayout是五大布局中最簡單的一個布局,可以說成是層布局方式。在這個布局中,整個界面被當成一塊空白備用區域,所有的子元素都不能被指定放置的位置,它們統統放于這塊區域的左上角,并且後面的子元素直接覆寫在前面的子元素之上,将前面的子元素部分和全部遮擋。并且android:gravity屬性失效,但是可以通過layout_marginLeft等進行更改位置。
<FrameLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<TextView
android:layout_width="300dp"
android:layout_height="300dp"
android:background="@android:color/holo_blue_bright"/>
<TextView
android:layout_width="200dp"
android:layout_height="200dp"
android:background="@android:color/holo_green_light"/>
<TextView
android:layout_width="100dp"
android:layout_height="100dp"
android:layout_marginLeft="60dp"
android:gravity="bottom"
android:background="@android:color/holo_red_dark"/>
<!-- gravity屬性無效 -->
</FrameLayout>
效果圖:
五、TableLayout,表格布局
适用于N行N列的布局格式。一個TableLayout由許多TableRow組成,一個TableRow就代表TableLayout中的一行。
TableRow是LinearLayout的子類,ablelLayout并不需要明确地聲明包含多少行、多少列,而是通過TableRow,以及其他元件來控制表格的行數和列數, TableRow也是容器,是以可以向TableRow裡面添加其他元件,沒添加一個元件該表格就增加一列。如果想TableLayout裡面添加元件,那麼該元件就直接占用一行。在表格布局中,列的寬度由該列中最寬的單元格決定,整個表格布局的寬度取決于父容器的寬度(預設是占滿父容器本身)。
TableLayout繼承了LinearLayout,是以他完全可以支援LinearLayout所支援的全部XML屬性,除此之外TableLayout還支援以下屬性:
XML屬性 相關用法 說明
1. andriod:collapseColumns setColumnsCollapsed(int ,boolean) 設定需要隐藏的列的序列号,多個用逗号隔開
2.android:shrinkColumns setShrinkAllColumns(boolean) 設定被收縮的列的序列号,多個用逗号隔開
3.android:stretchColimns setSretchAllColumnds(boolean) 設定允許被拉伸的列的序列号,多個用逗号隔開
<TableLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<TableRow
android:id="@+id/tableRow1"
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
<TextView
android:layout_width="80dp"
android:layout_height="40dp"
android:background="@android:color/holo_blue_dark"/>
<TextView
android:layout_width="80dp"
android:layout_height="40dp"
android:background="@android:color/holo_red_dark"/>
</TableRow>
<TableRow
android:id="@+id/tableRow2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical">
<TextView
android:layout_width="200dp"
android:layout_height="40dp"
android:background="@android:color/holo_red_dark"/>
<TextView
android:layout_width="10dp"
android:layout_height="40dp"
android:background="@android:color/holo_green_dark"/>
</TableRow>
<TableRow
android:id="@+id/tableRow3"
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
<TextView
android:layout_width="80dp"
android:layout_height="40dp"
android:background="@android:color/holo_green_dark"/>
</TableRow>
<TableRow
android:id="@+id/tableRow4"
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
<TextView
android:layout_width="80dp"
android:layout_height="40dp"
android:background="@android:color/holo_blue_dark"/>
</TableRow>
<!-- 列的寬度為什麼是一緻的??? -->
</TableLayout>
效果圖:(紅色的實際尺寸)
demo位址:http://download.csdn.net/detail/u011747781/8481315
Android布局檔案Layout.xml的一些常見屬性值:http://blog.csdn.net/google_acmer/article/details/44119741