1. 程式人生 > >Android裡面如何固定字型的大小

Android裡面如何固定字型的大小

固定了字型的大小後,使得app的字型大小不隨手機本身的字型大小的改變而改變,通過以下方法實現:

哪個頁面要固定就在那個頁面的在onCreate() 裡新增如下程式碼:

Resources res = getResources();  
Configuration config=new Configuration();  
config.setToDefaults();  
res.updateConfiguration(config,res.getDisplayMetrics());