我找到了很好的教程 教会如何在Android App中添加左右导航抽屉。
https://updateunlimited.blogspot.com/2015/12/double-sided-nav-drawers.html
只需一个主要活动即可在空项目中运行。 但是我想在第二个活动中使用这个解决方案。 我在菜单目录中创建了文件activity_right_drawer.xml。 我在second_activity.xml中添加了第二个NavigationView
<?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"
tools:openDrawer="start">
<include
layout="@layout/app_bar_kategorie"
android:layout_width="match_parent"
android:layout_height="match_parent"
/>
<android.support.design.widget.NavigationView
android:id="@+id/nav_view"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="start"
android:fitsSystemWindows="true"
android:background="#2A3E6B"
app:itemTextColor="#eee"
app:itemIconTint="#eee"
app:headerLayout="@layout/nav_header_main"
app:menu="@menu/activity_main_drawer" />
<android.support.design.widget.NavigationView
android:id="@+id/nav_right_view"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="end"
android:fitsSystemWindows="true"
app:headerLayout="@layout/nav_header_main"
app:menu="@menu/activity_right_drawer" />
</android.support.v4.widget.DrawerLayout>
但是文件main.xml引发了问题 教程说要将项添加到main.xml
<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<item
android:id="@+id/action_openRight"
android:orderInCategory="100"
android:title="@string/action_settings"
android:icon="@drawable/ic_open_right"
app:showAsAction="always" />
</menu>
此文件仅适用于MainActivity
而不适用于secondActivity。
如何为secondActivity创建类似main.xml的文件
并告诉我second_main.xml是secondActivity的文件
添加FrameLayout之类的 Two Navigation Drawer on same Activity 没有帮助,否则我需要使用NavigationView而不是ListView