Set font for all textViews in activity?

后端 未结 8 2514
忘了有多久
忘了有多久 2020-11-28 06:07

Is it possible to set the font for all the TextViews in a activity? I can set the font for a single textView by using:

    TextView tv=(TextView)findViewByI         


        
8条回答
  •  甜味超标
    2020-11-28 06:27

    You can use style inheritance.

    Have every one of your TextViews in the activity declare a style via android:textAppearence, instead of manually android:typeface.

    Then, have each one's style inherit the activity style, like so:

    
    
    

    in style.xml:

    
    
    
    

提交回复
热议问题