Android toolbar center title and custom font

前端 未结 30 2689
时光说笑
时光说笑 2020-11-22 04:11

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

30条回答
  •  北海茫月
    2020-11-22 04:59

    You can have a custom TextView in the toolbar like this:

    
    
         
    
    
    
    

    So, this will center the text. If you want to add custom font to a normal Toolbar, make a

    And add it to the toolbar:

    toolbar.setTitleTextAppearance(this, R.style.ToolbarFont);
    

    For the textview in the toolbar, you can define it with the fontFamily attribute:

    
    
         
    
    
    
    

提交回复
热议问题