其他分享
首页 > 其他分享> > android – 状态栏下可见“隐藏”工具栏

android – 状态栏下可见“隐藏”工具栏

作者:互联网

向下滚动时使用CoordinatorLayout隐藏我的工具栏.

工具栏认为它是隐藏的 – 但事实并非如此.

有谁知道为什么会这样?

enter image description here

注意:我将状态栏设置为半透明以具有适当的材料抽屉.使状态栏成为纯色不是我正在寻找的解决方案 – 当然除非这是打算如何使用.

解决方法:

我尝试将状态栏颜色设置为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" />

标签:android,android-layout,material-design,androiddesignsupport
来源: https://codeday.me/bug/20190628/1314617.html