I have a typeface, I want to change the font of the action-bar title in android. Is there a way to set title typeface like that?
this.setTitle(myTitle.toUppe
I found this answer from headsvk that helped me. Doing some adjustments I only needed to do this:
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
...
TextView myTitle = (TextView) toolbar.getChildAt(0);
myTitle.setTypeface(font);
Doing some tests on my app I found that the title TextView was the first child of the toolbar, so now that I have it I can set changes to it.