summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorvadimt <vadimt@google.com>2019-09-05 14:08:39 -0700
committervadimt <vadimt@google.com>2019-09-05 14:08:39 -0700
commit30618db33f511d6838d39f379ec72f54b7c6eff8 (patch)
tree78dc7fec046ca0a644f79be719472505074bba4a /src
parentb34f951e7e717838310f2bfca7983604c1d5b9c0 (diff)
downloadandroid_packages_apps_Trebuchet-30618db33f511d6838d39f379ec72f54b7c6eff8.tar.gz
android_packages_apps_Trebuchet-30618db33f511d6838d39f379ec72f54b7c6eff8.tar.bz2
android_packages_apps_Trebuchet-30618db33f511d6838d39f379ec72f54b7c6eff8.zip
Add tracing for non-dragging icon
Bug: 138729456 Change-Id: Ib18f1544f2520509bd982f032bf3ed0c72ca9529
Diffstat (limited to 'src')
-rw-r--r--src/com/android/launcher3/dragndrop/DragDriver.java3
-rw-r--r--src/com/android/launcher3/views/BaseDragLayer.java6
2 files changed, 9 insertions, 0 deletions
diff --git a/src/com/android/launcher3/dragndrop/DragDriver.java b/src/com/android/launcher3/dragndrop/DragDriver.java
index bd2a03b6c..01e0f923c 100644
--- a/src/com/android/launcher3/dragndrop/DragDriver.java
+++ b/src/com/android/launcher3/dragndrop/DragDriver.java
@@ -61,6 +61,9 @@ public abstract class DragDriver {
mEventListener.onDriverDragEnd(ev.getX(), ev.getY());
break;
case MotionEvent.ACTION_CANCEL:
+ if (TestProtocol.sDebugTracing) {
+ Log.d(TestProtocol.NO_DRAG_TO_WORKSPACE, "DragDriver.ACTION_CANCEL");
+ }
mEventListener.onDriverDragCancel();
break;
}
diff --git a/src/com/android/launcher3/views/BaseDragLayer.java b/src/com/android/launcher3/views/BaseDragLayer.java
index 799762d8f..c08b65931 100644
--- a/src/com/android/launcher3/views/BaseDragLayer.java
+++ b/src/com/android/launcher3/views/BaseDragLayer.java
@@ -29,6 +29,7 @@ import android.graphics.Rect;
import android.graphics.RectF;
import android.os.Build;
import android.util.AttributeSet;
+import android.util.Log;
import android.util.Property;
import android.view.MotionEvent;
import android.view.View;
@@ -41,6 +42,7 @@ import android.widget.FrameLayout;
import com.android.launcher3.AbstractFloatingView;
import com.android.launcher3.InsettableFrameLayout;
import com.android.launcher3.Utilities;
+import com.android.launcher3.testing.TestProtocol;
import com.android.launcher3.util.MultiValueAlpha;
import com.android.launcher3.util.MultiValueAlpha.AlphaProperty;
import com.android.launcher3.util.TouchController;
@@ -261,6 +263,10 @@ public abstract class BaseDragLayer<T extends Context & ActivityContext>
}
case ACTION_CANCEL:
case ACTION_UP:
+ if (TestProtocol.sDebugTracing) {
+ Log.d(TestProtocol.NO_DRAG_TO_WORKSPACE,
+ "BaseDragLayer.ACTION_UP/CANCEL " + ev);
+ }
mTouchDispatchState &= ~TOUCH_DISPATCHING_GESTURE;
mTouchDispatchState &= ~TOUCH_DISPATCHING_VIEW;
break;