blob: 468cf6d259a3e9a573882a0a5d4c210bd72c59f5 [file] [log] [blame]
Craig Mautner164d4bb2012-11-26 13:51:23 -08001/*
2 * Copyright (C) 2011 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package com.android.server.wm;
18
Filip Gruszczynski82861362015-10-16 14:21:09 -070019import static android.view.WindowManagerInternal.AppTransitionListener;
20import static com.android.internal.R.styleable.WindowAnimation_activityCloseEnterAnimation;
21import static com.android.internal.R.styleable.WindowAnimation_activityCloseExitAnimation;
22import static com.android.internal.R.styleable.WindowAnimation_activityOpenEnterAnimation;
23import static com.android.internal.R.styleable.WindowAnimation_activityOpenExitAnimation;
24import static com.android.internal.R.styleable.WindowAnimation_launchTaskBehindSourceAnimation;
25import static com.android.internal.R.styleable.WindowAnimation_launchTaskBehindTargetAnimation;
26import static com.android.internal.R.styleable.WindowAnimation_taskCloseEnterAnimation;
27import static com.android.internal.R.styleable.WindowAnimation_taskCloseExitAnimation;
28import static com.android.internal.R.styleable.WindowAnimation_taskOpenEnterAnimation;
29import static com.android.internal.R.styleable.WindowAnimation_taskOpenExitAnimation;
30import static com.android.internal.R.styleable.WindowAnimation_taskToBackEnterAnimation;
31import static com.android.internal.R.styleable.WindowAnimation_taskToBackExitAnimation;
32import static com.android.internal.R.styleable.WindowAnimation_taskToFrontEnterAnimation;
33import static com.android.internal.R.styleable.WindowAnimation_taskToFrontExitAnimation;
34import static com.android.internal.R.styleable.WindowAnimation_wallpaperCloseEnterAnimation;
35import static com.android.internal.R.styleable.WindowAnimation_wallpaperCloseExitAnimation;
36import static com.android.internal.R.styleable.WindowAnimation_wallpaperIntraCloseEnterAnimation;
37import static com.android.internal.R.styleable.WindowAnimation_wallpaperIntraCloseExitAnimation;
38import static com.android.internal.R.styleable.WindowAnimation_wallpaperIntraOpenEnterAnimation;
39import static com.android.internal.R.styleable.WindowAnimation_wallpaperIntraOpenExitAnimation;
40import static com.android.internal.R.styleable.WindowAnimation_wallpaperOpenEnterAnimation;
41import static com.android.internal.R.styleable.WindowAnimation_wallpaperOpenExitAnimation;
42
Filip Gruszczynski71b0d2d2015-08-12 18:52:26 -070043import android.annotation.Nullable;
Craig Mautner164d4bb2012-11-26 13:51:23 -080044import android.content.Context;
Winson Chung2820c452014-04-15 15:34:44 -070045import android.content.res.Configuration;
Craig Mautner164d4bb2012-11-26 13:51:23 -080046import android.graphics.Bitmap;
Winson Chung399f6202014-03-19 10:47:20 -070047import android.graphics.Rect;
Craig Mautner164d4bb2012-11-26 13:51:23 -080048import android.os.Debug;
49import android.os.Handler;
Jorim Jaggi77ba4802015-02-18 13:57:50 +010050import android.os.IBinder;
Craig Mautner164d4bb2012-11-26 13:51:23 -080051import android.os.IRemoteCallback;
52import android.util.Slog;
Filip Gruszczynski170192a2015-08-16 17:46:34 -070053import android.util.SparseArray;
54import android.view.AppTransitionAnimationSpec;
Craig Mautner164d4bb2012-11-26 13:51:23 -080055import android.view.WindowManager;
Craig Mautner164d4bb2012-11-26 13:51:23 -080056import android.view.animation.AlphaAnimation;
57import android.view.animation.Animation;
58import android.view.animation.AnimationSet;
59import android.view.animation.AnimationUtils;
Winson Chung399f6202014-03-19 10:47:20 -070060import android.view.animation.ClipRectAnimation;
Chet Haase10e23ab2015-02-11 15:08:38 -080061import android.view.animation.ClipRectLRAnimation;
62import android.view.animation.ClipRectTBAnimation;
Craig Mautner164d4bb2012-11-26 13:51:23 -080063import android.view.animation.Interpolator;
Jorim Jaggi1d763a62015-06-02 17:07:39 -070064import android.view.animation.PathInterpolator;
Craig Mautner164d4bb2012-11-26 13:51:23 -080065import android.view.animation.ScaleAnimation;
Winson Chung399f6202014-03-19 10:47:20 -070066import android.view.animation.TranslateAnimation;
Jorim Jaggi1d763a62015-06-02 17:07:39 -070067
Craig Mautner164d4bb2012-11-26 13:51:23 -080068import com.android.internal.util.DumpUtils.Dump;
69import com.android.server.AttributeCache;
70import com.android.server.wm.WindowManagerService.H;
71
72import java.io.PrintWriter;
Jorim Jaggi77ba4802015-02-18 13:57:50 +010073import java.util.ArrayList;
Craig Mautner164d4bb2012-11-26 13:51:23 -080074
Craig Mautner164d4bb2012-11-26 13:51:23 -080075// State management of app transitions. When we are preparing for a
76// transition, mNextAppTransition will be the kind of transition to
77// perform or TRANSIT_NONE if we are not waiting. If we are waiting,
78// mOpeningApps and mClosingApps are the lists of tokens that will be
79// made visible or hidden at the next transition.
80public class AppTransition implements Dump {
81 private static final String TAG = "AppTransition";
Craig Mautner321bdf52012-12-18 09:53:24 -080082 private static final boolean DEBUG_APP_TRANSITIONS =
83 WindowManagerService.DEBUG_APP_TRANSITIONS;
84 private static final boolean DEBUG_ANIM = WindowManagerService.DEBUG_ANIM;
Jorim Jaggi1d763a62015-06-02 17:07:39 -070085 private static final int CLIP_REVEAL_TRANSLATION_Y_DP = 8;
Craig Mautner9a29a5d2012-12-27 19:03:40 -080086
Craig Mautner4b71aa12012-12-27 17:20:01 -080087 /** Not set up for a transition. */
88 public static final int TRANSIT_UNSET = -1;
89 /** No animation for transition. */
90 public static final int TRANSIT_NONE = 0;
91 /** A window in a new activity is being opened on top of an existing one in the same task. */
Craig Mautnerbb742462014-07-07 15:28:55 -070092 public static final int TRANSIT_ACTIVITY_OPEN = 6;
Craig Mautner4b71aa12012-12-27 17:20:01 -080093 /** The window in the top-most activity is being closed to reveal the
94 * previous activity in the same task. */
Craig Mautnerbb742462014-07-07 15:28:55 -070095 public static final int TRANSIT_ACTIVITY_CLOSE = 7;
Craig Mautner4b71aa12012-12-27 17:20:01 -080096 /** A window in a new task is being opened on top of an existing one
97 * in another activity's task. */
Craig Mautnerbb742462014-07-07 15:28:55 -070098 public static final int TRANSIT_TASK_OPEN = 8;
Craig Mautner4b71aa12012-12-27 17:20:01 -080099 /** A window in the top-most activity is being closed to reveal the
100 * previous activity in a different task. */
Craig Mautnerbb742462014-07-07 15:28:55 -0700101 public static final int TRANSIT_TASK_CLOSE = 9;
Craig Mautner4b71aa12012-12-27 17:20:01 -0800102 /** A window in an existing task is being displayed on top of an existing one
103 * in another activity's task. */
Craig Mautnerbb742462014-07-07 15:28:55 -0700104 public static final int TRANSIT_TASK_TO_FRONT = 10;
Craig Mautner4b71aa12012-12-27 17:20:01 -0800105 /** A window in an existing task is being put below all other tasks. */
Craig Mautnerbb742462014-07-07 15:28:55 -0700106 public static final int TRANSIT_TASK_TO_BACK = 11;
Craig Mautner9a29a5d2012-12-27 19:03:40 -0800107 /** A window in a new activity that doesn't have a wallpaper is being opened on top of one that
108 * does, effectively closing the wallpaper. */
Craig Mautnerbb742462014-07-07 15:28:55 -0700109 public static final int TRANSIT_WALLPAPER_CLOSE = 12;
Craig Mautner9a29a5d2012-12-27 19:03:40 -0800110 /** A window in a new activity that does have a wallpaper is being opened on one that didn't,
111 * effectively opening the wallpaper. */
Craig Mautnerbb742462014-07-07 15:28:55 -0700112 public static final int TRANSIT_WALLPAPER_OPEN = 13;
Craig Mautner9a29a5d2012-12-27 19:03:40 -0800113 /** A window in a new activity is being opened on top of an existing one, and both are on top
114 * of the wallpaper. */
Craig Mautnerbb742462014-07-07 15:28:55 -0700115 public static final int TRANSIT_WALLPAPER_INTRA_OPEN = 14;
Craig Mautner9a29a5d2012-12-27 19:03:40 -0800116 /** The window in the top-most activity is being closed to reveal the previous activity, and
117 * both are on top of the wallpaper. */
Craig Mautnerbb742462014-07-07 15:28:55 -0700118 public static final int TRANSIT_WALLPAPER_INTRA_CLOSE = 15;
119 /** A window in a new task is being opened behind an existing one in another activity's task.
120 * The new window will show briefly and then be gone. */
121 public static final int TRANSIT_TASK_OPEN_BEHIND = 16;
Winson Chung044d5292014-11-06 11:05:19 -0800122 /** A window in a task is being animated in-place. */
123 public static final int TRANSIT_TASK_IN_PLACE = 17;
Filip Gruszczynski55a309f2015-09-04 17:15:01 -0700124 /** An activity is being relaunched (e.g. due to configuration change). */
125 public static final int TRANSIT_ACTIVITY_RELAUNCH = 18;
Craig Mautner4b71aa12012-12-27 17:20:01 -0800126
Winson Chunga4ccb862014-08-22 15:26:27 -0700127 /** Fraction of animation at which the recents thumbnail stays completely transparent */
Jorim Jaggi1d763a62015-06-02 17:07:39 -0700128 private static final float RECENTS_THUMBNAIL_FADEIN_FRACTION = 0.5f;
Craig Mautner321bdf52012-12-18 09:53:24 -0800129 /** Fraction of animation at which the recents thumbnail becomes completely transparent */
Jorim Jaggi1d763a62015-06-02 17:07:39 -0700130 private static final float RECENTS_THUMBNAIL_FADEOUT_FRACTION = 0.5f;
Craig Mautner321bdf52012-12-18 09:53:24 -0800131
Jorim Jaggi1d763a62015-06-02 17:07:39 -0700132 private static final int DEFAULT_APP_TRANSITION_DURATION = 336;
133 private static final int THUMBNAIL_APP_TRANSITION_DURATION = 336;
134 private static final int THUMBNAIL_APP_TRANSITION_ALPHA_DURATION = 336;
Filip Gruszczynski24966d42015-09-05 15:00:00 -0700135 private static final long APP_TRANSITION_TIMEOUT_MS = 5000;
Craig Mautner164d4bb2012-11-26 13:51:23 -0800136
Craig Mautner9a29a5d2012-12-27 19:03:40 -0800137 private final Context mContext;
138 private final Handler mH;
Craig Mautner164d4bb2012-11-26 13:51:23 -0800139
Craig Mautner9a29a5d2012-12-27 19:03:40 -0800140 private int mNextAppTransition = TRANSIT_UNSET;
141
142 private static final int NEXT_TRANSIT_TYPE_NONE = 0;
143 private static final int NEXT_TRANSIT_TYPE_CUSTOM = 1;
144 private static final int NEXT_TRANSIT_TYPE_SCALE_UP = 2;
145 private static final int NEXT_TRANSIT_TYPE_THUMBNAIL_SCALE_UP = 3;
146 private static final int NEXT_TRANSIT_TYPE_THUMBNAIL_SCALE_DOWN = 4;
Winson Chunga4ccb862014-08-22 15:26:27 -0700147 private static final int NEXT_TRANSIT_TYPE_THUMBNAIL_ASPECT_SCALE_UP = 5;
148 private static final int NEXT_TRANSIT_TYPE_THUMBNAIL_ASPECT_SCALE_DOWN = 6;
Winson Chung044d5292014-11-06 11:05:19 -0800149 private static final int NEXT_TRANSIT_TYPE_CUSTOM_IN_PLACE = 7;
Chet Haase10e23ab2015-02-11 15:08:38 -0800150 private static final int NEXT_TRANSIT_TYPE_CLIP_REVEAL = 8;
Craig Mautner9a29a5d2012-12-27 19:03:40 -0800151 private int mNextAppTransitionType = NEXT_TRANSIT_TYPE_NONE;
152
Winson Chung399f6202014-03-19 10:47:20 -0700153 // These are the possible states for the enter/exit activities during a thumbnail transition
154 private static final int THUMBNAIL_TRANSITION_ENTER_SCALE_UP = 0;
155 private static final int THUMBNAIL_TRANSITION_EXIT_SCALE_UP = 1;
156 private static final int THUMBNAIL_TRANSITION_ENTER_SCALE_DOWN = 2;
157 private static final int THUMBNAIL_TRANSITION_EXIT_SCALE_DOWN = 3;
158
Craig Mautner9a29a5d2012-12-27 19:03:40 -0800159 private String mNextAppTransitionPackage;
Craig Mautner164d4bb2012-11-26 13:51:23 -0800160 // Used for thumbnail transitions. True if we're scaling up, false if scaling down
Craig Mautner9a29a5d2012-12-27 19:03:40 -0800161 private boolean mNextAppTransitionScaleUp;
162 private IRemoteCallback mNextAppTransitionCallback;
Filip Gruszczynski1a5203d2015-10-29 17:43:49 -0700163 private IRemoteCallback mAnimationFinishedCallback;
Craig Mautner9a29a5d2012-12-27 19:03:40 -0800164 private int mNextAppTransitionEnter;
165 private int mNextAppTransitionExit;
Winson Chung044d5292014-11-06 11:05:19 -0800166 private int mNextAppTransitionInPlace;
Filip Gruszczynski170192a2015-08-16 17:46:34 -0700167
168 // Keyed by task id.
169 private final SparseArray<AppTransitionAnimationSpec> mNextAppTransitionAnimationsSpecs
170 = new SparseArray<>();
171 private AppTransitionAnimationSpec mDefaultNextAppTransitionAnimationSpec;
172
Winson Chunga4ccb862014-08-22 15:26:27 -0700173 private Rect mNextAppTransitionInsets = new Rect();
Craig Mautner164d4bb2012-11-26 13:51:23 -0800174
Winson Chung2820c452014-04-15 15:34:44 -0700175 private Rect mTmpFromClipRect = new Rect();
176 private Rect mTmpToClipRect = new Rect();
177
Filip Gruszczynskid64ef3e2015-10-27 17:58:02 -0700178 private final Rect mTmpRect = new Rect();
Filip Gruszczynski170192a2015-08-16 17:46:34 -0700179
Craig Mautner9a29a5d2012-12-27 19:03:40 -0800180 private final static int APP_STATE_IDLE = 0;
181 private final static int APP_STATE_READY = 1;
182 private final static int APP_STATE_RUNNING = 2;
183 private final static int APP_STATE_TIMEOUT = 3;
184 private int mAppTransitionState = APP_STATE_IDLE;
185
186 private final int mConfigShortAnimTime;
Craig Mautner321bdf52012-12-18 09:53:24 -0800187 private final Interpolator mDecelerateInterpolator;
Winson Chunga4ccb862014-08-22 15:26:27 -0700188 private final Interpolator mThumbnailFadeInInterpolator;
189 private final Interpolator mThumbnailFadeOutInterpolator;
Chet Haase10e23ab2015-02-11 15:08:38 -0800190 private final Interpolator mLinearOutSlowInInterpolator;
Jorim Jaggi1d763a62015-06-02 17:07:39 -0700191 private final Interpolator mFastOutLinearInInterpolator;
192 private final Interpolator mClipHorizontalInterpolator = new PathInterpolator(0, 0, 0.4f, 1f);
193
194 /** Interpolator to be used for animations that respond directly to a touch */
195 private final Interpolator mTouchResponseInterpolator =
196 new PathInterpolator(0.3f, 0f, 0.1f, 1f);
197
198 private final int mClipRevealTranslationY;
Craig Mautner164d4bb2012-11-26 13:51:23 -0800199
Amith Yamasani4befbec2013-07-10 16:18:01 -0700200 private int mCurrentUserId = 0;
201
Jorim Jaggi77ba4802015-02-18 13:57:50 +0100202 private final ArrayList<AppTransitionListener> mListeners = new ArrayList<>();
203
Craig Mautner164d4bb2012-11-26 13:51:23 -0800204 AppTransition(Context context, Handler h) {
205 mContext = context;
206 mH = h;
Chet Haase10e23ab2015-02-11 15:08:38 -0800207 mLinearOutSlowInInterpolator = AnimationUtils.loadInterpolator(context,
208 com.android.internal.R.interpolator.linear_out_slow_in);
Jorim Jaggi1d763a62015-06-02 17:07:39 -0700209 mFastOutLinearInInterpolator = AnimationUtils.loadInterpolator(context,
210 com.android.internal.R.interpolator.fast_out_linear_in);
Craig Mautner164d4bb2012-11-26 13:51:23 -0800211 mConfigShortAnimTime = context.getResources().getInteger(
212 com.android.internal.R.integer.config_shortAnimTime);
Craig Mautner321bdf52012-12-18 09:53:24 -0800213 mDecelerateInterpolator = AnimationUtils.loadInterpolator(context,
214 com.android.internal.R.interpolator.decelerate_cubic);
Winson Chunga4ccb862014-08-22 15:26:27 -0700215 mThumbnailFadeInInterpolator = new Interpolator() {
216 @Override
217 public float getInterpolation(float input) {
218 // Linear response for first fraction, then complete after that.
219 if (input < RECENTS_THUMBNAIL_FADEIN_FRACTION) {
220 return 0f;
221 }
Jorim Jaggi1d763a62015-06-02 17:07:39 -0700222 float t = (input - RECENTS_THUMBNAIL_FADEIN_FRACTION) /
Winson Chunga4ccb862014-08-22 15:26:27 -0700223 (1f - RECENTS_THUMBNAIL_FADEIN_FRACTION);
Jorim Jaggi1d763a62015-06-02 17:07:39 -0700224 return mFastOutLinearInInterpolator.getInterpolation(t);
Winson Chunga4ccb862014-08-22 15:26:27 -0700225 }
226 };
227 mThumbnailFadeOutInterpolator = new Interpolator() {
Craig Mautner321bdf52012-12-18 09:53:24 -0800228 @Override
229 public float getInterpolation(float input) {
230 // Linear response for first fraction, then complete after that.
231 if (input < RECENTS_THUMBNAIL_FADEOUT_FRACTION) {
Jorim Jaggi1d763a62015-06-02 17:07:39 -0700232 float t = input / RECENTS_THUMBNAIL_FADEOUT_FRACTION;
233 return mLinearOutSlowInInterpolator.getInterpolation(t);
Craig Mautner321bdf52012-12-18 09:53:24 -0800234 }
Winson Chunga4ccb862014-08-22 15:26:27 -0700235 return 1f;
Craig Mautner321bdf52012-12-18 09:53:24 -0800236 }
237 };
Jorim Jaggi1d763a62015-06-02 17:07:39 -0700238 mClipRevealTranslationY = (int) (CLIP_REVEAL_TRANSLATION_Y_DP
239 * mContext.getResources().getDisplayMetrics().density);
Craig Mautner164d4bb2012-11-26 13:51:23 -0800240 }
241
242 boolean isTransitionSet() {
243 return mNextAppTransition != TRANSIT_UNSET;
244 }
245
Craig Mautner164d4bb2012-11-26 13:51:23 -0800246 boolean isTransitionEqual(int transit) {
247 return mNextAppTransition == transit;
248 }
249
250 int getAppTransition() {
Craig Mautner321bdf52012-12-18 09:53:24 -0800251 return mNextAppTransition;
Craig Mautner164d4bb2012-11-26 13:51:23 -0800252 }
253
Filip Gruszczynski24966d42015-09-05 15:00:00 -0700254 private void setAppTransition(int transit) {
Craig Mautner164d4bb2012-11-26 13:51:23 -0800255 mNextAppTransition = transit;
256 }
257
258 boolean isReady() {
Craig Mautner9a29a5d2012-12-27 19:03:40 -0800259 return mAppTransitionState == APP_STATE_READY
260 || mAppTransitionState == APP_STATE_TIMEOUT;
Craig Mautner164d4bb2012-11-26 13:51:23 -0800261 }
262
Craig Mautnerae446592012-12-06 19:05:05 -0800263 void setReady() {
Craig Mautner9a29a5d2012-12-27 19:03:40 -0800264 mAppTransitionState = APP_STATE_READY;
Craig Mautner164d4bb2012-11-26 13:51:23 -0800265 }
266
267 boolean isRunning() {
Craig Mautner9a29a5d2012-12-27 19:03:40 -0800268 return mAppTransitionState == APP_STATE_RUNNING;
Craig Mautner164d4bb2012-11-26 13:51:23 -0800269 }
270
Craig Mautner9a29a5d2012-12-27 19:03:40 -0800271 void setIdle() {
272 mAppTransitionState = APP_STATE_IDLE;
Craig Mautner164d4bb2012-11-26 13:51:23 -0800273 }
274
275 boolean isTimeout() {
Craig Mautner9a29a5d2012-12-27 19:03:40 -0800276 return mAppTransitionState == APP_STATE_TIMEOUT;
Craig Mautner164d4bb2012-11-26 13:51:23 -0800277 }
278
Craig Mautner9a29a5d2012-12-27 19:03:40 -0800279 void setTimeout() {
280 mAppTransitionState = APP_STATE_TIMEOUT;
Craig Mautner164d4bb2012-11-26 13:51:23 -0800281 }
282
Filip Gruszczynski170192a2015-08-16 17:46:34 -0700283 Bitmap getAppTransitionThumbnailHeader(int taskId) {
284 AppTransitionAnimationSpec spec = mNextAppTransitionAnimationsSpecs.get(taskId);
285 return spec != null ? spec.bitmap : null;
Craig Mautner164d4bb2012-11-26 13:51:23 -0800286 }
287
Winson Chunga4ccb862014-08-22 15:26:27 -0700288 /** Returns whether the next thumbnail transition is aspect scaled up. */
289 boolean isNextThumbnailTransitionAspectScaled() {
290 return mNextAppTransitionType == NEXT_TRANSIT_TYPE_THUMBNAIL_ASPECT_SCALE_UP ||
291 mNextAppTransitionType == NEXT_TRANSIT_TYPE_THUMBNAIL_ASPECT_SCALE_DOWN;
292 }
293
294 /** Returns whether the next thumbnail transition is scaling up. */
295 boolean isNextThumbnailTransitionScaleUp() {
296 return mNextAppTransitionScaleUp;
297 }
298
Filip Gruszczynski24966d42015-09-05 15:00:00 -0700299 private boolean prepare() {
Craig Mautner9a29a5d2012-12-27 19:03:40 -0800300 if (!isRunning()) {
301 mAppTransitionState = APP_STATE_IDLE;
Jorim Jaggi77ba4802015-02-18 13:57:50 +0100302 notifyAppTransitionPendingLocked();
Wale Ogunwale8ebc82a2015-05-13 15:27:12 -0700303 return true;
Craig Mautner9a29a5d2012-12-27 19:03:40 -0800304 }
Wale Ogunwale8ebc82a2015-05-13 15:27:12 -0700305 return false;
Craig Mautner164d4bb2012-11-26 13:51:23 -0800306 }
307
Jorim Jaggi77ba4802015-02-18 13:57:50 +0100308 void goodToGo(AppWindowAnimator openingAppAnimator, AppWindowAnimator closingAppAnimator) {
Craig Mautner4b71aa12012-12-27 17:20:01 -0800309 mNextAppTransition = TRANSIT_UNSET;
Craig Mautner9a29a5d2012-12-27 19:03:40 -0800310 mAppTransitionState = APP_STATE_RUNNING;
Jorim Jaggi77ba4802015-02-18 13:57:50 +0100311 notifyAppTransitionStartingLocked(
312 openingAppAnimator != null ? openingAppAnimator.mAppToken.token : null,
313 closingAppAnimator != null ? closingAppAnimator.mAppToken.token : null,
314 openingAppAnimator != null ? openingAppAnimator.animation : null,
315 closingAppAnimator != null ? closingAppAnimator.animation : null);
Craig Mautner164d4bb2012-11-26 13:51:23 -0800316 }
317
318 void clear() {
Craig Mautner9a29a5d2012-12-27 19:03:40 -0800319 mNextAppTransitionType = NEXT_TRANSIT_TYPE_NONE;
Craig Mautner164d4bb2012-11-26 13:51:23 -0800320 mNextAppTransitionPackage = null;
Filip Gruszczynski170192a2015-08-16 17:46:34 -0700321 mNextAppTransitionAnimationsSpecs.clear();
Craig Mautner164d4bb2012-11-26 13:51:23 -0800322 }
323
Craig Mautner9a29a5d2012-12-27 19:03:40 -0800324 void freeze() {
325 setAppTransition(AppTransition.TRANSIT_UNSET);
326 clear();
327 setReady();
Jorim Jaggi77ba4802015-02-18 13:57:50 +0100328 notifyAppTransitionCancelledLocked();
329 }
330
331 void registerListenerLocked(AppTransitionListener listener) {
332 mListeners.add(listener);
333 }
334
Wale Ogunwalea48eadb2015-05-14 17:43:12 -0700335 public void notifyAppTransitionFinishedLocked(IBinder token) {
Jorim Jaggi77ba4802015-02-18 13:57:50 +0100336 for (int i = 0; i < mListeners.size(); i++) {
337 mListeners.get(i).onAppTransitionFinishedLocked(token);
338 }
339 }
340
341 private void notifyAppTransitionPendingLocked() {
342 for (int i = 0; i < mListeners.size(); i++) {
343 mListeners.get(i).onAppTransitionPendingLocked();
344 }
345 }
346
347 private void notifyAppTransitionCancelledLocked() {
348 for (int i = 0; i < mListeners.size(); i++) {
349 mListeners.get(i).onAppTransitionCancelledLocked();
350 }
351 }
352
353 private void notifyAppTransitionStartingLocked(IBinder openToken,
354 IBinder closeToken, Animation openAnimation, Animation closeAnimation) {
355 for (int i = 0; i < mListeners.size(); i++) {
356 mListeners.get(i).onAppTransitionStartingLocked(openToken, closeToken, openAnimation,
357 closeAnimation);
358 }
Craig Mautner9a29a5d2012-12-27 19:03:40 -0800359 }
360
Craig Mautner164d4bb2012-11-26 13:51:23 -0800361 private AttributeCache.Entry getCachedAnimations(WindowManager.LayoutParams lp) {
362 if (DEBUG_ANIM) Slog.v(TAG, "Loading animations: layout params pkg="
363 + (lp != null ? lp.packageName : null)
364 + " resId=0x" + (lp != null ? Integer.toHexString(lp.windowAnimations) : null));
365 if (lp != null && lp.windowAnimations != 0) {
366 // If this is a system resource, don't try to load it from the
367 // application resources. It is nice to avoid loading application
368 // resources if we can.
369 String packageName = lp.packageName != null ? lp.packageName : "android";
370 int resId = lp.windowAnimations;
371 if ((resId&0xFF000000) == 0x01000000) {
372 packageName = "android";
373 }
374 if (DEBUG_ANIM) Slog.v(TAG, "Loading animations: picked package="
375 + packageName);
376 return AttributeCache.instance().get(packageName, resId,
Amith Yamasani4befbec2013-07-10 16:18:01 -0700377 com.android.internal.R.styleable.WindowAnimation, mCurrentUserId);
Craig Mautner164d4bb2012-11-26 13:51:23 -0800378 }
379 return null;
380 }
381
382 private AttributeCache.Entry getCachedAnimations(String packageName, int resId) {
383 if (DEBUG_ANIM) Slog.v(TAG, "Loading animations: package="
384 + packageName + " resId=0x" + Integer.toHexString(resId));
385 if (packageName != null) {
386 if ((resId&0xFF000000) == 0x01000000) {
387 packageName = "android";
388 }
389 if (DEBUG_ANIM) Slog.v(TAG, "Loading animations: picked package="
390 + packageName);
391 return AttributeCache.instance().get(packageName, resId,
Amith Yamasani4befbec2013-07-10 16:18:01 -0700392 com.android.internal.R.styleable.WindowAnimation, mCurrentUserId);
Craig Mautner164d4bb2012-11-26 13:51:23 -0800393 }
394 return null;
395 }
396
Dianne Hackborne30e02f2014-05-27 18:24:45 -0700397 Animation loadAnimationAttr(WindowManager.LayoutParams lp, int animAttr) {
Craig Mautner164d4bb2012-11-26 13:51:23 -0800398 int anim = 0;
399 Context context = mContext;
400 if (animAttr >= 0) {
401 AttributeCache.Entry ent = getCachedAnimations(lp);
402 if (ent != null) {
403 context = ent.context;
404 anim = ent.array.getResourceId(animAttr, 0);
405 }
406 }
407 if (anim != 0) {
408 return AnimationUtils.loadAnimation(context, anim);
409 }
410 return null;
411 }
412
Dianne Hackborne30e02f2014-05-27 18:24:45 -0700413 Animation loadAnimationRes(WindowManager.LayoutParams lp, int resId) {
414 Context context = mContext;
415 if (resId >= 0) {
416 AttributeCache.Entry ent = getCachedAnimations(lp);
417 if (ent != null) {
418 context = ent.context;
419 }
420 return AnimationUtils.loadAnimation(context, resId);
421 }
422 return null;
423 }
424
425 private Animation loadAnimationRes(String packageName, int resId) {
Craig Mautner164d4bb2012-11-26 13:51:23 -0800426 int anim = 0;
427 Context context = mContext;
428 if (resId >= 0) {
429 AttributeCache.Entry ent = getCachedAnimations(packageName, resId);
430 if (ent != null) {
431 context = ent.context;
432 anim = resId;
433 }
434 }
435 if (anim != 0) {
436 return AnimationUtils.loadAnimation(context, anim);
437 }
438 return null;
439 }
440
Craig Mautner164d4bb2012-11-26 13:51:23 -0800441 /**
442 * Compute the pivot point for an animation that is scaling from a small
443 * rect on screen to a larger rect. The pivot point varies depending on
444 * the distance between the inner and outer edges on both sides. This
445 * function computes the pivot point for one dimension.
446 * @param startPos Offset from left/top edge of outer rectangle to
447 * left/top edge of inner rectangle.
448 * @param finalScale The scaling factor between the size of the outer
449 * and inner rectangles.
450 */
451 private static float computePivot(int startPos, float finalScale) {
452 final float denom = finalScale-1;
453 if (Math.abs(denom) < .0001f) {
454 return startPos;
455 }
456 return -startPos / denom;
457 }
458
Filip Gruszczynski541f92c2015-10-25 17:15:06 -0700459 private Animation createScaleUpAnimationLocked(int transit, boolean enter,
460 Rect containingFrame) {
461 Animation a;
Filip Gruszczynskid64ef3e2015-10-27 17:58:02 -0700462 getDefaultNextAppTransitionStartRect(mTmpRect);
Filip Gruszczynski541f92c2015-10-25 17:15:06 -0700463 final int appWidth = containingFrame.width();
464 final int appHeight = containingFrame.height();
Craig Mautner164d4bb2012-11-26 13:51:23 -0800465 if (enter) {
466 // Entering app zooms out from the center of the initial rect.
Filip Gruszczynskid64ef3e2015-10-27 17:58:02 -0700467 float scaleW = mTmpRect.width() / (float) appWidth;
468 float scaleH = mTmpRect.height() / (float) appHeight;
Craig Mautner164d4bb2012-11-26 13:51:23 -0800469 Animation scale = new ScaleAnimation(scaleW, 1, scaleH, 1,
Filip Gruszczynskid64ef3e2015-10-27 17:58:02 -0700470 computePivot(mTmpRect.left, scaleW),
471 computePivot(mTmpRect.right, scaleH));
Craig Mautner321bdf52012-12-18 09:53:24 -0800472 scale.setInterpolator(mDecelerateInterpolator);
473
Craig Mautner164d4bb2012-11-26 13:51:23 -0800474 Animation alpha = new AlphaAnimation(0, 1);
Winson Chunga4ccb862014-08-22 15:26:27 -0700475 alpha.setInterpolator(mThumbnailFadeOutInterpolator);
Craig Mautner321bdf52012-12-18 09:53:24 -0800476
477 AnimationSet set = new AnimationSet(false);
Craig Mautner164d4bb2012-11-26 13:51:23 -0800478 set.addAnimation(scale);
Craig Mautner164d4bb2012-11-26 13:51:23 -0800479 set.addAnimation(alpha);
480 set.setDetachWallpaper(true);
481 a = set;
Craig Mautner4b71aa12012-12-27 17:20:01 -0800482 } else if (transit == TRANSIT_WALLPAPER_INTRA_OPEN ||
483 transit == TRANSIT_WALLPAPER_INTRA_CLOSE) {
Craig Mautner321bdf52012-12-18 09:53:24 -0800484 // If we are on top of the wallpaper, we need an animation that
485 // correctly handles the wallpaper staying static behind all of
486 // the animated elements. To do this, will just have the existing
487 // element fade out.
488 a = new AlphaAnimation(1, 0);
489 a.setDetachWallpaper(true);
Craig Mautner164d4bb2012-11-26 13:51:23 -0800490 } else {
Craig Mautner321bdf52012-12-18 09:53:24 -0800491 // For normal animations, the exiting element just holds in place.
492 a = new AlphaAnimation(1, 1);
Craig Mautner164d4bb2012-11-26 13:51:23 -0800493 }
Craig Mautner321bdf52012-12-18 09:53:24 -0800494
495 // Pick the desired duration. If this is an inter-activity transition,
496 // it is the standard duration for that. Otherwise we use the longer
497 // task transition duration.
498 final long duration;
499 switch (transit) {
Craig Mautner4b71aa12012-12-27 17:20:01 -0800500 case TRANSIT_ACTIVITY_OPEN:
501 case TRANSIT_ACTIVITY_CLOSE:
Craig Mautner321bdf52012-12-18 09:53:24 -0800502 duration = mConfigShortAnimTime;
503 break;
504 default:
505 duration = DEFAULT_APP_TRANSITION_DURATION;
506 break;
507 }
508 a.setDuration(duration);
Craig Mautner164d4bb2012-11-26 13:51:23 -0800509 a.setFillAfter(true);
Craig Mautner321bdf52012-12-18 09:53:24 -0800510 a.setInterpolator(mDecelerateInterpolator);
Craig Mautner164d4bb2012-11-26 13:51:23 -0800511 a.initialize(appWidth, appHeight, appWidth, appHeight);
512 return a;
513 }
514
Filip Gruszczynski170192a2015-08-16 17:46:34 -0700515 private void getDefaultNextAppTransitionStartRect(Rect rect) {
516 if (mDefaultNextAppTransitionAnimationSpec == null ||
517 mDefaultNextAppTransitionAnimationSpec.rect == null) {
518 Slog.wtf(TAG, "Starting rect for app requested, but none available", new Throwable());
519 rect.setEmpty();
520 } else {
521 rect.set(mDefaultNextAppTransitionAnimationSpec.rect);
522 }
523 }
524
525 void getNextAppTransitionStartRect(int taskId, Rect rect) {
526 AppTransitionAnimationSpec spec = mNextAppTransitionAnimationsSpecs.get(taskId);
527 if (spec == null || spec.rect == null) {
528 Slog.wtf(TAG, "Starting rect for task: " + taskId + " requested, but not available",
529 new Throwable());
530 rect.setEmpty();
531 } else {
532 rect.set(spec.rect);
533 }
534 }
535
536 private void putDefaultNextAppTransitionCoordinates(int left, int top, int width, int height) {
537 mDefaultNextAppTransitionAnimationSpec = new AppTransitionAnimationSpec(-1 /* taskId */,
538 null /* bitmap */, new Rect(left, top, left + width, top + height));
539 }
540
Craig Mautner80b1f642015-04-22 10:59:09 -0700541 private Animation createClipRevealAnimationLocked(int transit, boolean enter, Rect appFrame) {
Chet Haase10e23ab2015-02-11 15:08:38 -0800542 final Animation anim;
543 if (enter) {
544 // Reveal will expand and move faster in horizontal direction
545
Craig Mautner80b1f642015-04-22 10:59:09 -0700546 final int appWidth = appFrame.width();
547 final int appHeight = appFrame.height();
Filip Gruszczynskid64ef3e2015-10-27 17:58:02 -0700548 // mTmpRect will contain an area around the launcher icon that was pressed. We will
Filip Gruszczynski82861362015-10-16 14:21:09 -0700549 // clip reveal from that area in the final area of the app.
Filip Gruszczynskid64ef3e2015-10-27 17:58:02 -0700550 getDefaultNextAppTransitionStartRect(mTmpRect);
Craig Mautner80b1f642015-04-22 10:59:09 -0700551
Jorim Jaggi1d763a62015-06-02 17:07:39 -0700552 float t = 0f;
553 if (appHeight > 0) {
Filip Gruszczynskid64ef3e2015-10-27 17:58:02 -0700554 t = (float) mTmpRect.left / appHeight;
Jorim Jaggi1d763a62015-06-02 17:07:39 -0700555 }
Filip Gruszczynski82861362015-10-16 14:21:09 -0700556 int translationY = mClipRevealTranslationY + (int)(appHeight / 7f * t);
Jorim Jaggi1d763a62015-06-02 17:07:39 -0700557
Filip Gruszczynskid64ef3e2015-10-27 17:58:02 -0700558 int centerX = mTmpRect.centerX();
559 int centerY = mTmpRect.centerY();
560 int halfWidth = mTmpRect.width() / 2;
561 int halfHeight = mTmpRect.height() / 2;
Jorim Jaggi1d763a62015-06-02 17:07:39 -0700562
563 // Clip third of the from size of launch icon, expand to full width/height
Chet Haase10e23ab2015-02-11 15:08:38 -0800564 Animation clipAnimLR = new ClipRectLRAnimation(
Filip Gruszczynski170192a2015-08-16 17:46:34 -0700565 centerX - halfWidth, centerX + halfWidth, 0, appWidth);
Jorim Jaggi1d763a62015-06-02 17:07:39 -0700566 clipAnimLR.setInterpolator(mClipHorizontalInterpolator);
567 clipAnimLR.setDuration((long) (DEFAULT_APP_TRANSITION_DURATION / 2.5f));
Filip Gruszczynski82861362015-10-16 14:21:09 -0700568
Filip Gruszczynski170192a2015-08-16 17:46:34 -0700569 Animation clipAnimTB = new ClipRectTBAnimation(centerY - halfHeight - translationY,
570 centerY + halfHeight/ 2 - translationY, 0, appHeight);
Jorim Jaggi1d763a62015-06-02 17:07:39 -0700571 clipAnimTB.setInterpolator(mTouchResponseInterpolator);
Chet Haase10e23ab2015-02-11 15:08:38 -0800572 clipAnimTB.setDuration(DEFAULT_APP_TRANSITION_DURATION);
573
Filip Gruszczynski82861362015-10-16 14:21:09 -0700574 // We might be animating entrance of a docked task, so we need the translate to account
575 // for the app frame in which the window will reside. Every other calculation here
576 // is performed as if the window started at 0,0.
577 translationY -= appFrame.top;
578 TranslateAnimation translate = new TranslateAnimation(-appFrame.left, 0, translationY,
579 0);
580 translate.setInterpolator(mLinearOutSlowInInterpolator);
581 translate.setDuration(DEFAULT_APP_TRANSITION_DURATION);
Chet Haase10e23ab2015-02-11 15:08:38 -0800582
583 // Quick fade-in from icon to app window
Jorim Jaggi1d763a62015-06-02 17:07:39 -0700584 final int alphaDuration = DEFAULT_APP_TRANSITION_DURATION / 4;
585 AlphaAnimation alpha = new AlphaAnimation(0.5f, 1);
Chet Haase10e23ab2015-02-11 15:08:38 -0800586 alpha.setDuration(alphaDuration);
Jorim Jaggi1d763a62015-06-02 17:07:39 -0700587 alpha.setInterpolator(mLinearOutSlowInInterpolator);
Chet Haase10e23ab2015-02-11 15:08:38 -0800588
589 AnimationSet set = new AnimationSet(false);
590 set.addAnimation(clipAnimLR);
591 set.addAnimation(clipAnimTB);
Filip Gruszczynski82861362015-10-16 14:21:09 -0700592 set.addAnimation(translate);
Chet Haase10e23ab2015-02-11 15:08:38 -0800593 set.addAnimation(alpha);
Filip Gruszczynski9e2cf5b2015-07-31 12:20:40 -0700594 set.setZAdjustment(Animation.ZORDER_TOP);
Chet Haase10e23ab2015-02-11 15:08:38 -0800595 set.initialize(appWidth, appHeight, appWidth, appHeight);
596 anim = set;
597 } else {
598 final long duration;
599 switch (transit) {
600 case TRANSIT_ACTIVITY_OPEN:
601 case TRANSIT_ACTIVITY_CLOSE:
602 duration = mConfigShortAnimTime;
603 break;
604 default:
605 duration = DEFAULT_APP_TRANSITION_DURATION;
606 break;
607 }
608 if (transit == TRANSIT_WALLPAPER_INTRA_OPEN ||
609 transit == TRANSIT_WALLPAPER_INTRA_CLOSE) {
610 // If we are on top of the wallpaper, we need an animation that
611 // correctly handles the wallpaper staying static behind all of
612 // the animated elements. To do this, will just have the existing
613 // element fade out.
614 anim = new AlphaAnimation(1, 0);
615 anim.setDetachWallpaper(true);
616 } else {
617 // For normal animations, the exiting element just holds in place.
618 anim = new AlphaAnimation(1, 1);
619 }
620 anim.setInterpolator(mDecelerateInterpolator);
621 anim.setDuration(duration);
622 anim.setFillAfter(true);
623 }
624 return anim;
625 }
626
Winson Chung399f6202014-03-19 10:47:20 -0700627 /**
628 * Prepares the specified animation with a standard duration, interpolator, etc.
629 */
Winson Chung5393dff2014-05-08 14:25:43 -0700630 Animation prepareThumbnailAnimationWithDuration(Animation a, int appWidth, int appHeight,
631 int duration, Interpolator interpolator) {
Winson Chunga4ccb862014-08-22 15:26:27 -0700632 if (duration > 0) {
633 a.setDuration(duration);
634 }
Winson Chung5393dff2014-05-08 14:25:43 -0700635 a.setFillAfter(true);
636 a.setInterpolator(interpolator);
637 a.initialize(appWidth, appHeight, appWidth, appHeight);
638 return a;
639 }
640
641 /**
642 * Prepares the specified animation with a standard duration, interpolator, etc.
643 */
Winson Chung399f6202014-03-19 10:47:20 -0700644 Animation prepareThumbnailAnimation(Animation a, int appWidth, int appHeight, int transit) {
Craig Mautner321bdf52012-12-18 09:53:24 -0800645 // Pick the desired duration. If this is an inter-activity transition,
646 // it is the standard duration for that. Otherwise we use the longer
647 // task transition duration.
Winson Chung5393dff2014-05-08 14:25:43 -0700648 final int duration;
Craig Mautner321bdf52012-12-18 09:53:24 -0800649 switch (transit) {
Craig Mautner4b71aa12012-12-27 17:20:01 -0800650 case TRANSIT_ACTIVITY_OPEN:
651 case TRANSIT_ACTIVITY_CLOSE:
Craig Mautner321bdf52012-12-18 09:53:24 -0800652 duration = mConfigShortAnimTime;
653 break;
654 default:
655 duration = DEFAULT_APP_TRANSITION_DURATION;
656 break;
657 }
Winson Chung5393dff2014-05-08 14:25:43 -0700658 return prepareThumbnailAnimationWithDuration(a, appWidth, appHeight, duration,
659 mDecelerateInterpolator);
Craig Mautner164d4bb2012-11-26 13:51:23 -0800660 }
661
Winson Chung399f6202014-03-19 10:47:20 -0700662 /**
663 * Return the current thumbnail transition state.
664 */
665 int getThumbnailTransitionState(boolean enter) {
666 if (enter) {
667 if (mNextAppTransitionScaleUp) {
668 return THUMBNAIL_TRANSITION_ENTER_SCALE_UP;
669 } else {
670 return THUMBNAIL_TRANSITION_ENTER_SCALE_DOWN;
671 }
672 } else {
673 if (mNextAppTransitionScaleUp) {
674 return THUMBNAIL_TRANSITION_EXIT_SCALE_UP;
675 } else {
676 return THUMBNAIL_TRANSITION_EXIT_SCALE_DOWN;
677 }
678 }
679 }
680
681 /**
682 * This animation runs for the thumbnail that gets cross faded with the enter/exit activity
Filip Gruszczynski170192a2015-08-16 17:46:34 -0700683 * when a thumbnail is specified with the pending animation override.
Winson Chung399f6202014-03-19 10:47:20 -0700684 */
Filip Gruszczynski170192a2015-08-16 17:46:34 -0700685 Animation createThumbnailAspectScaleAnimationLocked(Rect appRect, Bitmap thumbnailHeader,
686 final int taskId) {
Winson Chung399f6202014-03-19 10:47:20 -0700687 Animation a;
Filip Gruszczynski170192a2015-08-16 17:46:34 -0700688 final int thumbWidthI = thumbnailHeader.getWidth();
Winson Chung399f6202014-03-19 10:47:20 -0700689 final float thumbWidth = thumbWidthI > 0 ? thumbWidthI : 1;
Filip Gruszczynski170192a2015-08-16 17:46:34 -0700690 final int thumbHeightI = thumbnailHeader.getHeight();
Winson Chung399f6202014-03-19 10:47:20 -0700691 final float thumbHeight = thumbHeightI > 0 ? thumbHeightI : 1;
Filip Gruszczynskidfb25d32015-08-14 11:06:18 -0700692 final int appWidth = appRect.width();
Winson Chung399f6202014-03-19 10:47:20 -0700693
Filip Gruszczynskidfb25d32015-08-14 11:06:18 -0700694 float scaleW = appWidth / thumbWidth;
Winson Chunga4ccb862014-08-22 15:26:27 -0700695 float unscaledHeight = thumbHeight * scaleW;
Filip Gruszczynskid64ef3e2015-10-27 17:58:02 -0700696 getNextAppTransitionStartRect(taskId, mTmpRect);
697 float unscaledStartY = mTmpRect.top - (unscaledHeight - thumbHeight) / 2f;
Winson Chung399f6202014-03-19 10:47:20 -0700698 if (mNextAppTransitionScaleUp) {
Winson Chunga4ccb862014-08-22 15:26:27 -0700699 // Animation up from the thumbnail to the full screen
700 Animation scale = new ScaleAnimation(1f, scaleW, 1f, scaleW,
Filip Gruszczynskid64ef3e2015-10-27 17:58:02 -0700701 mTmpRect.left + (thumbWidth / 2f), mTmpRect.top + (thumbHeight / 2f));
Jorim Jaggi1d763a62015-06-02 17:07:39 -0700702 scale.setInterpolator(mTouchResponseInterpolator);
Winson Chunga4ccb862014-08-22 15:26:27 -0700703 scale.setDuration(THUMBNAIL_APP_TRANSITION_DURATION);
Winson Chung399f6202014-03-19 10:47:20 -0700704 Animation alpha = new AlphaAnimation(1, 0);
Winson Chunga4ccb862014-08-22 15:26:27 -0700705 alpha.setInterpolator(mThumbnailFadeOutInterpolator);
706 alpha.setDuration(THUMBNAIL_APP_TRANSITION_ALPHA_DURATION);
Filip Gruszczynskidfb25d32015-08-14 11:06:18 -0700707 final float toX = appRect.left + appRect.width() / 2 -
Filip Gruszczynskid64ef3e2015-10-27 17:58:02 -0700708 (mTmpRect.left + thumbWidth / 2);
Filip Gruszczynskidfb25d32015-08-14 11:06:18 -0700709 final float toY = appRect.top + mNextAppTransitionInsets.top + -unscaledStartY;
710 Animation translate = new TranslateAnimation(0, toX, 0, toY);
Jorim Jaggi1d763a62015-06-02 17:07:39 -0700711 translate.setInterpolator(mTouchResponseInterpolator);
Winson Chunga4ccb862014-08-22 15:26:27 -0700712 translate.setDuration(THUMBNAIL_APP_TRANSITION_DURATION);
Winson Chung399f6202014-03-19 10:47:20 -0700713
714 // This AnimationSet uses the Interpolators assigned above.
715 AnimationSet set = new AnimationSet(false);
716 set.addAnimation(scale);
717 set.addAnimation(alpha);
Winson Chunga4ccb862014-08-22 15:26:27 -0700718 set.addAnimation(translate);
Winson Chung399f6202014-03-19 10:47:20 -0700719 a = set;
720 } else {
Winson Chunga4ccb862014-08-22 15:26:27 -0700721 // Animation down from the full screen to the thumbnail
722 Animation scale = new ScaleAnimation(scaleW, 1f, scaleW, 1f,
Filip Gruszczynskid64ef3e2015-10-27 17:58:02 -0700723 mTmpRect.left + (thumbWidth / 2f), mTmpRect.top + (thumbHeight / 2f));
Jorim Jaggi1d763a62015-06-02 17:07:39 -0700724 scale.setInterpolator(mTouchResponseInterpolator);
Winson Chunga4ccb862014-08-22 15:26:27 -0700725 scale.setDuration(THUMBNAIL_APP_TRANSITION_DURATION);
726 Animation alpha = new AlphaAnimation(0f, 1f);
727 alpha.setInterpolator(mThumbnailFadeInInterpolator);
728 alpha.setDuration(THUMBNAIL_APP_TRANSITION_ALPHA_DURATION);
729 Animation translate = new TranslateAnimation(0, 0, -unscaledStartY +
730 mNextAppTransitionInsets.top, 0);
Jorim Jaggi1d763a62015-06-02 17:07:39 -0700731 translate.setInterpolator(mTouchResponseInterpolator);
Winson Chunga4ccb862014-08-22 15:26:27 -0700732 translate.setDuration(THUMBNAIL_APP_TRANSITION_DURATION);
Winson Chung399f6202014-03-19 10:47:20 -0700733
Winson Chunga4ccb862014-08-22 15:26:27 -0700734 // This AnimationSet uses the Interpolators assigned above.
735 AnimationSet set = new AnimationSet(false);
736 set.addAnimation(scale);
737 set.addAnimation(alpha);
738 set.addAnimation(translate);
739 a = set;
740
741 }
Filip Gruszczynskidfb25d32015-08-14 11:06:18 -0700742 return prepareThumbnailAnimationWithDuration(a, appWidth, appRect.height(), 0,
Jorim Jaggi1d763a62015-06-02 17:07:39 -0700743 mTouchResponseInterpolator);
Winson Chung399f6202014-03-19 10:47:20 -0700744 }
745
746 /**
747 * This alternate animation is created when we are doing a thumbnail transition, for the
748 * activity that is leaving, and the activity that is entering.
749 */
Winson Chunga4ccb862014-08-22 15:26:27 -0700750 Animation createAspectScaledThumbnailEnterExitAnimationLocked(int thumbTransitState,
Filip Gruszczynski541f92c2015-10-25 17:15:06 -0700751 int orientation, int transit, Rect containingFrame, Rect contentInsets,
752 @Nullable Rect surfaceInsets, boolean freeform, int taskId) {
Winson Chung399f6202014-03-19 10:47:20 -0700753 Animation a;
Filip Gruszczynski541f92c2015-10-25 17:15:06 -0700754 final int appWidth = containingFrame.width();
755 final int appHeight = containingFrame.height();
Filip Gruszczynskid64ef3e2015-10-27 17:58:02 -0700756 getDefaultNextAppTransitionStartRect(mTmpRect);
757 final int thumbWidthI = mTmpRect.width();
Winson Chung399f6202014-03-19 10:47:20 -0700758 final float thumbWidth = thumbWidthI > 0 ? thumbWidthI : 1;
Filip Gruszczynskid64ef3e2015-10-27 17:58:02 -0700759 final int thumbHeightI = mTmpRect.height();
Winson Chung399f6202014-03-19 10:47:20 -0700760 final float thumbHeight = thumbHeightI > 0 ? thumbHeightI : 1;
761
Winson Chung2820c452014-04-15 15:34:44 -0700762 // Used for the ENTER_SCALE_UP and EXIT_SCALE_DOWN transitions
763 float scale = 1f;
764 int scaledTopDecor = 0;
765
Winson Chung399f6202014-03-19 10:47:20 -0700766 switch (thumbTransitState) {
767 case THUMBNAIL_TRANSITION_ENTER_SCALE_UP: {
Filip Gruszczynski541f92c2015-10-25 17:15:06 -0700768 if (freeform) {
Filip Gruszczynskid64ef3e2015-10-27 17:58:02 -0700769 a = createAspectScaledThumbnailEnterFreeformAnimationLocked(
Filip Gruszczynski170192a2015-08-16 17:46:34 -0700770 containingFrame, surfaceInsets, taskId);
Winson Chung2820c452014-04-15 15:34:44 -0700771 } else {
Filip Gruszczynskiefd3d1b2015-10-14 13:57:55 -0700772 mTmpFromClipRect.set(containingFrame);
773 // exclude top screen decor (status bar) region from the source clip.
774 mTmpFromClipRect.top = contentInsets.top;
Filip Gruszczynski71b0d2d2015-08-12 18:52:26 -0700775 // App window scaling up to become full screen
Filip Gruszczynskiefd3d1b2015-10-14 13:57:55 -0700776 mTmpToClipRect.set(containingFrame);
Filip Gruszczynski71b0d2d2015-08-12 18:52:26 -0700777 if (orientation == Configuration.ORIENTATION_PORTRAIT) {
778 // In portrait, we scale the width and clip to the top/left square
779 scale = thumbWidth / appWidth;
780 scaledTopDecor = (int) (scale * contentInsets.top);
781 int unscaledThumbHeight = (int) (thumbHeight / scale);
Filip Gruszczynskiefd3d1b2015-10-14 13:57:55 -0700782 mTmpFromClipRect.bottom = mTmpFromClipRect.top + unscaledThumbHeight;
Filip Gruszczynski71b0d2d2015-08-12 18:52:26 -0700783 } else {
Filip Gruszczynskidd2ff842015-10-25 13:11:04 -0700784 // In landscape, we scale the height and clip to the top/left square. We
785 // only scale the part that is not covered by status bar and the nav bar.
786 scale = thumbHeight / (appHeight - contentInsets.top
787 - contentInsets.bottom);
Filip Gruszczynski71b0d2d2015-08-12 18:52:26 -0700788 scaledTopDecor = (int) (scale * contentInsets.top);
789 int unscaledThumbWidth = (int) (thumbWidth / scale);
Filip Gruszczynskiefd3d1b2015-10-14 13:57:55 -0700790 mTmpFromClipRect.right = mTmpFromClipRect.left + unscaledThumbWidth;
Filip Gruszczynskidd2ff842015-10-25 13:11:04 -0700791 // This removes the navigation bar from the first frame, so it better
792 // matches the thumbnail. We need to do this explicitly in landscape,
793 // because in portrait we already crop vertically.
794 mTmpFromClipRect.bottom = mTmpFromClipRect.bottom - contentInsets.bottom;
Filip Gruszczynski71b0d2d2015-08-12 18:52:26 -0700795 }
Filip Gruszczynski71b0d2d2015-08-12 18:52:26 -0700796
797 mNextAppTransitionInsets.set(contentInsets);
798
799 Animation scaleAnim = new ScaleAnimation(scale, 1, scale, 1,
Filip Gruszczynskid64ef3e2015-10-27 17:58:02 -0700800 computePivot(mTmpRect.left, scale),
801 computePivot(mTmpRect.top, scale));
Filip Gruszczynski71b0d2d2015-08-12 18:52:26 -0700802 Animation clipAnim = new ClipRectAnimation(mTmpFromClipRect, mTmpToClipRect);
803 Animation translateAnim = new TranslateAnimation(0, 0, -scaledTopDecor, 0);
804
805 AnimationSet set = new AnimationSet(true);
806 set.addAnimation(clipAnim);
807 set.addAnimation(scaleAnim);
808 set.addAnimation(translateAnim);
809 a = set;
Winson Chung2820c452014-04-15 15:34:44 -0700810 }
Winson Chung399f6202014-03-19 10:47:20 -0700811 break;
812 }
813 case THUMBNAIL_TRANSITION_EXIT_SCALE_UP: {
Winson Chunga4ccb862014-08-22 15:26:27 -0700814 // Previous app window during the scale up
Winson Chung399f6202014-03-19 10:47:20 -0700815 if (transit == TRANSIT_WALLPAPER_INTRA_OPEN) {
Winson Chunga4ccb862014-08-22 15:26:27 -0700816 // Fade out the source activity if we are animating to a wallpaper
Winson Chung399f6202014-03-19 10:47:20 -0700817 // activity.
818 a = new AlphaAnimation(1, 0);
819 } else {
Winson Chung399f6202014-03-19 10:47:20 -0700820 a = new AlphaAnimation(1, 1);
821 }
822 break;
823 }
824 case THUMBNAIL_TRANSITION_ENTER_SCALE_DOWN: {
Winson Chunga4ccb862014-08-22 15:26:27 -0700825 // Target app window during the scale down
826 if (transit == TRANSIT_WALLPAPER_INTRA_OPEN) {
827 // Fade in the destination activity if we are animating from a wallpaper
828 // activity.
829 a = new AlphaAnimation(0, 1);
830 } else {
831 a = new AlphaAnimation(1, 1);
832 }
Winson Chung399f6202014-03-19 10:47:20 -0700833 break;
834 }
835 case THUMBNAIL_TRANSITION_EXIT_SCALE_DOWN: {
Winson Chunga4ccb862014-08-22 15:26:27 -0700836 // App window scaling down from full screen
Filip Gruszczynskid64ef3e2015-10-27 17:58:02 -0700837 if (freeform) {
838 a = createAspectScaledThumbnailExitFreeformAnimationLocked(
839 containingFrame, surfaceInsets, taskId);
Winson Chung2820c452014-04-15 15:34:44 -0700840 } else {
Filip Gruszczynskid64ef3e2015-10-27 17:58:02 -0700841 mTmpFromClipRect.set(containingFrame);
842 mTmpToClipRect.set(containingFrame);
843 // exclude top screen decor (status bar) region from the destination clip.
844 mTmpToClipRect.top = contentInsets.top;
845 if (orientation == Configuration.ORIENTATION_PORTRAIT) {
846 // In portrait, we scale the width and clip to the top/left square
847 scale = thumbWidth / appWidth;
848 scaledTopDecor = (int) (scale * contentInsets.top);
849 int unscaledThumbHeight = (int) (thumbHeight / scale);
850 mTmpToClipRect.bottom = mTmpToClipRect.top + unscaledThumbHeight;
851 } else {
852 // In landscape, we scale the height and clip to the top/left square. We only
853 // scale the part that is not covered by status bar and the nav bar.
854 scale = thumbHeight / (appHeight - contentInsets.top - contentInsets.bottom);
855 scaledTopDecor = (int) (scale * contentInsets.top);
856 int unscaledThumbWidth = (int) (thumbWidth / scale);
857 mTmpToClipRect.right = mTmpToClipRect.left + unscaledThumbWidth;
858 // This removes the navigation bar from the last frame, so it better matches the
859 // thumbnail. We need to do this explicitly in landscape, because in portrait we
860 // already crop vertically.
861 mTmpToClipRect.bottom = mTmpToClipRect.bottom - contentInsets.bottom;
862 }
863
864 mNextAppTransitionInsets.set(contentInsets);
865
866 Animation scaleAnim = new ScaleAnimation(1, scale, 1, scale,
867 computePivot(mTmpRect.left, scale),
868 computePivot(mTmpRect.top, scale));
869 Animation clipAnim = new ClipRectAnimation(mTmpFromClipRect, mTmpToClipRect);
870 Animation translateAnim = new TranslateAnimation(0, 0, 0, -scaledTopDecor);
871
872 AnimationSet set = new AnimationSet(true);
873 set.addAnimation(clipAnim);
874 set.addAnimation(scaleAnim);
875 set.addAnimation(translateAnim);
876
877 a = set;
878 a.setZAdjustment(Animation.ZORDER_TOP);
Winson Chung2820c452014-04-15 15:34:44 -0700879 }
Winson Chung399f6202014-03-19 10:47:20 -0700880 break;
881 }
882 default:
883 throw new RuntimeException("Invalid thumbnail transition state");
884 }
885
Winson Chungab79fce2014-11-04 16:15:22 -0800886 int duration = Math.max(THUMBNAIL_APP_TRANSITION_ALPHA_DURATION,
887 THUMBNAIL_APP_TRANSITION_DURATION);
888 return prepareThumbnailAnimationWithDuration(a, appWidth, appHeight, duration,
Jorim Jaggi1d763a62015-06-02 17:07:39 -0700889 mTouchResponseInterpolator);
Winson Chung399f6202014-03-19 10:47:20 -0700890 }
891
Filip Gruszczynskid64ef3e2015-10-27 17:58:02 -0700892 private Animation createAspectScaledThumbnailEnterFreeformAnimationLocked(Rect frame,
893 @Nullable Rect surfaceInsets, int taskId) {
894 getNextAppTransitionStartRect(taskId, mTmpRect);
895 return createAspectScaledThumbnailFreeformAnimationLocked(mTmpRect, frame, surfaceInsets,
896 true);
897 }
898
899 private Animation createAspectScaledThumbnailExitFreeformAnimationLocked(Rect frame,
900 @Nullable Rect surfaceInsets, int taskId) {
901 getNextAppTransitionStartRect(taskId, mTmpRect);
902 return createAspectScaledThumbnailFreeformAnimationLocked(frame, mTmpRect, surfaceInsets,
903 false);
904 }
905
906 private AnimationSet createAspectScaledThumbnailFreeformAnimationLocked(Rect sourceFrame,
907 Rect destFrame, @Nullable Rect surfaceInsets, boolean enter) {
908 final float sourceWidth = sourceFrame.width();
909 final float sourceHeight = sourceFrame.height();
910 final float destWidth = destFrame.width();
911 final float destHeight = destFrame.height();
912 final float scaleH = enter ? sourceWidth / destWidth : destWidth / sourceWidth;
913 final float scaleV = enter ? sourceHeight / destHeight : destHeight / sourceHeight;
Filip Gruszczynski71b0d2d2015-08-12 18:52:26 -0700914 AnimationSet set = new AnimationSet(true);
Filip Gruszczynskid64ef3e2015-10-27 17:58:02 -0700915 final int surfaceInsetsH = surfaceInsets == null
Filip Gruszczynski71b0d2d2015-08-12 18:52:26 -0700916 ? 0 : surfaceInsets.left + surfaceInsets.right;
Filip Gruszczynskid64ef3e2015-10-27 17:58:02 -0700917 final int surfaceInsetsV = surfaceInsets == null
Filip Gruszczynski71b0d2d2015-08-12 18:52:26 -0700918 ? 0 : surfaceInsets.top + surfaceInsets.bottom;
919 // We want the scaling to happen from the center of the surface. In order to achieve that,
920 // we need to account for surface insets that will be used to enlarge the surface.
Filip Gruszczynskid64ef3e2015-10-27 17:58:02 -0700921 final float scaleHCenter = ((enter ? destWidth : sourceWidth) + surfaceInsetsH) / 2;
922 final float scaleVCenter = ((enter ? destHeight : sourceHeight) + surfaceInsetsV) / 2;
923 final ScaleAnimation scale = enter ?
924 new ScaleAnimation(scaleH, 1, scaleV, 1, scaleHCenter, scaleVCenter)
925 : new ScaleAnimation(1, scaleH, 1, scaleV, scaleHCenter, scaleVCenter);
926 final int sourceHCenter = sourceFrame.left + sourceFrame.width() / 2;
927 final int sourceVCenter = sourceFrame.top + sourceFrame.height() / 2;
928 final int destHCenter = destFrame.left + destFrame.width() / 2;
929 final int destVCenter = destFrame.top + destFrame.height() / 2;
930 final int fromX = enter ? sourceHCenter - destHCenter : destHCenter - sourceHCenter;
931 final int fromY = enter ? sourceVCenter - destVCenter : destVCenter - sourceVCenter;
932 final TranslateAnimation translation = enter ? new TranslateAnimation(fromX, 0, fromY, 0)
933 : new TranslateAnimation(0, fromX, 0, fromY);
Filip Gruszczynski71b0d2d2015-08-12 18:52:26 -0700934 set.addAnimation(scale);
935 set.addAnimation(translation);
Filip Gruszczynski1a5203d2015-10-29 17:43:49 -0700936
937 final IRemoteCallback callback = mAnimationFinishedCallback;
938 if (callback != null) {
939 set.setAnimationListener(new Animation.AnimationListener() {
940 @Override
941 public void onAnimationStart(Animation animation) { }
942
943 @Override
944 public void onAnimationEnd(Animation animation) {
945 mH.obtainMessage(H.DO_ANIMATION_CALLBACK, callback).sendToTarget();
946 }
947
948 @Override
949 public void onAnimationRepeat(Animation animation) { }
950 });
951 }
Filip Gruszczynski71b0d2d2015-08-12 18:52:26 -0700952 return set;
953 }
954
Winson Chung399f6202014-03-19 10:47:20 -0700955 /**
Winson Chunga4ccb862014-08-22 15:26:27 -0700956 * This animation runs for the thumbnail that gets cross faded with the enter/exit activity
Filip Gruszczynski170192a2015-08-16 17:46:34 -0700957 * when a thumbnail is specified with the pending animation override.
Winson Chunga4ccb862014-08-22 15:26:27 -0700958 */
Filip Gruszczynski170192a2015-08-16 17:46:34 -0700959 Animation createThumbnailScaleAnimationLocked(int appWidth, int appHeight, int transit,
960 Bitmap thumbnailHeader) {
Winson Chunga4ccb862014-08-22 15:26:27 -0700961 Animation a;
Filip Gruszczynskid64ef3e2015-10-27 17:58:02 -0700962 getDefaultNextAppTransitionStartRect(mTmpRect);
Filip Gruszczynski170192a2015-08-16 17:46:34 -0700963 final int thumbWidthI = thumbnailHeader.getWidth();
Winson Chunga4ccb862014-08-22 15:26:27 -0700964 final float thumbWidth = thumbWidthI > 0 ? thumbWidthI : 1;
Filip Gruszczynski170192a2015-08-16 17:46:34 -0700965 final int thumbHeightI = thumbnailHeader.getHeight();
Winson Chunga4ccb862014-08-22 15:26:27 -0700966 final float thumbHeight = thumbHeightI > 0 ? thumbHeightI : 1;
967
968 if (mNextAppTransitionScaleUp) {
969 // Animation for the thumbnail zooming from its initial size to the full screen
970 float scaleW = appWidth / thumbWidth;
971 float scaleH = appHeight / thumbHeight;
972 Animation scale = new ScaleAnimation(1, scaleW, 1, scaleH,
Filip Gruszczynskid64ef3e2015-10-27 17:58:02 -0700973 computePivot(mTmpRect.left, 1 / scaleW),
974 computePivot(mTmpRect.top, 1 / scaleH));
Winson Chunga4ccb862014-08-22 15:26:27 -0700975 scale.setInterpolator(mDecelerateInterpolator);
976
977 Animation alpha = new AlphaAnimation(1, 0);
978 alpha.setInterpolator(mThumbnailFadeOutInterpolator);
979
980 // This AnimationSet uses the Interpolators assigned above.
981 AnimationSet set = new AnimationSet(false);
982 set.addAnimation(scale);
983 set.addAnimation(alpha);
984 a = set;
985 } else {
986 // Animation for the thumbnail zooming down from the full screen to its final size
987 float scaleW = appWidth / thumbWidth;
988 float scaleH = appHeight / thumbHeight;
989 a = new ScaleAnimation(scaleW, 1, scaleH, 1,
Filip Gruszczynskid64ef3e2015-10-27 17:58:02 -0700990 computePivot(mTmpRect.left, 1 / scaleW),
991 computePivot(mTmpRect.top, 1 / scaleH));
Winson Chunga4ccb862014-08-22 15:26:27 -0700992 }
993
994 return prepareThumbnailAnimation(a, appWidth, appHeight, transit);
995 }
996
997 /**
Winson Chung399f6202014-03-19 10:47:20 -0700998 * This animation is created when we are doing a thumbnail transition, for the activity that is
999 * leaving, and the activity that is entering.
1000 */
Filip Gruszczynski541f92c2015-10-25 17:15:06 -07001001 Animation createThumbnailEnterExitAnimationLocked(int thumbTransitState, Rect containingFrame,
1002 int transit, int taskId) {
1003 final int appWidth = containingFrame.width();
1004 final int appHeight = containingFrame.height();
Filip Gruszczynski170192a2015-08-16 17:46:34 -07001005 Bitmap thumbnailHeader = getAppTransitionThumbnailHeader(taskId);
Winson Chung399f6202014-03-19 10:47:20 -07001006 Animation a;
Filip Gruszczynskid64ef3e2015-10-27 17:58:02 -07001007 getDefaultNextAppTransitionStartRect(mTmpRect);
Filip Gruszczynski170192a2015-08-16 17:46:34 -07001008 final int thumbWidthI = thumbnailHeader != null ? thumbnailHeader.getWidth() : appWidth;
Winson Chung399f6202014-03-19 10:47:20 -07001009 final float thumbWidth = thumbWidthI > 0 ? thumbWidthI : 1;
Filip Gruszczynski170192a2015-08-16 17:46:34 -07001010 final int thumbHeightI = thumbnailHeader != null ? thumbnailHeader.getHeight() : appHeight;
Winson Chung399f6202014-03-19 10:47:20 -07001011 final float thumbHeight = thumbHeightI > 0 ? thumbHeightI : 1;
1012
1013 switch (thumbTransitState) {
1014 case THUMBNAIL_TRANSITION_ENTER_SCALE_UP: {
1015 // Entering app scales up with the thumbnail
1016 float scaleW = thumbWidth / appWidth;
1017 float scaleH = thumbHeight / appHeight;
1018 a = new ScaleAnimation(scaleW, 1, scaleH, 1,
Filip Gruszczynskid64ef3e2015-10-27 17:58:02 -07001019 computePivot(mTmpRect.left, scaleW),
1020 computePivot(mTmpRect.top, scaleH));
Winson Chung399f6202014-03-19 10:47:20 -07001021 break;
1022 }
1023 case THUMBNAIL_TRANSITION_EXIT_SCALE_UP: {
1024 // Exiting app while the thumbnail is scaling up should fade or stay in place
1025 if (transit == TRANSIT_WALLPAPER_INTRA_OPEN) {
1026 // Fade out while bringing up selected activity. This keeps the
1027 // current activity from showing through a launching wallpaper
1028 // activity.
1029 a = new AlphaAnimation(1, 0);
1030 } else {
1031 // noop animation
1032 a = new AlphaAnimation(1, 1);
1033 }
1034 break;
1035 }
1036 case THUMBNAIL_TRANSITION_ENTER_SCALE_DOWN: {
1037 // Entering the other app, it should just be visible while we scale the thumbnail
1038 // down above it
1039 a = new AlphaAnimation(1, 1);
1040 break;
1041 }
1042 case THUMBNAIL_TRANSITION_EXIT_SCALE_DOWN: {
1043 // Exiting the current app, the app should scale down with the thumbnail
1044 float scaleW = thumbWidth / appWidth;
1045 float scaleH = thumbHeight / appHeight;
1046 Animation scale = new ScaleAnimation(1, scaleW, 1, scaleH,
Filip Gruszczynskid64ef3e2015-10-27 17:58:02 -07001047 computePivot(mTmpRect.left, scaleW),
1048 computePivot(mTmpRect.top, scaleH));
Winson Chung399f6202014-03-19 10:47:20 -07001049
1050 Animation alpha = new AlphaAnimation(1, 0);
1051
1052 AnimationSet set = new AnimationSet(true);
1053 set.addAnimation(scale);
1054 set.addAnimation(alpha);
1055 set.setZAdjustment(Animation.ZORDER_TOP);
1056 a = set;
1057 break;
1058 }
1059 default:
1060 throw new RuntimeException("Invalid thumbnail transition state");
1061 }
1062
1063 return prepareThumbnailAnimation(a, appWidth, appHeight, transit);
1064 }
1065
Filip Gruszczynski541f92c2015-10-25 17:15:06 -07001066 private Animation createRelaunchAnimation(Rect containingFrame, Rect contentInsets) {
Filip Gruszczynski55a309f2015-09-04 17:15:01 -07001067 getDefaultNextAppTransitionStartRect(mTmpFromClipRect);
1068 final int left = mTmpFromClipRect.left;
1069 final int top = mTmpFromClipRect.top;
1070 mTmpFromClipRect.offset(-left, -top);
Filip Gruszczynski541f92c2015-10-25 17:15:06 -07001071 // TODO: Isn't that strange that we ignore exact position of the containingFrame?
1072 mTmpToClipRect.set(0, 0, containingFrame.width(), containingFrame.height());
Filip Gruszczynski55a309f2015-09-04 17:15:01 -07001073 AnimationSet set = new AnimationSet(true);
Filip Gruszczynski49b80af2015-09-24 09:04:26 -07001074 float fromWidth = mTmpFromClipRect.width();
1075 float toWidth = mTmpToClipRect.width();
1076 float fromHeight = mTmpFromClipRect.height();
Filip Gruszczynski2dfcf842015-10-25 13:40:47 -07001077 // While the window might span the whole display, the actual content will be cropped to the
1078 // system decoration frame, for example when the window is docked. We need to take into
1079 // account the visible height when constructing the animation.
1080 float toHeight = mTmpToClipRect.height() - contentInsets.top - contentInsets.bottom;
1081 int translateAdjustment = 0;
Filip Gruszczynski49b80af2015-09-24 09:04:26 -07001082 if (fromWidth <= toWidth && fromHeight <= toHeight) {
1083 // The final window is larger in both dimensions than current window (e.g. we are
1084 // maximizing), so we can simply unclip the new window and there will be no disappearing
1085 // frame.
1086 set.addAnimation(new ClipRectAnimation(mTmpFromClipRect, mTmpToClipRect));
1087 } else {
1088 // The disappearing window has one larger dimension. We need to apply scaling, so the
1089 // first frame of the entry animation matches the old window.
1090 set.addAnimation(new ScaleAnimation(fromWidth / toWidth, 1, fromHeight / toHeight, 1));
Filip Gruszczynski2dfcf842015-10-25 13:40:47 -07001091 // We might not be going exactly full screen, but instead be aligned under the status
1092 // bar using cropping. We still need to account for the cropped part, which will also
1093 // be scaled.
1094 translateAdjustment = (int) (contentInsets.top * fromHeight / toHeight);
Filip Gruszczynski49b80af2015-09-24 09:04:26 -07001095 }
1096
Filip Gruszczynski2dfcf842015-10-25 13:40:47 -07001097 // We animate the translation from the old position of the removed window, to the new
1098 // position of the added window. The latter might not be full screen, for example docked for
1099 // docked windows.
Filip Gruszczynski49b80af2015-09-24 09:04:26 -07001100 TranslateAnimation translate = new TranslateAnimation(left - containingFrame.left,
Filip Gruszczynski2dfcf842015-10-25 13:40:47 -07001101 0, top - containingFrame.top - translateAdjustment, 0);
Filip Gruszczynski55a309f2015-09-04 17:15:01 -07001102 set.addAnimation(translate);
1103 set.setDuration(DEFAULT_APP_TRANSITION_DURATION);
Filip Gruszczynskie95b0ae2015-09-30 10:55:33 -07001104 set.setZAdjustment(Animation.ZORDER_TOP);
Filip Gruszczynski55a309f2015-09-04 17:15:01 -07001105 return set;
1106 }
1107
Jorim Jaggic554b772015-06-04 16:07:57 -07001108 /**
1109 * @return true if and only if the first frame of the transition can be skipped, i.e. the first
1110 * frame of the transition doesn't change the visuals on screen, so we can start
1111 * directly with the second one
1112 */
1113 boolean canSkipFirstFrame() {
1114 return mNextAppTransitionType != NEXT_TRANSIT_TYPE_CUSTOM
1115 && mNextAppTransitionType != NEXT_TRANSIT_TYPE_CUSTOM_IN_PLACE
1116 && mNextAppTransitionType != NEXT_TRANSIT_TYPE_CLIP_REVEAL;
1117 }
Craig Mautner164d4bb2012-11-26 13:51:23 -08001118
Filip Gruszczynski541f92c2015-10-25 17:15:06 -07001119 /**
1120 *
1121 * @param frame These are the bounds of the window when it finishes the animation. This is where
1122 * the animation must usually finish in entrance animation, as the next frame will
1123 * display the window at these coordinates. In case of exit animation, this is
1124 * where the animation must start, as the frame before the animation is displaying
1125 * the window at these bounds.
1126 * @param insets Knowing where the window will be positioned is not enough. Some parts of the
1127 * window might be obscured, usually by the system windows (status bar and
1128 * navigation bar) and we use content insets to convey that information. This
1129 * usually affects the animation aspects vertically, as the system decoration is
1130 * at the top and the bottom. For example when we animate from full screen to
1131 * recents, we want to exclude the covered parts, because they won't match the
1132 * thumbnail after the last frame is executed.
1133 * @param surfaceInsets In rare situation the surface is larger than the content and we need to
1134 * know about this to make the animation frames match. We currently use
1135 * this for freeform windows, which have larger surfaces to display
1136 * shadows. When we animate them from recents, we want to match the content
1137 * to the recents thumbnail and hence need to account for the surface being
1138 * bigger.
1139 */
Craig Mautner164d4bb2012-11-26 13:51:23 -08001140 Animation loadAnimation(WindowManager.LayoutParams lp, int transit, boolean enter,
Filip Gruszczynski541f92c2015-10-25 17:15:06 -07001141 int orientation, Rect frame, Rect insets, @Nullable Rect surfaceInsets,
1142 boolean isVoiceInteraction, boolean freeform, int taskId) {
Craig Mautner164d4bb2012-11-26 13:51:23 -08001143 Animation a;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001144 if (isVoiceInteraction && (transit == TRANSIT_ACTIVITY_OPEN
1145 || transit == TRANSIT_TASK_OPEN
1146 || transit == TRANSIT_TASK_TO_FRONT)) {
1147 a = loadAnimationRes(lp, enter
1148 ? com.android.internal.R.anim.voice_activity_open_enter
1149 : com.android.internal.R.anim.voice_activity_open_exit);
1150 if (DEBUG_APP_TRANSITIONS || DEBUG_ANIM) Slog.v(TAG,
1151 "applyAnimation voice:"
Wale Ogunwale8ebc82a2015-05-13 15:27:12 -07001152 + " anim=" + a + " transit=" + appTransitionToString(transit)
1153 + " isEntrance=" + enter + " Callers=" + Debug.getCallers(3));
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001154 } else if (isVoiceInteraction && (transit == TRANSIT_ACTIVITY_CLOSE
1155 || transit == TRANSIT_TASK_CLOSE
1156 || transit == TRANSIT_TASK_TO_BACK)) {
1157 a = loadAnimationRes(lp, enter
1158 ? com.android.internal.R.anim.voice_activity_close_enter
1159 : com.android.internal.R.anim.voice_activity_close_exit);
1160 if (DEBUG_APP_TRANSITIONS || DEBUG_ANIM) Slog.v(TAG,
1161 "applyAnimation voice:"
Wale Ogunwale8ebc82a2015-05-13 15:27:12 -07001162 + " anim=" + a + " transit=" + appTransitionToString(transit)
1163 + " isEntrance=" + enter + " Callers=" + Debug.getCallers(3));
Filip Gruszczynski55a309f2015-09-04 17:15:01 -07001164 } else if (transit == TRANSIT_ACTIVITY_RELAUNCH) {
Filip Gruszczynski541f92c2015-10-25 17:15:06 -07001165 a = createRelaunchAnimation(frame, insets);
Filip Gruszczynski49b80af2015-09-24 09:04:26 -07001166 if (DEBUG_APP_TRANSITIONS || DEBUG_ANIM) Slog.v(TAG,
1167 "applyAnimation:"
1168 + " anim=" + a + " nextAppTransition=" + mNextAppTransition
1169 + " transit=" + appTransitionToString(transit)
1170 + " Callers=" + Debug.getCallers(3));
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001171 } else if (mNextAppTransitionType == NEXT_TRANSIT_TYPE_CUSTOM) {
1172 a = loadAnimationRes(mNextAppTransitionPackage, enter ?
Craig Mautner164d4bb2012-11-26 13:51:23 -08001173 mNextAppTransitionEnter : mNextAppTransitionExit);
1174 if (DEBUG_APP_TRANSITIONS || DEBUG_ANIM) Slog.v(TAG,
1175 "applyAnimation:"
1176 + " anim=" + a + " nextAppTransition=ANIM_CUSTOM"
Wale Ogunwale8ebc82a2015-05-13 15:27:12 -07001177 + " transit=" + appTransitionToString(transit) + " isEntrance=" + enter
Craig Mautner164d4bb2012-11-26 13:51:23 -08001178 + " Callers=" + Debug.getCallers(3));
Winson Chung044d5292014-11-06 11:05:19 -08001179 } else if (mNextAppTransitionType == NEXT_TRANSIT_TYPE_CUSTOM_IN_PLACE) {
1180 a = loadAnimationRes(mNextAppTransitionPackage, mNextAppTransitionInPlace);
1181 if (DEBUG_APP_TRANSITIONS || DEBUG_ANIM) Slog.v(TAG,
1182 "applyAnimation:"
Wale Ogunwale8ebc82a2015-05-13 15:27:12 -07001183 + " anim=" + a + " nextAppTransition=ANIM_CUSTOM_IN_PLACE"
1184 + " transit=" + appTransitionToString(transit)
1185 + " Callers=" + Debug.getCallers(3));
Chet Haase10e23ab2015-02-11 15:08:38 -08001186 } else if (mNextAppTransitionType == NEXT_TRANSIT_TYPE_CLIP_REVEAL) {
Filip Gruszczynski541f92c2015-10-25 17:15:06 -07001187 a = createClipRevealAnimationLocked(transit, enter, frame);
Chet Haase10e23ab2015-02-11 15:08:38 -08001188 if (DEBUG_APP_TRANSITIONS || DEBUG_ANIM) Slog.v(TAG,
1189 "applyAnimation:"
1190 + " anim=" + a + " nextAppTransition=ANIM_CLIP_REVEAL"
Filip Gruszczynski49b80af2015-09-24 09:04:26 -07001191 + " transit=" + appTransitionToString(transit)
Chet Haase10e23ab2015-02-11 15:08:38 -08001192 + " Callers=" + Debug.getCallers(3));
Craig Mautner9a29a5d2012-12-27 19:03:40 -08001193 } else if (mNextAppTransitionType == NEXT_TRANSIT_TYPE_SCALE_UP) {
Filip Gruszczynski541f92c2015-10-25 17:15:06 -07001194 a = createScaleUpAnimationLocked(transit, enter, frame);
Craig Mautner164d4bb2012-11-26 13:51:23 -08001195 if (DEBUG_APP_TRANSITIONS || DEBUG_ANIM) Slog.v(TAG,
1196 "applyAnimation:"
1197 + " anim=" + a + " nextAppTransition=ANIM_SCALE_UP"
Wale Ogunwale8ebc82a2015-05-13 15:27:12 -07001198 + " transit=" + appTransitionToString(transit) + " isEntrance=" + enter
Craig Mautner164d4bb2012-11-26 13:51:23 -08001199 + " Callers=" + Debug.getCallers(3));
Craig Mautner9a29a5d2012-12-27 19:03:40 -08001200 } else if (mNextAppTransitionType == NEXT_TRANSIT_TYPE_THUMBNAIL_SCALE_UP ||
1201 mNextAppTransitionType == NEXT_TRANSIT_TYPE_THUMBNAIL_SCALE_DOWN) {
Craig Mautner164d4bb2012-11-26 13:51:23 -08001202 mNextAppTransitionScaleUp =
Craig Mautner9a29a5d2012-12-27 19:03:40 -08001203 (mNextAppTransitionType == NEXT_TRANSIT_TYPE_THUMBNAIL_SCALE_UP);
Winson Chunga4ccb862014-08-22 15:26:27 -07001204 a = createThumbnailEnterExitAnimationLocked(getThumbnailTransitionState(enter),
Filip Gruszczynski541f92c2015-10-25 17:15:06 -07001205 frame, transit, taskId);
Winson Chunga4ccb862014-08-22 15:26:27 -07001206 if (DEBUG_APP_TRANSITIONS || DEBUG_ANIM) {
1207 String animName = mNextAppTransitionScaleUp ?
1208 "ANIM_THUMBNAIL_SCALE_UP" : "ANIM_THUMBNAIL_SCALE_DOWN";
1209 Slog.v(TAG, "applyAnimation:"
1210 + " anim=" + a + " nextAppTransition=" + animName
Wale Ogunwale8ebc82a2015-05-13 15:27:12 -07001211 + " transit=" + appTransitionToString(transit) + " isEntrance=" + enter
Winson Chunga4ccb862014-08-22 15:26:27 -07001212 + " Callers=" + Debug.getCallers(3));
1213 }
1214 } else if (mNextAppTransitionType == NEXT_TRANSIT_TYPE_THUMBNAIL_ASPECT_SCALE_UP ||
1215 mNextAppTransitionType == NEXT_TRANSIT_TYPE_THUMBNAIL_ASPECT_SCALE_DOWN) {
1216 mNextAppTransitionScaleUp =
1217 (mNextAppTransitionType == NEXT_TRANSIT_TYPE_THUMBNAIL_ASPECT_SCALE_UP);
1218 a = createAspectScaledThumbnailEnterExitAnimationLocked(
Filip Gruszczynski541f92c2015-10-25 17:15:06 -07001219 getThumbnailTransitionState(enter), orientation, transit, frame,
1220 insets, surfaceInsets, freeform, taskId);
Craig Mautner164d4bb2012-11-26 13:51:23 -08001221 if (DEBUG_APP_TRANSITIONS || DEBUG_ANIM) {
1222 String animName = mNextAppTransitionScaleUp ?
Winson Chunga4ccb862014-08-22 15:26:27 -07001223 "ANIM_THUMBNAIL_ASPECT_SCALE_UP" : "ANIM_THUMBNAIL_ASPECT_SCALE_DOWN";
Craig Mautner164d4bb2012-11-26 13:51:23 -08001224 Slog.v(TAG, "applyAnimation:"
1225 + " anim=" + a + " nextAppTransition=" + animName
Wale Ogunwale8ebc82a2015-05-13 15:27:12 -07001226 + " transit=" + appTransitionToString(transit) + " isEntrance=" + enter
Craig Mautner164d4bb2012-11-26 13:51:23 -08001227 + " Callers=" + Debug.getCallers(3));
1228 }
1229 } else {
1230 int animAttr = 0;
1231 switch (transit) {
Craig Mautner4b71aa12012-12-27 17:20:01 -08001232 case TRANSIT_ACTIVITY_OPEN:
Craig Mautner164d4bb2012-11-26 13:51:23 -08001233 animAttr = enter
Craig Mautner9a29a5d2012-12-27 19:03:40 -08001234 ? WindowAnimation_activityOpenEnterAnimation
1235 : WindowAnimation_activityOpenExitAnimation;
Craig Mautner164d4bb2012-11-26 13:51:23 -08001236 break;
Craig Mautner4b71aa12012-12-27 17:20:01 -08001237 case TRANSIT_ACTIVITY_CLOSE:
Craig Mautner164d4bb2012-11-26 13:51:23 -08001238 animAttr = enter
Craig Mautner9a29a5d2012-12-27 19:03:40 -08001239 ? WindowAnimation_activityCloseEnterAnimation
1240 : WindowAnimation_activityCloseExitAnimation;
Craig Mautner164d4bb2012-11-26 13:51:23 -08001241 break;
Craig Mautner4b71aa12012-12-27 17:20:01 -08001242 case TRANSIT_TASK_OPEN:
Craig Mautner164d4bb2012-11-26 13:51:23 -08001243 animAttr = enter
Craig Mautner9a29a5d2012-12-27 19:03:40 -08001244 ? WindowAnimation_taskOpenEnterAnimation
1245 : WindowAnimation_taskOpenExitAnimation;
Craig Mautner164d4bb2012-11-26 13:51:23 -08001246 break;
Craig Mautner4b71aa12012-12-27 17:20:01 -08001247 case TRANSIT_TASK_CLOSE:
Craig Mautner164d4bb2012-11-26 13:51:23 -08001248 animAttr = enter
Craig Mautner9a29a5d2012-12-27 19:03:40 -08001249 ? WindowAnimation_taskCloseEnterAnimation
1250 : WindowAnimation_taskCloseExitAnimation;
Craig Mautner164d4bb2012-11-26 13:51:23 -08001251 break;
Craig Mautner4b71aa12012-12-27 17:20:01 -08001252 case TRANSIT_TASK_TO_FRONT:
Craig Mautner164d4bb2012-11-26 13:51:23 -08001253 animAttr = enter
Craig Mautner9a29a5d2012-12-27 19:03:40 -08001254 ? WindowAnimation_taskToFrontEnterAnimation
1255 : WindowAnimation_taskToFrontExitAnimation;
Craig Mautner164d4bb2012-11-26 13:51:23 -08001256 break;
Craig Mautner4b71aa12012-12-27 17:20:01 -08001257 case TRANSIT_TASK_TO_BACK:
Craig Mautner164d4bb2012-11-26 13:51:23 -08001258 animAttr = enter
Craig Mautner9a29a5d2012-12-27 19:03:40 -08001259 ? WindowAnimation_taskToBackEnterAnimation
1260 : WindowAnimation_taskToBackExitAnimation;
Craig Mautner164d4bb2012-11-26 13:51:23 -08001261 break;
Craig Mautner4b71aa12012-12-27 17:20:01 -08001262 case TRANSIT_WALLPAPER_OPEN:
Craig Mautner164d4bb2012-11-26 13:51:23 -08001263 animAttr = enter
Craig Mautner9a29a5d2012-12-27 19:03:40 -08001264 ? WindowAnimation_wallpaperOpenEnterAnimation
1265 : WindowAnimation_wallpaperOpenExitAnimation;
Craig Mautner164d4bb2012-11-26 13:51:23 -08001266 break;
Craig Mautner4b71aa12012-12-27 17:20:01 -08001267 case TRANSIT_WALLPAPER_CLOSE:
Craig Mautner164d4bb2012-11-26 13:51:23 -08001268 animAttr = enter
Craig Mautner9a29a5d2012-12-27 19:03:40 -08001269 ? WindowAnimation_wallpaperCloseEnterAnimation
1270 : WindowAnimation_wallpaperCloseExitAnimation;
Craig Mautner164d4bb2012-11-26 13:51:23 -08001271 break;
Craig Mautner4b71aa12012-12-27 17:20:01 -08001272 case TRANSIT_WALLPAPER_INTRA_OPEN:
Craig Mautner164d4bb2012-11-26 13:51:23 -08001273 animAttr = enter
Craig Mautner9a29a5d2012-12-27 19:03:40 -08001274 ? WindowAnimation_wallpaperIntraOpenEnterAnimation
1275 : WindowAnimation_wallpaperIntraOpenExitAnimation;
Craig Mautner164d4bb2012-11-26 13:51:23 -08001276 break;
Craig Mautner4b71aa12012-12-27 17:20:01 -08001277 case TRANSIT_WALLPAPER_INTRA_CLOSE:
Craig Mautner164d4bb2012-11-26 13:51:23 -08001278 animAttr = enter
Craig Mautner9a29a5d2012-12-27 19:03:40 -08001279 ? WindowAnimation_wallpaperIntraCloseEnterAnimation
1280 : WindowAnimation_wallpaperIntraCloseExitAnimation;
Craig Mautner164d4bb2012-11-26 13:51:23 -08001281 break;
Craig Mautnerbb742462014-07-07 15:28:55 -07001282 case TRANSIT_TASK_OPEN_BEHIND:
1283 animAttr = enter
1284 ? WindowAnimation_launchTaskBehindSourceAnimation
Craig Mautner3b2cd1d2014-08-25 14:25:54 -07001285 : WindowAnimation_launchTaskBehindTargetAnimation;
Craig Mautner164d4bb2012-11-26 13:51:23 -08001286 }
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001287 a = animAttr != 0 ? loadAnimationAttr(lp, animAttr) : null;
Craig Mautner164d4bb2012-11-26 13:51:23 -08001288 if (DEBUG_APP_TRANSITIONS || DEBUG_ANIM) Slog.v(TAG,
1289 "applyAnimation:"
1290 + " anim=" + a
1291 + " animAttr=0x" + Integer.toHexString(animAttr)
Wale Ogunwale8ebc82a2015-05-13 15:27:12 -07001292 + " transit=" + appTransitionToString(transit) + " isEntrance=" + enter
Craig Mautner164d4bb2012-11-26 13:51:23 -08001293 + " Callers=" + Debug.getCallers(3));
1294 }
1295 return a;
1296 }
1297
1298 void postAnimationCallback() {
1299 if (mNextAppTransitionCallback != null) {
1300 mH.sendMessage(mH.obtainMessage(H.DO_ANIMATION_CALLBACK, mNextAppTransitionCallback));
1301 mNextAppTransitionCallback = null;
1302 }
1303 }
1304
1305 void overridePendingAppTransition(String packageName, int enterAnim, int exitAnim,
Filip Gruszczynskid1431422015-09-08 11:18:54 -07001306 IRemoteCallback startedCallback) {
Craig Mautner164d4bb2012-11-26 13:51:23 -08001307 if (isTransitionSet()) {
Craig Mautner9a29a5d2012-12-27 19:03:40 -08001308 mNextAppTransitionType = NEXT_TRANSIT_TYPE_CUSTOM;
Craig Mautner164d4bb2012-11-26 13:51:23 -08001309 mNextAppTransitionPackage = packageName;
Filip Gruszczynski170192a2015-08-16 17:46:34 -07001310 mNextAppTransitionAnimationsSpecs.clear();
Craig Mautner164d4bb2012-11-26 13:51:23 -08001311 mNextAppTransitionEnter = enterAnim;
1312 mNextAppTransitionExit = exitAnim;
1313 postAnimationCallback();
1314 mNextAppTransitionCallback = startedCallback;
1315 } else {
1316 postAnimationCallback();
1317 }
1318 }
1319
1320 void overridePendingAppTransitionScaleUp(int startX, int startY, int startWidth,
Filip Gruszczynski170192a2015-08-16 17:46:34 -07001321 int startHeight) {
Craig Mautner164d4bb2012-11-26 13:51:23 -08001322 if (isTransitionSet()) {
Craig Mautner9a29a5d2012-12-27 19:03:40 -08001323 mNextAppTransitionType = NEXT_TRANSIT_TYPE_SCALE_UP;
Craig Mautner164d4bb2012-11-26 13:51:23 -08001324 mNextAppTransitionPackage = null;
Filip Gruszczynski170192a2015-08-16 17:46:34 -07001325 mNextAppTransitionAnimationsSpecs.clear();
1326 putDefaultNextAppTransitionCoordinates(startX, startY, startX + startWidth,
1327 startY + startHeight);
Craig Mautner164d4bb2012-11-26 13:51:23 -08001328 postAnimationCallback();
1329 mNextAppTransitionCallback = null;
1330 }
1331 }
1332
Chet Haase10e23ab2015-02-11 15:08:38 -08001333 void overridePendingAppTransitionClipReveal(int startX, int startY,
1334 int startWidth, int startHeight) {
1335 if (isTransitionSet()) {
1336 mNextAppTransitionType = NEXT_TRANSIT_TYPE_CLIP_REVEAL;
Filip Gruszczynski170192a2015-08-16 17:46:34 -07001337 putDefaultNextAppTransitionCoordinates(startX, startY, startWidth, startHeight);
Chet Haase10e23ab2015-02-11 15:08:38 -08001338 postAnimationCallback();
1339 mNextAppTransitionCallback = null;
1340 }
1341 }
1342
Craig Mautner164d4bb2012-11-26 13:51:23 -08001343 void overridePendingAppTransitionThumb(Bitmap srcThumb, int startX, int startY,
1344 IRemoteCallback startedCallback, boolean scaleUp) {
1345 if (isTransitionSet()) {
Craig Mautner9a29a5d2012-12-27 19:03:40 -08001346 mNextAppTransitionType = scaleUp ? NEXT_TRANSIT_TYPE_THUMBNAIL_SCALE_UP
1347 : NEXT_TRANSIT_TYPE_THUMBNAIL_SCALE_DOWN;
Craig Mautner164d4bb2012-11-26 13:51:23 -08001348 mNextAppTransitionPackage = null;
Filip Gruszczynski170192a2015-08-16 17:46:34 -07001349 mNextAppTransitionAnimationsSpecs.clear();
Craig Mautner164d4bb2012-11-26 13:51:23 -08001350 mNextAppTransitionScaleUp = scaleUp;
Filip Gruszczynski170192a2015-08-16 17:46:34 -07001351 putDefaultNextAppTransitionCoordinates(startX, startY, 0 ,0);
Craig Mautner164d4bb2012-11-26 13:51:23 -08001352 postAnimationCallback();
1353 mNextAppTransitionCallback = startedCallback;
1354 } else {
1355 postAnimationCallback();
1356 }
1357 }
1358
Winson Chunga4ccb862014-08-22 15:26:27 -07001359 void overridePendingAppTransitionAspectScaledThumb(Bitmap srcThumb, int startX, int startY,
Winson Chung2e7f3bd2014-09-05 13:17:22 +02001360 int targetWidth, int targetHeight, IRemoteCallback startedCallback, boolean scaleUp) {
Winson Chunga4ccb862014-08-22 15:26:27 -07001361 if (isTransitionSet()) {
1362 mNextAppTransitionType = scaleUp ? NEXT_TRANSIT_TYPE_THUMBNAIL_ASPECT_SCALE_UP
1363 : NEXT_TRANSIT_TYPE_THUMBNAIL_ASPECT_SCALE_DOWN;
1364 mNextAppTransitionPackage = null;
Filip Gruszczynski170192a2015-08-16 17:46:34 -07001365 mNextAppTransitionAnimationsSpecs.clear();
Winson Chunga4ccb862014-08-22 15:26:27 -07001366 mNextAppTransitionScaleUp = scaleUp;
Filip Gruszczynski170192a2015-08-16 17:46:34 -07001367 putDefaultNextAppTransitionCoordinates(startX, startY, targetWidth, targetHeight);
Winson Chunga4ccb862014-08-22 15:26:27 -07001368 postAnimationCallback();
1369 mNextAppTransitionCallback = startedCallback;
1370 } else {
1371 postAnimationCallback();
1372 }
1373 }
1374
Filip Gruszczynski170192a2015-08-16 17:46:34 -07001375 public void overridePendingAppTransitionMultiThumb(AppTransitionAnimationSpec[] specs,
Filip Gruszczynski1a5203d2015-10-29 17:43:49 -07001376 IRemoteCallback onAnimationStartedCallback, IRemoteCallback onAnimationFinishedCallback,
1377 boolean scaleUp) {
Filip Gruszczynski170192a2015-08-16 17:46:34 -07001378 if (isTransitionSet()) {
1379 mNextAppTransitionType = scaleUp ? NEXT_TRANSIT_TYPE_THUMBNAIL_ASPECT_SCALE_UP
1380 : NEXT_TRANSIT_TYPE_THUMBNAIL_ASPECT_SCALE_DOWN;
1381 mNextAppTransitionPackage = null;
Filip Gruszczynskid1431422015-09-08 11:18:54 -07001382 mDefaultNextAppTransitionAnimationSpec = null;
Filip Gruszczynski170192a2015-08-16 17:46:34 -07001383 mNextAppTransitionAnimationsSpecs.clear();
1384 mNextAppTransitionScaleUp = scaleUp;
1385 for (int i = 0; i < specs.length; i++) {
1386 AppTransitionAnimationSpec spec = specs[i];
1387 if (spec != null) {
1388 mNextAppTransitionAnimationsSpecs.put(spec.taskId, spec);
Filip Gruszczynskid1431422015-09-08 11:18:54 -07001389 if (i == 0) {
1390 // In full screen mode, the transition code depends on the default spec to
1391 // be set.
1392 Rect rect = spec.rect;
1393 putDefaultNextAppTransitionCoordinates(rect.left, rect.top, rect.width(),
1394 rect.height());
1395 }
Filip Gruszczynski170192a2015-08-16 17:46:34 -07001396 }
1397 }
1398 postAnimationCallback();
Filip Gruszczynski1a5203d2015-10-29 17:43:49 -07001399 mNextAppTransitionCallback = onAnimationStartedCallback;
1400 mAnimationFinishedCallback = onAnimationFinishedCallback;
Filip Gruszczynski170192a2015-08-16 17:46:34 -07001401 } else {
1402 postAnimationCallback();
1403 }
1404 }
1405
Winson Chung044d5292014-11-06 11:05:19 -08001406 void overrideInPlaceAppTransition(String packageName, int anim) {
1407 if (isTransitionSet()) {
1408 mNextAppTransitionType = NEXT_TRANSIT_TYPE_CUSTOM_IN_PLACE;
1409 mNextAppTransitionPackage = packageName;
1410 mNextAppTransitionInPlace = anim;
1411 } else {
1412 postAnimationCallback();
1413 }
1414 }
1415
Craig Mautner164d4bb2012-11-26 13:51:23 -08001416 @Override
1417 public String toString() {
Wale Ogunwale8ebc82a2015-05-13 15:27:12 -07001418 return "mNextAppTransition=" + appTransitionToString(mNextAppTransition);
Craig Mautner164d4bb2012-11-26 13:51:23 -08001419 }
1420
Craig Mautner4b71aa12012-12-27 17:20:01 -08001421 /**
1422 * Returns the human readable name of a window transition.
1423 *
1424 * @param transition The window transition.
1425 * @return The transition symbolic name.
1426 */
1427 public static String appTransitionToString(int transition) {
1428 switch (transition) {
1429 case TRANSIT_UNSET: {
1430 return "TRANSIT_UNSET";
1431 }
1432 case TRANSIT_NONE: {
1433 return "TRANSIT_NONE";
1434 }
Craig Mautner4b71aa12012-12-27 17:20:01 -08001435 case TRANSIT_ACTIVITY_OPEN: {
1436 return "TRANSIT_ACTIVITY_OPEN";
1437 }
1438 case TRANSIT_ACTIVITY_CLOSE: {
1439 return "TRANSIT_ACTIVITY_CLOSE";
1440 }
1441 case TRANSIT_TASK_OPEN: {
1442 return "TRANSIT_TASK_OPEN";
1443 }
1444 case TRANSIT_TASK_CLOSE: {
1445 return "TRANSIT_TASK_CLOSE";
1446 }
1447 case TRANSIT_TASK_TO_FRONT: {
1448 return "TRANSIT_TASK_TO_FRONT";
1449 }
1450 case TRANSIT_TASK_TO_BACK: {
1451 return "TRANSIT_TASK_TO_BACK";
1452 }
1453 case TRANSIT_WALLPAPER_CLOSE: {
1454 return "TRANSIT_WALLPAPER_CLOSE";
1455 }
1456 case TRANSIT_WALLPAPER_OPEN: {
1457 return "TRANSIT_WALLPAPER_OPEN";
1458 }
1459 case TRANSIT_WALLPAPER_INTRA_OPEN: {
1460 return "TRANSIT_WALLPAPER_INTRA_OPEN";
1461 }
1462 case TRANSIT_WALLPAPER_INTRA_CLOSE: {
1463 return "TRANSIT_WALLPAPER_INTRA_CLOSE";
1464 }
Craig Mautnerbb742462014-07-07 15:28:55 -07001465 case TRANSIT_TASK_OPEN_BEHIND: {
1466 return "TRANSIT_TASK_OPEN_BEHIND";
1467 }
Filip Gruszczynski55a309f2015-09-04 17:15:01 -07001468 case TRANSIT_ACTIVITY_RELAUNCH: {
1469 return "TRANSIT_ACTIVITY_RELAUNCH";
1470 }
Craig Mautner4b71aa12012-12-27 17:20:01 -08001471 default: {
1472 return "<UNKNOWN>";
1473 }
1474 }
1475 }
1476
Craig Mautner9a29a5d2012-12-27 19:03:40 -08001477 private String appStateToString() {
1478 switch (mAppTransitionState) {
1479 case APP_STATE_IDLE:
1480 return "APP_STATE_IDLE";
1481 case APP_STATE_READY:
1482 return "APP_STATE_READY";
1483 case APP_STATE_RUNNING:
1484 return "APP_STATE_RUNNING";
1485 case APP_STATE_TIMEOUT:
1486 return "APP_STATE_TIMEOUT";
1487 default:
1488 return "unknown state=" + mAppTransitionState;
1489 }
1490 }
1491
1492 private String transitTypeToString() {
1493 switch (mNextAppTransitionType) {
1494 case NEXT_TRANSIT_TYPE_NONE:
1495 return "NEXT_TRANSIT_TYPE_NONE";
1496 case NEXT_TRANSIT_TYPE_CUSTOM:
1497 return "NEXT_TRANSIT_TYPE_CUSTOM";
Winson Chung044d5292014-11-06 11:05:19 -08001498 case NEXT_TRANSIT_TYPE_CUSTOM_IN_PLACE:
1499 return "NEXT_TRANSIT_TYPE_CUSTOM_IN_PLACE";
Craig Mautner9a29a5d2012-12-27 19:03:40 -08001500 case NEXT_TRANSIT_TYPE_SCALE_UP:
1501 return "NEXT_TRANSIT_TYPE_SCALE_UP";
1502 case NEXT_TRANSIT_TYPE_THUMBNAIL_SCALE_UP:
1503 return "NEXT_TRANSIT_TYPE_THUMBNAIL_SCALE_UP";
1504 case NEXT_TRANSIT_TYPE_THUMBNAIL_SCALE_DOWN:
1505 return "NEXT_TRANSIT_TYPE_THUMBNAIL_SCALE_DOWN";
Winson Chunga4ccb862014-08-22 15:26:27 -07001506 case NEXT_TRANSIT_TYPE_THUMBNAIL_ASPECT_SCALE_UP:
1507 return "NEXT_TRANSIT_TYPE_THUMBNAIL_ASPECT_SCALE_UP";
1508 case NEXT_TRANSIT_TYPE_THUMBNAIL_ASPECT_SCALE_DOWN:
1509 return "NEXT_TRANSIT_TYPE_THUMBNAIL_ASPECT_SCALE_DOWN";
Craig Mautner9a29a5d2012-12-27 19:03:40 -08001510 default:
1511 return "unknown type=" + mNextAppTransitionType;
1512 }
1513 }
1514
Craig Mautner164d4bb2012-11-26 13:51:23 -08001515 @Override
Dianne Hackbornae6688b2015-02-11 17:02:41 -08001516 public void dump(PrintWriter pw, String prefix) {
1517 pw.print(prefix); pw.println(this);
1518 pw.print(prefix); pw.print("mAppTransitionState="); pw.println(appStateToString());
Craig Mautner9a29a5d2012-12-27 19:03:40 -08001519 if (mNextAppTransitionType != NEXT_TRANSIT_TYPE_NONE) {
Dianne Hackbornae6688b2015-02-11 17:02:41 -08001520 pw.print(prefix); pw.print("mNextAppTransitionType=");
1521 pw.println(transitTypeToString());
Craig Mautner164d4bb2012-11-26 13:51:23 -08001522 }
1523 switch (mNextAppTransitionType) {
Craig Mautner9a29a5d2012-12-27 19:03:40 -08001524 case NEXT_TRANSIT_TYPE_CUSTOM:
Dianne Hackbornae6688b2015-02-11 17:02:41 -08001525 pw.print(prefix); pw.print("mNextAppTransitionPackage=");
Craig Mautner164d4bb2012-11-26 13:51:23 -08001526 pw.println(mNextAppTransitionPackage);
Dianne Hackbornae6688b2015-02-11 17:02:41 -08001527 pw.print(prefix); pw.print("mNextAppTransitionEnter=0x");
Craig Mautner164d4bb2012-11-26 13:51:23 -08001528 pw.print(Integer.toHexString(mNextAppTransitionEnter));
1529 pw.print(" mNextAppTransitionExit=0x");
1530 pw.println(Integer.toHexString(mNextAppTransitionExit));
1531 break;
Winson Chung044d5292014-11-06 11:05:19 -08001532 case NEXT_TRANSIT_TYPE_CUSTOM_IN_PLACE:
Dianne Hackbornae6688b2015-02-11 17:02:41 -08001533 pw.print(prefix); pw.print("mNextAppTransitionPackage=");
Winson Chung044d5292014-11-06 11:05:19 -08001534 pw.println(mNextAppTransitionPackage);
Dianne Hackbornae6688b2015-02-11 17:02:41 -08001535 pw.print(prefix); pw.print("mNextAppTransitionInPlace=0x");
Winson Chung044d5292014-11-06 11:05:19 -08001536 pw.print(Integer.toHexString(mNextAppTransitionInPlace));
1537 break;
Filip Gruszczynski170192a2015-08-16 17:46:34 -07001538 case NEXT_TRANSIT_TYPE_SCALE_UP: {
Filip Gruszczynskid64ef3e2015-10-27 17:58:02 -07001539 getDefaultNextAppTransitionStartRect(mTmpRect);
Dianne Hackbornae6688b2015-02-11 17:02:41 -08001540 pw.print(prefix); pw.print("mNextAppTransitionStartX=");
Filip Gruszczynskid64ef3e2015-10-27 17:58:02 -07001541 pw.print(mTmpRect.left);
Craig Mautner164d4bb2012-11-26 13:51:23 -08001542 pw.print(" mNextAppTransitionStartY=");
Filip Gruszczynskid64ef3e2015-10-27 17:58:02 -07001543 pw.println(mTmpRect.top);
Dianne Hackbornae6688b2015-02-11 17:02:41 -08001544 pw.print(prefix); pw.print("mNextAppTransitionStartWidth=");
Filip Gruszczynskid64ef3e2015-10-27 17:58:02 -07001545 pw.print(mTmpRect.width());
Craig Mautner164d4bb2012-11-26 13:51:23 -08001546 pw.print(" mNextAppTransitionStartHeight=");
Filip Gruszczynskid64ef3e2015-10-27 17:58:02 -07001547 pw.println(mTmpRect.height());
Craig Mautner164d4bb2012-11-26 13:51:23 -08001548 break;
Filip Gruszczynski170192a2015-08-16 17:46:34 -07001549 }
Craig Mautner9a29a5d2012-12-27 19:03:40 -08001550 case NEXT_TRANSIT_TYPE_THUMBNAIL_SCALE_UP:
1551 case NEXT_TRANSIT_TYPE_THUMBNAIL_SCALE_DOWN:
Winson Chunga4ccb862014-08-22 15:26:27 -07001552 case NEXT_TRANSIT_TYPE_THUMBNAIL_ASPECT_SCALE_UP:
Filip Gruszczynski170192a2015-08-16 17:46:34 -07001553 case NEXT_TRANSIT_TYPE_THUMBNAIL_ASPECT_SCALE_DOWN: {
1554 pw.print(prefix); pw.print("mDefaultNextAppTransitionAnimationSpec=");
1555 pw.println(mDefaultNextAppTransitionAnimationSpec);
1556 pw.print(prefix); pw.print("mNextAppTransitionAnimationsSpecs=");
1557 pw.println(mNextAppTransitionAnimationsSpecs);
Dianne Hackbornae6688b2015-02-11 17:02:41 -08001558 pw.print(prefix); pw.print("mNextAppTransitionScaleUp=");
1559 pw.println(mNextAppTransitionScaleUp);
Craig Mautner164d4bb2012-11-26 13:51:23 -08001560 break;
Filip Gruszczynski170192a2015-08-16 17:46:34 -07001561 }
Craig Mautner164d4bb2012-11-26 13:51:23 -08001562 }
1563 if (mNextAppTransitionCallback != null) {
Dianne Hackbornae6688b2015-02-11 17:02:41 -08001564 pw.print(prefix); pw.print("mNextAppTransitionCallback=");
1565 pw.println(mNextAppTransitionCallback);
Craig Mautner164d4bb2012-11-26 13:51:23 -08001566 }
1567 }
Amith Yamasani4befbec2013-07-10 16:18:01 -07001568
1569 public void setCurrentUser(int newUserId) {
1570 mCurrentUserId = newUserId;
1571 }
Filip Gruszczynski24966d42015-09-05 15:00:00 -07001572
1573 /**
1574 * @return true if transition is not running and should not be skipped, false if transition is
1575 * already running
1576 */
1577 boolean prepareAppTransitionLocked(int transit, boolean alwaysKeepCurrent) {
1578 if (DEBUG_APP_TRANSITIONS) Slog.v(TAG, "Prepare app transition:"
1579 + " transit=" + appTransitionToString(transit)
1580 + " " + this
1581 + " alwaysKeepCurrent=" + alwaysKeepCurrent
1582 + " Callers=" + Debug.getCallers(3));
1583 if (!isTransitionSet() || mNextAppTransition == TRANSIT_NONE) {
1584 setAppTransition(transit);
1585 } else if (!alwaysKeepCurrent) {
1586 if (transit == TRANSIT_TASK_OPEN && isTransitionEqual(TRANSIT_TASK_CLOSE)) {
1587 // Opening a new task always supersedes a close for the anim.
1588 setAppTransition(transit);
1589 } else if (transit == TRANSIT_ACTIVITY_OPEN
1590 && isTransitionEqual(TRANSIT_ACTIVITY_CLOSE)) {
1591 // Opening a new activity always supersedes a close for the anim.
1592 setAppTransition(transit);
1593 }
1594 }
1595 boolean prepared = prepare();
1596 if (isTransitionSet()) {
1597 mH.removeMessages(H.APP_TRANSITION_TIMEOUT);
1598 mH.sendEmptyMessageDelayed(H.APP_TRANSITION_TIMEOUT, APP_TRANSITION_TIMEOUT_MS);
1599 }
1600 return prepared;
1601 }
Craig Mautner164d4bb2012-11-26 13:51:23 -08001602}