summaryrefslogtreecommitdiffstats
path: root/src/com/android/launcher3/Launcher.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/android/launcher3/Launcher.java')
-rw-r--r--src/com/android/launcher3/Launcher.java25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/com/android/launcher3/Launcher.java b/src/com/android/launcher3/Launcher.java
index be39e522c..7e280f266 100644
--- a/src/com/android/launcher3/Launcher.java
+++ b/src/com/android/launcher3/Launcher.java
@@ -46,6 +46,7 @@ import android.content.Context;
import android.content.DialogInterface;
import android.content.Intent;
import android.content.IntentFilter;
+import android.content.IntentSender;
import android.content.SharedPreferences;
import android.content.pm.ActivityInfo;
import android.content.pm.ApplicationInfo;
@@ -2606,6 +2607,30 @@ public class Launcher extends Activity
}
}
+ /**
+ * This is used when starting widget config activities. Make sure to setWaitingForResult so that
+ * the ItemInfo for the pending item is properly saved.
+ *
+ * @param intent
+ * @param requestCode
+ * @param fillInIntent
+ * @param flagsMask
+ * @param flagsValues
+ * @param extraFlags
+ * @param options
+ * @throws IntentSender.SendIntentException
+ */
+ @Override
+ public void startIntentSenderForResult(IntentSender intent, int requestCode,
+ Intent fillInIntent, int flagsMask, int flagsValues, int extraFlags, Bundle options)
+ throws IntentSender.SendIntentException {
+ if (requestCode >= 0) {
+ setWaitingForResult(true);
+ }
+ super.startIntentSenderForResult(intent, requestCode, fillInIntent, flagsMask, flagsValues,
+ extraFlags, options);
+ }
+
protected void moveToCustomContentScreen(boolean animate) {
// Close any folders that may be open.
closeFolder();