我正在特灵用设计支持库做一个导航抽屉。在我的activity_main中我写了这段代码。
<?xml version="1.0" encoding="utf-8"?>
<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:fitsSystemWindows="true">
<LinearLayout
android:id="@+id/layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<include
android:id="@+id/toolbar"
layout="@layout/toolbar"/>
<FrameLayout
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
</LinearLayout>
<android.support.design.widget.NavigationView
android:id="@+id/navigation_view"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="start"
app:headerLayout="@layout/header_layout"
app:menu="@menu/menu_drawer"/>
</android.support.v4.widget.DrawerLayout>
当我运行我的应用程序,它的工作,并显示导航抽屉,但它的下方的状态栏,而不是上方。我如何移动它停留在状态栏上方?
3条答案
按热度按时间eqfvzcg81#
只需简单地添加android:fitsSystemWindows=“false”到DrawerLayout将解决这个问题
kxeu7u2r2#
使您的活动为全屏克服状态栏如下或任何其他方法可在WWW上:但是把抽屉放在状态栏上是不好的。
kyks70gy3#
在导航视图xml上使用此: