summaryrefslogtreecommitdiffstats
path: root/src/com/android/launcher3/Utilities.java
diff options
context:
space:
mode:
authorRahul Chaturvedi <rkc@google.com>2015-06-15 14:09:42 -0400
committerRahul Chaturvedi <rkc@google.com>2015-06-15 14:09:42 -0400
commite863fed1400d00fab11a61c5b4b989d86ca55386 (patch)
tree34c034bc8f8c15abcfbf3e20e359dde20dfab158 /src/com/android/launcher3/Utilities.java
parent931a2ce85aec5011298cf7f305f5823c13c0f578 (diff)
downloadandroid_packages_apps_Trebuchet-e863fed1400d00fab11a61c5b4b989d86ca55386.tar.gz
android_packages_apps_Trebuchet-e863fed1400d00fab11a61c5b4b989d86ca55386.tar.bz2
android_packages_apps_Trebuchet-e863fed1400d00fab11a61c5b4b989d86ca55386.zip
Read rotation setting correctly from the wallpaper picker.
If reading the rotation setting without the multi-process flag, the WallpaperPickerActivity usually picks up a cached value. Specifying the multi-process flag during the read fixes this and the wallpaper picker always has the correct rotation setting. Change-Id: Ic3639f8cd694674e92c8940b753c6bc30486076d
Diffstat (limited to 'src/com/android/launcher3/Utilities.java')
-rw-r--r--src/com/android/launcher3/Utilities.java5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/com/android/launcher3/Utilities.java b/src/com/android/launcher3/Utilities.java
index 0f52cba2b..2d8a1b1cf 100644
--- a/src/com/android/launcher3/Utilities.java
+++ b/src/com/android/launcher3/Utilities.java
@@ -97,9 +97,10 @@ public final class Utilities {
return Log.isLoggable(propertyName, Log.VERBOSE);
}
- public static boolean isAllowRotationPrefEnabled(Context context) {
+ public static boolean isAllowRotationPrefEnabled(Context context, boolean multiProcess) {
SharedPreferences sharedPrefs = context.getSharedPreferences(
- LauncherAppState.getSharedPreferencesKey(), Context.MODE_PRIVATE);
+ LauncherAppState.getSharedPreferencesKey(), Context.MODE_PRIVATE | (multiProcess ?
+ Context.MODE_MULTI_PROCESS : 0));
boolean allowRotationPref = sharedPrefs.getBoolean(ALLOW_ROTATION_PREFERENCE_KEY, false);
return sForceEnableRotation || allowRotationPref;
}