Merge "Use falllback animation when going back to no icon" into sc-v2-dev am: 1ad55e6ab5

Original change: https://googleplex-android-review.googlesource.com/c/platform/packages/apps/Launcher3/+/15933204

Change-Id: Iad0f08f8e788093a48ff85bfa42da1338573c018
This commit is contained in:
Tony Wickham
2021-09-28 21:30:50 +00:00
committed by Automerger Merge Worker
@@ -1555,11 +1555,13 @@ public class QuickstepTransitionManager implements OnDeviceProfileChangeListener
if (anim == null) {
anim = new AnimatorSet();
boolean playFallBackAnimation = mLauncher.isInState(LauncherState.ALL_APPS)
View workspaceView = findWorkspaceView(appTargets);
boolean isWorkspaceViewVisible = workspaceView != null
&& !mLauncher.isInState(LauncherState.ALL_APPS);
boolean playFallBackAnimation = !isWorkspaceViewVisible
&& (launcherIsATargetWithMode(appTargets, MODE_OPENING)
|| mLauncher.isForceInvisible());
View workspaceView = findWorkspaceView(appTargets);
boolean playWorkspaceReveal = true;
if (mFromUnlock) {
anim.play(getUnlockWindowAnimator(appTargets, wallpaperTargets));