summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorWinson Chung <winsonc@google.com>2012-06-28 12:13:51 -0700
committerWinson Chung <winsonc@google.com>2012-06-28 12:18:20 -0700
commit42490a5aa093e5ff653b041538c9f3ddf2b3e65f (patch)
tree3db533ffc908bf4a6219ec34b2bd53f31beb2a31 /src
parentdab9b114039198add72105dcb3015d1765b2af9f (diff)
downloadandroid_packages_apps_Trebuchet-42490a5aa093e5ff653b041538c9f3ddf2b3e65f.tar.gz
android_packages_apps_Trebuchet-42490a5aa093e5ff653b041538c9f3ddf2b3e65f.tar.bz2
android_packages_apps_Trebuchet-42490a5aa093e5ff653b041538c9f3ddf2b3e65f.zip
Removing unnecessary check of shortcut infos (now that we key removals off package names already). (Bug 6755420)
Change-Id: I13f088503e58eb021a585493e1c55eeccdffea86
Diffstat (limited to 'src')
-rw-r--r--src/com/android/launcher2/LauncherModel.java18
-rw-r--r--src/com/android/launcher2/Workspace.java38
2 files changed, 13 insertions, 43 deletions
diff --git a/src/com/android/launcher2/LauncherModel.java b/src/com/android/launcher2/LauncherModel.java
index 6080411b3..1657a508a 100644
--- a/src/com/android/launcher2/LauncherModel.java
+++ b/src/com/android/launcher2/LauncherModel.java
@@ -1722,24 +1722,6 @@ public class LauncherModel extends BroadcastReceiver {
}
/**
- * Returns all the Workspace ShortcutInfos associated with a particular package.
- * @param intent
- * @return
- */
- ArrayList<ShortcutInfo> getShortcutInfosForPackage(String packageName) {
- ArrayList<ShortcutInfo> infos = new ArrayList<ShortcutInfo>();
- for (ItemInfo i : sWorkspaceItems) {
- if (i instanceof ShortcutInfo) {
- ShortcutInfo info = (ShortcutInfo) i;
- if (packageName.equals(info.getPackageName())) {
- infos.add(info);
- }
- }
- }
- return infos;
- }
-
- /**
* This is called from the code that adds shortcuts from the intent receiver. This
* doesn't have a Cursor, but
*/
diff --git a/src/com/android/launcher2/Workspace.java b/src/com/android/launcher2/Workspace.java
index 7248950e8..feb4ed077 100644
--- a/src/com/android/launcher2/Workspace.java
+++ b/src/com/android/launcher2/Workspace.java
@@ -3635,11 +3635,7 @@ public class Workspace extends SmoothPagedView
});
}
- // It is no longer the case the BubbleTextViews correspond 1:1 with the workspace items in
- // the database (and LauncherModel) since shortcuts are not added and animated in until
- // the user returns to launcher. As a result, we really should be cleaning up the Db
- // regardless of whether the item was added or not (unlike the logic above). This is only
- // relevant for direct workspace items.
+ // Clean up new-apps animation list
post(new Runnable() {
@Override
public void run() {
@@ -3649,26 +3645,18 @@ public class Workspace extends SmoothPagedView
Set<String> newApps = sp.getStringSet(InstallShortcutReceiver.NEW_APPS_LIST_KEY,
null);
- for (String packageName: packageNames) {
- // Remove all items that have the same package, but were not removed above
- ArrayList<ShortcutInfo> infos =
- mLauncher.getModel().getShortcutInfosForPackage(packageName);
- for (ShortcutInfo info : infos) {
- LauncherModel.deleteItemFromDatabase(mLauncher, info);
- }
- // Remove all queued items that match the same package
- if (newApps != null) {
- synchronized (newApps) {
- Iterator<String> iter = newApps.iterator();
- while (iter.hasNext()) {
- try {
- Intent intent = Intent.parseUri(iter.next(), 0);
- String pn = ItemInfo.getPackageName(intent);
- if (packageNames.contains(pn)) {
- iter.remove();
- }
- } catch (URISyntaxException e) {}
- }
+ // Remove all queued items that match the same package
+ if (newApps != null) {
+ synchronized (newApps) {
+ Iterator<String> iter = newApps.iterator();
+ while (iter.hasNext()) {
+ try {
+ Intent intent = Intent.parseUri(iter.next(), 0);
+ String pn = ItemInfo.getPackageName(intent);
+ if (packageNames.contains(pn)) {
+ iter.remove();
+ }
+ } catch (URISyntaxException e) {}
}
}
}