欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Android 设置应用内字体不随系统的字体大小改变而改变

程序员文章站 2022-07-13 16:00:07
...

在需要调整的Activity中,重写以下方法,或者在BaseActivity和BaseApplication设置全局

//设置字体为默认大小,不随系统字体大小改而改变
@Override
public void onConfigurationChanged(Configuration newConfig) {
    if (newConfig.fontScale != 1)//非默认值
        getResources();
    super.onConfigurationChanged(newConfig);
}


@Override
public Resources getResources() {
    Resources res = super.getResources();
    if (res.getConfiguration().fontScale != 1) {//非默认值
        Configuration newConfig = new Configuration();
        newConfig.setToDefaults();//设置默认
        res.updateConfiguration(newConfig, res.getDisplayMetrics());
    }
    return res; 
    }
相关标签: android字体