项目中遇到一个问题,在设置中更改系统字体为特大,再次进入App已经变的面目全非了,各种显示的问题。
各种google之后,在starkoverflow找到的答案:
在BaseActivity中调用
private void initFontScale() {
Configuration configuration = getResources().getConfiguration();
configuration.fontScale = (float) 1;
//0.85 小, 1 标准大小, 1.15 大,1.3 超大 ,1.45 特大
DisplayMetrics metrics = new DisplayMetrics();
getWindowManager().getDefaultDisplay().getMetrics(metrics);
metrics.scaledDensity = configuration.fontScale * metrics.density;
getBaseContext().getResources().updateConfiguration(configuration, metrics);
}
系统定制更改字体大小主要是通过更改属性 fontScale 来实现的
只要我们在App中 显示的设置一个 fontScale 无论怎样在设置中修改字体大小都不会影响到App中的字体大小。
(ps:dialog popupwindow 除外,这两种需要在控件中重新设置fontScale)