Changing the font of the application title in android

前端 未结 5 1771
借酒劲吻你
借酒劲吻你 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:50

    Try this,

        int actionBarTitle = Resources.getSystem().getIdentifier("action_bar_title", "id", "android");
    TextView actionBarTitleView = (TextView) getWindow().findViewById(actionBarTitle);
    Typeface robotoBoldCondensedItalic = Typeface.createFromAsset(getAssets(), "fonts/Roboto-BoldCondensedItalic.ttf");
    if(actionBarTitleView != null){
        actionBarTitleView.setTypeface(robotoBoldCondensedItalic);
    }
    

    If it's toolbar means try like as below.

    
    
    
     
                                                            
提交回复
热议问题