我一直在处理这个DrawerLayout和NavigationViews,我似乎无法解决这个问题。根据谷歌指南,第一个导航栏应该覆盖应用栏,第二个导航栏不应该。
我是如何实现这一目标的?无论我做什么,要么使它们都覆盖,要么两者都不覆盖应用栏。
由于导航视图很新,我无法获得任何合适的答案谷歌搜索和探索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>
答案 0 :(得分:2)
我不了解NavigationView,但在其他视图中使用了一个简单的边距。尝试:
android:layout_marginTop="?attr/actionBarSize"