Application中
Typeface typeface = Typeface.createFromAsset(getAssets(), "axxt.ttf");
try {
Field field = Typeface.class.getDeclaredField("MONOSPACE");
field.setAccessible(true);
field.set(null, typeface);
} catch (Exception e) {
// TODO
}
style.xml中
在使用的主题下添加
<item name="android:typeface">monospace(与getDeclaredField (参数中对应))</item>