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
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.
android:textAppearence
android:typeface
Then, have each one's style inherit the activity style, like so:
in style.xml: