短视频app源码,Android设置字体不随系统字体大小而变化

短视频app源码,Android设置字体不随系统字体大小而变化

@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;
}

​以上就是 短视频app源码,Android设置字体不随系统字体大小而变化,更多内容欢迎关注之后的文章

 

posted @ 2022-07-21 14:20  云豹科技-苏凌霄  阅读(51)  评论(0)    收藏  举报