diff --git a/services/core/java/com/android/server/wm/DisplayContent.java b/services/core/java/com/android/server/wm/DisplayContent.java index e31eaf76b100b..6655e92634e4c 100644 --- a/services/core/java/com/android/server/wm/DisplayContent.java +++ b/services/core/java/com/android/server/wm/DisplayContent.java @@ -499,6 +499,8 @@ class DisplayContent extends WindowContainer mAnimatedWindowStates = new ArrayList<>(2); + private final Runnable[] mDeferredFinishCallbacks; + + public FixedRotationAnimationController(DisplayContent displayContent) { + mWmService = displayContent.mWmService; + addAnimatedWindow(displayContent.getDisplayPolicy().getStatusBar()); + addAnimatedWindow(displayContent.getDisplayPolicy().getNavigationBar()); + mDeferredFinishCallbacks = new Runnable[mAnimatedWindowStates.size()]; + } + + private void addAnimatedWindow(WindowState windowState) { + if (windowState != null) { + mAnimatedWindowStates.add(windowState); + } + } + + /** + * Show the previously hidden {@link WindowToken} if their surfaces have already been rotated. + * + * @return True if the show animation has been started, in which case the caller no longer needs + * this {@link FixedRotationAnimationController}. + */ + boolean show() { + if (!mShowRequested && readyToShow()) { + mShowRequested = true; + for (int i = mAnimatedWindowStates.size() - 1; i >= 0; i--) { + WindowState windowState = mAnimatedWindowStates.get(i); + fadeWindowToken(true, windowState.getParent(), i); + } + return true; + } + return false; + } + + void hide(int targetRotation) { + mTargetRotation = targetRotation; + if (mShowRequested) { + mShowRequested = false; + for (int i = mAnimatedWindowStates.size() - 1; i >= 0; i--) { + WindowState windowState = mAnimatedWindowStates.get(i); + fadeWindowToken(false /* show */, windowState.getParent(), i); + } + } + } + + void cancel() { + for (int i = mAnimatedWindowStates.size() - 1; i >= 0; i--) { + WindowState windowState = mAnimatedWindowStates.get(i); + mShowRequested = true; + fadeWindowToken(true /* show */, windowState.getParent(), i); + } + } + + private void fadeWindowToken(boolean show, WindowContainer windowToken, + int index) { + Animation animation = AnimationUtils.loadAnimation(mWmService.mContext, + show ? R.anim.fade_in : R.anim.fade_out); + LocalAnimationAdapter.AnimationSpec windowAnimationSpec = createAnimationSpec(animation); + + FixedRotationAnimationAdapter animationAdapter = new FixedRotationAnimationAdapter( + windowAnimationSpec, windowToken.getSurfaceAnimationRunner(), show, index); + + // We deferred the end of the animation when hiding the token, so we need to end it now that + // it's shown again. + SurfaceAnimator.OnAnimationFinishedCallback finishedCallback = show ? (t, r) -> { + if (mDeferredFinishCallbacks[index] != null) { + mDeferredFinishCallbacks[index].run(); + mDeferredFinishCallbacks[index] = null; + } + } : null; + windowToken.startAnimation(windowToken.getPendingTransaction(), animationAdapter, + mShowRequested, ANIMATION_TYPE_FIXED_TRANSFORM, finishedCallback); + } + + /** + * Check if all the mAnimatedWindowState's surfaces have been rotated to the + * mTargetRotation. + */ + private boolean readyToShow() { + for (int i = mAnimatedWindowStates.size() - 1; i >= 0; i--) { + WindowState windowState = mAnimatedWindowStates.get(i); + if (windowState.getConfiguration().windowConfiguration.getRotation() + != mTargetRotation || windowState.mPendingSeamlessRotate != null) { + return false; + } + } + return true; + } + + + private LocalAnimationAdapter.AnimationSpec createAnimationSpec(Animation animation) { + return new LocalAnimationAdapter.AnimationSpec() { + + Transformation mTransformation = new Transformation(); + + @Override + public boolean getShowWallpaper() { + return true; + } + + @Override + public long getDuration() { + return animation.getDuration(); + } + + @Override + public void apply(SurfaceControl.Transaction t, SurfaceControl leash, + long currentPlayTime) { + mTransformation.clear(); + animation.getTransformation(currentPlayTime, mTransformation); + t.setAlpha(leash, mTransformation.getAlpha()); + } + + @Override + public void dump(PrintWriter pw, String prefix) { + pw.print(prefix); + pw.println(animation); + } + + @Override + public void dumpDebugInner(ProtoOutputStream proto) { + final long token = proto.start(WINDOW); + proto.write(ANIMATION, animation.toString()); + proto.end(token); + } + }; + } + + private class FixedRotationAnimationAdapter extends LocalAnimationAdapter { + private final boolean mShow; + private final int mIndex; + + FixedRotationAnimationAdapter(AnimationSpec windowAnimationSpec, + SurfaceAnimationRunner surfaceAnimationRunner, boolean show, int index) { + super(windowAnimationSpec, surfaceAnimationRunner); + mShow = show; + mIndex = index; + } + + @Override + public boolean shouldDeferAnimationFinish(Runnable endDeferFinishCallback) { + // We defer the end of the hide animation to ensure the tokens stay hidden until + // we show them again. + if (!mShow) { + mDeferredFinishCallbacks[mIndex] = endDeferFinishCallback; + return true; + } + return false; + } + } +} diff --git a/services/core/java/com/android/server/wm/SurfaceAnimator.java b/services/core/java/com/android/server/wm/SurfaceAnimator.java index 42342a60ba161..0143eb1abe032 100644 --- a/services/core/java/com/android/server/wm/SurfaceAnimator.java +++ b/services/core/java/com/android/server/wm/SurfaceAnimator.java @@ -488,6 +488,12 @@ class SurfaceAnimator { */ static final int ANIMATION_TYPE_INSETS_CONTROL = 1 << 5; + /** + * Animation when a fixed rotation transform is applied to a window token. + * @hide + */ + static final int ANIMATION_TYPE_FIXED_TRANSFORM = 1 << 6; + /** * Bitmask to include all animation types. This is NOT an {@link AnimationType} * @hide @@ -505,7 +511,8 @@ class SurfaceAnimator { ANIMATION_TYPE_DIMMER, ANIMATION_TYPE_RECENTS, ANIMATION_TYPE_WINDOW_ANIMATION, - ANIMATION_TYPE_INSETS_CONTROL + ANIMATION_TYPE_INSETS_CONTROL, + ANIMATION_TYPE_FIXED_TRANSFORM }) @Retention(RetentionPolicy.SOURCE) @interface AnimationType {} diff --git a/services/core/java/com/android/server/wm/WindowToken.java b/services/core/java/com/android/server/wm/WindowToken.java index 768f89eff774c..8739bad4398b6 100644 --- a/services/core/java/com/android/server/wm/WindowToken.java +++ b/services/core/java/com/android/server/wm/WindowToken.java @@ -642,6 +642,9 @@ class WindowToken extends WindowContainer { final int originalRotation = getWindowConfiguration().getRotation(); onConfigurationChanged(parent.getConfiguration()); onCancelFixedRotationTransform(originalRotation); + if (mDisplayContent.mFixedRotationAnimationController != null) { + mDisplayContent.mFixedRotationAnimationController.cancel(); + } } /** diff --git a/services/tests/wmtests/src/com/android/server/wm/DisplayContentTests.java b/services/tests/wmtests/src/com/android/server/wm/DisplayContentTests.java index ac95a817bec91..7b23bfb48a1a0 100644 --- a/services/tests/wmtests/src/com/android/server/wm/DisplayContentTests.java +++ b/services/tests/wmtests/src/com/android/server/wm/DisplayContentTests.java @@ -57,6 +57,7 @@ import static com.android.dx.mockito.inline.extended.ExtendedMockito.same; import static com.android.dx.mockito.inline.extended.ExtendedMockito.spyOn; import static com.android.dx.mockito.inline.extended.ExtendedMockito.times; import static com.android.dx.mockito.inline.extended.ExtendedMockito.verify; +import static com.android.server.wm.SurfaceAnimator.ANIMATION_TYPE_FIXED_TRANSFORM; import static com.android.server.wm.WindowContainer.POSITION_TOP; import static com.android.server.wm.WindowManagerService.UPDATE_FOCUS_NORMAL; @@ -1059,6 +1060,8 @@ public class DisplayContentTests extends WindowTestsBase { @Test public void testApplyTopFixedRotationTransform() { mWm.mIsFixedRotationTransformEnabled = true; + mDisplayContent.getDisplayPolicy().addWindowLw(mStatusBarWindow, mStatusBarWindow.mAttrs); + mDisplayContent.getDisplayPolicy().addWindowLw(mNavBarWindow, mNavBarWindow.mAttrs); final Configuration config90 = new Configuration(); mDisplayContent.computeScreenConfiguration(config90, ROTATION_90); @@ -1079,6 +1082,12 @@ public class DisplayContentTests extends WindowTestsBase { ROTATION_0 /* oldRotation */, ROTATION_90 /* newRotation */, false /* forceUpdate */)); + assertNotNull(mDisplayContent.mFixedRotationAnimationController); + assertTrue(mStatusBarWindow.getParent().isAnimating(WindowContainer.AnimationFlags.PARENTS, + ANIMATION_TYPE_FIXED_TRANSFORM)); + assertTrue(mNavBarWindow.getParent().isAnimating(WindowContainer.AnimationFlags.PARENTS, + ANIMATION_TYPE_FIXED_TRANSFORM)); + final Rect outFrame = new Rect(); final Rect outInsets = new Rect(); final Rect outStableInsets = new Rect(); @@ -1131,6 +1140,9 @@ public class DisplayContentTests extends WindowTestsBase { assertFalse(app.hasFixedRotationTransform()); assertFalse(app2.hasFixedRotationTransform()); assertEquals(config90.orientation, mDisplayContent.getConfiguration().orientation); + + mDisplayContent.finishFixedRotationAnimation(); + assertNull(mDisplayContent.mFixedRotationAnimationController); } @Test