Trying to set the ActionBar
title in middle instead of the default left aligned position. To do so, based on other answers this is what I\'ve done:
Simple approach use android:layout_gravity="center"
on your TextView
and hide default title using below code after that initialize your TextView
and set value
Inside your activity:
setSupportActionBar(toolbar);
getSupportActionBar().setDisplayShowTitleEnabled(false);
toolbar_title = (TextView) findViewById(R.id.toolbar_title);
toolbar_title.setText("My Custom center title");
Custom toolbar XML Code: