streamlined PrefManager API for simpler usage

This commit is contained in:
Andy Scherzinger 2016-04-14 13:45:31 +02:00
parent 5c72090ed2
commit 26ef68a02a

View file

@ -41,31 +41,19 @@ public abstract class PreferenceManager {
private static final String PREF__INSTANT_VIDEO_UPLOAD_ON_WIFI = "instant_video_upload_on_wifi"; private static final String PREF__INSTANT_VIDEO_UPLOAD_ON_WIFI = "instant_video_upload_on_wifi";
public static boolean instantPictureUploadEnabled(Context context) { public static boolean instantPictureUploadEnabled(Context context) {
return android.preference.PreferenceManager.getDefaultSharedPreferences(context).getBoolean( return getDefaultSharedPreferences(context).getBoolean(PREF__INSTANT_UPLOADING, false);
PREF__INSTANT_UPLOADING,
false
);
} }
public static boolean instantVideoUploadEnabled(Context context) { public static boolean instantVideoUploadEnabled(Context context) {
return android.preference.PreferenceManager.getDefaultSharedPreferences(context).getBoolean( return getDefaultSharedPreferences(context).getBoolean(PREF__INSTANT_VIDEO_UPLOADING, false);
PREF__INSTANT_VIDEO_UPLOADING,
false
);
} }
public static boolean instantPictureUploadViaWiFiOnly(Context context) { public static boolean instantPictureUploadViaWiFiOnly(Context context) {
return android.preference.PreferenceManager.getDefaultSharedPreferences(context).getBoolean( return getDefaultSharedPreferences(context).getBoolean(PREF__INSTANT_UPLOAD_ON_WIFI, false);
PREF__INSTANT_UPLOAD_ON_WIFI,
false
);
} }
public static boolean instantVideoUploadViaWiFiOnly(Context context) { public static boolean instantVideoUploadViaWiFiOnly(Context context) {
return android.preference.PreferenceManager.getDefaultSharedPreferences(context).getBoolean( return getDefaultSharedPreferences(context).getBoolean(PREF__INSTANT_VIDEO_UPLOAD_ON_WIFI, false);
PREF__INSTANT_VIDEO_UPLOAD_ON_WIFI,
false
);
} }
/** /**
@ -76,9 +64,7 @@ public abstract class PreferenceManager {
* or empty String if never saved before. * or empty String if never saved before.
*/ */
public static String getLastUploadPath(Context context) { public static String getLastUploadPath(Context context) {
SharedPreferences appPreferences = android.preference.PreferenceManager return getDefaultSharedPreferences(context).getString(AUTO_PREF__LAST_UPLOAD_PATH, "");
.getDefaultSharedPreferences(context.getApplicationContext());
return appPreferences.getString(AUTO_PREF__LAST_UPLOAD_PATH, "");
} }
/** /**
@ -88,10 +74,7 @@ public abstract class PreferenceManager {
* @param context Caller {@link Context}, used to access to shared preferences manager. * @param context Caller {@link Context}, used to access to shared preferences manager.
*/ */
public static void setLastUploadPath(String path, Context context) { public static void setLastUploadPath(String path, Context context) {
SharedPreferences.Editor appPrefs = android.preference.PreferenceManager saveStringPreference(AUTO_PREF__LAST_UPLOAD_PATH, path, context);
.getDefaultSharedPreferences(context.getApplicationContext()).edit();
appPrefs.putString(AUTO_PREF__LAST_UPLOAD_PATH, path);
appPrefs.apply();
} }
/** /**
@ -101,9 +84,7 @@ public abstract class PreferenceManager {
* @return sort order the sort order, default is {@link FileStorageUtils#SORT_NAME} (sort by name) * @return sort order the sort order, default is {@link FileStorageUtils#SORT_NAME} (sort by name)
*/ */
public static int getSortOrder(Context context) { public static int getSortOrder(Context context) {
SharedPreferences appPreferences = android.preference.PreferenceManager return getDefaultSharedPreferences(context).getInt(AUTO_PREF__SORT_ORDER, FileStorageUtils.SORT_NAME);
.getDefaultSharedPreferences(context.getApplicationContext());
return appPreferences.getInt(AUTO_PREF__SORT_ORDER, FileStorageUtils.SORT_NAME);
} }
/** /**
@ -113,10 +94,7 @@ public abstract class PreferenceManager {
* @param context Caller {@link Context}, used to access to shared preferences manager. * @param context Caller {@link Context}, used to access to shared preferences manager.
*/ */
public static void setSortOrder(int order, Context context) { public static void setSortOrder(int order, Context context) {
SharedPreferences.Editor appPreferences = android.preference.PreferenceManager saveIntPreference(AUTO_PREF__SORT_ORDER, order, context);
.getDefaultSharedPreferences(context.getApplicationContext()).edit();
appPreferences.putInt(AUTO_PREF__SORT_ORDER, order);
appPreferences.apply();
} }
/** /**
@ -126,9 +104,7 @@ public abstract class PreferenceManager {
* @return ascending order the ascending order, default is true * @return ascending order the ascending order, default is true
*/ */
public static boolean getSortAscending(Context context) { public static boolean getSortAscending(Context context) {
SharedPreferences appPreferences = android.preference.PreferenceManager return getDefaultSharedPreferences(context).getBoolean(AUTO_PREF__SORT_ASCENDING, true);
.getDefaultSharedPreferences(context.getApplicationContext());
return appPreferences.getBoolean(AUTO_PREF__SORT_ASCENDING, true);
} }
/** /**
@ -138,9 +114,28 @@ public abstract class PreferenceManager {
* @param context Caller {@link Context}, used to access to shared preferences manager. * @param context Caller {@link Context}, used to access to shared preferences manager.
*/ */
public static void setSortAscending(boolean ascending, Context context) { public static void setSortAscending(boolean ascending, Context context) {
SharedPreferences.Editor appPreferences = android.preference.PreferenceManager saveBooleanPreference(AUTO_PREF__SORT_ASCENDING, ascending, context);
.getDefaultSharedPreferences(context.getApplicationContext()).edit(); }
appPreferences.putBoolean(AUTO_PREF__SORT_ASCENDING, true);
public static void saveBooleanPreference(String key, boolean value, Context context) {
SharedPreferences.Editor appPreferences = getDefaultSharedPreferences(context.getApplicationContext()).edit();
appPreferences.putBoolean(key, value);
appPreferences.apply(); appPreferences.apply();
} }
public static void saveStringPreference(String key, String value, Context context) {
SharedPreferences.Editor appPreferences = getDefaultSharedPreferences(context.getApplicationContext()).edit();
appPreferences.putString(key, value);
appPreferences.apply();
}
public static void saveIntPreference(String key, int value, Context context) {
SharedPreferences.Editor appPreferences = getDefaultSharedPreferences(context.getApplicationContext()).edit();
appPreferences.putInt(key, value);
appPreferences.apply();
}
private static SharedPreferences getDefaultSharedPreferences(Context context) {
return android.preference.PreferenceManager.getDefaultSharedPreferences(context.getApplicationContext());
}
} }