本文整理匯總了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);
}