Skip to content

Instantly share code, notes, and snippets.

View tjohnn's full-sized avatar
🎯
Focusing

Tosin Adeoye tjohnn

🎯
Focusing
View GitHub Profile
@Aracem
Aracem / OverrideTypefaceApplication.java
Last active May 31, 2018 23:19 — forked from artem-zinnatullin/MyApp.java
Example to override the default font of an Application.
public class OverrideTypefaceApplication extends Application {
@Override
public void onCreate() {
TypefaceUtil.overrideFont(getApplicationContext(), "SERIF", "fonts/Roboto-Regular.ttf"); // font from assets: "assets/fonts/Roboto-Regular.ttf
}
}