Android 佈局容器、經常使用控件和屬性,相信每一個開發者都能滾瓜爛熟,開發排版 layout 時也能適當取捨。可是,本文中介紹的這兩個常見的設計場景,其特殊的實現技巧可能你真的未曾用過。php
設計場景:android
看到這樣的效果,可能你會不假思索地選擇 LinearLayout
容器,同時分配 children 的 weight 屬性。不錯,這樣實現確實很簡單。可是,一般界面上還有其餘元素,父容器通常使用的是 RelativeLayout
,若是再選擇使用一層 LinearLayout
包裹這兩個 Button 的話,無疑會額外增長視圖層次(View Hierarchy),加大性能渲染壓力。其實,大可沒必要這樣作,RelativeLayout
也能讓兩個 children 水平居中等分寬度。微信
實現方式以下:佈局
<?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" >
<Button android:id="@+id/world" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignParentRight="true" android:layout_alignTop="@+id/hello" android:layout_toRightOf="@+id/view" android:text="First" />
<View android:id="@+id/view" android:layout_width="0dp" android:layout_height="1dp" android:layout_centerHorizontal="true" />
<Button android:id="@+id/hello" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignParentLeft="true" android:layout_toLeftOf="@+id/view" android:text="Second" />
</RelativeLayout>複製代碼
設計場景:性能
簡單說明一下,這種界面,或者說相似的界面很常見,中間內容長度不固定,或者說相同內容在不一樣設備上屏幕佔比不一致,致使底部操做按鈕位置也不盡相同。好比,這個界面的產品重點是但願用戶可以讀完協議內容,而後再作出下一步操做。也就是說,你不能作成這個樣子:spa
能夠對比着前面那張圖看一下,產品但願的實現效果是:當屏幕空間足夠大(或者說中間內容較少)時,操做按鈕顯示在屏幕底部;當屏幕空間不足(或者說中間內容較多)時,之內容顯示爲主,操做按鈕位於屏幕以外,向上滾動方可進入屏幕可見範圍,而後進行下一步操做。設計
理解需求以後,咱們再來看一下實現方式:code
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:fillViewport="true">
<LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="vertical">
<TextView android:layout_width="match_parent" android:layout_height="wrap_content" android:gravity="center" android:padding="8dp" android:text="用戶協議" android:textAppearance="?android:attr/textAppearanceMedium" />
<View android:layout_width="match_parent" android:layout_height="1dp" android:layout_marginLeft="16dp" android:layout_marginRight="16dp" android:layout_marginTop="8dp" android:background="@color/colorPrimary" />
<TextView android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_weight="1" android:padding="16dp" android:text="@string/content" />
<LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:background="@android:drawable/bottom_bar" android:gravity="center_vertical">
<Button android:layout_width="0dp" android:layout_height="wrap_content" android:layout_weight="1" android:text="贊成" />
<Button android:layout_width="0dp" android:layout_height="wrap_content" android:layout_weight="1" android:text="拒絕" />
</LinearLayout>
</LinearLayout>
</ScrollView>複製代碼
注意兩個地方,第一個是設置 ScrollView 的 android:fillViewport="true"
屬性,保證內容佔據整個屏幕空間;第二個地方是,中間部分,也就是例子中的 TextView
巧妙運用 android:layout_weight
屬性,實現高度上的自適應,保證後面的操做按鈕部分可以按照咱們指望的要求正確展現。cdn
好好領會一下,相信咱們必定可以有所收穫。而且你會發現,實際開發過程當中可以運用上述兩個佈局技巧的地方會有不少。固然,讀完此文,若是你還用過其餘比較特別的技巧的話,不妨留言交流一下。xml
安卓筆記俠:專一於 Android 開發中的原創筆記記錄。
獨立博客:yifeng.studio/