Center title of activity in android action bar

前端 未结 3 1169
独厮守ぢ
独厮守ぢ 2021-01-15 09:56

Right now the title of my activity shows to the left as < Title and then the other menu item shows to the right. I want to center my title and leave out the

3条回答
  •  不要未来只要你来
    2021-01-15 10:49

    Just use a custom view for your actionbar in your activity...

    ActionBar actionBar = getSupportActionBar();
    actionBar.setCustomView(R.layout.actionbar_layout);
    actionBar.setDisplayOptions(ActionBar.DISPLAY_SHOW_CUSTOM, ActionBar.DISPLAY_SHOW_CUSTOM);
    actionBar.setDisplayHomeAsUpEnabled(false); // Remove '<' next to home icon.
    

    The view could probably be something like this:

    
    
        
    
    
    

提交回复
热议问题