I am developing an application that contains many activities
and i created my own menu (i don’t want to use the built in menu button) with the Sliding Drawer
as the sliding drawer is at the bottom of the screen and contains my menu buttons
what i need is to make that sliding drawer to appear in all my activities
i tried to create an activity and set it’s content view to the xml file that includes the drawer and then extends that activity in all other activities but this solution doesn’t work
so any suggestions ?
Extending is the right way. Just override setContentView in the right way.
Here’s the working example, but instead of drawer, I use a created a custom tabbar:
Define a layout with your drawer like this:
this is
act_layout.xmlThis will be your base layout to contain all other layouts in the act_content frame.
Next, create a base activity class, and do the following:
What we do, is basically intercept all calls to setContentView(int resId), inflate our layout for drawer from xml, inflate our layout for activity (by reId provided in method call), combine them as we need, and set as the contentView of the activity.
EDIT:
After you’ve created the stuff above, just proceed to write an app as usual, create layouts (without any mention of a drawer) create activities, but instead of extending simple activity, extend DrawerActivity, like so:
What happens, is that setContentView(R.layout.some_layout) is intercepted. Your DrawerActivity loads the layout you provided from xml, loads a standart layout for your drawer, combines them and then sets it as contentView for the activity.