summaryrefslogtreecommitdiffstats
path: root/src/com/android
diff options
context:
space:
mode:
authorWinson Chung <winsonc@google.com>2012-06-05 10:12:48 -0700
committerWinson Chung <winsonc@google.com>2012-06-05 10:13:56 -0700
commitfd39d8ee9512d873aaaa205839ca233c2be4d9d3 (patch)
tree3bd44c7151cbc1b0f4f9621ac96915b7e3f9bcee /src/com/android
parentd4532bb728f12fed3633370d8c44959a035ed5b3 (diff)
downloadandroid_packages_apps_Trebuchet-fd39d8ee9512d873aaaa205839ca233c2be4d9d3.tar.gz
android_packages_apps_Trebuchet-fd39d8ee9512d873aaaa205839ca233c2be4d9d3.tar.bz2
android_packages_apps_Trebuchet-fd39d8ee9512d873aaaa205839ca233c2be4d9d3.zip
Extending timeout workaround for updating the widget tray after we get a packages-changed broadcast. (Bug 6602951)
Change-Id: Ice56816e85dda0bd04782d8b98e37566286e23e6
Diffstat (limited to 'src/com/android')
-rw-r--r--src/com/android/launcher2/AppsCustomizePagedView.java10
1 files changed, 7 insertions, 3 deletions
diff --git a/src/com/android/launcher2/AppsCustomizePagedView.java b/src/com/android/launcher2/AppsCustomizePagedView.java
index 3a4125510..45bb08ac9 100644
--- a/src/com/android/launcher2/AppsCustomizePagedView.java
+++ b/src/com/android/launcher2/AppsCustomizePagedView.java
@@ -547,13 +547,14 @@ public class AppsCustomizePagedView extends PagedViewWithDraggableItems implemen
// TODO: this isn't ideal, but we actually need to delay here. This call is triggered
// by a broadcast receiver, and in order for it to work correctly, we need to know that
// the AppWidgetService has already received and processed the same broadcast. Since there
- // is no guarantee about ordering of broadcast receipt, we just delay here. Ideally,
- // we should have a more precise way of ensuring the AppWidgetService is up to date.
+ // is no guarantee about ordering of broadcast receipt, we just delay here. This is a
+ // workaround until we add a callback from AppWidgetService to AppWidgetHost when widget
+ // packages are added, updated or removed.
postDelayed(new Runnable() {
public void run() {
updatePackages();
}
- }, 500);
+ }, 1500);
}
public void updatePackages() {
@@ -574,6 +575,9 @@ public class AppsCustomizePagedView extends PagedViewWithDraggableItems implemen
if (minSpanX <= LauncherModel.getCellCountX() &&
minSpanY <= LauncherModel.getCellCountY()) {
mWidgets.add(widget);
+ } else {
+ Log.e(TAG, "Widget " + widget.provider + " can not fit on this device (" +
+ widget.minWidth + ", " + widget.minHeight + ")");
}
} else {
Log.e(TAG, "Widget " + widget.provider + " has invalid dimensions (" +