Android-如何更改NavigationView的状态栏颜色?

时间:2018-12-21 18:57:28

标签: android navigation-drawer android-styles android-navigationview android-statusbar

我已尽一切努力实现此功能,但失败了,“ drawerLayout.setStatusBarBackground()”不起作用,“ android:windowTranslucentStatus:true”不起作用。

在这里,我现在所能做的就是第一张图像,第二张是所需的效果:

All I can do now

Desired effect

非常感谢您。

2 个答案:

答案 0 :(得分:1)

问题是NavigationView扩展了ScrimInsetsFrameLayout,从而监听了窗口插图的变化并在布局中添加了暗线。

同一个ScrimInsetsFrameLayout至少在insetForeground中具有可样式化的属性com.google.android.material:material:1.1.0-alpha07

因此,如果您使用:

    <item name="android:windowDrawsSystemBarBackgrounds">true</item>
    <item name="android:windowTranslucentStatus">true</item>
    <item name="android:statusBarColor">@color/transparent</item>

您只需要将insetForeground设置为@color/transparent

例如:

<com.google.android.material.navigation.NavigationView
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="wrap_content"
    android:layout_height="match_parent"
    app:insetForeground="@color/transparent"/>

警告: 如果您设置android:fitsSystemWindows="true",则此操作将无效。

警告: 使用这种方法意味着您必须手动管理插图,因为您使用的是半透明状态而不适合系统窗口。

答案 1 :(得分:0)

您需要将android:fitsSystemWindows="true"添加到android.support.v4.widget.DrawerLayoutandroid.support.design.widget.NavigationView

例如,代码看起来像

<?xml version="1.0" encoding="utf-8"?>
<!-- Use DrawerLayout as root container for activity -->
<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/drawer_layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fitsSystemWindows="true">

    <!-- Layout to contain contents of main body of screen (drawer will slide over this) -->
    <FrameLayout
        android:id="@+id/content_frame"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />

    <!-- Container for contents of drawer - use NavigationView to make configuration easier -->
    <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" />

</android.support.v4.widget.DrawerLayout>

输出将像(根据您的要求)

enter image description here