Android 設置App字體不跟隨系統字體改變

對於個別app不需要根據系統字體的大小來改變的,可以在自定義的Application中加上以下代碼即可

 

 

 @Override
    public Resources getResources() {
        Resources res = super.getResources();
        Configuration config = new Configuration();
        config.setToDefaults();
        res.updateConfiguration(config, res.getDisplayMetrics());
        return res;

    }

 

 

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章