How to use the same drawer Navigation menu on several activitys without repeating code?
How to use the same drawer Navigation menu on several activitys without repeating code?
You can use an Activity only, and inject fragments into the container, so you would only have one menu (but I do not recommend it, but it's up to you)
Put all the code to initialize the drawer inside an activity (DrawerNavigatableActivity extends Activity) and do all your activities that need this behavior to inherit from it.