當前位置: 首頁>>代碼示例>>Java>>正文


Java Configuration.setToDefaults方法代碼示例

本文整理匯總了Java中android.content.res.Configuration.setToDefaults方法的典型用法代碼示例。如果您正苦於以下問題:Java Configuration.setToDefaults方法的具體用法?Java Configuration.setToDefaults怎麽用?Java Configuration.setToDefaults使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在android.content.res.Configuration的用法示例。


在下文中一共展示了Configuration.setToDefaults方法的9個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: y

import android.content.res.Configuration; //導入方法依賴的package包/類
private static Locale y(Context context) {
    Locale locale = null;
    try {
        Configuration configuration = new Configuration();
        configuration.setToDefaults();
        System.getConfiguration(context.getContentResolver(), configuration);
        if (configuration != null) {
            locale = configuration.locale;
        }
    } catch (Exception e) {
        bv.c(a, "fail to read user config locale");
    }
    if (locale == null) {
        return Locale.getDefault();
    }
    return locale;
}
 
開發者ID:JackChan1999,項目名稱:letv,代碼行數:18,代碼來源:bt.java

示例2: A

import android.content.res.Configuration; //導入方法依賴的package包/類
private static Locale A(Context context) {
    Locale locale = null;
    try {
        Configuration configuration = new Configuration();
        configuration.setToDefaults();
        System.getConfiguration(context.getContentResolver(), configuration);
        if (configuration != null) {
            locale = configuration.locale;
        }
    } catch (Exception e) {
        bv.c(a, "fail to read user config locale");
    }
    if (locale == null) {
        return Locale.getDefault();
    }
    return locale;
}
 
開發者ID:JackChan1999,項目名稱:boohee_v5.6,代碼行數:18,代碼來源:bt.java

示例3: initTextSize

import android.content.res.Configuration; //導入方法依賴的package包/類
/**
 * 使其係統更改字體大小無效
 */
private void initTextSize() {
    Resources res = getResources();
    Configuration config = new Configuration();
    config.setToDefaults();
    res.updateConfiguration(config, res.getDisplayMetrics());
}
 
開發者ID:joelan,項目名稱:ClouldReader,代碼行數:10,代碼來源:CloudReaderApplication.java

示例4: getResources

import android.content.res.Configuration; //導入方法依賴的package包/類
@Override
public Resources getResources() {
    //保持字體不變
    Resources res = super.getResources();
    Configuration config = new Configuration();
    config.setToDefaults();
    res.updateConfiguration(config, res.getDisplayMetrics());
    return res;
}
 
開發者ID:YunzhanghuOpen,項目名稱:redpacketui-open,代碼行數:10,代碼來源:RPBaseActivity.java

示例5: getResources

import android.content.res.Configuration; //導入方法依賴的package包/類
@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;
}
 
開發者ID:quickhybrid,項目名稱:quickhybrid-android,代碼行數:11,代碼來源:FrmApplication.java

示例6: setMetricsConfigWithoutSettings

import android.content.res.Configuration; //導入方法依賴的package包/類
/**
 *   加載係統默認設置,字體不隨用戶設置變化
 */
public  static void setMetricsConfigWithoutSettings(Context context){
    Resources res =  context.getResources();
    Configuration config = new Configuration();
    config.setToDefaults();
    res.updateConfiguration(config, res.getDisplayMetrics());
}
 
開發者ID:wzx54321,項目名稱:XinFramework,代碼行數:10,代碼來源:ScreenUtils.java

示例7: getResources

import android.content.res.Configuration; //導入方法依賴的package包/類
public Resources getResources() {
    Resources res = super.getResources();
    Configuration config = new Configuration();
    config.setToDefaults();
    res.updateConfiguration(config, res.getDisplayMetrics());
    return res;
}
 
開發者ID:JackChan1999,項目名稱:letv,代碼行數:8,代碼來源:BasicActivity.java

示例8: keepFontSize

import android.content.res.Configuration; //導入方法依賴的package包/類
private void keepFontSize() {
    Resources res = super.getResources();
    Configuration config = new Configuration();
    config.setToDefaults();
    res.updateConfiguration(config, res.getDisplayMetrics());
}
 
開發者ID:YunzhanghuOpen,項目名稱:redpacketui-open,代碼行數:7,代碼來源:RPBaseDialogFragment.java

示例9: keepFontSize

import android.content.res.Configuration; //導入方法依賴的package包/類
public void keepFontSize(){
    Resources res = super.getResources();
    Configuration config = new Configuration();
    config.setToDefaults();
    res.updateConfiguration(config, res.getDisplayMetrics());
}
 
開發者ID:mangestudio,項目名稱:GCSApp,代碼行數:7,代碼來源:ChatRowRandomPacket.java


注:本文中的android.content.res.Configuration.setToDefaults方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。