使用CoordinatorLayout在向下滾動時隱藏我的工具欄。「隱藏」工具欄在狀態欄中可見
工具欄認爲它已隱藏 - 但事實並非如此。
有沒有人明白爲什麼會發生這種情況?
注:我的狀態欄設置爲半透明至有適當的材料抽屜。使狀態欄變成純色不是我正在尋找的解決方案 - 當然,除非這是如何打算使用的。
使用CoordinatorLayout在向下滾動時隱藏我的工具欄。「隱藏」工具欄在狀態欄中可見
工具欄認爲它已隱藏 - 但事實並非如此。
有沒有人明白爲什麼會發生這種情況?
注:我的狀態欄設置爲半透明至有適當的材料抽屜。使狀態欄變成純色不是我正在尋找的解決方案 - 當然,除非這是如何打算使用的。
我嘗試設置狀態欄的顏色作爲primarydark,然後當抽屜被打開時,狀態欄不能是透明的,否則工具欄會再次出來。 經過兩天的工作,我發現如果我刪除android:fitsSystemWindows="true"
在我的CoordinatorLayout,它解決了。
<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:openDrawer="start">
<-- CoordinatorLayout is root of @layout/app_bar_home-->
<include
layout="@layout/app_bar_home"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<android.support.design.widget.NavigationView
android:id="@+id/nav_view"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="start"
android:fitsSystemWindows="true"
app:headerLayout="@layout/nav_header_home"
app:menu="@menu/activity_home_drawer" />
一直在尋找通過cheesesquare代碼相當長一段時間;如果我將android:statusBarColor設置爲透明,仍然有問題。使用摺疊工具欄佈局來隱藏工具欄可以隱藏工具欄,但如果我沒有任何要使用的特徵圖像怎麼辦? –