Different NavigationDrawer items for Different activities in android

后端 未结 1 586
情话喂你
情话喂你 2021-01-26 16:17

Here i am using NavigationDrawer for my activities.It is working fine.i am using Recyclerview for displaying NavigationDrawer items. Now i want to display different NavigationDr

相关标签:
1条回答
  • 2021-01-26 17:13

    Navigation drawer is meant to be used with fragments.

    The main activity host the the nav drawer.

    Fragments make it easy to swap the drawer content a keep its state.

    If you wanted to use acitvity instead then you should create a base activity conaining the drawer so that all your activities inherit from that activity.

    This way the nav drawer can persist from activity to activity.

    0 讨论(0)
提交回复
热议问题