Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> Android開發 >> 高級開發 >> Android用戶界面設計:相對布局(1)

Android用戶界面設計:相對布局(1)

編輯:高級開發

理解布局對於良好的android程序設計非常重要。在這個教程裡,你將學到相對布局的所有知識,相對布局用於將用戶界面控件或小工具相對於其它控件或它們的父級布局組織在屏幕上。當使用正確的時候,相對布局可以是很強大和靈活布局,很多有趣的android程序用戶界面都可以基於它來設計。

什麼是相對布局

除了將控件顯示在一行或一列的線性布局,相對布局也是android用戶界面設計使用得很普遍的布局類型。和其它布局很相似,相對布局可以通過XML布局資源來定義也可以用Java程序來定義。相對布局的功能就像它的名字表達的一樣:它相對其它控件或父控件本身來組織控件。

這是什麼意思呢?意思是子控件,比如ImageView,TextVIEw,和Button控件,可以放在另外一個控件的上面,下面,或是左邊或者右邊。子控件可以相對於父控件(相對布局容器)放置,包括放置在布局的頂部,底部,左部或右部邊緣。

相對布局子控件位置使用規則來定義。這些規則定義了相對布局內的控件如何顯示。相對布局的完整規則列表請參見RelativeLayout類的android SDK文檔。相關的用於XML資源的XML屬性也可以在文檔中找到。

注意:規則要求每個子控件恰當地設置了它的id屬性。

一個簡單的相對布局

相對布局最好使用例子來解釋。假設我們要設計一個屏幕,包含一個EditText控件和一個Button控件。我們希望Button顯示在EditText控件的右邊。因此,我們可以定義一個包含兩個子控件的相對布局:子控件分別是EditText和Button。EditText控件可能有一個規則說:將這個控件放置在父控件(布局)的左手邊並且在第二個控件(Button)的左邊。同時,Button控件可能有一個規則:將這個控件放置在父控件(布局)的右手邊。

下面的圖片就展示了這樣一個相對布局,分別是豎屏和橫屏模式。這個相對布局有兩個子控件:一個EditText控件和一個Button控件。


定義帶有相對布局的XML資源文件

設計程序用戶界面最方便和可維護的方法是創建XML布局資源。這個方法極大地簡化了UI設計過程,將很多靜態創建和用戶界面控件的布局以及控件屬性的定義移到XML中去,取代了寫代碼。

XML布局資源必須存儲在/res/layout項目目錄下。讓我們看看前一節介紹的相對布局。這個布局資源文件,恰當地命名為/res/layout/relative.xml,在XML中如下定義:

  1. XMLns:android="http://schemas.android.com/apk/res/android"
  2. android:layout_height="fill_parent"
  3. android:layout_width="fill_parent">
  4. android:id="@+id/EditText01"
  5. android:hint="Enter some text..."
  6. android:layout_alignParentLeft="true"
  7. android:layout_width="fill_parent"
  8. android:layout_toLeftOf="@+id/Button01"
  9. android:layout_height="wrap_content">
  10. android:id="@+id/Button01"
  11. android:text="Press Here!"
  12. android:layout_width="wrap_content"
  13. android:layout_alignParentRight="true"
  14. android:layout_height="wrap_content">

回憶一下,在Activity中,只需要在onCreate()方法中添加一行代碼來在屏幕上加載和顯示布局資源。如果布局資源存放在/res/layout/relative.XML文件中,這行代碼應該是:

  1. setContentVIEw(R.layout.relative);

這個相對布局設置了寬和高填充整個屏幕,並且它的子控件配置了三個規則:

◆EditText01:對齊到布局的左手邊

◆EditText01:顯示在Button01的左邊

◆Button01:對齊到布局的右手邊

用程序定義相對布局

你也可以用程序創建和配置相對布局。這通過使用RelativeLayout類(android.widget.Relative)來實現。你會在RelativeLayout.LayoutParams類中找到具體的參數。同樣地,典型的布局參數(android.view.ViewGroup.LayoutParams),比如layout_height和layout_width,以及邊距參數(VIEwGroup.MarginLayoutParams),也能用在RelativeLayout對象上。

你必須用Java創建屏幕內容,然後向setContentView()方法提供一個包含所有要作為子視圖顯示的控件內容的父布局對象,而不是像前面所示直接使用setContentView()方法來加載布局資源。在這裡,你的父布局就是相對布局。例如,下面的代碼示例了如何用程序在活動中實例化一個RelativeLayout並且在它的onCreate()方法中向它添加一個TextVIEw和一個Button控件,就像前面一節展示的布局一樣:

  1. public void onCreate(Bundle savedInstanceState) {
  2. super.onCreate(savedInstanceState);
  3. // setContentVIEw(R.layout.relative);
  4. EditText ed = new EditText(this);
  5. RelativeLayout.LayoutParams params = new RelativeLayout.LayoutParams(LayoutParams.FILL_PARENT,
  6. LayoutParams.WRAP_CONTENT);
  7. params.addRule(RelativeLayout.ALIGN_PARENT_LEFT);
  8. // use same id as defined when adding the button
  9. params.addRule(RelativeLayout.LEFT_OF, 1001);
  10. ed.setLayoutParams(params);
  11. ed.setHint("Enter some text....");
  12. Button but1 = new Button(this);
  13. RelativeLayout.LayoutParams params2 = new RelativeLayout.LayoutParams(LayoutParams.WRAP_CONTENT,
  14. LayoutParams.WRAP_CONTENT);
  15. params2.addRule(RelativeLayout.ALIGN_PARENT_RIGHT);
  16. but1.setLayoutParams(params2);
  17. but1.setText("Press Here!");
  18. // give the button an id that we know
  19. but1.setId(1001);
  20. RelativeLayout layout1 = new RelativeLayout(this);
  21. layout1.setLayoutParams(new LayoutParams(LayoutParams.FILL_PARENT, LayoutParams.FILL_PARENT));
  22. layout1.addVIEw(ed);
  23. layout1.addVIEw(but1);
  24. setContentVIEw(layout1);
  25. }

讓我們仔細看一下上面的Java代碼。首先我們像平常一樣創建一個EditText控件。我們給它一些RelativeLayout參數,然後設置它的規則。在這裡,我們為EditText控件創建2個規則。

接下來,我們創建一個Button控件並且設置它的規則(對齊到父布局右邊緣)。最後,我們創建一個RelativeLayout對象,設置它的參數,使用addView()方法添加兩個控件並且使用setContentVIEw()方法加載顯示相對布局。

如你所見,當越來越多的控件要添加到屏幕時,代碼量會很快地增長。為了易組織和可維護性,用程序定義並使用布局最好是用在特殊情況而不是一般情況。


探討相對布局的重要特性和屬性

現在讓我們來討論一些幫助配置相對布局和它的子控件的屬性。一些特定的屬性用於相對布局,也就是子規則,包括:

◆用於子控件在父布局中居中的規則,包括:水平居中,垂直居中,或者兩者皆居中。

◆用於子控件在父布局中排布的規則,包括:在頂部,底部,左,右邊緣放置。

◆用於子控件相對於其它子控件排布的規則,包括:在另一個控件頂,底,左,右邊緣放置。

◆用於子控件相對於其它子控件放置的規則,包括:在另一個控件上面,底下,左邊或右邊放置。

同樣的,通用的 VIEwGroup-style屬性也可以應用於相對布局。這些屬性包括:

◆通用布局參數比如layout_height(必須)和layout_width(必須)(類:VIEwGroup.LayoutParams)

◆邊距布局參數比如margin_top, margin_left, margin_right和margin_bottom (類:VIEwGroup. MarginLayoutParams)

布局參數比如layout_height和layout_width (類:VIEwGroup.LayoutParams)

現在讓我們來實踐這些規則吧!

使用布局規則

讓我們看一個更復雜的屏幕設計。為了這個練習,我們從查看最終屏幕效果開始,然後再倒回來工作,並討論這個相對布局的特性和為了達到最終結果所使用的規則。

我們希望設計一個如下所示的屏幕:

為了使用相對布局來設計這個屏幕,參考以下步驟。

步驟1:在你的XML資源文件中定義一個相對布局

首先,在你的XML資源文件中定義一個相對布局。因為你想這個布局控制整個屏幕的內容,所以設置它的高和寬屬性為fill_parent。你的XML資源文件應該看起來像這樣:

  1. XMLns:android="http://schemas.android.com/apk/res/android"
  2. android:layout_height="fill_parent"
  3. android:layout_width="fill_parent">

步驟2:確定子控件

接下來,我們確定需要什麼樣的子控件。在這裡,我們需要7個TextVIEw控件(第個一種顏色)。像平常一樣配置它們,設置文本屬性為字符串,背景色,字號等等。將這些控件都放到相對布局中。

步驟3:定義相對布局規則

接下來,我們為每個子控件定義規則,以使它們被繪制到合適的位置:

◆RED TextVIEw控件沒有特別的設置。默認地,這個控件將會被繪制到父布局的左上角。

◆ORANGE TextVIEw控件在父布局中水平居中。因為所有控件默認都會靠向屏幕的左上角,這有效地將控件定位到父布局的邊緣頂部中間。

◆YELLOW TextVIEw控件定位到父布局的右邊緣。因為所有控件默認都會靠向屏幕的左上角,這有效的定位控件到父布局的右上角。

◆GREEN TextView控件在父布局中垂直居中,並且設置為顯示在BLUE TextVIEw控件的左邊。

◆BLUE TextVIEw控件被定位在父控件的中心(水平和垂直)。這將它顯示在屏幕的中心位置。

◆INDIGO TextView控件在父局中垂直居中,並且設置為顯示在BLUE TextVIEw控件的右邊。

◆VIOLET TextVIEw控件被定位到父布局的底部邊緣。它的寬度也被設置為填滿父容器,允許它延伸到屏幕的底部邊緣。

如果你在你的XML資源文件中定義這些規則,XML文件代碼將看起如下:

  1. XMLns:android="http://schemas.android.com/apk/res/android"
  2. android:layout_height="fill_parent"
  3. android:layout_width="fill_parent">
  4. android:text="RED"
  5. android:id="@+id/TextVIEw01"
  6. android:layout_height="wrap_content"
  7. android:background="#f00"
  8. android:gravity="center"
  9. android:textColor="#000"
  10. android:layout_width="wrap_content"
  11. android:padding="25dp">
  12. android:text="ORANGE"
  13. android:layout_height="wrap_content"
  14. android:background="#ffa500"
  15. android:gravity="center"
  16. android:textColor="#000"
  17. android:id="@+id/TextVIEw02"
  18. android:layout_width="wrap_content"
  19. android:layout_centerHorizontal="true"
  20. android:padding="25dp">
  21. android:text="YELLOW"
  22. android:layout_height="wrap_content"
  23. android:background="#ffff00"
  24. android:gravity="center"
  25. android:textColor="#000"
  26. android:id="@+id/TextVIEw03"
  27. android:layout_width="wrap_content"
  28. android:layout_alignParentRight="true"
  29. android:padding="25dp">
  30. android:text="GREEN"
  31. android:layout_height="wrap_content"
  32. android:background="#0f0"
  33. android:gravity="center"
  34. android:textColor="#000"
  35. android:id="@+id/TextVIEw04"
  36. android:layout_width="wrap_content"
  37. android:layout_toLeftOf="@+id/TextVIEw05"
  38. android:padding="25dp"
  39. android:layout_centerVertical="true">
  40. android:text="BLUE"
  41. android:layout_height="wrap_content"
  42. android:background="#00f"
  43. android:gravity="center"
  44. android:textColor="#fff"
  45. android:id="@+id/TextVIEw05"
  46. android:layout_width="wrap_content"
  47. android:layout_centerInParent="true"
  48. android:layout_margin="10dp"
  49. android:padding="25dp">
  50. android:text="INDIGO"
  51. android:layout_height="wrap_content"
  52. android:gravity="center"
  53. android:textColor="#fff"
  54. android:id="@+id/TextVIEw06"
  55. android:layout_width="wrap_content"
  56. android:layout_toRightOf="@+id/TextVIEw05"
  57. android:background="#4b0082"
  58. android:padding="25dp"
  59. android:layout_centerVertical="true">
  60. android:text="VIOLET"
  61. android:layout_height="wrap_content"
  62. android:background="#ee82ee"
  63. android:gravity="center"
  64. android:textColor="#000"
  65. android:id="@+id/TextVIEw07"
  66. android:layout_alignParentBottom="true"
  67. android:layout_width="fill_parent"
  68. android:padding="25dp">


相對布局使用技巧

◆這裡是一些使用相對布局的技巧。

◆相對布局的子控件必須有唯一的id屬性以使規則正確應用。

◆當心循環規則。循環規則發生在兩個控件具有互相指向的規則時。如果你在布局設計中使用了循環規則,你將會得到以下錯誤信息:

IllegalStateException: Circular dependencIEs cannot exist in a RelativeLayout(相對布局中不允許存在循環依賴)

◆回憶一下相對布局規則的應用被一次處理是很有用的

◆保持你的相對布局規則最小化。這減小了循環規則的機率並且使得你的布局更加可維護和靈活。

◆一般地,記住測試一下你的布局設計在橫屏和豎屏模式下,以及在不同的屏幕大小和解決方案下是不是符合預期的。

◆使用相對布局代替嵌套線性布局以改進程序性能和響應能力。

總結

android程序用戶界面使用布局來定義,相對布局是用於使得程序屏幕更加靈活和強大的布局類型之一。相對布局允許子控件相對於其它子控件和相對於父控件(邊緣以及水平和垂直居中)來組織。一旦你掌握了如何使用相對布局的規則,它們可以有非常多的用處,使你能夠創建復雜布局,而不需要過多嵌套不同的布局,因此也改進了性能。

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