是否有可能在Android中创建多个导航抽屉活动?

时间:2017-06-30 06:41:51

标签: android android-navigation-drawer

我正在开发一个Android应用程序,我在其中创建了两个按钮(Button1和Button2)。单击Button1,将打开导航抽屉活动。我成功地做到了这一切。但是我希望每当用户点击Button2时,将显示另一个带有不同菜单项的导航抽屉活动。是否有可能在Android中创建多个导航抽屉活动? 各种帮助表示赞赏。

2 个答案:

答案 0 :(得分:1)

如果您使用的是NavigationView,则可以创建两个菜单,一个用于Button1,另一个用于Button2。然后,当您单击按钮以编程方式更改导航视图的内容时,可以使用NavigationView.inflateMenu(R.menu.the_relevant_menu)

希望这会有所帮助。 抱歉我的英文。

答案 1 :(得分:0)

是的,您可以在不同的活动中创建多个,但您只能在活动中创建两个导航。

添加

<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/home_content"></include>

    <FrameLayout
        android:id="@+id/navigation_drawer"
        android:layout_width="260dp"
        android:layout_height="match_parent"
        android:layout_gravity="left"
        app:layout="@layout/nav_drawer"
        tools:layout="@layout/nav_drawer" />

 </android.support.v4.widget.DrawerLayout>