Tabs below action bar

后端 未结 2 2018
醉酒成梦
醉酒成梦 2021-01-03 17:06

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

2条回答
  •  死守一世寂寞
    2021-01-03 18:01

    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

提交回复
热议问题