如何让第二个导航抽屉不覆盖应用栏?
How to make the second navigation drawer NOT cover the app bar?
我一直在处理这个 DrawerLayout 和 NavigationViews,我似乎无法解决这个问题。根据 google 指南,第一个导航栏应该覆盖应用栏,第二个不应该。
我如何做到这一点?无论我做什么,要么让他们都被覆盖,要么他们都不覆盖应用程序栏。
由于导航视图非常新,我无法通过谷歌搜索和探索得到任何合适的答案 overflow.com。非常感谢任何指南、帮助、教程、示例...。
先谢谢了。
这是我的activity.xml
<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">
<!-- As the main content view, the view below consumes the entire
space available using match_parent in both dimensions. -->
<LinearLayout
android:orientation="vertical"
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent"
>
<include
android:id="@+id/app_bar"
layout="@layout/app_bar">
</include>
</LinearLayout>
<android.support.design.widget.NavigationView
android:id="@+id/nav_draw"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="start"
app:headerLayout="@layout/drawer_header"
app:menu="@menu/drawer"/>
<android.support.design.widget.NavigationView
android:id="@+id/second_nav_draw"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="end"
/>
</android.support.v4.widget.DrawerLayout>
我不知道 NavigationView,但对于其他视图,一个简单的边距曾经可以工作。尝试:
android:layout_marginTop="?attr/actionBarSize"
我一直在处理这个 DrawerLayout 和 NavigationViews,我似乎无法解决这个问题。根据 google 指南,第一个导航栏应该覆盖应用栏,第二个不应该。
我如何做到这一点?无论我做什么,要么让他们都被覆盖,要么他们都不覆盖应用程序栏。
由于导航视图非常新,我无法通过谷歌搜索和探索得到任何合适的答案 overflow.com。非常感谢任何指南、帮助、教程、示例...。
先谢谢了。
这是我的activity.xml
<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">
<!-- As the main content view, the view below consumes the entire
space available using match_parent in both dimensions. -->
<LinearLayout
android:orientation="vertical"
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent"
>
<include
android:id="@+id/app_bar"
layout="@layout/app_bar">
</include>
</LinearLayout>
<android.support.design.widget.NavigationView
android:id="@+id/nav_draw"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="start"
app:headerLayout="@layout/drawer_header"
app:menu="@menu/drawer"/>
<android.support.design.widget.NavigationView
android:id="@+id/second_nav_draw"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="end"
/>
</android.support.v4.widget.DrawerLayout>
我不知道 NavigationView,但对于其他视图,一个简单的边距曾经可以工作。尝试:
android:layout_marginTop="?attr/actionBarSize"