本文整理汇总了Java中org.holoeverywhere.HoloEverywhere.PreferenceImpl类的典型用法代码示例。如果您正苦于以下问题:Java PreferenceImpl类的具体用法?Java PreferenceImpl怎么用?Java PreferenceImpl使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
PreferenceImpl类属于org.holoeverywhere.HoloEverywhere包,在下文中一共展示了PreferenceImpl类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: wrap
import org.holoeverywhere.HoloEverywhere.PreferenceImpl; //导入依赖的package包/类
public static SharedPreferences wrap(Context context, PreferenceImpl impl,
String name, int mode) {
switch (impl) {
case XML:
return new _SharedPreferencesImpl_XML(context, name, mode);
case JSON:
default:
return new _SharedPreferencesImpl_JSON(context, name, mode);
}
}
示例2: wrap
import org.holoeverywhere.HoloEverywhere.PreferenceImpl; //导入依赖的package包/类
public static SharedPreferences wrap(Context context, PreferenceImpl impl,
String name, int mode) {
switch (impl) {
case XML:
return new _SharedPreferencesImpl_XML(context, name, mode);
case JSON:
default:
return new _SharedPreferencesImpl_JSON(context, name, mode);
}
}
示例3: getDefaultSharedPreferences
import org.holoeverywhere.HoloEverywhere.PreferenceImpl; //导入依赖的package包/类
@Override
public SharedPreferences getDefaultSharedPreferences(Context context, PreferenceImpl impl) {
return PreferenceManager.getDefaultSharedPreferences(context, impl);
}
示例4: wrap
import org.holoeverywhere.HoloEverywhere.PreferenceImpl; //导入依赖的package包/类
@Override
public SharedPreferences wrap(Context context, PreferenceImpl impl, String name, int mode) {
return PreferenceManager.wrap(context, impl, name, mode);
}
示例5: getDefaultSharedPreferences
import org.holoeverywhere.HoloEverywhere.PreferenceImpl; //导入依赖的package包/类
public static SharedPreferences getDefaultSharedPreferences(Context context,
PreferenceImpl impl) {
return wrap(context, impl, getDefaultSharedPreferencesName(context),
getDefaultSharedPreferencesMode());
}
示例6: getDefaultSharedPreferences
import org.holoeverywhere.HoloEverywhere.PreferenceImpl; //导入依赖的package包/类
public SharedPreferences getDefaultSharedPreferences(PreferenceImpl impl) {
return PreferenceManagerHelper.getDefaultSharedPreferences(this, impl);
}
示例7: getSharedPreferences
import org.holoeverywhere.HoloEverywhere.PreferenceImpl; //导入依赖的package包/类
public SharedPreferences getSharedPreferences(PreferenceImpl impl, String name, int mode) {
return PreferenceManagerHelper.wrap(this, impl, name, mode);
}
示例8: getDefaultSharedPreferences
import org.holoeverywhere.HoloEverywhere.PreferenceImpl; //导入依赖的package包/类
public static SharedPreferences getDefaultSharedPreferences(Context context,
PreferenceImpl impl) {
checkImpl();
return IMPL.getDefaultSharedPreferences(context, impl);
}
示例9: wrap
import org.holoeverywhere.HoloEverywhere.PreferenceImpl; //导入依赖的package包/类
public static SharedPreferences wrap(Context context, PreferenceImpl impl, String name,
int mode) {
checkImpl();
return IMPL.wrap(context, impl, name, mode);
}
示例10: getDefaultSharedPreferences
import org.holoeverywhere.HoloEverywhere.PreferenceImpl; //导入依赖的package包/类
public SharedPreferences getDefaultSharedPreferences(PreferenceImpl impl) {
return mActivity.getDefaultSharedPreferences(impl);
}
示例11: getSharedPreferences
import org.holoeverywhere.HoloEverywhere.PreferenceImpl; //导入依赖的package包/类
public SharedPreferences getSharedPreferences(PreferenceImpl impl,
String name, int mode) {
return mActivity.getSharedPreferences(impl, name, mode);
}
示例12: getSharedPreferences
import org.holoeverywhere.HoloEverywhere.PreferenceImpl; //导入依赖的package包/类
public SharedPreferences getSharedPreferences(PreferenceImpl impl,
String name, int mode) {
return PreferenceManagerHelper.wrap(this, impl, name, mode);
}
示例13: getDefaultSharedPreferences
import org.holoeverywhere.HoloEverywhere.PreferenceImpl; //导入依赖的package包/类
public static SharedPreferences getDefaultSharedPreferences(Context context,
PreferenceImpl impl) {
return wrap(context, impl, getDefaultSharedPreferencesName(context),
getDefaultSharedPreferencesMode());
}
示例14: getDefaultSharedPreferences
import org.holoeverywhere.HoloEverywhere.PreferenceImpl; //导入依赖的package包/类
public static SharedPreferences getDefaultSharedPreferences(Context context,
PreferenceImpl impl) {
checkImpl();
return IMPL.getDefaultSharedPreferences(context, impl);
}
示例15: wrap
import org.holoeverywhere.HoloEverywhere.PreferenceImpl; //导入依赖的package包/类
public static SharedPreferences wrap(Context context, PreferenceImpl impl, String name,
int mode) {
checkImpl();
return IMPL.wrap(context, impl, name, mode);
}