I am creating am android application which has 4 different activities all having a common menu. To show menu in all activities generally I need to add this code in every files.
@Override
public boolean onCreateOptionsMenu(Menu menu) {
MenuInflater inflater = getMenuInflater();
inflater.inflate(R.menu.menu, menu);
return true;
}
Is there anyway that I can add this code in one single file & include to all activities?
Thanks in advance.
Create one
Main Activitywrite your menu code in that activity and thenextendother activities with Main Activity..And some
TempActivity