I\'m developing for Android 4.3 and been having a problem with my code that I can\'t seem to figure out. I\'ve been looking for answers for a while and all I could find was
Edit: For tabs, use this part of the API guides.
For adding elements to your ActionBar, you must Override onCreateOptionsMenu()
For example:
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu items for use in the action bar
MenuInflater inflater = getMenuInflater();
inflater.inflate(R.menu.main_activity_actions, menu);
return super.onCreateOptionsMenu(menu);
}
And you should have an xml for the layout of those items:
res/menu/main_activity_actions.xml
Source