Android突擊:實現螢幕四角和置中擺放控制項的布局

來源:互聯網
上載者:User

標籤:

要實現這樣的布局,其實就是將螢幕縱向三等分,上下的進行平分就好啦。用:Iienarlayout實現。代碼:
 
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:orientation="vertical" android:layout_width="fill_parent"
  4. android:layout_height="fill_parent">
  5. <!-- 上部 -->
  6. <LinearLayout android:orientation="horizontal"
  7. android:layout_width="fill_parent" android:layout_height="fill_parent"
  8. android:layout_weight="1">
  9. <LinearLayout android:orientation="vertical"
  10. android:layout_width="fill_parent" android:layout_height="fill_parent"
  11. android:layout_weight="1">
  12. <Button android:layout_width="wrap_content"
  13. android:layout_height="wrap_content" android:text="左上按鈕"
  14. android:layout_gravity="left" />
  15. </LinearLayout>
  16. <LinearLayout android:orientation="vertical"
  17. android:layout_width="fill_parent" android:layout_height="fill_parent"
  18. android:layout_weight="1">
  19. <Button android:layout_width="wrap_content"
  20. android:layout_height="wrap_content" android:text="右上按鈕"
  21. android:layout_gravity="right" />
  22. </LinearLayout>
  23. </LinearLayout>
  24. <!-- 中部 -->
  25. <LinearLayout android:orientation="vertical"
  26. android:layout_width="fill_parent" android:layout_height="fill_parent"
  27. android:layout_weight="1" android:gravity="center">
  28. <Button android:layout_width="wrap_content"
  29. android:layout_height="wrap_content" android:text="中心按鈕" />
  30. </LinearLayout>
  31. <!-- 底部 -->
  32. <LinearLayout android:orientation="horizontal"
  33. android:layout_width="fill_parent" android:layout_height="fill_parent"
  34. android:layout_weight="1">
  35. <LinearLayout android:orientation="vertical"
  36. android:layout_width="fill_parent" android:layout_height="fill_parent"
  37. android:layout_weight="1" android:gravity="left|bottom">
  38. <Button android:layout_width="wrap_content"
  39. android:layout_height="wrap_content" android:text="左下按鈕" />
  40. </LinearLayout>
  41. <LinearLayout android:orientation="vertical"
  42. android:layout_width="fill_parent" android:layout_height="fill_parent"
  43. android:layout_weight="1" android:gravity="right|bottom">
  44. <Button android:layout_width="wrap_content"
  45. android:layout_height="wrap_content" android:text="右下按鈕"
  46. />
  47. </LinearLayout>
  48. </LinearLayout>
  49. </LinearLayout>
weight屬性比較重要的,若weight值都相等,相當於等分,weight值越大,占的比重越小。



















來自為知筆記(Wiz)

Android突擊:實現螢幕四角和置中擺放控制項的布局

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.