Android toolbar center title and custom font

前端 未结 30 2740
时光说笑
时光说笑 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 05:00

    Since android.support.v7.appcompat 24.2 Toolbar has method setTitleTextAppearance and you can set its font without external textview.

    create new style in styles.xml

    
    

    and use it

    mToolbar.setTitleTextAppearance(this, R.style.RobotoBoldTextAppearance);
    

提交回复
热议问题