佈局百分比

Version >= 2.3

百分比支援庫提供 PercentFrameLayoutPercentRelativeLayout ,二 ViewGroups 提供了一種方便的方式來指定檢視尺寸和利潤率的方面百分比總體規模。

你可以通過向依賴項新增以下內容來使用百分比支援庫。

compile 'com.android.support:percent:25.3.1'

如果你想要顯示一個水平填充螢幕的檢視,但只有垂直一半的螢幕,那麼你將會跟隨它。

<android.support.percent.PercentFrameLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <FrameLayout
        app:layout_widthPercent="100%"
        app:layout_heightPercent="50%"
        android:background="@android:color/black" />

<android.support.percent.PercentFrameLayout>

你還可以使用以下程式碼在單獨的 XML 檔案中定義百分比:

<fraction name="margin_start_percent">25%</fraction>

並使用 @fraction/margin_start_percent 在你的佈局中引用它們。

它們還包含通過 app:layout_aspectRatio 設定自定義寬高比的功能。
這允許你僅設定單個尺寸,例如僅設定寬度,並且將根據你定義的縱橫比自動確定高度,無論是 4:3 還是 16:9,甚至是 1:1 的正方形縱橫比。

例如:

 <ImageView
    app:layout_widthPercent="100%"
    app:layout_aspectRatio="178%"
    android:scaleType="centerCrop"
    android:src="@drawable/header_background"/>