Merge "Update the divider touch-region properly" into rvc-dev am: f4f1079b96

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

Change-Id: I277fcdc1e9deac36e9d9ba77c77f30570fa6b38f
This commit is contained in:
Evan Rosky
2020-06-22 21:53:06 +00:00
committed by Automerger Merge Worker

View File

@@ -352,8 +352,6 @@ public class DividerView extends FrameLayout implements OnTouchListener,
minimizeLeft + mMinimizedShadow.getMeasuredWidth(),
minimizeTop + mMinimizedShadow.getMeasuredHeight());
if (changed) {
mWindowManagerProxy.setTouchRegion(new Rect(mHandle.getLeft(), mHandle.getTop(),
mHandle.getRight(), mHandle.getBottom()));
notifySplitScreenBoundsChanged();
}
}
@@ -679,6 +677,14 @@ public class DividerView extends FrameLayout implements OnTouchListener,
private void notifySplitScreenBoundsChanged() {
mOtherTaskRect.set(mSplitLayout.mSecondary);
mTmpRect.set(mHandle.getLeft(), mHandle.getTop(), mHandle.getRight(), mHandle.getBottom());
if (isHorizontalDivision()) {
mTmpRect.offsetTo(0, mDividerPositionY);
} else {
mTmpRect.offsetTo(mDividerPositionX, 0);
}
mWindowManagerProxy.setTouchRegion(mTmpRect);
mTmpRect.set(mSplitLayout.mDisplayLayout.stableInsets());
switch (mSplitLayout.getPrimarySplitSide()) {
case WindowManager.DOCKED_LEFT: