新しい 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 を使用しています。あなたは私を助けることができます?