Actionbar centered title with buttons
I would like to center the title in the action bar, while having action icons next to it(and ignoring them for the gravity setting). I would like to have this: Instead I have this: Here is my code: ActionBar actionBar = getSupportActionBar(); ActionBar.LayoutParams params = new ActionBar.LayoutParams(ActionBar.LayoutParams.MATCH_PARENT, ActionBar.LayoutParams.MATCH_PARENT); actionBar.setBackgroundDrawable(getResources().getDrawable(R.drawable.top_bar)); actionBar.setCustomView(LayoutInflater.from(this).inflate(R.layout.actionbar_layout, null), params); actionBar.setDisplayShowCustomEnabled