使用 CoordinatorLayout 在向下滚动时隐藏我的工具栏。
工具栏认为它是隐藏的 - 但它不是。
有谁知道为什么会这样?
注意:我将状态栏设置为半透明以具有适当的材质抽屉。使状态栏成为纯色不是我正在寻找的解决方案 - 当然除非这是打算如何使用。
答案 0 :(得分:2)
我尝试将状态栏颜色设置为primarydark,然后在打开抽屉时状态栏不能透明,否则工具栏会再次出现。
经过两天的工作,我发现如果我删除 CoordinatorLayout 中的android:fitsSystemWindows="true"
,它就会解决。
<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" />
答案 1 :(得分:1)