Merge "Fix intercepting touch events for guts" into pi-dev

am: 87ffd28760

Change-Id: If558d3856e5572e130fc5506e1b9f129828cad63
This commit is contained in:
android-build-team Robot
2018-05-08 09:41:04 -07:00
committed by android-build-merger

View File

@@ -2599,6 +2599,9 @@ public class ExpandableNotificationRow extends ActivatableNotificationView
@Override
protected boolean disallowSingleClick(MotionEvent event) {
if (areGutsExposed()) {
return false;
}
float x = event.getX();
float y = event.getY();
NotificationHeaderView header = getVisibleNotificationHeader();