summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAdam Cohen <adamcohen@google.com>2012-05-16 21:37:32 -0700
committerAdam Cohen <adamcohen@google.com>2012-05-16 21:37:32 -0700
commit90340cf67aa413112eb1a697e301894a7e1a8a2a (patch)
treed0d53e53b53aa5eb5ec6a439493016600241e5da
parent3aff81c759a2912bed45643f7e1fb503fcfe69b0 (diff)
downloadandroid_packages_apps_Trebuchet-90340cf67aa413112eb1a697e301894a7e1a8a2a.tar.gz
android_packages_apps_Trebuchet-90340cf67aa413112eb1a697e301894a7e1a8a2a.tar.bz2
android_packages_apps_Trebuchet-90340cf67aa413112eb1a697e301894a7e1a8a2a.zip
Adding logging for the bug that won't die (issue 6282761)
Change-Id: I2f10a3374c8646635f6f45d51e8ae2154706a680
-rw-r--r--src/com/android/launcher2/AppsCustomizePagedView.java12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/com/android/launcher2/AppsCustomizePagedView.java b/src/com/android/launcher2/AppsCustomizePagedView.java
index 71362e8c1..4712a37b8 100644
--- a/src/com/android/launcher2/AppsCustomizePagedView.java
+++ b/src/com/android/launcher2/AppsCustomizePagedView.java
@@ -614,18 +614,24 @@ public class AppsCustomizePagedView extends PagedViewWithDraggableItems implemen
@Override
public void onShortPress(View v) {
+ Log.d(TAG, "onShortPress, view: " + v);
// We are anticipating a long press, and we use this time to load bind and instantiate
// the widget. This will need to be cleaned up if it turns out no long press occurs.
if (mCreateWidgetInfo != null) {
+ Log.d(TAG, "onShortPress --> cleanup previous, view: " + v + ", create info: " + mCreateWidgetInfo);
// Just in case the cleanup process wasn't properly executed. This shouldn't happen.
cleanupWidgetPreloading(false);
}
mCreateWidgetInfo = new PendingAddWidgetInfo((PendingAddWidgetInfo) v.getTag());
+ Log.d(TAG, "onShortPress --> create widget info: " + mCreateWidgetInfo);
preloadWidget(mCreateWidgetInfo);
}
private void cleanupWidgetPreloading(boolean widgetWasAdded) {
+ Log.d(TAG, "cleanup widget preloading");
+
if (!widgetWasAdded) {
+ Log.d(TAG, "cleanup widget preloading --> widget wasn't added");
// If the widget was not added, we may need to do further cleanup.
PendingAddWidgetInfo info = mCreateWidgetInfo;
mCreateWidgetInfo = null;
@@ -651,12 +657,16 @@ public class AppsCustomizePagedView extends PagedViewWithDraggableItems implemen
@Override
public void cleanUpShortPress(View v) {
+ Log.d(TAG, "cleanup shortpress, view: " + v);
if (!mDraggingWidget) {
+ Log.d(TAG, "cleanup shortpress --> cleanup preloading");
cleanupWidgetPreloading(false);
}
}
private boolean beginDraggingWidget(View v) {
+ Log.d(TAG, "begin dragging widget, view: " + v);
+
mDraggingWidget = true;
// Get the widget preview as the drag representation
ImageView image = (ImageView) v.findViewById(R.id.widget_preview);
@@ -665,6 +675,7 @@ public class AppsCustomizePagedView extends PagedViewWithDraggableItems implemen
// If the ImageView doesn't have a drawable yet, the widget preview hasn't been loaded and
// we abort the drag.
if (image.getDrawable() == null) {
+ Log.d(TAG, "begin dragging widget, no drawable");
mDraggingWidget = false;
return false;
}
@@ -672,6 +683,7 @@ public class AppsCustomizePagedView extends PagedViewWithDraggableItems implemen
// This can happen in some weird cases involving multi-touch. We can't start dragging the
// widget if this is null, so we break out.
if (mCreateWidgetInfo == null) {
+ Log.d(TAG, "begin dragging widget, create widget info null");
return false;
}