This question has already been answered:
- Change font 5 replies
Now to me in order to change the font of all the twist elements that contain the text it took
- Download font (calibril.ttf)
Write function
public static void setFont (Context c, TextView name) {Typeface font = Typeface.createFromAsset (c.getAssets (), "fonts / calibril.ttf"); name.setTypeface (font); }
Add to each element the method in which you want to change the font
Is it possible to install the font at the application level?
I understand that I can do this
<application android:theme="@style/CustomTheme"> and in the subject for the entire application, specify the font style, but what tag for this exists?