本文整理汇总了Java中uk.co.chrisjenx.calligraphy.CalligraphyContextWrapper.wrap方法的典型用法代码示例。如果您正苦于以下问题:Java CalligraphyContextWrapper.wrap方法的具体用法?Java CalligraphyContextWrapper.wrap怎么用?Java CalligraphyContextWrapper.wrap使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类uk.co.chrisjenx.calligraphy.CalligraphyContextWrapper
的用法示例。
在下文中一共展示了CalligraphyContextWrapper.wrap方法的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: attachBaseContext
import uk.co.chrisjenx.calligraphy.CalligraphyContextWrapper; //导入方法依赖的package包/类
@Override
protected void attachBaseContext(Context newBase) {
super.attachBaseContext(CalligraphyContextWrapper.wrap(newBase));
}
示例2: attachBaseContext
import uk.co.chrisjenx.calligraphy.CalligraphyContextWrapper; //导入方法依赖的package包/类
@Override
protected void attachBaseContext(Context newBase) {
super.attachBaseContext(CalligraphyContextWrapper.wrap(newBase));
}
示例3: attachBaseContext
import uk.co.chrisjenx.calligraphy.CalligraphyContextWrapper; //导入方法依赖的package包/类
@Override
protected void attachBaseContext(Context newBase) {
LocaleHelper.setLocale(newBase);
super.attachBaseContext(CalligraphyContextWrapper.wrap(newBase));
}
示例4: attachBaseContext
import uk.co.chrisjenx.calligraphy.CalligraphyContextWrapper; //导入方法依赖的package包/类
@Override protected void attachBaseContext(Context newBase) {
super.attachBaseContext(CalligraphyContextWrapper.wrap(newBase));
}
示例5: attachBaseContext
import uk.co.chrisjenx.calligraphy.CalligraphyContextWrapper; //导入方法依赖的package包/类
@Override
protected void attachBaseContext(Context newBase) {
super.attachBaseContext(CalligraphyContextWrapper.wrap(newBase));
}
示例6: attachBaseContext
import uk.co.chrisjenx.calligraphy.CalligraphyContextWrapper; //导入方法依赖的package包/类
@Override
protected void attachBaseContext(Context newBase) {
SharedPreferences preferences;
preferences = PreferenceManager.getDefaultSharedPreferences(newBase);
super.attachBaseContext(CalligraphyContextWrapper.wrap(newBase));
}
示例7: attachBaseContext
import uk.co.chrisjenx.calligraphy.CalligraphyContextWrapper; //导入方法依赖的package包/类
@Override
protected void attachBaseContext(Context newBase) {
super.attachBaseContext(CalligraphyContextWrapper.wrap(newBase));
}
示例8: attachBaseContext
import uk.co.chrisjenx.calligraphy.CalligraphyContextWrapper; //导入方法依赖的package包/类
/**
* Wrap the Activity Context for Calligraphy
*/
@Override
protected void attachBaseContext(Context newBase) {
super.attachBaseContext(CalligraphyContextWrapper.wrap(newBase));
}
示例9: attachBaseContext
import uk.co.chrisjenx.calligraphy.CalligraphyContextWrapper; //导入方法依赖的package包/类
@Override
protected void attachBaseContext(final Context newBase) {
super.attachBaseContext(CalligraphyContextWrapper.wrap(newBase));
}