android:windowLightStatusBar和Navigation Drawer之间的问题

时间:2016-09-07 15:41:57

标签: java android

我已将android:windowLightStatusBar设置为true,以便在我的应用内的状态栏上显示黑色图标和文字,如下图所示。

enter image description here

但是,导航抽屉不再适合屏幕,请参见下图。这是因为为确保android:windowLightStatusBar有效,android:windowTranslucentStatus必须设置为false。任何解决方法?像Google日历这样的应用似乎可以正常使用此功能。

enter image description here

这是我的主要活动的XML

<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:background="@color/colorToolbarBackground"
    android:fitsSystemWindows="true"
  >

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical">

        <include layout="@layout/app_bar" />

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


    <android.support.design.widget.NavigationView

        android:id="@+id/navigation_view"
        android:background="@color/colorWhite"
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:layout_gravity="start"

        app:menu="@menu/navigation_view_items" />

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

1 个答案:

答案 0 :(得分:1)

layout.xml

中删除此行
android:fitsSystemWindows="true"

并将其添加到styles-v21.xml

<style name="AppTheme.NoActionBar">
    <item name="windowActionBar">false</item>
    <item name="windowNoTitle">true</item>
    <item name="android:windowDrawsSystemBarBackgrounds">true</item>
    <item name="android:statusBarColor">@android:color/transparent</item>
</style>

styles.xml

中的

<style name="AppTheme.NoActionBar">
    <item name="windowActionBar">false</item>
    <item name="windowNoTitle">true</item>
</style>

Manifest.xml中将此内容添加到您的Activity Main

android:theme="@style/AppTheme.NoActionBar"

AppBarLayout标记包装到此:

<android.support.design.widget.CoordinatorLayout 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:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fitsSystemWindows="true"
    tools:context=".MainActivity">

    <!-- Here AppBarLayout ecc -->

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

<!-- Here NavigationView ecc -->

AppBarLayout必须有

android:theme="@style/AppTheme.AppBarOverlay"