What is the easiest way of doing it? I started by creating a class (‘OptionMenuClass’) that other classes can extend but since I do not want to lose list/tabActivities properties and since Java does not support multiple inheritance I would like to know the easiest way of doing it.
Share
You need to create a base activity which all your activities will inherit. You can then implement your options logic in the Base Class.