1

新しい Android Design Support Library を使用しています。アプリでスクロール可能で折りたたみ可能なヘッダーを作成する必要があります。Lollipop を使用する場合は、すべて問題ありません。でもキットカットではできない

これは私が必要なようです

ここに画像の説明を入力

キットカット

ここに画像の説明を入力

ルート レイアウト (Coordinator) などに FitsSystemWindows="true" を追加すると、次の結果が得られました。

(申し訳ありませんが、画像とリンクを投稿するのに十分な評価がありません)

  • Android 5 には AppBarLayout の下に白いゾーンがあります

ここに画像の説明を入力

  • KitKat ではステータス バーが重なっていませんが、これは醜いです。

ここに画像の説明を入力

<android.support.design.widget.CoordinatorLayout
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">

<android.support.design.widget.AppBarLayout
    android:id="@+id/app_bar_layout"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">

    <android.support.design.widget.CollapsingToolbarLayout
        android:id="@+id/collapsing_toolbar"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:fitsSystemWindows="true"
        app:contentScrim="?attr/colorPrimary"
        app:expandedTitleMarginEnd="64dp"
        app:expandedTitleMarginStart="48dp"
        app:layout_scrollFlags="scroll|exitUntilCollapsed">

        <com.facebook.drawee.view.SimpleDraweeView
            android:id="@+id/header"
            android:layout_width="match_parent"
            android:layout_height="220dp"
            android:fitsSystemWindows="true"
            app:layout_collapseMode="parallax"/>

        <android.support.v7.widget.Toolbar
            android:id="@+id/toolbar"
            android:layout_width="match_parent"
            android:layout_height="?attr/actionBarSize"
            app:layout_collapseMode="pin"
            app:popupTheme="@style/ThemeOverlay.AppCompat.Light"/>

    </android.support.design.widget.CollapsingToolbarLayout>
    ...
    </android.support.design.widget.CoordinatorLayout>

また、Translucent statusBar を使用しています。あなたは私を助けることができます?

4

1 に答える 1

0

KITKAT でオーバーライドできないデフォルトの Android OS テーマ

Android 5.0 と 4.4.4(KITKAT) で表示されているものは、異なる OS バージョンのスタイルとテーマに従って正しいものです。

ある種のAndroidサポートライブラリでは、Android OSの下位バージョンにその未来を提供し​​ません

于 2015-08-11T10:34:36.027 に答える