17

我正在按照此处的示例将新的 Material Design Support 库的NavigationView集成到我的应用程序中。

我的总体布局如下所示:

活动.xml

<android.support.v4.widget.DrawerLayout
    android:fitsSystemWindows="true">

    <!-- main content -->

    <android.support.design.widget.NavigationView
        .. />

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

主题.xml

<style name="MyTheme" extends "Theme.AppCompat.Light.NoActionBar">
    <item name="android:statusBarColor">@android:color/transparent</item>
    <item name="android:windowDrawsSystemBarBackgrounds">true</item>
</style>

我的活动.java

onCreate(..) {
    ..
    // This color can be different depending on some conditions.
    DrawerLayout.setStatusBarBackground(color);
}

但是,我不断得到一个灰色的状态栏,并且NavigationView没有在状态栏下绘制。我认为灰色状态栏是因为我没有colorPrimaryDark在主题中定义自定义属性。但是,我假设DrawerLayout.setStatusBarBackground会覆盖并设置状态栏颜色。我找不到太多关于新的NavigationView. 有没有人有任何想法?

4

3 回答 3

7

在 values-v21/themes.xml 中添加 API 21+ 的样式:

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <style name="MyTheme" parent="Theme.AppCompat.Light.NoActionBar">
        <item name="android:statusBarColor">@android:color/transparent</item>
        <item name="android:windowDrawsSystemBarBackgrounds">true</item>
    </style>
</resources>

在 activity.xml 中,尝试设置android:fitsSystemWindows="true"您的NavigationView(除了DrawerLayout)。

于 2015-05-30T11:08:59.057 回答
4

对于每个为此苦苦挣扎的人,您的布局文件应该是这样的:

<android.support.v4.widget.DrawerLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    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">

    ...

    <android.support.design.widget.NavigationView
        android:id="@+id/nav_view"
        android:layout_height="match_parent"
        android:layout_width="wrap_content"
        android:layout_gravity="start"
        android:fitsSystemWindows="true"
        app:headerLayout="@layout/drawer_header"
        app:menu="@menu/menu_drawer"/>

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

你必须包括

android:fitsSystemWindows="true"

在 DrawerLayout 和 NavigationView 中。

于 2015-06-22T01:32:31.970 回答
3

叹息,我发现了我的问题。我们使用一些奇怪的抽象来在右侧添加一个调试抽屉。结果,整个视图层次结构实际上看起来像这样

<DrawerLayout id="debug">

    <LinearLayout id="debug_drawer" />

    <DrawerLayout id="nav_drawer" fitsSystemWindows="true">

        <NavigationView .... />

    </DrawerLayout>

</DrawerLayout>

所以我叫DrawerLayout.setStatusBarColor错了抽屉,fitsSystemWindows放错了抽屉。结果,窗口永远不会与状态栏交互:(

于 2015-06-01T19:41:48.223 回答