Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> Android開發 >> 中級開發 >> Android 五大布局

Android 五大布局

編輯:中級開發

android對用五大布局對象,它們分別是FrameLayout(框架布局),LinearLayout (線性布局),AbsoluteLayout(絕對布局),RelativeLayout(相對布局),TableLayout(表格布局). 
FrameLayout: 

FrameLayout是最簡單的一個布局對象。它被定制為你屏幕上的一個空白備用區域,之後你可以在其中填充一個單一對象 — 比如,一張你要發布的圖片。所有的子元素將會固定在屏幕的左上角;你不能為FrameLayout中的一個子元素指定一個位置。後一個子元素將會直接在前一個子元素之上進行覆蓋填充,把它們部份或全部擋住(除非後一個子元素是透明的)。 
其中Main.XML 代碼如下:


Java代碼 
1.<?XML version= "1.0"  encoding= "utf-8" ?>   
2.<FrameLayout XMLns:android="http://schemas.android.com/apk/res/android"   
3.    android:layout_width="fill_parent"    
4.    android:layout_height="fill_parent"    
5.    >   
6.   
7. <!-- 我們在這裡加了一個Button按鈕 -->   
8.<Button   
9.    android:text="button"    
10.    android:layout_width="fill_parent"    
11.    android:layout_height="wrap_content"    
12./>   
13.<TextVIEw   
14.    android:text="textvIEw"    
15.    android:textColor="#0000ff"    
16.    android:layout_width="wrap_content"    
17.    android:layout_height="wrap_content"    
18./>   
19.</FrameLayout>    
<?XML version="1.0" encoding="utf-8"?>
<FrameLayout XMLns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    >

 <!-- 我們在這裡加了一個Button按鈕 -->
<Button
    android:text="button"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
/>
<TextVIEw
    android:text="textvIEw"
    android:textColor="#0000ff"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
/>
</FrameLayout>

LinearLayout:

LinearLayout以你為它設置的垂直或水平的屬性值,來排列所有的子元素。所有的子元素都被堆放在其它元素之後,因此一個垂直列表的每一行只會有一個元素,而不管他們有多寬,而一個水平列表將會只有一個行高(高度為最高子元素的高度加上邊框高度)。LinearLayout保持子元素之間的間隔以及互相對齊(相對一個元素的右對齊、中間對齊或者左對齊)。

LinearLayout還支持為單獨的子元素指定weight 。好處就是允許子元素可以填充屏幕上的剩余空間。這也避免了在一個大屏幕中,一串小對象擠成一堆的情況,而是允許他們放大填充空白。子元素指定一個 weight 值,剩余的空間就會按這些子元素指定的weight 比例分配給這些子元素。默認的 weight 值為0。例如,如果有三個文本框,其中兩個指定了weight 值為1,那麼,這兩個文本框將等比例地放大,並填滿剩余的空間,而第三個文本框不會放大。

我們看一下效果圖: 
 

其中Main.xm l代碼如下:

Java代碼 
1.<?XML version= "1.0"  encoding= "utf-8" ?>   
2.<LinearLayout XMLns:android="http://schemas.android.com/apk/res/android"   
3.    android:orIEntation="vertical"    
4.    android:layout_width="fill_parent"    
5.    android:layout_height="fill_parent" >   
6.   <LinearLayout   
7.    android:orIEntation="vertical"    
8.    android:layout_width="fill_parent"    
9.    android:layout_height="fill_parent"    
10.    android:layout_weight="2" >   
11.    <TextVIEw   
12.        android:text="Welcome to Mr Wei's blog"    
13.        android:textSize="15pt"    
14.        android:layout_width="fill_parent"    
15.        android:layout_height="wrap_content"    
16.     />   
17.    </LinearLayout>   
18.    <LinearLayout   
19.    android:orIEntation="horizontal"    
20.    android:layout_width="fill_parent"    
21.    android:layout_height="fill_parent"    
22.    android:layout_weight="1" >   
23.      
24.    <TextVIEw   
25.        android:text="red"    
26.   
27.        android:gravity="center_horizontal"   //這裡字水平居中    
28.        android:background="#aa0000"    
29.        android:layout_width="wrap_content"    
30.        android:layout_height="fill_parent"    
31.        android:layout_weight="1" />   
32.    <TextVIEw   
33.        android:text="green"    
34.        android:gravity="center_horizontal "    
35.        android:background="#00aa00"    
36.        android:layout_width="wrap_content"    
37.        android:layout_height="fill_parent"    
38.        android:layout_weight="1" />      
39.    </LinearLayout>   
40.</LinearLayout>   
<?XML version="1.0" encoding="utf-8"?>
<LinearLayout XMLns:android="http://schemas.android.com/apk/res/android"
    android:orIEntation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">
   <LinearLayout
    android:orIEntation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:layout_weight="2">
    <TextVIEw
        android:text="Welcome to Mr Wei's blog"
        android:textSize="15pt"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
     />
    </LinearLayout>
    <LinearLayout
    android:orIEntation="horizontal"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:layout_weight="1">
   
    <TextVIEw
        android:text="red"

        android:gravity="center_horizontal" //這裡字水平居中
        android:background="#aa0000"
        android:layout_width="wrap_content"
        android:layout_height="fill_parent"
        android:layout_weight="1"/>
    <TextVIEw
        android:text="green"
        android:gravity="center_horizontal "
        android:background="#00aa00"
        android:layout_width="wrap_content"
        android:layout_height="fill_parent"
        android:layout_weight="1"/>   
    </LinearLayout>
</LinearLayout>


RelativeLayout:

RelativeLayout 允許子元素指定他們相對於其它元素或父元素的位置(通過ID 指定)。因此,你可以以右對齊,或上下,或置於屏幕中央的形式來排列兩個元素。元素按順序排列,因此如果第一個元素在屏幕的中央,那麼相對於這個元素的其它元素將以屏幕中央的相對位置來排列。如果使用XML 來指定這個 layout ,在你定義它之前,被關聯的元素必須定義。

讓我們看一下效果圖: 
 

其中Main.XML 代碼如下:


Java代碼 
1.<?XML version= "1.0"  encoding= "utf-8" ?>   
2.<RelativeLayout XMLns:android="http://schemas.android.com/apk/res/android"   
3.    android:layout_width="fill_parent"    
4.    android:layout_height="fill_parent" >   
5.    <TextVIEw   
6.        android:id="@+id/label"    
7.        android:layout_width="fill_parent"    
8.        android:layout_height="wrap_content"    
9.        android:text="Welcome to Mr Wei's blog:" />   
10.    <EditText   
11.        android:id="@+id/entry"    
12.        android:layout_width="fill_parent"    
13.        android:layout_height="wrap_content"    
14.        android:layout_below="@id/label" />   
15.    <Button   
16.        android:id="@+id/ok"    
17.        android:layout_width="wrap_content"    
18.        android:layout_height="wrap_content"    
19.        android:layout_below="@id/entry"    
20.        android:layout_alignParentRight="true"    
21.        android:layout_marginLeft="10dip"    
22.        android:text="OK"  />   
23.    <Button   
24.        android:layout_width="wrap_content"    
25.        android:layout_height="wrap_content"    
26.        android:layout_toLeftOf="@id/ok"    
27.        android:layout_alignTop="@id/ok"    
28.        android:text="Cancel"  />   
29.</RelativeLayout>    
<?XML version="1.0" encoding="utf-8"?>
<RelativeLayout XMLns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">
    <TextVIEw
        android:id="@+id/label"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="Welcome to Mr Wei's blog:"/>
    <EditText
        android:id="@+id/entry"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_below="@id/label"/>
    <Button
        android:id="@+id/ok"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_below="@id/entry"
        android:layout_alignParentRight="true"
        android:layout_marginLeft="10dip"
        android:text="OK" />
    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_toLeftOf="@id/ok"
        android:layout_alignTop="@id/ok"
        android:text="Cancel" />
</RelativeLayout>

TableLayout:

TableLayout 將子元素的位置分配到行或列中。一個TableLayout 由許多的TableRow 組成,每個TableRow 都會定義一個 row (事實上,你可以定義其它的子對象,這在下面會解釋到)。TableLayout 容器不會顯示row 、cloumns 或cell 的邊框線。每個 row 擁有0個或多個的cell ;每個cell 擁有一個VIEw 對象。表格由列和行組成許多的單元格。表格允許單元格為空。單元格不能跨列,這與Html 中的不一樣。

下面讓我們看一下效果圖: 
 
其中Main.XML 代碼如下:


Java代碼 
1.<?XML version= "1.0"  encoding= "utf-8" ?>   
2.<TableLayout XMLns:android="http://schemas.android.com/apk/res/android"   
3.    android:layout_width="fill_parent"  android:layout_height= "fill_parent"    
4.    android:stretchColumns="1" >   
5.    <TableRow>   
6.        <TextVIEw android:layout_column="1"  android:text= "Open..."  />   
7.        <TextVIEw android:text="Ctrl-O"  android:gravity= "right"  />   
8.    </TableRow>   
9.    <TableRow>   
10.        <TextVIEw android:layout_column="1"  android:text= "Save..."  />   
11.        <TextVIEw android:text="Ctrl-S"  android:gravity= "right"  />   
12.    </TableRow>   
13.    <VIEw android:layout_height="2dip"  android:background= "#FF909090"  />  //這裡是上圖中的分隔線    
14.    <TableRow>   
15.        <TextVIEw android:text="X"  />   
16.        <TextVIEw android:text="Export..."  />   
17.        <TextVIEw android:text="Ctrl-E"  android:gravity= "right "  />   
18.    </TableRow>   
19.    <VIEw android:layout_height="2dip"  android:background= "#FF909090"  />   
20.    <TableRow>   
21.        <TextVIEw android:layout_column="1"  android:text= "Quit"    
22.            android:padding="3dip"  />   
23.    </TableRow>   
24.</TableLayout>    
<?XML version="1.0" encoding="utf-8"?>
<TableLayout XMLns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent" android:layout_height="fill_parent"
    android:stretchColumns="1">
    <TableRow>
        <TextVIEw android:layout_column="1" android:text="Open..." />
        <TextVIEw android:text="Ctrl-O" android:gravity="right" />
    </TableRow>
    <TableRow>
        <TextVIEw android:layout_column="1" android:text="Save..." />
        <TextVIEw android:text="Ctrl-S" android:gravity="right" />
    </TableRow>
    <VIEw android:layout_height="2dip" android:background="#FF909090" /> //這裡是上圖中的分隔線
    <TableRow>
        <TextVIEw android:text="X" />
        <TextVIEw android:text="Export..." />
        <TextVIEw android:text="Ctrl-E" android:gravity="right " />
    </TableRow>
    <VIEw android:layout_height="2dip" android:background="#FF909090" />
    <TableRow>
        <TextVIEw android:layout_column="1" android:text="Quit"
            android:padding="3dip" />
    </TableRow>
</TableLayout>

 

AbsoluteLayout:

AbsoluteLayout 可以讓子元素指定准確的x/y坐標值,並顯示在屏幕上。(0, 0)為左上角,當向下或向右移動時,坐標值將變大。AbsoluteLayout 沒有頁邊框,允許元素之間互相重疊(盡管不推薦)。我們通常不推薦使用 AbsoluteLayout ,除非你有正當理由要使用它,因為它使界面代碼太過剛性,以至於在不同的設備上可能不能很好地工作。 
我們看一下效果圖: 
 

其中Main.xm l代碼如下:


Java代碼 
1.<?XML version= "1.0"  encoding= "utf-8" ?>   
2.<AbsoluteLayout XMLns:android="http://schemas.android.com/apk/res/android"   
3.    android:orIEntation="vertical"    
4.    android:layout_width="fill_parent"    
5.    android:layout_height="fill_parent"    
6.    >   
7.<EditText   
8.    android:text="Welcome to Mr Wei's blog"    
9.    android:layout_width="fill_parent"    
10.    android:layout_height="wrap_content"    
11./>   
12.<Button   
13.    android:layout_x="250px"   //設置按鈕的X坐標    
14.    android:layout_y="40px"   //設置按鈕的Y坐標    
15.    android:layout_width="70px"   //設置按鈕的寬度    
16.    android:layout_height="wrap_content"    
17.    android:text="Button"    
18./>   
19.</AbsoluteLayout> 

 

本文來自CSDN博客,轉載請標明出處:http://blog.csdn.Net/qinlicang/archive/2010/12/22/6091807.ASPx

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved