Android 当我将半透明标志设置为statusbar时,navigationview上还有一个附加的statusbar覆盖

Android 当我将半透明标志设置为statusbar时,navigationview上还有一个附加的statusbar覆盖,android,material-design,statusbar,Android,Material Design,Statusbar,下面是我的xml布局文件: <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" android:id="@+id/sample_main_layout" android:layout_width="match_parent"

下面是我的xml布局文件:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
          xmlns:app="http://schemas.android.com/apk/res-auto"
          android:id="@+id/sample_main_layout"
          android:layout_width="match_parent"
          android:layout_height="match_parent"
          android:orientation="vertical">

<android.support.v7.widget.Toolbar
    android:id="@+id/toolbar"
    android:layout_width="match_parent"
    android:layout_height="?attr/actionBarSize"
    android:background="?attr/colorPrimary"
    app:theme="@style/ThemeOverlay.AppCompat.Dark" />

<android.support.v4.widget.DrawerLayout
    android:id="@+id/drawer_layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <FrameLayout
        android:id="@+id/container"
        android:layout_width="match_parent"
        android:layout_height="match_parent" >

        <TextView
            android:padding="16dp"
            android:text="NavigationView在Toolbar下方"
            android:gravity="center"
            android:layout_width="match_parent"
            android:layout_height="match_parent" />
    </FrameLayout>

    <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_drawer_layout_one"
        app:menu="@menu/activity_drawer_layout_one_drawer"/>

</android.support.v4.widget.DrawerLayout>
我在谷歌上搜索了很长时间,但失败了。希望你们能帮我


提前感谢

我猜remove
android:fitsSystemWindows=“true
@Jaydeppatel谢谢你的快速建议,我尝试了你所说的,但没有改变。我还尝试将false设置为android:fitsSystemWindows也失败。将抽屉布局放在所有视图的父布局中。但我希望drawlayout就在工具栏下
    public static void transparentBars(Window window, int statusBarColor, int navBarColor) {
    window.requestFeature(Window.FEATURE_NO_TITLE);
    window.clearFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS
            | WindowManager.LayoutParams.FLAG_TRANSLUCENT_NAVIGATION);
    window.getDecorView().setSystemUiVisibility(View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
            | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION
            | View.SYSTEM_UI_FLAG_LAYOUT_STABLE
            | View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR);
    window.addFlags(WindowManager.LayoutParams.FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS);
    window.setStatusBarColor(statusBarColor);
    window.setNavigationBarColor(navBarColor);
}