Merge "Do not skip onMovementBoundsChanged if already in PiP" into sc-dev
This commit is contained in:
committed by
Android (Google) Code Review
commit
99bded1612
@@ -835,11 +835,14 @@ public class PipTaskOrganizer implements ShellTaskOrganizer.TaskListener,
|
|||||||
WindowContainerTransaction wct) {
|
WindowContainerTransaction wct) {
|
||||||
// note that this can be called when swipe-to-home or fixed-rotation is happening.
|
// note that this can be called when swipe-to-home or fixed-rotation is happening.
|
||||||
// Skip this entirely if that's the case.
|
// Skip this entirely if that's the case.
|
||||||
if ((mInSwipePipToHomeTransition || mWaitForFixedRotation) && fromRotation) {
|
final boolean waitForFixedRotationOnEnteringPip = mWaitForFixedRotation
|
||||||
|
&& (mState != State.ENTERED_PIP);
|
||||||
|
if ((mInSwipePipToHomeTransition || waitForFixedRotationOnEnteringPip) && fromRotation) {
|
||||||
if (DEBUG) {
|
if (DEBUG) {
|
||||||
Log.d(TAG, "Skip onMovementBoundsChanged on rotation change"
|
Log.d(TAG, "Skip onMovementBoundsChanged on rotation change"
|
||||||
+ " mInSwipePipToHomeTransition=" + mInSwipePipToHomeTransition
|
+ " mInSwipePipToHomeTransition=" + mInSwipePipToHomeTransition
|
||||||
+ " mWaitForFixedRotation=" + mWaitForFixedRotation);
|
+ " mWaitForFixedRotation=" + mWaitForFixedRotation
|
||||||
|
+ " mState=" + mState);
|
||||||
}
|
}
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user