summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSunny Goyal <sunnygoyal@google.com>2018-04-09 16:30:51 -0700
committerSunny Goyal <sunnygoyal@google.com>2018-04-09 16:31:12 -0700
commitb35f50cf55742a26c6e319ec324f9118c6886b88 (patch)
tree5a2136210b748b4f6ec0f98afea0daee0f008a9b
parent55156007320b83940d285eab9b0ba3dc149c634a (diff)
downloadandroid_packages_apps_Trebuchet-b35f50cf55742a26c6e319ec324f9118c6886b88.tar.gz
android_packages_apps_Trebuchet-b35f50cf55742a26c6e319ec324f9118c6886b88.tar.bz2
android_packages_apps_Trebuchet-b35f50cf55742a26c6e319ec324f9118c6886b88.zip
Do not reset the previous state animation, if it is a part of the new state animaiton
Change-Id: Ic433db8cd2b0701923185d0a2db2a4361567437f
-rw-r--r--quickstep/src/com/android/launcher3/LauncherAppTransitionManagerImpl.java4
-rw-r--r--src/com/android/launcher3/LauncherStateManager.java11
2 files changed, 13 insertions, 2 deletions
diff --git a/quickstep/src/com/android/launcher3/LauncherAppTransitionManagerImpl.java b/quickstep/src/com/android/launcher3/LauncherAppTransitionManagerImpl.java
index ad0b7344b..74d455faa 100644
--- a/quickstep/src/com/android/launcher3/LauncherAppTransitionManagerImpl.java
+++ b/quickstep/src/com/android/launcher3/LauncherAppTransitionManagerImpl.java
@@ -261,6 +261,7 @@ public class LauncherAppTransitionManagerImpl extends LauncherAppTransitionManag
return false;
}
+ Animator childStateAnimation = null;
// Found a visible recents task that matches the opening app, lets launch the app from there
Animator launcherAnim;
final AnimatorListenerAdapter windowAnimEndListener;
@@ -276,6 +277,7 @@ public class LauncherAppTransitionManagerImpl extends LauncherAppTransitionManag
mLauncher.getStateManager()
.createAnimationToNewWorkspace(NORMAL, RECENTS_LAUNCH_DURATION);
controller.dispatchOnStart();
+ childStateAnimation = controller.getOriginalTarget();
launcherAnim = controller.getAnimationPlayer().setDuration(RECENTS_LAUNCH_DURATION);
windowAnimEndListener = new AnimatorListenerAdapter() {
@Override
@@ -291,7 +293,7 @@ public class LauncherAppTransitionManagerImpl extends LauncherAppTransitionManag
// Set the current animation first, before adding windowAnimEndListener. Setting current
// animation adds some listeners which need to be called before windowAnimEndListener
// (the ordering of listeners matter in this case).
- mLauncher.getStateManager().setCurrentAnimation(target);
+ mLauncher.getStateManager().setCurrentAnimation(target, childStateAnimation);
target.addListener(windowAnimEndListener);
return true;
}
diff --git a/src/com/android/launcher3/LauncherStateManager.java b/src/com/android/launcher3/LauncherStateManager.java
index 534c8ae35..d5e6a9ddd 100644
--- a/src/com/android/launcher3/LauncherStateManager.java
+++ b/src/com/android/launcher3/LauncherStateManager.java
@@ -354,8 +354,17 @@ public class LauncherStateManager {
/**
* Sets the animation as the current state animation, i.e., canceled when
* starting another animation and may block some launcher interactions while running.
+ *
+ * @param childAnimations Set of animations with the new target is controlling.
*/
- public void setCurrentAnimation(AnimatorSet anim) {
+ public void setCurrentAnimation(AnimatorSet anim, Animator... childAnimations) {
+ for (Animator childAnim : childAnimations) {
+ if (childAnim != null && mConfig.mCurrentAnimation == childAnim) {
+ mConfig.mCurrentAnimation.removeListener(mConfig);
+ mConfig.mCurrentAnimation = null;
+ break;
+ }
+ }
boolean reapplyNeeded = mConfig.mCurrentAnimation != null;
cancelAnimation();
if (reapplyNeeded) {