Loading packages/SystemUI/src/com/android/systemui/SwipeHelper.java +6 −4 Original line number Diff line number Diff line Loading @@ -165,11 +165,13 @@ public class SwipeHelper { case MotionEvent.ACTION_DOWN: mDragging = false; mCurrView = mCallback.getChildAtPosition(ev); mVelocityTracker.clear(); if (mCurrView != null) { mCurrAnimView = mCallback.getChildContentView(mCurrView); mCanCurrViewBeDimissed = mCallback.canChildBeDismissed(mCurrView); mVelocityTracker.clear(); mVelocityTracker.addMovement(ev); mInitialTouchPos = getPos(ev); } break; case MotionEvent.ACTION_MOVE: if (mCurrView != null) { Loading Loading
packages/SystemUI/src/com/android/systemui/SwipeHelper.java +6 −4 Original line number Diff line number Diff line Loading @@ -165,11 +165,13 @@ public class SwipeHelper { case MotionEvent.ACTION_DOWN: mDragging = false; mCurrView = mCallback.getChildAtPosition(ev); mVelocityTracker.clear(); if (mCurrView != null) { mCurrAnimView = mCallback.getChildContentView(mCurrView); mCanCurrViewBeDimissed = mCallback.canChildBeDismissed(mCurrView); mVelocityTracker.clear(); mVelocityTracker.addMovement(ev); mInitialTouchPos = getPos(ev); } break; case MotionEvent.ACTION_MOVE: if (mCurrView != null) { Loading