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)findViewById(R.id.textView1);
Typeface face=Typeface.createFromAsset(getAssets(), "font.ttf");
tv.setTypeface(face);
But I would like to change all the textViews at once, instead of setting it manually for every textView, any info would be appreciated!
Solution1:: Just call these method by passing parent view as argument.
Solution2:: you can subclass the TextView class with your custom font and use it instead of textview.