📜  ANDROID DISABLE CHANGE FONT SIZE IN APP - 无论代码示例

📅  最后修改于: 2022-03-11 14:56:22.109000             🧑  作者: Mango

代码示例1
in android mainactivity add after any @Override

    @Override
    protected void attachBaseContext(Context newBase) {
        super.attachBaseContext(newBase);
        final Configuration override = new Configuration(newBase.getResources().getConfiguration());
        override.fontScale = 1.0f;
        applyOverrideConfiguration(override);
    }