我最近用最近发布的设计支持库中的新NavigationView替换了我的导航抽屉,并且遇到了问题。我的风格有一个半透明的导航,允许内容在导航栏下滚动。使用新布局并且需要在状态栏顶部显示DrawerLayout上的fitsSystemWindows = true时,导航栏不再是透明的,而是可以看到主题背景的颜色here。我需要它类似于新更新的Google Photos App
我对主题的风格是:
<style name="Theme_Translucent_Main_Dark" parent="Theme.AppCompat.NoActionBar">
<item name="android:windowContentOverlay">@null</item>
<item name="android:windowTranslucentNavigation">@bool/translucent_nav_bar</item>
<item name="android:windowTranslucentStatus">false</item>
<item name="drawerArrowStyle">@style/DrawerArrowStyle</item>
<item name="android:windowDrawsSystemBarBackgrounds">true</item>
<item name="android:statusBarColor">@android:color/transparent</item>
</style>
并且布局的代码是
<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/drawerLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true">
<FrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<!-- Fragment container -->
<FrameLayout
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<android.support.v7.widget.Toolbar
android:id="@+id/toolBar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?colorPrimary"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
app:popupTheme="?toolBarPopupTheme" />
<include
android:id="@+id/uploadMenu"
layout="@layout/upload_menu"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="bottom|right"
android:layout_marginBottom="@dimen/upload_button_margin_bottom"
android:layout_marginRight="@dimen/upload_button_margin_right"
android:visibility="visible" />
</FrameLayout>
<android.support.design.widget.NavigationView
android:id="@+id/navigationView"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="start"
android:fitsSystemWindows="true"
app:headerLayout="@layout/nav_profile"
app:menu="@menu/menu_nav" />
我尝试过几种不同的方法,但是似乎没有一种方法可行。我觉得这应该是我想念的简单事情。任何帮助是极大的赞赏。