淺談Android五大布局(二)——RelativeLayout和TableLayout

來源:互聯網
上載者:User

  在淺談Android五大布局(一)中已經描述了LinearLayout(線性布局)、FrameLayout(單幀布局)和AbsoulteLayout(絕對布局)三種布局結構,剩下的兩種布局RelativeLayout(相對布局)和TableLayout(表格版面配置)相對之前布局結構稍顯複雜一點,所以這裡另起篇幅進行介紹。

RelativeLayout:

  RelativeLayout按照各子項目之間的位置關係完成布局。在此布局中的子項目裡與位置相關的屬性將生效。例如android:layout_below, android:layout_above等。子項目就通過這些屬性和各自的ID配合指定位置關係。注意在指定位置關係時,引用的ID必須在引用之前,先被定義,否則將出現異常。

  RelativeLayout裡常用的位置屬性如下:
    android:layout_toLeftOf —— 該組件位於引用組件的左方
    android:layout_toRightOf —— 該組件位於引用組件的右方
    android:layout_above —— 該組件位於引用組件的上方
    android:layout_below —— 該組件位於引用組件的下方
       android:layout_alignParentLeft —— 該組件是否對齊父組件的左端
       android:layout_alignParentRight —— 該組件是否齊其父組件的右端
       android:layout_alignParentTop —— 該組件是否對齊父組件的頂部
       android:layout_alignParentBottom —— 該組件是否對齊父組件的底部
    android:layout_centerInParent —— 該組件是否相對於父組件置中
    android:layout_centerHorizontal —— 該組件是否橫向置中
    android:layout_centerVertical —— 該組件是否垂直置中

  RelativeLayout是Android五大布局結構中最靈活的一種布局結構,比較適合一些複雜介面的布局。下面樣本就展示這麼一個情況,第一個文字框與父組件的底部對齊,第二個文字框位於第一個文字框的上方,並且第三個文字框位於第二個文字框的左方。

RelativeLayout

1 <?xml version="1.0" encoding="utf-8"?>
2 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent">
3 <TextView android:id="@+id/text_01" android:layout_width="50dp" android:layout_height="50dp" android:background="#ffffffff" android:gravity="center" android:layout_alignParentBottom="true" android:text="1"/>
4 <TextView android:id="@+id/text_02" android:layout_width="50dp" android:layout_height="50dp" android:background="#ff654321" android:gravity="center" android:layout_above="@id/text_01" android:layout_centerHorizontal="true" android:text="2"/>
5 <TextView android:id="@+id/text_03" android:layout_width="50dp" android:layout_height="50dp" android:background="#fffedcba" android:gravity="center" android:layout_toLeftOf="@id/text_02" android:layout_above="@id/text_01" android:text="3"/>
6 </RelativeLayout>

 

TableLayout:

  TableLayout顧名思義,此布局為表格版面配置,適用於N行N列的布局格式。一個TableLayout由許多TableRow組成,一個TableRow就代表TableLayout中的一行。

  TableRow是LinearLayout的子類,它的android:orientation屬性值恒為horizontal,並且它的android:layout_width和android:layout_height屬性值恒為MATCH_PARENT和WRAP_CONTENT。所以它的子項目都是橫向排列,並且寬高一致的。這樣的設計使得每個TableRow裡的子項目都相當於表格中的儲存格一樣。在TableRow中,儲存格可以為空白,但是不能跨列。

  下面樣本示範了一個TableLayout的布局結構,其中第二行只有兩個儲存格,而其餘行都是三個儲存格。

TableLayout

 1 <?xml version="1.0" encoding="utf-8"?>
2 <TableLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent">
3 <TableRow android:layout_width="fill_parent" android:layout_height="wrap_content">
4 <TextView android:background="#ffffffff" android:gravity="center" android:padding="10dp" android:text="1"/>
5 <TextView android:background="#ff654321" android:gravity="center" android:padding="10dp" android:text="2"/>
6 <TextView android:background="#fffedcba" android:gravity="center" android:padding="10dp" android:text="3"/>
7 </TableRow>
8 <TableRow android:layout_width="fill_parent" android:layout_height="wrap_content">
9 <TextView android:background="#ff654321" android:gravity="center" android:padding="10dp" android:text="2"/>
10 <TextView android:background="#fffedcba" android:gravity="center" android:padding="10dp" android:text="3"/>
11 </TableRow>
12 <TableRow android:layout_width="fill_parent" android:layout_height="wrap_content">
13 <TextView android:background="#fffedcba" android:gravity="center" android:padding="10dp" android:text="3"/>
14 <TextView android:background="#ff654321" android:gravity="center" android:padding="10dp" android:text="2"/>
15 <TextView android:background="#ffffffff" android:gravity="center" android:padding="10dp" android:text="1"/>
16 </TableRow>
17 </TableLayout>

 

  

  其它布局結構請參看:淺談Android五大布局(一)—— RelativeLayout和TalbeLayout。

=================================================================
親,如果您覺得本人此博文對你有用,請不要吝嗇自己的滑鼠,給此博文一個“推薦”吧。

本博文系本部落客原創,著作權歸本部落客所有,如需轉載,請註明轉載地址。
部落格原始地址:wisekingokok.cnblogs.com
=================================================================

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.