I am trying to work with android Sidebar first time. I have successfully implemented sidebar on my Main Activity but I want sidebar in my all other activities. Is there any solution for it?? or Do I need to use Fragment??
Thanks
I am trying to work with android Sidebar first time. I have successfully implemented sidebar on my Main Activity but I want sidebar in my all other activities. Is there any solution for it?? or Do I need to use Fragment??
Thanks
you can select navigation type other than blank like Navigation Drawer then makes own custom fragments for each options of navigation Drawer.
I am assuming by Sidebar you mean DrawerLayout.
When using this type of navigation, it is a better practice to have Fragment-based flow rather than Activity-based. Implementing DrawerLayout in multiple activities will cause a lot of redundant code.
The solution is to use Fragments. Maintain an instance of a FragmentTransaction throughout the lifecycle of your app. Decide the layout which you want to change when the user clicks on navigation elements and add/replace Fragments in this layout according to your app's flow.