summaryrefslogtreecommitdiffstats
path: root/src/com/android/launcher3/UninstallDropTarget.java
diff options
context:
space:
mode:
authorSunny Goyal <sunnygoyal@google.com>2016-03-11 01:10:19 -0800
committerSunny Goyal <sunnygoyal@google.com>2016-03-22 13:57:58 -0700
commitd5bd67dfa9ee5fda2384a75231b7a68ceb8e9bd5 (patch)
tree0b6423d82af60515f56eaf1b18909929942b4b80 /src/com/android/launcher3/UninstallDropTarget.java
parentd3cc05a3a8c573986d08ee293a4bb8b4534d06b2 (diff)
downloadandroid_packages_apps_Trebuchet-d5bd67dfa9ee5fda2384a75231b7a68ceb8e9bd5.tar.gz
android_packages_apps_Trebuchet-d5bd67dfa9ee5fda2384a75231b7a68ceb8e9bd5.tar.bz2
android_packages_apps_Trebuchet-d5bd67dfa9ee5fda2384a75231b7a68ceb8e9bd5.zip
Adding support for result callback when starting uninstall-application activity
Change-Id: Ieaca4fbd0ae0156f24c8863ccbef61d4d6d30ba1
Diffstat (limited to 'src/com/android/launcher3/UninstallDropTarget.java')
-rw-r--r--src/com/android/launcher3/UninstallDropTarget.java102
1 files changed, 65 insertions, 37 deletions
diff --git a/src/com/android/launcher3/UninstallDropTarget.java b/src/com/android/launcher3/UninstallDropTarget.java
index 73881610b..91539439c 100644
--- a/src/com/android/launcher3/UninstallDropTarget.java
+++ b/src/com/android/launcher3/UninstallDropTarget.java
@@ -3,14 +3,16 @@ package com.android.launcher3;
import android.annotation.TargetApi;
import android.content.ComponentName;
import android.content.Context;
+import android.content.Intent;
+import android.net.Uri;
import android.os.Build;
import android.os.Bundle;
import android.os.UserManager;
import android.util.AttributeSet;
import android.util.Pair;
+import android.widget.Toast;
import com.android.launcher3.compat.UserHandleCompat;
-import com.android.launcher3.util.Thunk;
public class UninstallDropTarget extends ButtonDropTarget {
@@ -72,63 +74,89 @@ public class UninstallDropTarget extends ButtonDropTarget {
@Override
public void onDrop(DragObject d) {
// Differ item deletion
- if (d.dragSource instanceof UninstallSource) {
- ((UninstallSource) d.dragSource).deferCompleteDropAfterUninstallActivity();
+ if (d.dragSource instanceof DropTargetSource) {
+ ((DropTargetSource) d.dragSource).deferCompleteDropAfterUninstallActivity();
}
super.onDrop(d);
}
@Override
void completeDrop(final DragObject d) {
- final Pair<ComponentName, Integer> componentInfo = getAppInfoFlags(d.dragInfo);
- final UserHandleCompat user = d.dragInfo.user;
- if (startActivityWithUninstallAffordance(d)) {
+ DropTargetResultCallback callback = d.dragSource instanceof DropTargetResultCallback
+ ? (DropTargetResultCallback) d.dragSource : null;
+ startUninstallActivity(mLauncher, d.dragInfo, callback);
+ }
+
+ public static boolean startUninstallActivity(Launcher launcher, ItemInfo info) {
+ return startUninstallActivity(launcher, info, null);
+ }
+
+ public static boolean startUninstallActivity(
+ final Launcher launcher, ItemInfo info, DropTargetResultCallback callback) {
+ Pair<ComponentName, Integer> componentInfo = getAppInfoFlags(info);
+ ComponentName cn = componentInfo.first;
+
+ final boolean isUninstallable;
+ if ((componentInfo.second & AppInfo.DOWNLOADED_FLAG) == 0) {
+ // System applications cannot be installed. For now, show a toast explaining that.
+ // We may give them the option of disabling apps this way.
+ Toast.makeText(launcher, R.string.uninstall_system_app_text, Toast.LENGTH_SHORT).show();
+ isUninstallable = false;
+ } else {
+ Intent intent = new Intent(Intent.ACTION_DELETE,
+ Uri.fromParts("package", cn.getPackageName(), cn.getClassName()))
+ .setFlags(Intent.FLAG_ACTIVITY_NEW_TASK
+ | Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
+ info.user.addToIntent(intent, Intent.EXTRA_USER);
+ launcher.startActivity(intent);
+ isUninstallable = true;
+ }
+ if (callback != null) {
+ sendUninstallResult(
+ launcher, isUninstallable, componentInfo.first, info.user, callback);
+ }
+ return isUninstallable;
+ }
+ /**
+ * Notifies the {@param callback} whether the uninstall was successful or not.
+ *
+ * Since there is no direct callback for an uninstall request, we check the package existence
+ * when the launch resumes next time. This assumes that the uninstall activity will finish only
+ * after the task is completed
+ */
+ protected static void sendUninstallResult(
+ final Launcher launcher, boolean activityStarted,
+ final ComponentName cn, final UserHandleCompat user,
+ final DropTargetResultCallback callback) {
+ if (activityStarted) {
final Runnable checkIfUninstallWasSuccess = new Runnable() {
@Override
public void run() {
- boolean uninstallSuccessful = false;
- if (componentInfo != null) {
- String packageName = componentInfo.first.getPackageName();
- uninstallSuccessful = !AllAppsList.packageHasActivities(
- getContext(), packageName, user);
- }
- sendUninstallResult(d.dragSource, uninstallSuccessful);
+ String packageName = cn.getPackageName();
+ boolean uninstallSuccessful = !AllAppsList.packageHasActivities(
+ launcher, packageName, user);
+ callback.onDragObjectRemoved(uninstallSuccessful);
}
};
- mLauncher.addOnResumeCallback(checkIfUninstallWasSuccess);
+ launcher.addOnResumeCallback(checkIfUninstallWasSuccess);
} else {
- sendUninstallResult(d.dragSource, false);
+ callback.onDragObjectRemoved(false);
}
}
- protected boolean startActivityWithUninstallAffordance(DragObject d) {
- return startUninstallActivity(mLauncher, d.dragInfo);
- }
-
- public static boolean startUninstallActivity(Launcher launcher, ItemInfo info) {
- final Pair<ComponentName, Integer> componentInfo = getAppInfoFlags(info);
- final UserHandleCompat user = info.user;
- return launcher.startApplicationUninstallActivity(
- componentInfo.first, componentInfo.second, user);
- }
-
- @Thunk void sendUninstallResult(DragSource target, boolean result) {
- if (target instanceof UninstallSource) {
- ((UninstallSource) target).onUninstallActivityReturned(result);
- }
+ public interface DropTargetResultCallback {
+ /**
+ * A drag operation was complete.
+ * @param isRemoved true if the drag object should be removed, false otherwise.
+ */
+ void onDragObjectRemoved(boolean isRemoved);
}
/**
* Interface defining an object that can provide uninstallable drag objects.
*/
- public interface UninstallSource {
-
- /**
- * A pending uninstall operation was complete.
- * @param result true if uninstall was successful, false otherwise.
- */
- void onUninstallActivityReturned(boolean result);
+ public interface DropTargetSource extends DropTargetResultCallback {
/**
* Indicates that an uninstall request are made and the actual result may come