Loading packages/SystemUI/src/com/android/systemui/SwipeHelper.java +1 −4 Original line number Diff line number Diff line Loading @@ -274,10 +274,7 @@ public class SwipeHelper implements Gefingerpoken { mWatchLongPress = new Runnable() { @Override public void run() { float pos = getPos(ev); float delta = pos - mInitialTouchPos; if (mCurrView != null && !mLongPressSent && Math.abs(delta) < mPagingTouchSlop) { if (mCurrView != null && !mLongPressSent) { mLongPressSent = true; mCurrView.sendAccessibilityEvent( AccessibilityEvent.TYPE_VIEW_LONG_CLICKED); Loading packages/SystemUI/src/com/android/systemui/statusbar/stack/NotificationStackScrollLayout.java +8 −0 Original line number Diff line number Diff line Loading @@ -2063,6 +2063,14 @@ public class NotificationStackScrollLayout extends ViewGroup } } @Override public void requestDisallowInterceptTouchEvent(boolean disallowIntercept) { super.requestDisallowInterceptTouchEvent(disallowIntercept); if (disallowIntercept) { mSwipeHelper.removeLongPressCallback(); } } private void onViewRemovedInternal(View child) { if (mChangePositionInProgress) { // This is only a position change, don't do anything special Loading Loading
packages/SystemUI/src/com/android/systemui/SwipeHelper.java +1 −4 Original line number Diff line number Diff line Loading @@ -274,10 +274,7 @@ public class SwipeHelper implements Gefingerpoken { mWatchLongPress = new Runnable() { @Override public void run() { float pos = getPos(ev); float delta = pos - mInitialTouchPos; if (mCurrView != null && !mLongPressSent && Math.abs(delta) < mPagingTouchSlop) { if (mCurrView != null && !mLongPressSent) { mLongPressSent = true; mCurrView.sendAccessibilityEvent( AccessibilityEvent.TYPE_VIEW_LONG_CLICKED); Loading
packages/SystemUI/src/com/android/systemui/statusbar/stack/NotificationStackScrollLayout.java +8 −0 Original line number Diff line number Diff line Loading @@ -2063,6 +2063,14 @@ public class NotificationStackScrollLayout extends ViewGroup } } @Override public void requestDisallowInterceptTouchEvent(boolean disallowIntercept) { super.requestDisallowInterceptTouchEvent(disallowIntercept); if (disallowIntercept) { mSwipeHelper.removeLongPressCallback(); } } private void onViewRemovedInternal(View child) { if (mChangePositionInProgress) { // This is only a position change, don't do anything special Loading