Changing the font of the application title in android

前端 未结 5 1769
借酒劲吻你
借酒劲吻你 2021-01-03 08:53

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         


        
5条回答
  •  灰色年华
    2021-01-03 09:37

    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.

提交回复
热议问题