You can change system font using below code
Settings.System.putFloat(getBaseContext().getContentResolver(),
Settings.System.FONT_SCALE, (float) 1.0);
and after this give permission in menifest file
<uses-permission android:name="android.permission.WRITE_SETTINGS"/>
and then restart your device to show effect..
Note: Its fully applicable for rooted device and in Unrooted device some font may change and some are not.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…