Android字体大小适配

本篇文章是面对同一个机子的字体大小设置不同而进行的适配。

Android字体大小适配_第1张图片

文章来源Android面试题-解决字体适配

具体操作方法:
在Application中重写以下两种方法

    @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字体大小适配)