I want to specify my own text size in my application, but I am having a problem doing this.
When I change the font size in the device settings, the font size of my
in android 8 this solution work for me
add this code in base activity
@Override
protected void attachBaseContext(Context newBase) {
super.attachBaseContext(newBase);
final Configuration override = new Configuration(newBase.getResources().getConfiguration());
override.fontScale = 1.0f;
applyOverrideConfiguration(override);
}
source https://stackoverflow.com/a/57225687/7985871