Android 日常開發中,兩個非常實用的佈局技巧

亦楓發表於2017-03-08

Android 佈局容器、常用控制元件和屬性,相信每個開發者都能倒背如流,開發排版 layout 時也能適當取捨。但是,本文中介紹的這兩個常見的設計場景,其特殊的實現技巧可能你真的不曾用過。

RelativeLayout 水平居中等分


設計場景:

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>複製程式碼

ScrollView 內容適配技巧


設計場景:

Android 日常開發中,兩個非常實用的佈局技巧

簡單說明一下,這種介面,或者說類似的介面很常見,中間內容長度不固定,或者說相同內容在不同裝置上螢幕佔比不一致,導致底部操作按鈕位置也不盡相同。比如,這個介面的產品重點是希望使用者能夠讀完協議內容,然後再做出下一步操作。也就是說,你不能做成這個樣子:

Android 日常開發中,兩個非常實用的佈局技巧

可以對比著前面那張圖看一下,產品希望的實現效果是:當螢幕空間足夠大(或者說中間內容較少)時,操作按鈕顯示在螢幕底部;當螢幕空間不足(或者說中間內容較多)時,以內容顯示為主,操作按鈕位於螢幕之外,向上滾動方可進入螢幕可見範圍,然後進行下一步操作。

理解需求之後,我們再來看一下實現方式:

<?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 屬性,實現高度上的自適應,保證後面的操作按鈕部分能夠按照我們期望的要求正確展示。

好好領會一下,相信我們一定能夠有所收穫。並且你會發現,實際開發過程中能夠運用上述兩個佈局技巧的地方會有很多。當然,讀完此文,如果你還用過其他比較特別的技巧的話,不妨留言交流一下。

歡迎關注我的微信公眾號


安卓筆記俠:專注於 Android 開發中的原創筆記記錄。

獨立部落格:yifeng.studio/

Android 日常開發中,兩個非常實用的佈局技巧

相關文章