I'm developing a notepad application I want to use my custom font and I'm following this code.
Typeface barType = Typeface.createFromAsset(getApplicationContext().getAssets(),"font/CaviarDreams.ttf");
subject.setTypeface(barType);
But, I don't want to use this code because I must write this code for every textview or edittext.
Is there any way to make this easily?
Use this method in utility class and pass parent view as an argument, it will update all textviews with your font
Eg.
Please check this Set font for all textViews in activity?