Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> Android開發實例 >> 第六講:用戶界面 View(二)

第六講:用戶界面 View(二)

編輯:Android開發實例

本講內容:常用Layout介紹: AbsoluteLayout和RelativeLayout

點此下載:Android學習指南第六講源代碼

3、絕對布局 AbsoluteLayout

絕對定位AbsoluteLayout,又可以叫做坐標布局,可以直接指定子元素的絕對位置,這種布局簡單直接,直觀性強,但是由於手機屏幕尺寸差別比較大,使用絕對定位的適應性會比較差。

下面我們舉一個例子看看:例子裡的機器人圖片大小是250X250,可以看到我們使用android:layout_x和android:layout_y來指定子元素的縱橫坐標。

  1. <?xml version=”1.0″ encoding=”utf-8″?> 
  2. <AbsoluteLayout android:id=”@+id/AbsoluteLayout01″  
  3. android:layout_width=”fill_parent”  
  4. android:layout_height=”fill_parent”  
  5. xmlns:android=”http://schemas.android.com/apk/res/android”  
  6. android:background=”#fff”> 
  7.  
  8. <ImageView 
  9. android:src=”@drawable/android”  
  10. android:layout_y=”40dip”  
  11. android:layout_width=”wrap_content”  
  12. android:layout_x=”35dip”  
  13. android:id=”@+id/ImageView01″  
  14. android:layout_height=”wrap_content”> 
  15. </ImageView> 
  16. <TextView 
  17. android:layout_height=”wrap_content”  
  18. android:layout_width=”fill_parent”  
  19. android:id=”@+id/TextView01″  
  20. android:text=”Android2.2 學習指南”  
  21. android:textColor=”#0f0″  
  22. android:textSize=”28dip”  
  23. android:layout_y=”330dip”  
  24. android:layout_x=”35dip“> 
  25. </TextView> 
  26. <TextView 
  27. android:layout_height=”wrap_content”  
  28. android:layout_width=”fill_parent”  
  29. android:id=”@+id/TextView02″  
  30. android:text=”圖文並茂,理論清晰,操作性強”  
  31. android:textColor=”#333″  
  32. android:textSize=”18dip”  
  33. android:layout_y=”365dip”  
  34. android:layout_x=”35dip“> 
  35. </TextView> 
  36. </AbsoluteLayout> 
  37.  

讓我們看一下在WQVGA的模擬器下的顯示效果:

再在WVGA800的模擬器下看看顯示效果:

Tip: 在絕對定位中,如果子元素不設置layout_x和layout_y,那麼它們的默認值是0,也就是說它會像在FrameLayout一樣這個元素會出現在左上角。

4、相對布局 RelativeLayout

相對布局 RelativeLayout 允許子元素指定它們相對於其父元素或兄弟元素的位置,這是實際布局中最常用的布局方式之一。它靈活性大很多,當然屬性也多,操作難度也大,屬性之間產生沖突的的可能性也大,使用相對布局時要多做些測試。

下面我們用相對布局再做一次上面的例子,首先放置一個圖片,其它兩個文本分別相對上一個元素定位:

  1. <?xml version=”1.0″ encoding=”utf-8″?> 
  2.  
  3. <RelativeLayout android:id=”@+id/RelativeLayout01″  
  4. android:layout_width=”fill_parent”  
  5. android:layout_height=”fill_parent”  
  6. android:background=”#fff”  
  7. xmlns:android=”http://schemas.android.com/apk/res/android”> 
  8.  
  9. <ImageView android:id=”@+id/ImageView01″  
  10. android:src=”@drawable/android”  
  11. android:layout_width=”fill_parent”  
  12. android:layout_height=”wrap_content”  
  13. android:layout_marginTop=”40dip”  
  14. </ImageView> 
  15. <TextView 
  16. android:layout_height=”wrap_content”  
  17. android:layout_width=”wrap_content”  
  18. android:id=”@+id/TextView01″  
  19. android:text=”Android2.2 學習指南”  
  20. android:textColor=”#0f0″  
  21. android:textSize=”28dip”  
  22. android:layout_below=”@id/ImageView01″  
  23. android:layout_centerHorizontal=”true”  
  24. android:layout_marginTop=”10dip”> 
  25. </TextView> 
  26. <TextView 
  27. android:layout_height=”wrap_content”  
  28. android:layout_width=”wrap_content”  
  29. android:id=”@+id/TextView02″  
  30. android:text=”圖文並茂,理論清晰,操作性強”  
  31. android:textColor=”#333″  
  32. android:textSize=”18dip”  
  33. android:layout_below=”@id/TextView01″  
  34. android:layout_centerHorizontal=”true”  
  35. android:layout_marginTop=”5dip“> 
  36. </TextView> 
  37. </RelativeLayout> 
  38.  

讓我們看一下在WQVGA的模擬器下的顯示效果:

再看一下在更大屏幕(WVGA800)模擬器上的顯示效果:

從上圖可以看到界面效果基本保持了一致,而不是像絕對定位一樣龜縮在左上角;同學們看到自動縮放的功能是采用了dip做單位帶來的好處。關於dip,不懂的同學可以看我在開發小知識裡寫的專門的文章。

下面介紹一下RelativeLayout用到的一些重要的屬性:

第一類:屬性值為true或false
android:layout_centerHrizontal                                           水平居中
android:layout_centerVertical                                            垂直居中
android:layout_centerInparent                                           相對於父元素完全居中
android:layout_alignParentBottom                                     貼緊父元素的下邊緣
android:layout_alignParentLeft                                          貼緊父元素的左邊緣
android:layout_alignParentRight                                        貼緊父元素的右邊緣
android:layout_alignParentTop                                          貼緊父元素的上邊緣
android:layout_alignWithParentIfMissing                            如果對應的兄弟元素找不到的話就以父元素做參照物

第二類:屬性值必須為id的引用名“@id/id-name”
android:layout_below                          在某元素的下方
android:layout_above                          在某元素的的上方
android:layout_toLeftOf                       在某元素的左邊
android:layout_toRightOf                     在某元素的右邊

android:layout_alignTop                      本元素的上邊緣和某元素的的上邊緣對齊
android:layout_alignLeft                      本元素的左邊緣和某元素的的左邊緣對齊
android:layout_alignBottom                 本元素的下邊緣和某元素的的下邊緣對齊
android:layout_alignRight                    本元素的右邊緣和某元素的的右邊緣對齊

第三類:屬性值為具體的像素值,如30dip,40px
android:layout_marginBottom              離某元素底邊緣的距離
android:layout_marginLeft                   離某元素左邊緣的距離
android:layout_marginRight                 離某元素右邊緣的距離
android:layout_marginTop                   離某元素上邊緣的距離

我們再把上面的例子重新做一遍,這一次多放一些屬性在裡面,大家試驗一下:

  1. <?xml version=”1.0″ encoding=”utf-8″?> 
  2.  
  3. <RelativeLayout android:id=”@+id/RelativeLayout01″  
  4. android:layout_width=”fill_parent”  
  5. android:layout_height=”fill_parent”  
  6. android:background=”#cfff” 色彩的設置是argb,第一個c是透明度  
  7. xmlns:android=”http://schemas.android.com/apk/res/android”> 
  8.  
  9. <ImageView android:id=”@+id/ImageView01″  
  10. android:src=”@drawable/android”  
  11. android:layout_width=”wrap_content”  
  12. android:layout_height=”wrap_content”  
  13. android:layout_marginTop=”40dip”  
  14. android:layout_centerHorizontal=”true”> 
  15. </ImageView> 
  16.  
  17. <TextView 
  18. android:layout_height=”wrap_content”  
  19. android:layout_width=”wrap_content”  
  20. android:id=”@+id/TextView01″  
  21. android:text=”Android2.2 學習指南”  
  22. android:textColor=”#0f0″  
  23. android:textSize=”28dip”  
  24. android:layout_below=”@id/ImageView01″  
  25. android:layout_centerHorizontal=”true”  
  26. android:layout_marginTop=”10dip”> 
  27. </TextView> 
  28.  
  29. <TextView 
  30. android:layout_height=”wrap_content”  
  31. android:layout_width=”wrap_content”  
  32. android:id=”@+id/TextView02″  
  33. android:text=”圖文並茂,理論清晰,操作性強”  
  34. android:textColor=”#333″  
  35. android:textSize=”18dip”  
  36. android:layout_below=”@id/TextView01″  
  37. android:layout_centerHorizontal=”true”  
  38. android:layout_marginTop=”5dip”> 
  39. </TextView> 
  40.  
  41. <TextView 
  42. android:layout_height=”wrap_content”  
  43. android:layout_width=”wrap_content”  
  44. android:id=”@+id/TextView03″  
  45. android:text=”alignTop”  
  46. android:textColor=”#333″  
  47. android:textSize=”18dip”  
  48. android:layout_alignTop=”@id/ImageView01″  和ImageView01上邊緣對齊  
  49. android:layout_centerHorizontal=”true”> 
  50. </TextView> 
  51.  
  52. <TextView 
  53. android:layout_height=”wrap_content”  
  54. android:layout_width=”wrap_content”  
  55. android:id=”@+id/TextView04″  
  56. android:text=”alignLeft”  
  57. android:textColor=”#333″  
  58. android:textSize=”18dip”  
  59. android:layout_alignLeft=”@id/ImageView01″  
  60. android:layout_centerHorizontal=”true”> 
  61. </TextView> 
  62.  
  63. <TextView 
  64. android:layout_height=”wrap_content”  
  65. android:layout_width=”wrap_content”  
  66. android:id=”@+id/TextView05″  
  67. android:text=”alignRight”  
  68. android:textColor=”#333″  
  69. android:textSize=”18dip”  
  70. android:layout_alignRight=”@id/ImageView01″  
  71. android:layout_centerHorizontal=”true”> 
  72. </TextView> 
  73.  
  74. <TextView 
  75. android:layout_height=”wrap_content”  
  76. android:layout_width=”wrap_content”  
  77. android:id=”@+id/TextView06″  
  78. android:text=”alignBottom”  
  79. android:textColor=”#333″  
  80. android:textSize=”18dip”  
  81. android:layout_alignBottom=”@id/ImageView01″  
  82. android:layout_centerHorizontal=”true”> 
  83. </TextView> 
  84. </RelativeLayout> 
  85.  

好吧今天就講到這裡。

轉自:http://android.yaohuiji.com/archives/tag/absolutelayout

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