Merge "Adapted HUN behavior when swiping vertically" into lmp-mr1-dev
This commit is contained in:
@@ -397,14 +397,11 @@ public class HeadsUpNotificationView extends FrameLayout implements SwipeHelper.
|
||||
final float daX = Math.abs(ev.getX() - mFirstX);
|
||||
final float daY = Math.abs(dY);
|
||||
if (!mConsuming && daX < daY && daY > mTouchSlop) {
|
||||
releaseAndClose();
|
||||
if (dY > 0) {
|
||||
if (DEBUG_EDGE_SWIPE) Log.d(TAG, "found an open");
|
||||
mBar.animateExpandNotificationsPanel();
|
||||
}
|
||||
if (dY < 0) {
|
||||
if (DEBUG_EDGE_SWIPE) Log.d(TAG, "found a close");
|
||||
mBar.onHeadsUpDismissed();
|
||||
}
|
||||
mConsuming = true;
|
||||
}
|
||||
break;
|
||||
|
||||
Reference in New Issue
Block a user