I need to use certain font for my entire application. I have .ttf file for the same. Is it possible to set this as default font, at application start up and then use it else
This solution does not work correctly in some situations. So I extend it:
FontsReplacer.java
public class MyApplication extends Application { @Override public void onCreate() { FontsReplacer.replaceFonts(this); super.onCreate(); } }
https://gist.github.com/orwir/6df839e3527647adc2d56bfadfaad805