Merge "Fix shade flicker & touch absorption" into sc-qpr1-dev

This commit is contained in:
Lyn Han
2021-08-19 00:42:22 +00:00
committed by Android (Google) Code Review

View File

@@ -1211,10 +1211,14 @@ public abstract class PanelViewController {
case MotionEvent.ACTION_MOVE:
final float h = y - mInitialTouchY;
addMovement(event);
if (canCollapsePanel || mTouchStartedInEmptyArea || mAnimatingOnDown) {
final boolean openShadeWithoutHun =
mPanelClosedOnDown && !mCollapsedAndHeadsUpOnDown;
if (canCollapsePanel || mTouchStartedInEmptyArea || mAnimatingOnDown
|| openShadeWithoutHun) {
float hAbs = Math.abs(h);
float touchSlop = getTouchSlop(event);
if ((h < -touchSlop || (mAnimatingOnDown && hAbs > touchSlop))
if ((h < -touchSlop
|| ((openShadeWithoutHun || mAnimatingOnDown) && hAbs > touchSlop))
&& hAbs > Math.abs(x - mInitialTouchX)) {
cancelHeightAnimator();
startExpandMotion(x, y, true /* startTracking */, mExpandedHeight);
@@ -1227,10 +1231,7 @@ public abstract class PanelViewController {
mVelocityTracker.clear();
break;
}
// Finally, if none of the above cases applies, ensure that touches do not get handled
// by the contents of a panel that is not showing (a bit of a hack to avoid b/178277858)
return (mView.getVisibility() != View.VISIBLE);
return false;
}
@Override