Sharing an Options Menu between Activity and MapActivity. Is this possible?
I have an Options Menu shared between multiple Activities but now I need that menu in a MapActivity.
Sharing an Options Menu between Activity and MapActivity. Is this possible?
I have an Options Menu shared between multiple Activities but now I need that menu in a MapActivity.
Define the menu in XML. Put the smarts to load that XML in a static method, then call that method from onCreateOptionsMenu()
in your various classes. Put the smarts for onOptionsItemSelected()
in another static method, and call that method from onOptionsItemSelected()
in your various classes.