[7/n] Camera Compat: Tooltip with shell transitions

Test: Manual
Fix: 266738239
Change-Id: I08ea64620a8c2612dbccd757077c137317256613
This commit is contained in:
Graciela Wissen Putri
2023-05-11 10:59:28 +00:00
parent e0fe75c325
commit 0585b227d0
2 changed files with 8 additions and 1 deletions

View File

@@ -245,7 +245,7 @@ final class DisplayRotationCompatPolicy {
}
/**
* Notifies that animation in {@link ScreenAnimationRotation} has finished.
* Notifies that animation in {@link ScreenRotationAnimation} has finished.
*
* <p>This class uses this signal as a trigger for notifying the user about forced rotation
* reason with the {@link Toast}.

View File

@@ -1194,6 +1194,13 @@ class Transition implements BLASTSyncEngine.TransactionReadyListener {
if (asyncRotationController != null && containsChangeFor(dc, mTargets)) {
asyncRotationController.onTransitionFinished();
}
if (hasParticipatedDisplay && dc.mDisplayRotationCompatPolicy != null) {
final ChangeInfo changeInfo = mChanges.get(dc);
if (changeInfo != null
&& changeInfo.mRotation != dc.getWindowConfiguration().getRotation()) {
dc.mDisplayRotationCompatPolicy.onScreenRotationAnimationFinished();
}
}
if (mTransientLaunches != null) {
InsetsControlTarget prevImeTarget = dc.getImeTarget(
DisplayContent.IME_TARGET_CONTROL);