Merge "Fix manage not being dismissed by taps in the AV bounds." into rvc-dev am: 6097e16b38

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/11827747

Change-Id: I062fc7b9591d07b1fd18978abc9c72550a7b31e6
This commit is contained in:
Josh Tsuji
2020-06-11 14:36:05 +00:00
committed by Automerger Merge Worker

View File

@@ -350,7 +350,10 @@ public class BubbleExpandedView extends LinearLayout {
// ActivityView's vertical bounds. These events are part of a back gesture, and so they
// should not collapse the stack (which all other touches on areas around the AV would
// do).
if (motionEvent.getRawY() >= avBounds.top && motionEvent.getRawY() <= avBounds.bottom) {
if (motionEvent.getRawY() >= avBounds.top
&& motionEvent.getRawY() <= avBounds.bottom
&& (motionEvent.getRawX() < avBounds.left
|| motionEvent.getRawX() > avBounds.right)) {
return true;
}