I’m developing an Android application that has 10 different activities with the same constant menu at the bottom of their screen. Is fragments is the best way to build the menu or just build a base activity class that all the activities inherits from it?
thanks.
You should create a class let say
MyBaseActivitythat extendsActivityand in that class take care of displaying that menu etc.Then you should let all your
Activitiesin your application extend your customMyBaseActivity.