Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 45162f9c authored by Alex Chau's avatar Alex Chau
Browse files

Add debug log for RecentsView touch down

Bug: 318590728
Test: manual
Flag: None
Change-Id: I591ed74af748f0fe424e1b58b4f610a21a106124
parent 0e920d2c
Loading
Loading
Loading
Loading
+9 −0
Original line number Diff line number Diff line
@@ -1503,6 +1503,15 @@ public abstract class RecentsView<ACTIVITY_TYPE extends StatefulActivity<STATE_T
                > deviceProfile.availableWidthPx * SIGNIFICANT_MOVE_SCREEN_WIDTH_PERCENTAGE;
    }

    @Override
    public boolean onInterceptTouchEvent(MotionEvent ev) {
        boolean intercept = super.onInterceptTouchEvent(ev);
        if (ev.getActionMasked() == MotionEvent.ACTION_DOWN) {
            Log.d("b/318590728", "onInterceptTouchEvent: " + ev);
        }
        return intercept;
    }

    @Override
    public boolean onTouchEvent(MotionEvent ev) {
        super.onTouchEvent(ev);