Merge "Limit starting bounds of swipe to animation start rect" into tm-dev

This commit is contained in:
Vinit Nayak
2022-05-27 02:52:36 +00:00
committed by Android (Google) Code Review
4 changed files with 33 additions and 0 deletions

View File

@@ -266,6 +266,13 @@ public abstract class SwipeUpAnimationLogic implements
RectF cropRectF = new RectF(taskViewSimulator.getCurrentCropRect());
// Move the startRect to Launcher space as floatingIconView runs in Launcher
Matrix windowToHomePositionMap = new Matrix();
// If the start rect ends up overshooting too much to the left/right offscreen, bring it
// back to fullscreen. This can happen when the recentsScroll value isn't aligned with
// the pageScroll value for a given taskView, see b/228829958#comment12
mRemoteTargetHandles[0].getTaskViewSimulator().getOrientationState().getOrientationHandler()
.fixBoundsForHomeAnimStartRect(startRect, mDp);
homeToWindowPositionMap.invert(windowToHomePositionMap);
windowToHomePositionMap.mapRect(startRect);