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


Java CalligraphyContextWrapper類代碼示例

本文整理匯總了Java中uk.co.chrisjenx.calligraphy.CalligraphyContextWrapper的典型用法代碼示例。如果您正苦於以下問題:Java CalligraphyContextWrapper類的具體用法?Java CalligraphyContextWrapper怎麽用?Java CalligraphyContextWrapper使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


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

示例1: attachBaseContext

import uk.co.chrisjenx.calligraphy.CalligraphyContextWrapper; //導入依賴的package包/類
@Override
protected void attachBaseContext(Context newBase) {
    if (!customFontInitDone) {
        // FIXME: make actually customizable via resources
        // (see file extension string formatting nonsense)
        CalligraphyConfig.initDefault(
                new CalligraphyConfig.Builder()
                        .setDefaultFontPath(newBase.getString(R.string.normal_text_font_name))
                        .setFontAttrId(R.attr.fontPath)
                        .build());
        customFontInitDone = true;
    }
    super.attachBaseContext(CalligraphyContextWrapper.wrap(newBase));
    SDKGlobals.init(this);
}
 
開發者ID:Datatellit,項目名稱:xlight_android_native,代碼行數:16,代碼來源:BaseActivity.java

示例2: getBaseContext

import uk.co.chrisjenx.calligraphy.CalligraphyContextWrapper; //導入依賴的package包/類
@NonNull
static Context getBaseContext(@NonNull View view) {
    Context context = view.getContext();
    if (context instanceof ContextThemeWrapper) {
        context = ((ContextThemeWrapper) view.getContext()).getBaseContext();
    } else if (context instanceof CalligraphyContextWrapper) {
        context = ((CalligraphyContextWrapper) view.getContext()).getBaseContext();
    }
    return context;
}
 
開發者ID:danimahardhika,項目名稱:candybar-library,代碼行數:11,代碼來源:ContextHelper.java

示例3: attachBaseContext

import uk.co.chrisjenx.calligraphy.CalligraphyContextWrapper; //導入依賴的package包/類
@Override
protected void attachBaseContext(Context newBase) {
    super.attachBaseContext(CalligraphyContextWrapper.wrap(newBase));

    // setup self handling alarm receiver
    MedtronicCnlAlarmManager.setContext(getBaseContext());
}
 
開發者ID:pazaan,項目名稱:600SeriesAndroidUploader,代碼行數:8,代碼來源:MainActivity.java

示例4: attachBaseContext

import uk.co.chrisjenx.calligraphy.CalligraphyContextWrapper; //導入依賴的package包/類
@Override
protected void attachBaseContext(Context newBase) {
    if (HiApplication.isFontSet())
        super.attachBaseContext(CalligraphyContextWrapper.wrap(newBase));
    else
        super.attachBaseContext(newBase);
}
 
開發者ID:GreenSkinMonster,項目名稱:hipda,代碼行數:8,代碼來源:ImageViewerActivity.java

示例5: attachBaseContext

import uk.co.chrisjenx.calligraphy.CalligraphyContextWrapper; //導入依賴的package包/類
@Override
protected void attachBaseContext(Context newBase) {
    super.attachBaseContext(CalligraphyContextWrapper.wrap(newBase));
}
 
開發者ID:weiwenqiang,項目名稱:GitHub,代碼行數:5,代碼來源:BaseActivity.java

示例6: attachBaseContext

import uk.co.chrisjenx.calligraphy.CalligraphyContextWrapper; //導入依賴的package包/類
@Override protected void attachBaseContext(Context newBase) {
  super.attachBaseContext(CalligraphyContextWrapper.wrap(newBase));
}
 
開發者ID:nikacotAndroid,項目名稱:Weather-Guru-MVP,代碼行數:4,代碼來源:BaseActivity.java

示例7: attachBaseContext

import uk.co.chrisjenx.calligraphy.CalligraphyContextWrapper; //導入依賴的package包/類
@Override
protected void attachBaseContext(Context base) {
    super.attachBaseContext(CalligraphyContextWrapper.wrap(base));
}
 
開發者ID:afiqiqmal,項目名稱:My-Android-Base-Code,代碼行數:5,代碼來源:BaseApplication.java


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