I\'m trying to figure out the right way to use a custom font for the toolbar title, and center it in the toolbar (client requirement).
At the moment, i\'m using the
Since android.support.v7.appcompat 24.2 Toolbar has method setTitleTextAppearance and you can set its font without external textview.
android.support.v7.appcompat 24.2
Toolbar
setTitleTextAppearance
textview
create new style in styles.xml
and use it
mToolbar.setTitleTextAppearance(this, R.style.RobotoBoldTextAppearance);