blob: ad12c66d6ccb1dbeedae742b95070ee874aed5e0 [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;
Filip Gruszczynski198dcbf2016-01-18 10:02:00 -080042import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_ANIM;
43import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_APP_TRANSITIONS;
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -080044import static com.android.server.wm.WindowManagerDebugConfig.TAG_WITH_CLASS_NAME;
45import static com.android.server.wm.WindowManagerDebugConfig.TAG_WM;
Filip Gruszczynski82861362015-10-16 14:21:09 -070046
Filip Gruszczynski71b0d2d2015-08-12 18:52:26 -070047import android.annotation.Nullable;
Craig Mautner164d4bb2012-11-26 13:51:23 -080048import android.content.Context;
Winson Chung2820c452014-04-15 15:34:44 -070049import android.content.res.Configuration;
Craig Mautner164d4bb2012-11-26 13:51:23 -080050import android.graphics.Bitmap;
Winson Chung399f6202014-03-19 10:47:20 -070051import android.graphics.Rect;
Craig Mautner164d4bb2012-11-26 13:51:23 -080052import android.os.Debug;
Jorim Jaggi77ba4802015-02-18 13:57:50 +010053import android.os.IBinder;
Craig Mautner164d4bb2012-11-26 13:51:23 -080054import android.os.IRemoteCallback;
Jorim Jaggi2f7d2922015-10-29 13:08:29 +010055import android.os.RemoteException;
Jorim Jaggi42625d1b2016-02-11 20:11:07 -080056import android.util.ArraySet;
Craig Mautner164d4bb2012-11-26 13:51:23 -080057import android.util.Slog;
Filip Gruszczynski170192a2015-08-16 17:46:34 -070058import android.util.SparseArray;
59import android.view.AppTransitionAnimationSpec;
Jorim Jaggi2f7d2922015-10-29 13:08:29 +010060import android.view.IAppTransitionAnimationSpecsFuture;
Craig Mautner164d4bb2012-11-26 13:51:23 -080061import android.view.WindowManager;
Craig Mautner164d4bb2012-11-26 13:51:23 -080062import android.view.animation.AlphaAnimation;
63import android.view.animation.Animation;
64import android.view.animation.AnimationSet;
65import android.view.animation.AnimationUtils;
Winson Chung399f6202014-03-19 10:47:20 -070066import android.view.animation.ClipRectAnimation;
Chet Haase10e23ab2015-02-11 15:08:38 -080067import android.view.animation.ClipRectLRAnimation;
68import android.view.animation.ClipRectTBAnimation;
Craig Mautner164d4bb2012-11-26 13:51:23 -080069import android.view.animation.Interpolator;
Jorim Jaggi1d763a62015-06-02 17:07:39 -070070import android.view.animation.PathInterpolator;
Craig Mautner164d4bb2012-11-26 13:51:23 -080071import android.view.animation.ScaleAnimation;
Winson Chung399f6202014-03-19 10:47:20 -070072import android.view.animation.TranslateAnimation;
Jorim Jaggi1d763a62015-06-02 17:07:39 -070073
Craig Mautner164d4bb2012-11-26 13:51:23 -080074import com.android.internal.util.DumpUtils.Dump;
75import com.android.server.AttributeCache;
76import com.android.server.wm.WindowManagerService.H;
77
78import java.io.PrintWriter;
Jorim Jaggi77ba4802015-02-18 13:57:50 +010079import java.util.ArrayList;
Filip Gruszczynski4cbc3152015-12-07 11:50:57 -080080import java.util.Arrays;
Jorim Jaggi2f7d2922015-10-29 13:08:29 +010081import java.util.concurrent.ExecutorService;
82import java.util.concurrent.Executors;
Craig Mautner164d4bb2012-11-26 13:51:23 -080083
Craig Mautner164d4bb2012-11-26 13:51:23 -080084// State management of app transitions. When we are preparing for a
85// transition, mNextAppTransition will be the kind of transition to
86// perform or TRANSIT_NONE if we are not waiting. If we are waiting,
87// mOpeningApps and mClosingApps are the lists of tokens that will be
88// made visible or hidden at the next transition.
89public class AppTransition implements Dump {
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -080090 private static final String TAG = TAG_WITH_CLASS_NAME ? "AppTransition" : TAG_WM;
Jorim Jaggi1d763a62015-06-02 17:07:39 -070091 private static final int CLIP_REVEAL_TRANSLATION_Y_DP = 8;
Craig Mautner9a29a5d2012-12-27 19:03:40 -080092
Craig Mautner4b71aa12012-12-27 17:20:01 -080093 /** Not set up for a transition. */
94 public static final int TRANSIT_UNSET = -1;
95 /** No animation for transition. */
96 public static final int TRANSIT_NONE = 0;
97 /** 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 -070098 public static final int TRANSIT_ACTIVITY_OPEN = 6;
Craig Mautner4b71aa12012-12-27 17:20:01 -080099 /** The window in the top-most activity is being closed to reveal the
100 * previous activity in the same task. */
Craig Mautnerbb742462014-07-07 15:28:55 -0700101 public static final int TRANSIT_ACTIVITY_CLOSE = 7;
Craig Mautner4b71aa12012-12-27 17:20:01 -0800102 /** A window in a new task is being opened 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_OPEN = 8;
Craig Mautner4b71aa12012-12-27 17:20:01 -0800105 /** A window in the top-most activity is being closed to reveal the
106 * previous activity in a different task. */
Craig Mautnerbb742462014-07-07 15:28:55 -0700107 public static final int TRANSIT_TASK_CLOSE = 9;
Craig Mautner4b71aa12012-12-27 17:20:01 -0800108 /** A window in an existing task is being displayed on top of an existing one
109 * in another activity's task. */
Craig Mautnerbb742462014-07-07 15:28:55 -0700110 public static final int TRANSIT_TASK_TO_FRONT = 10;
Craig Mautner4b71aa12012-12-27 17:20:01 -0800111 /** A window in an existing task is being put below all other tasks. */
Craig Mautnerbb742462014-07-07 15:28:55 -0700112 public static final int TRANSIT_TASK_TO_BACK = 11;
Craig Mautner9a29a5d2012-12-27 19:03:40 -0800113 /** A window in a new activity that doesn't have a wallpaper is being opened on top of one that
114 * does, effectively closing the wallpaper. */
Craig Mautnerbb742462014-07-07 15:28:55 -0700115 public static final int TRANSIT_WALLPAPER_CLOSE = 12;
Craig Mautner9a29a5d2012-12-27 19:03:40 -0800116 /** A window in a new activity that does have a wallpaper is being opened on one that didn't,
117 * effectively opening the wallpaper. */
Craig Mautnerbb742462014-07-07 15:28:55 -0700118 public static final int TRANSIT_WALLPAPER_OPEN = 13;
Craig Mautner9a29a5d2012-12-27 19:03:40 -0800119 /** A window in a new activity is being opened on top of an existing one, and both are on top
120 * of the wallpaper. */
Craig Mautnerbb742462014-07-07 15:28:55 -0700121 public static final int TRANSIT_WALLPAPER_INTRA_OPEN = 14;
Craig Mautner9a29a5d2012-12-27 19:03:40 -0800122 /** The window in the top-most activity is being closed to reveal the previous activity, and
123 * both are on top of the wallpaper. */
Craig Mautnerbb742462014-07-07 15:28:55 -0700124 public static final int TRANSIT_WALLPAPER_INTRA_CLOSE = 15;
125 /** A window in a new task is being opened behind an existing one in another activity's task.
126 * The new window will show briefly and then be gone. */
127 public static final int TRANSIT_TASK_OPEN_BEHIND = 16;
Winson Chung044d5292014-11-06 11:05:19 -0800128 /** A window in a task is being animated in-place. */
129 public static final int TRANSIT_TASK_IN_PLACE = 17;
Filip Gruszczynski55a309f2015-09-04 17:15:01 -0700130 /** An activity is being relaunched (e.g. due to configuration change). */
131 public static final int TRANSIT_ACTIVITY_RELAUNCH = 18;
Craig Mautner4b71aa12012-12-27 17:20:01 -0800132
Winson Chunga4ccb862014-08-22 15:26:27 -0700133 /** Fraction of animation at which the recents thumbnail stays completely transparent */
Jorim Jaggi1d763a62015-06-02 17:07:39 -0700134 private static final float RECENTS_THUMBNAIL_FADEIN_FRACTION = 0.5f;
Craig Mautner321bdf52012-12-18 09:53:24 -0800135 /** Fraction of animation at which the recents thumbnail becomes completely transparent */
Jorim Jaggi1d763a62015-06-02 17:07:39 -0700136 private static final float RECENTS_THUMBNAIL_FADEOUT_FRACTION = 0.5f;
Craig Mautner321bdf52012-12-18 09:53:24 -0800137
Filip Gruszczynski84fa3352016-01-25 16:28:49 -0800138 static final int DEFAULT_APP_TRANSITION_DURATION = 336;
Jorim Jaggi1d763a62015-06-02 17:07:39 -0700139 private static final int THUMBNAIL_APP_TRANSITION_DURATION = 336;
140 private static final int THUMBNAIL_APP_TRANSITION_ALPHA_DURATION = 336;
Filip Gruszczynski24966d42015-09-05 15:00:00 -0700141 private static final long APP_TRANSITION_TIMEOUT_MS = 5000;
Craig Mautner164d4bb2012-11-26 13:51:23 -0800142
Craig Mautner9a29a5d2012-12-27 19:03:40 -0800143 private final Context mContext;
Filip Gruszczynski1a4dfe52015-11-15 10:58:57 -0800144 private final WindowManagerService mService;
Craig Mautner164d4bb2012-11-26 13:51:23 -0800145
Craig Mautner9a29a5d2012-12-27 19:03:40 -0800146 private int mNextAppTransition = TRANSIT_UNSET;
147
148 private static final int NEXT_TRANSIT_TYPE_NONE = 0;
149 private static final int NEXT_TRANSIT_TYPE_CUSTOM = 1;
150 private static final int NEXT_TRANSIT_TYPE_SCALE_UP = 2;
151 private static final int NEXT_TRANSIT_TYPE_THUMBNAIL_SCALE_UP = 3;
152 private static final int NEXT_TRANSIT_TYPE_THUMBNAIL_SCALE_DOWN = 4;
Winson Chunga4ccb862014-08-22 15:26:27 -0700153 private static final int NEXT_TRANSIT_TYPE_THUMBNAIL_ASPECT_SCALE_UP = 5;
154 private static final int NEXT_TRANSIT_TYPE_THUMBNAIL_ASPECT_SCALE_DOWN = 6;
Winson Chung044d5292014-11-06 11:05:19 -0800155 private static final int NEXT_TRANSIT_TYPE_CUSTOM_IN_PLACE = 7;
Chet Haase10e23ab2015-02-11 15:08:38 -0800156 private static final int NEXT_TRANSIT_TYPE_CLIP_REVEAL = 8;
Craig Mautner9a29a5d2012-12-27 19:03:40 -0800157 private int mNextAppTransitionType = NEXT_TRANSIT_TYPE_NONE;
158
Winson Chung399f6202014-03-19 10:47:20 -0700159 // These are the possible states for the enter/exit activities during a thumbnail transition
160 private static final int THUMBNAIL_TRANSITION_ENTER_SCALE_UP = 0;
161 private static final int THUMBNAIL_TRANSITION_EXIT_SCALE_UP = 1;
162 private static final int THUMBNAIL_TRANSITION_ENTER_SCALE_DOWN = 2;
163 private static final int THUMBNAIL_TRANSITION_EXIT_SCALE_DOWN = 3;
164
Craig Mautner9a29a5d2012-12-27 19:03:40 -0800165 private String mNextAppTransitionPackage;
Craig Mautner164d4bb2012-11-26 13:51:23 -0800166 // Used for thumbnail transitions. True if we're scaling up, false if scaling down
Craig Mautner9a29a5d2012-12-27 19:03:40 -0800167 private boolean mNextAppTransitionScaleUp;
168 private IRemoteCallback mNextAppTransitionCallback;
Jorim Jaggi7cc7b082015-11-10 16:06:54 +0100169 private IRemoteCallback mNextAppTransitionFutureCallback;
Filip Gruszczynski1a5203d2015-10-29 17:43:49 -0700170 private IRemoteCallback mAnimationFinishedCallback;
Craig Mautner9a29a5d2012-12-27 19:03:40 -0800171 private int mNextAppTransitionEnter;
172 private int mNextAppTransitionExit;
Winson Chung044d5292014-11-06 11:05:19 -0800173 private int mNextAppTransitionInPlace;
Filip Gruszczynski170192a2015-08-16 17:46:34 -0700174
175 // Keyed by task id.
176 private final SparseArray<AppTransitionAnimationSpec> mNextAppTransitionAnimationsSpecs
177 = new SparseArray<>();
Jorim Jaggi2f7d2922015-10-29 13:08:29 +0100178 private IAppTransitionAnimationSpecsFuture mNextAppTransitionAnimationsSpecsFuture;
179 private boolean mNextAppTransitionAnimationsSpecsPending;
Filip Gruszczynski170192a2015-08-16 17:46:34 -0700180 private AppTransitionAnimationSpec mDefaultNextAppTransitionAnimationSpec;
181
Winson Chunga4ccb862014-08-22 15:26:27 -0700182 private Rect mNextAppTransitionInsets = new Rect();
Craig Mautner164d4bb2012-11-26 13:51:23 -0800183
Winson Chung2820c452014-04-15 15:34:44 -0700184 private Rect mTmpFromClipRect = new Rect();
185 private Rect mTmpToClipRect = new Rect();
186
Filip Gruszczynskid64ef3e2015-10-27 17:58:02 -0700187 private final Rect mTmpRect = new Rect();
Filip Gruszczynski170192a2015-08-16 17:46:34 -0700188
Craig Mautner9a29a5d2012-12-27 19:03:40 -0800189 private final static int APP_STATE_IDLE = 0;
190 private final static int APP_STATE_READY = 1;
191 private final static int APP_STATE_RUNNING = 2;
192 private final static int APP_STATE_TIMEOUT = 3;
193 private int mAppTransitionState = APP_STATE_IDLE;
194
195 private final int mConfigShortAnimTime;
Craig Mautner321bdf52012-12-18 09:53:24 -0800196 private final Interpolator mDecelerateInterpolator;
Winson Chunga4ccb862014-08-22 15:26:27 -0700197 private final Interpolator mThumbnailFadeInInterpolator;
198 private final Interpolator mThumbnailFadeOutInterpolator;
Chet Haase10e23ab2015-02-11 15:08:38 -0800199 private final Interpolator mLinearOutSlowInInterpolator;
Jorim Jaggi1d763a62015-06-02 17:07:39 -0700200 private final Interpolator mFastOutLinearInInterpolator;
201 private final Interpolator mClipHorizontalInterpolator = new PathInterpolator(0, 0, 0.4f, 1f);
202
203 /** Interpolator to be used for animations that respond directly to a touch */
204 private final Interpolator mTouchResponseInterpolator =
205 new PathInterpolator(0.3f, 0f, 0.1f, 1f);
206
207 private final int mClipRevealTranslationY;
Craig Mautner164d4bb2012-11-26 13:51:23 -0800208
Amith Yamasani4befbec2013-07-10 16:18:01 -0700209 private int mCurrentUserId = 0;
210
Jorim Jaggi77ba4802015-02-18 13:57:50 +0100211 private final ArrayList<AppTransitionListener> mListeners = new ArrayList<>();
Jorim Jaggi2f7d2922015-10-29 13:08:29 +0100212 private final ExecutorService mDefaultExecutor = Executors.newSingleThreadExecutor();
Jorim Jaggi77ba4802015-02-18 13:57:50 +0100213
Filip Gruszczynski1a4dfe52015-11-15 10:58:57 -0800214 AppTransition(Context context, WindowManagerService service) {
Craig Mautner164d4bb2012-11-26 13:51:23 -0800215 mContext = context;
Filip Gruszczynski1a4dfe52015-11-15 10:58:57 -0800216 mService = service;
Chet Haase10e23ab2015-02-11 15:08:38 -0800217 mLinearOutSlowInInterpolator = AnimationUtils.loadInterpolator(context,
218 com.android.internal.R.interpolator.linear_out_slow_in);
Jorim Jaggi1d763a62015-06-02 17:07:39 -0700219 mFastOutLinearInInterpolator = AnimationUtils.loadInterpolator(context,
220 com.android.internal.R.interpolator.fast_out_linear_in);
Craig Mautner164d4bb2012-11-26 13:51:23 -0800221 mConfigShortAnimTime = context.getResources().getInteger(
222 com.android.internal.R.integer.config_shortAnimTime);
Craig Mautner321bdf52012-12-18 09:53:24 -0800223 mDecelerateInterpolator = AnimationUtils.loadInterpolator(context,
224 com.android.internal.R.interpolator.decelerate_cubic);
Winson Chunga4ccb862014-08-22 15:26:27 -0700225 mThumbnailFadeInInterpolator = new Interpolator() {
226 @Override
227 public float getInterpolation(float input) {
228 // Linear response for first fraction, then complete after that.
229 if (input < RECENTS_THUMBNAIL_FADEIN_FRACTION) {
230 return 0f;
231 }
Jorim Jaggi1d763a62015-06-02 17:07:39 -0700232 float t = (input - RECENTS_THUMBNAIL_FADEIN_FRACTION) /
Winson Chunga4ccb862014-08-22 15:26:27 -0700233 (1f - RECENTS_THUMBNAIL_FADEIN_FRACTION);
Jorim Jaggi1d763a62015-06-02 17:07:39 -0700234 return mFastOutLinearInInterpolator.getInterpolation(t);
Winson Chunga4ccb862014-08-22 15:26:27 -0700235 }
236 };
237 mThumbnailFadeOutInterpolator = new Interpolator() {
Craig Mautner321bdf52012-12-18 09:53:24 -0800238 @Override
239 public float getInterpolation(float input) {
240 // Linear response for first fraction, then complete after that.
241 if (input < RECENTS_THUMBNAIL_FADEOUT_FRACTION) {
Jorim Jaggi1d763a62015-06-02 17:07:39 -0700242 float t = input / RECENTS_THUMBNAIL_FADEOUT_FRACTION;
243 return mLinearOutSlowInInterpolator.getInterpolation(t);
Craig Mautner321bdf52012-12-18 09:53:24 -0800244 }
Winson Chunga4ccb862014-08-22 15:26:27 -0700245 return 1f;
Craig Mautner321bdf52012-12-18 09:53:24 -0800246 }
247 };
Jorim Jaggi1d763a62015-06-02 17:07:39 -0700248 mClipRevealTranslationY = (int) (CLIP_REVEAL_TRANSLATION_Y_DP
249 * mContext.getResources().getDisplayMetrics().density);
Craig Mautner164d4bb2012-11-26 13:51:23 -0800250 }
251
252 boolean isTransitionSet() {
253 return mNextAppTransition != TRANSIT_UNSET;
254 }
255
Craig Mautner164d4bb2012-11-26 13:51:23 -0800256 boolean isTransitionEqual(int transit) {
257 return mNextAppTransition == transit;
258 }
259
260 int getAppTransition() {
Craig Mautner321bdf52012-12-18 09:53:24 -0800261 return mNextAppTransition;
Craig Mautner164d4bb2012-11-26 13:51:23 -0800262 }
263
Filip Gruszczynski24966d42015-09-05 15:00:00 -0700264 private void setAppTransition(int transit) {
Craig Mautner164d4bb2012-11-26 13:51:23 -0800265 mNextAppTransition = transit;
266 }
267
268 boolean isReady() {
Craig Mautner9a29a5d2012-12-27 19:03:40 -0800269 return mAppTransitionState == APP_STATE_READY
270 || mAppTransitionState == APP_STATE_TIMEOUT;
Craig Mautner164d4bb2012-11-26 13:51:23 -0800271 }
272
Craig Mautnerae446592012-12-06 19:05:05 -0800273 void setReady() {
Craig Mautner9a29a5d2012-12-27 19:03:40 -0800274 mAppTransitionState = APP_STATE_READY;
Jorim Jaggi2f7d2922015-10-29 13:08:29 +0100275 fetchAppTransitionSpecsFromFuture();
Craig Mautner164d4bb2012-11-26 13:51:23 -0800276 }
277
278 boolean isRunning() {
Craig Mautner9a29a5d2012-12-27 19:03:40 -0800279 return mAppTransitionState == APP_STATE_RUNNING;
Craig Mautner164d4bb2012-11-26 13:51:23 -0800280 }
281
Craig Mautner9a29a5d2012-12-27 19:03:40 -0800282 void setIdle() {
283 mAppTransitionState = APP_STATE_IDLE;
Craig Mautner164d4bb2012-11-26 13:51:23 -0800284 }
285
286 boolean isTimeout() {
Craig Mautner9a29a5d2012-12-27 19:03:40 -0800287 return mAppTransitionState == APP_STATE_TIMEOUT;
Craig Mautner164d4bb2012-11-26 13:51:23 -0800288 }
289
Craig Mautner9a29a5d2012-12-27 19:03:40 -0800290 void setTimeout() {
291 mAppTransitionState = APP_STATE_TIMEOUT;
Craig Mautner164d4bb2012-11-26 13:51:23 -0800292 }
293
Filip Gruszczynski170192a2015-08-16 17:46:34 -0700294 Bitmap getAppTransitionThumbnailHeader(int taskId) {
295 AppTransitionAnimationSpec spec = mNextAppTransitionAnimationsSpecs.get(taskId);
Filip Gruszczynski7248c562015-11-09 13:05:40 -0800296 if (spec == null) {
297 spec = mDefaultNextAppTransitionAnimationSpec;
298 }
Filip Gruszczynski170192a2015-08-16 17:46:34 -0700299 return spec != null ? spec.bitmap : null;
Craig Mautner164d4bb2012-11-26 13:51:23 -0800300 }
301
Winson Chunga4ccb862014-08-22 15:26:27 -0700302 /** Returns whether the next thumbnail transition is aspect scaled up. */
303 boolean isNextThumbnailTransitionAspectScaled() {
304 return mNextAppTransitionType == NEXT_TRANSIT_TYPE_THUMBNAIL_ASPECT_SCALE_UP ||
305 mNextAppTransitionType == NEXT_TRANSIT_TYPE_THUMBNAIL_ASPECT_SCALE_DOWN;
306 }
307
308 /** Returns whether the next thumbnail transition is scaling up. */
309 boolean isNextThumbnailTransitionScaleUp() {
310 return mNextAppTransitionScaleUp;
311 }
312
Filip Gruszczynski4cbc3152015-12-07 11:50:57 -0800313 boolean isNextAppTransitionThumbnailUp() {
314 return mNextAppTransitionType == NEXT_TRANSIT_TYPE_THUMBNAIL_SCALE_UP ||
315 mNextAppTransitionType == NEXT_TRANSIT_TYPE_THUMBNAIL_ASPECT_SCALE_UP;
316 }
317
318 boolean isNextAppTransitionThumbnailDown() {
319 return mNextAppTransitionType == NEXT_TRANSIT_TYPE_THUMBNAIL_SCALE_DOWN ||
320 mNextAppTransitionType == NEXT_TRANSIT_TYPE_THUMBNAIL_ASPECT_SCALE_DOWN;
321 }
322
Jorim Jaggi2f7d2922015-10-29 13:08:29 +0100323 /**
324 * @return true if and only if we are currently fetching app transition specs from the future
325 * passed into {@link #overridePendingAppTransitionMultiThumbFuture}
326 */
327 boolean isFetchingAppTransitionsSpecs() {
328 return mNextAppTransitionAnimationsSpecsPending;
329 }
330
Filip Gruszczynski24966d42015-09-05 15:00:00 -0700331 private boolean prepare() {
Craig Mautner9a29a5d2012-12-27 19:03:40 -0800332 if (!isRunning()) {
333 mAppTransitionState = APP_STATE_IDLE;
Jorim Jaggi77ba4802015-02-18 13:57:50 +0100334 notifyAppTransitionPendingLocked();
Wale Ogunwale8ebc82a2015-05-13 15:27:12 -0700335 return true;
Craig Mautner9a29a5d2012-12-27 19:03:40 -0800336 }
Wale Ogunwale8ebc82a2015-05-13 15:27:12 -0700337 return false;
Craig Mautner164d4bb2012-11-26 13:51:23 -0800338 }
339
Jorim Jaggi42625d1b2016-02-11 20:11:07 -0800340 void goodToGo(AppWindowAnimator topOpeningAppAnimator, AppWindowAnimator topClosingAppAnimator,
341 ArraySet<AppWindowToken> openingApps, ArraySet<AppWindowToken> closingApps) {
Craig Mautner4b71aa12012-12-27 17:20:01 -0800342 mNextAppTransition = TRANSIT_UNSET;
Craig Mautner9a29a5d2012-12-27 19:03:40 -0800343 mAppTransitionState = APP_STATE_RUNNING;
Jorim Jaggi77ba4802015-02-18 13:57:50 +0100344 notifyAppTransitionStartingLocked(
Jorim Jaggi42625d1b2016-02-11 20:11:07 -0800345 topOpeningAppAnimator != null ? topOpeningAppAnimator.mAppToken.token : null,
346 topClosingAppAnimator != null ? topClosingAppAnimator.mAppToken.token : null,
347 topOpeningAppAnimator != null ? topOpeningAppAnimator.animation : null,
348 topClosingAppAnimator != null ? topClosingAppAnimator.animation : null);
349 mService.getDefaultDisplayContentLocked().getDockedDividerController()
350 .notifyAppTransitionStarting(openingApps, closingApps);
Craig Mautner164d4bb2012-11-26 13:51:23 -0800351 }
352
353 void clear() {
Craig Mautner9a29a5d2012-12-27 19:03:40 -0800354 mNextAppTransitionType = NEXT_TRANSIT_TYPE_NONE;
Craig Mautner164d4bb2012-11-26 13:51:23 -0800355 mNextAppTransitionPackage = null;
Filip Gruszczynski170192a2015-08-16 17:46:34 -0700356 mNextAppTransitionAnimationsSpecs.clear();
Jorim Jaggi65193992015-11-23 16:49:59 -0800357 mNextAppTransitionAnimationsSpecsFuture = null;
358 mDefaultNextAppTransitionAnimationSpec = null;
359 mAnimationFinishedCallback = null;
Craig Mautner164d4bb2012-11-26 13:51:23 -0800360 }
361
Craig Mautner9a29a5d2012-12-27 19:03:40 -0800362 void freeze() {
363 setAppTransition(AppTransition.TRANSIT_UNSET);
364 clear();
365 setReady();
Jorim Jaggi77ba4802015-02-18 13:57:50 +0100366 notifyAppTransitionCancelledLocked();
367 }
368
369 void registerListenerLocked(AppTransitionListener listener) {
370 mListeners.add(listener);
371 }
372
Wale Ogunwalea48eadb2015-05-14 17:43:12 -0700373 public void notifyAppTransitionFinishedLocked(IBinder token) {
Jorim Jaggi77ba4802015-02-18 13:57:50 +0100374 for (int i = 0; i < mListeners.size(); i++) {
375 mListeners.get(i).onAppTransitionFinishedLocked(token);
376 }
377 }
378
379 private void notifyAppTransitionPendingLocked() {
380 for (int i = 0; i < mListeners.size(); i++) {
381 mListeners.get(i).onAppTransitionPendingLocked();
382 }
383 }
384
385 private void notifyAppTransitionCancelledLocked() {
386 for (int i = 0; i < mListeners.size(); i++) {
387 mListeners.get(i).onAppTransitionCancelledLocked();
388 }
389 }
390
391 private void notifyAppTransitionStartingLocked(IBinder openToken,
392 IBinder closeToken, Animation openAnimation, Animation closeAnimation) {
393 for (int i = 0; i < mListeners.size(); i++) {
394 mListeners.get(i).onAppTransitionStartingLocked(openToken, closeToken, openAnimation,
395 closeAnimation);
396 }
Craig Mautner9a29a5d2012-12-27 19:03:40 -0800397 }
398
Craig Mautner164d4bb2012-11-26 13:51:23 -0800399 private AttributeCache.Entry getCachedAnimations(WindowManager.LayoutParams lp) {
400 if (DEBUG_ANIM) Slog.v(TAG, "Loading animations: layout params pkg="
401 + (lp != null ? lp.packageName : null)
402 + " resId=0x" + (lp != null ? Integer.toHexString(lp.windowAnimations) : null));
403 if (lp != null && lp.windowAnimations != 0) {
404 // If this is a system resource, don't try to load it from the
405 // application resources. It is nice to avoid loading application
406 // resources if we can.
407 String packageName = lp.packageName != null ? lp.packageName : "android";
408 int resId = lp.windowAnimations;
409 if ((resId&0xFF000000) == 0x01000000) {
410 packageName = "android";
411 }
412 if (DEBUG_ANIM) Slog.v(TAG, "Loading animations: picked package="
413 + packageName);
414 return AttributeCache.instance().get(packageName, resId,
Amith Yamasani4befbec2013-07-10 16:18:01 -0700415 com.android.internal.R.styleable.WindowAnimation, mCurrentUserId);
Craig Mautner164d4bb2012-11-26 13:51:23 -0800416 }
417 return null;
418 }
419
420 private AttributeCache.Entry getCachedAnimations(String packageName, int resId) {
421 if (DEBUG_ANIM) Slog.v(TAG, "Loading animations: package="
422 + packageName + " resId=0x" + Integer.toHexString(resId));
423 if (packageName != null) {
424 if ((resId&0xFF000000) == 0x01000000) {
425 packageName = "android";
426 }
427 if (DEBUG_ANIM) Slog.v(TAG, "Loading animations: picked package="
428 + packageName);
429 return AttributeCache.instance().get(packageName, resId,
Amith Yamasani4befbec2013-07-10 16:18:01 -0700430 com.android.internal.R.styleable.WindowAnimation, mCurrentUserId);
Craig Mautner164d4bb2012-11-26 13:51:23 -0800431 }
432 return null;
433 }
434
Dianne Hackborne30e02f2014-05-27 18:24:45 -0700435 Animation loadAnimationAttr(WindowManager.LayoutParams lp, int animAttr) {
Craig Mautner164d4bb2012-11-26 13:51:23 -0800436 int anim = 0;
437 Context context = mContext;
438 if (animAttr >= 0) {
439 AttributeCache.Entry ent = getCachedAnimations(lp);
440 if (ent != null) {
441 context = ent.context;
442 anim = ent.array.getResourceId(animAttr, 0);
443 }
444 }
445 if (anim != 0) {
446 return AnimationUtils.loadAnimation(context, anim);
447 }
448 return null;
449 }
450
Dianne Hackborne30e02f2014-05-27 18:24:45 -0700451 Animation loadAnimationRes(WindowManager.LayoutParams lp, int resId) {
452 Context context = mContext;
453 if (resId >= 0) {
454 AttributeCache.Entry ent = getCachedAnimations(lp);
455 if (ent != null) {
456 context = ent.context;
457 }
458 return AnimationUtils.loadAnimation(context, resId);
459 }
460 return null;
461 }
462
463 private Animation loadAnimationRes(String packageName, int resId) {
Craig Mautner164d4bb2012-11-26 13:51:23 -0800464 int anim = 0;
465 Context context = mContext;
466 if (resId >= 0) {
467 AttributeCache.Entry ent = getCachedAnimations(packageName, resId);
468 if (ent != null) {
469 context = ent.context;
470 anim = resId;
471 }
472 }
473 if (anim != 0) {
474 return AnimationUtils.loadAnimation(context, anim);
475 }
476 return null;
477 }
478
Craig Mautner164d4bb2012-11-26 13:51:23 -0800479 /**
480 * Compute the pivot point for an animation that is scaling from a small
481 * rect on screen to a larger rect. The pivot point varies depending on
482 * the distance between the inner and outer edges on both sides. This
483 * function computes the pivot point for one dimension.
484 * @param startPos Offset from left/top edge of outer rectangle to
485 * left/top edge of inner rectangle.
486 * @param finalScale The scaling factor between the size of the outer
487 * and inner rectangles.
488 */
489 private static float computePivot(int startPos, float finalScale) {
Jorim Jaggic6c89a82016-01-28 17:48:21 -0800490
491 /*
492 Theorem of intercepting lines:
493
494 + + +-----------------------------------------------+
495 | | | |
496 | | | |
497 | | | |
498 | | | |
499 x | y | | |
500 | | | |
501 | | | |
502 | | | |
503 | | | |
504 | + | +--------------------+ |
505 | | | | |
506 | | | | |
507 | | | | |
508 | | | | |
509 | | | | |
510 | | | | |
511 | | | | |
512 | | | | |
513 | | | | |
514 | | | | |
515 | | | | |
516 | | | | |
517 | | | | |
518 | | | | |
519 | | | | |
520 | | | | |
521 | | | | |
522 | | +--------------------+ |
523 | | |
524 | | |
525 | | |
526 | | |
527 | | |
528 | | |
529 | | |
530 | +-----------------------------------------------+
531 |
532 |
533 |
534 |
535 |
536 |
537 |
538 |
539 |
540 + ++
541 p ++
542
543 scale = (x - y) / x
544 <=> x = -y / (scale - 1)
545 */
Craig Mautner164d4bb2012-11-26 13:51:23 -0800546 final float denom = finalScale-1;
547 if (Math.abs(denom) < .0001f) {
548 return startPos;
549 }
550 return -startPos / denom;
551 }
552
Filip Gruszczynski541f92c2015-10-25 17:15:06 -0700553 private Animation createScaleUpAnimationLocked(int transit, boolean enter,
554 Rect containingFrame) {
555 Animation a;
Filip Gruszczynskid64ef3e2015-10-27 17:58:02 -0700556 getDefaultNextAppTransitionStartRect(mTmpRect);
Filip Gruszczynski541f92c2015-10-25 17:15:06 -0700557 final int appWidth = containingFrame.width();
558 final int appHeight = containingFrame.height();
Craig Mautner164d4bb2012-11-26 13:51:23 -0800559 if (enter) {
560 // Entering app zooms out from the center of the initial rect.
Filip Gruszczynskid64ef3e2015-10-27 17:58:02 -0700561 float scaleW = mTmpRect.width() / (float) appWidth;
562 float scaleH = mTmpRect.height() / (float) appHeight;
Craig Mautner164d4bb2012-11-26 13:51:23 -0800563 Animation scale = new ScaleAnimation(scaleW, 1, scaleH, 1,
Filip Gruszczynskid64ef3e2015-10-27 17:58:02 -0700564 computePivot(mTmpRect.left, scaleW),
565 computePivot(mTmpRect.right, scaleH));
Craig Mautner321bdf52012-12-18 09:53:24 -0800566 scale.setInterpolator(mDecelerateInterpolator);
567
Craig Mautner164d4bb2012-11-26 13:51:23 -0800568 Animation alpha = new AlphaAnimation(0, 1);
Winson Chunga4ccb862014-08-22 15:26:27 -0700569 alpha.setInterpolator(mThumbnailFadeOutInterpolator);
Craig Mautner321bdf52012-12-18 09:53:24 -0800570
571 AnimationSet set = new AnimationSet(false);
Craig Mautner164d4bb2012-11-26 13:51:23 -0800572 set.addAnimation(scale);
Craig Mautner164d4bb2012-11-26 13:51:23 -0800573 set.addAnimation(alpha);
574 set.setDetachWallpaper(true);
575 a = set;
Craig Mautner4b71aa12012-12-27 17:20:01 -0800576 } else if (transit == TRANSIT_WALLPAPER_INTRA_OPEN ||
577 transit == TRANSIT_WALLPAPER_INTRA_CLOSE) {
Craig Mautner321bdf52012-12-18 09:53:24 -0800578 // If we are on top of the wallpaper, we need an animation that
579 // correctly handles the wallpaper staying static behind all of
580 // the animated elements. To do this, will just have the existing
581 // element fade out.
582 a = new AlphaAnimation(1, 0);
583 a.setDetachWallpaper(true);
Craig Mautner164d4bb2012-11-26 13:51:23 -0800584 } else {
Craig Mautner321bdf52012-12-18 09:53:24 -0800585 // For normal animations, the exiting element just holds in place.
586 a = new AlphaAnimation(1, 1);
Craig Mautner164d4bb2012-11-26 13:51:23 -0800587 }
Craig Mautner321bdf52012-12-18 09:53:24 -0800588
589 // Pick the desired duration. If this is an inter-activity transition,
590 // it is the standard duration for that. Otherwise we use the longer
591 // task transition duration.
592 final long duration;
593 switch (transit) {
Craig Mautner4b71aa12012-12-27 17:20:01 -0800594 case TRANSIT_ACTIVITY_OPEN:
595 case TRANSIT_ACTIVITY_CLOSE:
Craig Mautner321bdf52012-12-18 09:53:24 -0800596 duration = mConfigShortAnimTime;
597 break;
598 default:
599 duration = DEFAULT_APP_TRANSITION_DURATION;
600 break;
601 }
602 a.setDuration(duration);
Craig Mautner164d4bb2012-11-26 13:51:23 -0800603 a.setFillAfter(true);
Craig Mautner321bdf52012-12-18 09:53:24 -0800604 a.setInterpolator(mDecelerateInterpolator);
Craig Mautner164d4bb2012-11-26 13:51:23 -0800605 a.initialize(appWidth, appHeight, appWidth, appHeight);
606 return a;
607 }
608
Filip Gruszczynski170192a2015-08-16 17:46:34 -0700609 private void getDefaultNextAppTransitionStartRect(Rect rect) {
610 if (mDefaultNextAppTransitionAnimationSpec == null ||
611 mDefaultNextAppTransitionAnimationSpec.rect == null) {
612 Slog.wtf(TAG, "Starting rect for app requested, but none available", new Throwable());
613 rect.setEmpty();
614 } else {
615 rect.set(mDefaultNextAppTransitionAnimationSpec.rect);
616 }
617 }
618
619 void getNextAppTransitionStartRect(int taskId, Rect rect) {
620 AppTransitionAnimationSpec spec = mNextAppTransitionAnimationsSpecs.get(taskId);
Filip Gruszczynski7248c562015-11-09 13:05:40 -0800621 if (spec == null) {
622 spec = mDefaultNextAppTransitionAnimationSpec;
623 }
Filip Gruszczynski170192a2015-08-16 17:46:34 -0700624 if (spec == null || spec.rect == null) {
625 Slog.wtf(TAG, "Starting rect for task: " + taskId + " requested, but not available",
626 new Throwable());
627 rect.setEmpty();
628 } else {
629 rect.set(spec.rect);
630 }
631 }
632
Filip Gruszczynski7248c562015-11-09 13:05:40 -0800633 private void putDefaultNextAppTransitionCoordinates(int left, int top, int width, int height,
634 Bitmap bitmap) {
Filip Gruszczynski170192a2015-08-16 17:46:34 -0700635 mDefaultNextAppTransitionAnimationSpec = new AppTransitionAnimationSpec(-1 /* taskId */,
Filip Gruszczynski7248c562015-11-09 13:05:40 -0800636 bitmap, new Rect(left, top, left + width, top + height));
Filip Gruszczynski170192a2015-08-16 17:46:34 -0700637 }
638
Craig Mautner80b1f642015-04-22 10:59:09 -0700639 private Animation createClipRevealAnimationLocked(int transit, boolean enter, Rect appFrame) {
Chet Haase10e23ab2015-02-11 15:08:38 -0800640 final Animation anim;
641 if (enter) {
642 // Reveal will expand and move faster in horizontal direction
643
Craig Mautner80b1f642015-04-22 10:59:09 -0700644 final int appWidth = appFrame.width();
645 final int appHeight = appFrame.height();
Filip Gruszczynskid64ef3e2015-10-27 17:58:02 -0700646 // mTmpRect will contain an area around the launcher icon that was pressed. We will
Filip Gruszczynski82861362015-10-16 14:21:09 -0700647 // clip reveal from that area in the final area of the app.
Filip Gruszczynskid64ef3e2015-10-27 17:58:02 -0700648 getDefaultNextAppTransitionStartRect(mTmpRect);
Craig Mautner80b1f642015-04-22 10:59:09 -0700649
Jorim Jaggi1d763a62015-06-02 17:07:39 -0700650 float t = 0f;
651 if (appHeight > 0) {
Filip Gruszczynskid64ef3e2015-10-27 17:58:02 -0700652 t = (float) mTmpRect.left / appHeight;
Jorim Jaggi1d763a62015-06-02 17:07:39 -0700653 }
Filip Gruszczynski82861362015-10-16 14:21:09 -0700654 int translationY = mClipRevealTranslationY + (int)(appHeight / 7f * t);
Jorim Jaggi1d763a62015-06-02 17:07:39 -0700655
Filip Gruszczynskid64ef3e2015-10-27 17:58:02 -0700656 int centerX = mTmpRect.centerX();
657 int centerY = mTmpRect.centerY();
658 int halfWidth = mTmpRect.width() / 2;
659 int halfHeight = mTmpRect.height() / 2;
Jorim Jaggi1d763a62015-06-02 17:07:39 -0700660
661 // Clip third of the from size of launch icon, expand to full width/height
Chet Haase10e23ab2015-02-11 15:08:38 -0800662 Animation clipAnimLR = new ClipRectLRAnimation(
Filip Gruszczynski170192a2015-08-16 17:46:34 -0700663 centerX - halfWidth, centerX + halfWidth, 0, appWidth);
Jorim Jaggi1d763a62015-06-02 17:07:39 -0700664 clipAnimLR.setInterpolator(mClipHorizontalInterpolator);
665 clipAnimLR.setDuration((long) (DEFAULT_APP_TRANSITION_DURATION / 2.5f));
Filip Gruszczynski82861362015-10-16 14:21:09 -0700666
Filip Gruszczynski170192a2015-08-16 17:46:34 -0700667 Animation clipAnimTB = new ClipRectTBAnimation(centerY - halfHeight - translationY,
668 centerY + halfHeight/ 2 - translationY, 0, appHeight);
Jorim Jaggi1d763a62015-06-02 17:07:39 -0700669 clipAnimTB.setInterpolator(mTouchResponseInterpolator);
Chet Haase10e23ab2015-02-11 15:08:38 -0800670 clipAnimTB.setDuration(DEFAULT_APP_TRANSITION_DURATION);
671
Filip Gruszczynski82861362015-10-16 14:21:09 -0700672 // We might be animating entrance of a docked task, so we need the translate to account
673 // for the app frame in which the window will reside. Every other calculation here
674 // is performed as if the window started at 0,0.
675 translationY -= appFrame.top;
676 TranslateAnimation translate = new TranslateAnimation(-appFrame.left, 0, translationY,
677 0);
678 translate.setInterpolator(mLinearOutSlowInInterpolator);
679 translate.setDuration(DEFAULT_APP_TRANSITION_DURATION);
Chet Haase10e23ab2015-02-11 15:08:38 -0800680
681 // Quick fade-in from icon to app window
Jorim Jaggi1d763a62015-06-02 17:07:39 -0700682 final int alphaDuration = DEFAULT_APP_TRANSITION_DURATION / 4;
683 AlphaAnimation alpha = new AlphaAnimation(0.5f, 1);
Chet Haase10e23ab2015-02-11 15:08:38 -0800684 alpha.setDuration(alphaDuration);
Jorim Jaggi1d763a62015-06-02 17:07:39 -0700685 alpha.setInterpolator(mLinearOutSlowInInterpolator);
Chet Haase10e23ab2015-02-11 15:08:38 -0800686
687 AnimationSet set = new AnimationSet(false);
688 set.addAnimation(clipAnimLR);
689 set.addAnimation(clipAnimTB);
Filip Gruszczynski82861362015-10-16 14:21:09 -0700690 set.addAnimation(translate);
Chet Haase10e23ab2015-02-11 15:08:38 -0800691 set.addAnimation(alpha);
Filip Gruszczynski9e2cf5b2015-07-31 12:20:40 -0700692 set.setZAdjustment(Animation.ZORDER_TOP);
Chet Haase10e23ab2015-02-11 15:08:38 -0800693 set.initialize(appWidth, appHeight, appWidth, appHeight);
694 anim = set;
695 } else {
696 final long duration;
697 switch (transit) {
698 case TRANSIT_ACTIVITY_OPEN:
699 case TRANSIT_ACTIVITY_CLOSE:
700 duration = mConfigShortAnimTime;
701 break;
702 default:
703 duration = DEFAULT_APP_TRANSITION_DURATION;
704 break;
705 }
706 if (transit == TRANSIT_WALLPAPER_INTRA_OPEN ||
707 transit == TRANSIT_WALLPAPER_INTRA_CLOSE) {
708 // If we are on top of the wallpaper, we need an animation that
709 // correctly handles the wallpaper staying static behind all of
710 // the animated elements. To do this, will just have the existing
711 // element fade out.
712 anim = new AlphaAnimation(1, 0);
713 anim.setDetachWallpaper(true);
714 } else {
715 // For normal animations, the exiting element just holds in place.
716 anim = new AlphaAnimation(1, 1);
717 }
718 anim.setInterpolator(mDecelerateInterpolator);
719 anim.setDuration(duration);
720 anim.setFillAfter(true);
721 }
722 return anim;
723 }
724
Winson Chung399f6202014-03-19 10:47:20 -0700725 /**
726 * Prepares the specified animation with a standard duration, interpolator, etc.
727 */
Winson Chung5393dff2014-05-08 14:25:43 -0700728 Animation prepareThumbnailAnimationWithDuration(Animation a, int appWidth, int appHeight,
729 int duration, Interpolator interpolator) {
Winson Chunga4ccb862014-08-22 15:26:27 -0700730 if (duration > 0) {
731 a.setDuration(duration);
732 }
Winson Chung5393dff2014-05-08 14:25:43 -0700733 a.setFillAfter(true);
734 a.setInterpolator(interpolator);
735 a.initialize(appWidth, appHeight, appWidth, appHeight);
736 return a;
737 }
738
739 /**
740 * Prepares the specified animation with a standard duration, interpolator, etc.
741 */
Winson Chung399f6202014-03-19 10:47:20 -0700742 Animation prepareThumbnailAnimation(Animation a, int appWidth, int appHeight, int transit) {
Craig Mautner321bdf52012-12-18 09:53:24 -0800743 // Pick the desired duration. If this is an inter-activity transition,
744 // it is the standard duration for that. Otherwise we use the longer
745 // task transition duration.
Winson Chung5393dff2014-05-08 14:25:43 -0700746 final int duration;
Craig Mautner321bdf52012-12-18 09:53:24 -0800747 switch (transit) {
Craig Mautner4b71aa12012-12-27 17:20:01 -0800748 case TRANSIT_ACTIVITY_OPEN:
749 case TRANSIT_ACTIVITY_CLOSE:
Craig Mautner321bdf52012-12-18 09:53:24 -0800750 duration = mConfigShortAnimTime;
751 break;
752 default:
753 duration = DEFAULT_APP_TRANSITION_DURATION;
754 break;
755 }
Winson Chung5393dff2014-05-08 14:25:43 -0700756 return prepareThumbnailAnimationWithDuration(a, appWidth, appHeight, duration,
757 mDecelerateInterpolator);
Craig Mautner164d4bb2012-11-26 13:51:23 -0800758 }
759
Winson Chung399f6202014-03-19 10:47:20 -0700760 /**
761 * Return the current thumbnail transition state.
762 */
763 int getThumbnailTransitionState(boolean enter) {
764 if (enter) {
765 if (mNextAppTransitionScaleUp) {
766 return THUMBNAIL_TRANSITION_ENTER_SCALE_UP;
767 } else {
768 return THUMBNAIL_TRANSITION_ENTER_SCALE_DOWN;
769 }
770 } else {
771 if (mNextAppTransitionScaleUp) {
772 return THUMBNAIL_TRANSITION_EXIT_SCALE_UP;
773 } else {
774 return THUMBNAIL_TRANSITION_EXIT_SCALE_DOWN;
775 }
776 }
777 }
778
779 /**
780 * This animation runs for the thumbnail that gets cross faded with the enter/exit activity
Filip Gruszczynski170192a2015-08-16 17:46:34 -0700781 * when a thumbnail is specified with the pending animation override.
Winson Chung399f6202014-03-19 10:47:20 -0700782 */
Filip Gruszczynski170192a2015-08-16 17:46:34 -0700783 Animation createThumbnailAspectScaleAnimationLocked(Rect appRect, Bitmap thumbnailHeader,
784 final int taskId) {
Winson Chung399f6202014-03-19 10:47:20 -0700785 Animation a;
Filip Gruszczynski170192a2015-08-16 17:46:34 -0700786 final int thumbWidthI = thumbnailHeader.getWidth();
Winson Chung399f6202014-03-19 10:47:20 -0700787 final float thumbWidth = thumbWidthI > 0 ? thumbWidthI : 1;
Filip Gruszczynski170192a2015-08-16 17:46:34 -0700788 final int thumbHeightI = thumbnailHeader.getHeight();
Winson Chung399f6202014-03-19 10:47:20 -0700789 final float thumbHeight = thumbHeightI > 0 ? thumbHeightI : 1;
Filip Gruszczynskidfb25d32015-08-14 11:06:18 -0700790 final int appWidth = appRect.width();
Winson Chung399f6202014-03-19 10:47:20 -0700791
Filip Gruszczynskidfb25d32015-08-14 11:06:18 -0700792 float scaleW = appWidth / thumbWidth;
Winson Chunga4ccb862014-08-22 15:26:27 -0700793 float unscaledHeight = thumbHeight * scaleW;
Filip Gruszczynskid64ef3e2015-10-27 17:58:02 -0700794 getNextAppTransitionStartRect(taskId, mTmpRect);
Filip Gruszczynski565a9df2016-01-22 11:10:42 -0800795 final float unscaledStartY = mTmpRect.top - (unscaledHeight - thumbHeight) / 2f;
Jorim Jaggic6c89a82016-01-28 17:48:21 -0800796 final float toY = appRect.top + -unscaledStartY;
Winson Chung399f6202014-03-19 10:47:20 -0700797 if (mNextAppTransitionScaleUp) {
Winson Chunga4ccb862014-08-22 15:26:27 -0700798 // Animation up from the thumbnail to the full screen
799 Animation scale = new ScaleAnimation(1f, scaleW, 1f, scaleW,
Filip Gruszczynskid64ef3e2015-10-27 17:58:02 -0700800 mTmpRect.left + (thumbWidth / 2f), mTmpRect.top + (thumbHeight / 2f));
Jorim Jaggi1d763a62015-06-02 17:07:39 -0700801 scale.setInterpolator(mTouchResponseInterpolator);
Winson Chunga4ccb862014-08-22 15:26:27 -0700802 scale.setDuration(THUMBNAIL_APP_TRANSITION_DURATION);
Jorim Jaggic6c89a82016-01-28 17:48:21 -0800803 Animation alpha = new AlphaAnimation(1f, 0f);
Winson Chunga4ccb862014-08-22 15:26:27 -0700804 alpha.setInterpolator(mThumbnailFadeOutInterpolator);
805 alpha.setDuration(THUMBNAIL_APP_TRANSITION_ALPHA_DURATION);
Filip Gruszczynskidfb25d32015-08-14 11:06:18 -0700806 final float toX = appRect.left + appRect.width() / 2 -
Filip Gruszczynskid64ef3e2015-10-27 17:58:02 -0700807 (mTmpRect.left + thumbWidth / 2);
Filip Gruszczynskidfb25d32015-08-14 11:06:18 -0700808 Animation translate = new TranslateAnimation(0, toX, 0, toY);
Jorim Jaggi1d763a62015-06-02 17:07:39 -0700809 translate.setInterpolator(mTouchResponseInterpolator);
Winson Chunga4ccb862014-08-22 15:26:27 -0700810 translate.setDuration(THUMBNAIL_APP_TRANSITION_DURATION);
Winson Chung399f6202014-03-19 10:47:20 -0700811
812 // This AnimationSet uses the Interpolators assigned above.
813 AnimationSet set = new AnimationSet(false);
814 set.addAnimation(scale);
815 set.addAnimation(alpha);
Winson Chunga4ccb862014-08-22 15:26:27 -0700816 set.addAnimation(translate);
Winson Chung399f6202014-03-19 10:47:20 -0700817 a = set;
818 } else {
Winson Chunga4ccb862014-08-22 15:26:27 -0700819 // Animation down from the full screen to the thumbnail
820 Animation scale = new ScaleAnimation(scaleW, 1f, scaleW, 1f,
Filip Gruszczynskid64ef3e2015-10-27 17:58:02 -0700821 mTmpRect.left + (thumbWidth / 2f), mTmpRect.top + (thumbHeight / 2f));
Jorim Jaggi1d763a62015-06-02 17:07:39 -0700822 scale.setInterpolator(mTouchResponseInterpolator);
Winson Chunga4ccb862014-08-22 15:26:27 -0700823 scale.setDuration(THUMBNAIL_APP_TRANSITION_DURATION);
824 Animation alpha = new AlphaAnimation(0f, 1f);
825 alpha.setInterpolator(mThumbnailFadeInInterpolator);
826 alpha.setDuration(THUMBNAIL_APP_TRANSITION_ALPHA_DURATION);
Filip Gruszczynski565a9df2016-01-22 11:10:42 -0800827 final float toX = appRect.left + appRect.width() / 2 -
828 (mTmpRect.left + thumbWidth / 2);
829 Animation translate = new TranslateAnimation(toX, 0, toY, 0);
Jorim Jaggi1d763a62015-06-02 17:07:39 -0700830 translate.setInterpolator(mTouchResponseInterpolator);
Winson Chunga4ccb862014-08-22 15:26:27 -0700831 translate.setDuration(THUMBNAIL_APP_TRANSITION_DURATION);
Winson Chung399f6202014-03-19 10:47:20 -0700832
Winson Chunga4ccb862014-08-22 15:26:27 -0700833 // This AnimationSet uses the Interpolators assigned above.
834 AnimationSet set = new AnimationSet(false);
835 set.addAnimation(scale);
836 set.addAnimation(alpha);
837 set.addAnimation(translate);
838 a = set;
839
840 }
Filip Gruszczynskidfb25d32015-08-14 11:06:18 -0700841 return prepareThumbnailAnimationWithDuration(a, appWidth, appRect.height(), 0,
Jorim Jaggi1d763a62015-06-02 17:07:39 -0700842 mTouchResponseInterpolator);
Winson Chung399f6202014-03-19 10:47:20 -0700843 }
844
845 /**
846 * This alternate animation is created when we are doing a thumbnail transition, for the
847 * activity that is leaving, and the activity that is entering.
848 */
Winson Chunga4ccb862014-08-22 15:26:27 -0700849 Animation createAspectScaledThumbnailEnterExitAnimationLocked(int thumbTransitState,
Filip Gruszczynski541f92c2015-10-25 17:15:06 -0700850 int orientation, int transit, Rect containingFrame, Rect contentInsets,
851 @Nullable Rect surfaceInsets, boolean freeform, int taskId) {
Winson Chung399f6202014-03-19 10:47:20 -0700852 Animation a;
Filip Gruszczynski541f92c2015-10-25 17:15:06 -0700853 final int appWidth = containingFrame.width();
854 final int appHeight = containingFrame.height();
Filip Gruszczynskid64ef3e2015-10-27 17:58:02 -0700855 getDefaultNextAppTransitionStartRect(mTmpRect);
856 final int thumbWidthI = mTmpRect.width();
Winson Chung399f6202014-03-19 10:47:20 -0700857 final float thumbWidth = thumbWidthI > 0 ? thumbWidthI : 1;
Filip Gruszczynskid64ef3e2015-10-27 17:58:02 -0700858 final int thumbHeightI = mTmpRect.height();
Winson Chung399f6202014-03-19 10:47:20 -0700859 final float thumbHeight = thumbHeightI > 0 ? thumbHeightI : 1;
860
Winson Chung2820c452014-04-15 15:34:44 -0700861 // Used for the ENTER_SCALE_UP and EXIT_SCALE_DOWN transitions
862 float scale = 1f;
863 int scaledTopDecor = 0;
864
Winson Chung399f6202014-03-19 10:47:20 -0700865 switch (thumbTransitState) {
866 case THUMBNAIL_TRANSITION_ENTER_SCALE_UP: {
Filip Gruszczynski541f92c2015-10-25 17:15:06 -0700867 if (freeform) {
Filip Gruszczynskid64ef3e2015-10-27 17:58:02 -0700868 a = createAspectScaledThumbnailEnterFreeformAnimationLocked(
Filip Gruszczynski170192a2015-08-16 17:46:34 -0700869 containingFrame, surfaceInsets, taskId);
Winson Chung2820c452014-04-15 15:34:44 -0700870 } else {
Filip Gruszczynskiefd3d1b2015-10-14 13:57:55 -0700871 mTmpFromClipRect.set(containingFrame);
Filip Gruszczynskiefd3d1b2015-10-14 13:57:55 -0700872 mTmpToClipRect.set(containingFrame);
Jorim Jaggic6c89a82016-01-28 17:48:21 -0800873
874 // Containing frame is in screen space, but we need the clip rect in the
875 // app space.
876 mTmpFromClipRect.offsetTo(0, 0);
877 mTmpToClipRect.offsetTo(0, 0);
878
879 // Exclude insets region from the source clip.
880 mTmpFromClipRect.inset(contentInsets);
881
882 // We scale the width and clip to the top/left square
883 scale = thumbWidth / (appWidth - contentInsets.left - contentInsets.right);
884 scaledTopDecor = (int) (scale * contentInsets.top);
885 int unscaledThumbHeight = (int) (thumbHeight / scale);
886 mTmpFromClipRect.bottom = mTmpFromClipRect.top + unscaledThumbHeight;
Filip Gruszczynski71b0d2d2015-08-12 18:52:26 -0700887
888 mNextAppTransitionInsets.set(contentInsets);
889
890 Animation scaleAnim = new ScaleAnimation(scale, 1, scale, 1,
Jorim Jaggic6c89a82016-01-28 17:48:21 -0800891 computePivot(mTmpRect.left - containingFrame.left, scale),
892 computePivot(mTmpRect.top - containingFrame.top, scale));
Filip Gruszczynski71b0d2d2015-08-12 18:52:26 -0700893 Animation clipAnim = new ClipRectAnimation(mTmpFromClipRect, mTmpToClipRect);
894 Animation translateAnim = new TranslateAnimation(0, 0, -scaledTopDecor, 0);
895
896 AnimationSet set = new AnimationSet(true);
897 set.addAnimation(clipAnim);
898 set.addAnimation(scaleAnim);
899 set.addAnimation(translateAnim);
900 a = set;
Winson Chung2820c452014-04-15 15:34:44 -0700901 }
Winson Chung399f6202014-03-19 10:47:20 -0700902 break;
903 }
904 case THUMBNAIL_TRANSITION_EXIT_SCALE_UP: {
Winson Chunga4ccb862014-08-22 15:26:27 -0700905 // Previous app window during the scale up
Winson Chung399f6202014-03-19 10:47:20 -0700906 if (transit == TRANSIT_WALLPAPER_INTRA_OPEN) {
Winson Chunga4ccb862014-08-22 15:26:27 -0700907 // Fade out the source activity if we are animating to a wallpaper
Winson Chung399f6202014-03-19 10:47:20 -0700908 // activity.
909 a = new AlphaAnimation(1, 0);
910 } else {
Winson Chung399f6202014-03-19 10:47:20 -0700911 a = new AlphaAnimation(1, 1);
912 }
913 break;
914 }
915 case THUMBNAIL_TRANSITION_ENTER_SCALE_DOWN: {
Winson Chunga4ccb862014-08-22 15:26:27 -0700916 // Target app window during the scale down
917 if (transit == TRANSIT_WALLPAPER_INTRA_OPEN) {
918 // Fade in the destination activity if we are animating from a wallpaper
919 // activity.
920 a = new AlphaAnimation(0, 1);
921 } else {
922 a = new AlphaAnimation(1, 1);
923 }
Winson Chung399f6202014-03-19 10:47:20 -0700924 break;
925 }
926 case THUMBNAIL_TRANSITION_EXIT_SCALE_DOWN: {
Winson Chunga4ccb862014-08-22 15:26:27 -0700927 // App window scaling down from full screen
Filip Gruszczynskid64ef3e2015-10-27 17:58:02 -0700928 if (freeform) {
929 a = createAspectScaledThumbnailExitFreeformAnimationLocked(
930 containingFrame, surfaceInsets, taskId);
Winson Chung2820c452014-04-15 15:34:44 -0700931 } else {
Filip Gruszczynskid64ef3e2015-10-27 17:58:02 -0700932 mTmpFromClipRect.set(containingFrame);
933 mTmpToClipRect.set(containingFrame);
Jorim Jaggic6c89a82016-01-28 17:48:21 -0800934
935 // Containing frame is in screen space, but we need the clip rect in the
936 // app space.
937 mTmpFromClipRect.offsetTo(0, 0);
938 mTmpToClipRect.offsetTo(0, 0);
939
940 // Exclude insets region from the target clip.
941 mTmpToClipRect.inset(contentInsets);
942
943 // We scale the width and clip to the top/left square
944 scale = thumbWidth / (appWidth - contentInsets.left - contentInsets.right);
945 scaledTopDecor = (int) (scale * contentInsets.top);
946 int unscaledThumbHeight = (int) (thumbHeight / scale);
947 mTmpToClipRect.bottom = mTmpToClipRect.top + unscaledThumbHeight;
Filip Gruszczynskid64ef3e2015-10-27 17:58:02 -0700948
949 mNextAppTransitionInsets.set(contentInsets);
950
951 Animation scaleAnim = new ScaleAnimation(1, scale, 1, scale,
Jorim Jaggic6c89a82016-01-28 17:48:21 -0800952 computePivot(mTmpRect.left - containingFrame.left, scale),
953 computePivot(mTmpRect.top - containingFrame.top, scale));
Filip Gruszczynskid64ef3e2015-10-27 17:58:02 -0700954 Animation clipAnim = new ClipRectAnimation(mTmpFromClipRect, mTmpToClipRect);
955 Animation translateAnim = new TranslateAnimation(0, 0, 0, -scaledTopDecor);
956
957 AnimationSet set = new AnimationSet(true);
958 set.addAnimation(clipAnim);
959 set.addAnimation(scaleAnim);
960 set.addAnimation(translateAnim);
961
962 a = set;
963 a.setZAdjustment(Animation.ZORDER_TOP);
Winson Chung2820c452014-04-15 15:34:44 -0700964 }
Winson Chung399f6202014-03-19 10:47:20 -0700965 break;
966 }
967 default:
968 throw new RuntimeException("Invalid thumbnail transition state");
969 }
970
Winson Chungab79fce2014-11-04 16:15:22 -0800971 int duration = Math.max(THUMBNAIL_APP_TRANSITION_ALPHA_DURATION,
972 THUMBNAIL_APP_TRANSITION_DURATION);
973 return prepareThumbnailAnimationWithDuration(a, appWidth, appHeight, duration,
Jorim Jaggi1d763a62015-06-02 17:07:39 -0700974 mTouchResponseInterpolator);
Winson Chung399f6202014-03-19 10:47:20 -0700975 }
976
Filip Gruszczynskid64ef3e2015-10-27 17:58:02 -0700977 private Animation createAspectScaledThumbnailEnterFreeformAnimationLocked(Rect frame,
978 @Nullable Rect surfaceInsets, int taskId) {
979 getNextAppTransitionStartRect(taskId, mTmpRect);
980 return createAspectScaledThumbnailFreeformAnimationLocked(mTmpRect, frame, surfaceInsets,
981 true);
982 }
983
984 private Animation createAspectScaledThumbnailExitFreeformAnimationLocked(Rect frame,
985 @Nullable Rect surfaceInsets, int taskId) {
986 getNextAppTransitionStartRect(taskId, mTmpRect);
987 return createAspectScaledThumbnailFreeformAnimationLocked(frame, mTmpRect, surfaceInsets,
988 false);
989 }
990
991 private AnimationSet createAspectScaledThumbnailFreeformAnimationLocked(Rect sourceFrame,
992 Rect destFrame, @Nullable Rect surfaceInsets, boolean enter) {
993 final float sourceWidth = sourceFrame.width();
994 final float sourceHeight = sourceFrame.height();
995 final float destWidth = destFrame.width();
996 final float destHeight = destFrame.height();
997 final float scaleH = enter ? sourceWidth / destWidth : destWidth / sourceWidth;
998 final float scaleV = enter ? sourceHeight / destHeight : destHeight / sourceHeight;
Filip Gruszczynski71b0d2d2015-08-12 18:52:26 -0700999 AnimationSet set = new AnimationSet(true);
Filip Gruszczynskid64ef3e2015-10-27 17:58:02 -07001000 final int surfaceInsetsH = surfaceInsets == null
Filip Gruszczynski71b0d2d2015-08-12 18:52:26 -07001001 ? 0 : surfaceInsets.left + surfaceInsets.right;
Filip Gruszczynskid64ef3e2015-10-27 17:58:02 -07001002 final int surfaceInsetsV = surfaceInsets == null
Filip Gruszczynski71b0d2d2015-08-12 18:52:26 -07001003 ? 0 : surfaceInsets.top + surfaceInsets.bottom;
1004 // We want the scaling to happen from the center of the surface. In order to achieve that,
1005 // we need to account for surface insets that will be used to enlarge the surface.
Filip Gruszczynskid64ef3e2015-10-27 17:58:02 -07001006 final float scaleHCenter = ((enter ? destWidth : sourceWidth) + surfaceInsetsH) / 2;
1007 final float scaleVCenter = ((enter ? destHeight : sourceHeight) + surfaceInsetsV) / 2;
1008 final ScaleAnimation scale = enter ?
1009 new ScaleAnimation(scaleH, 1, scaleV, 1, scaleHCenter, scaleVCenter)
1010 : new ScaleAnimation(1, scaleH, 1, scaleV, scaleHCenter, scaleVCenter);
1011 final int sourceHCenter = sourceFrame.left + sourceFrame.width() / 2;
1012 final int sourceVCenter = sourceFrame.top + sourceFrame.height() / 2;
1013 final int destHCenter = destFrame.left + destFrame.width() / 2;
1014 final int destVCenter = destFrame.top + destFrame.height() / 2;
1015 final int fromX = enter ? sourceHCenter - destHCenter : destHCenter - sourceHCenter;
1016 final int fromY = enter ? sourceVCenter - destVCenter : destVCenter - sourceVCenter;
1017 final TranslateAnimation translation = enter ? new TranslateAnimation(fromX, 0, fromY, 0)
1018 : new TranslateAnimation(0, fromX, 0, fromY);
Filip Gruszczynski71b0d2d2015-08-12 18:52:26 -07001019 set.addAnimation(scale);
1020 set.addAnimation(translation);
Filip Gruszczynski1a5203d2015-10-29 17:43:49 -07001021
1022 final IRemoteCallback callback = mAnimationFinishedCallback;
1023 if (callback != null) {
1024 set.setAnimationListener(new Animation.AnimationListener() {
1025 @Override
1026 public void onAnimationStart(Animation animation) { }
1027
1028 @Override
1029 public void onAnimationEnd(Animation animation) {
Filip Gruszczynski1a4dfe52015-11-15 10:58:57 -08001030 mService.mH.obtainMessage(H.DO_ANIMATION_CALLBACK, callback).sendToTarget();
Filip Gruszczynski1a5203d2015-10-29 17:43:49 -07001031 }
1032
1033 @Override
1034 public void onAnimationRepeat(Animation animation) { }
1035 });
1036 }
Filip Gruszczynski71b0d2d2015-08-12 18:52:26 -07001037 return set;
1038 }
1039
Winson Chung399f6202014-03-19 10:47:20 -07001040 /**
Winson Chunga4ccb862014-08-22 15:26:27 -07001041 * This animation runs for the thumbnail that gets cross faded with the enter/exit activity
Filip Gruszczynski170192a2015-08-16 17:46:34 -07001042 * when a thumbnail is specified with the pending animation override.
Winson Chunga4ccb862014-08-22 15:26:27 -07001043 */
Filip Gruszczynski170192a2015-08-16 17:46:34 -07001044 Animation createThumbnailScaleAnimationLocked(int appWidth, int appHeight, int transit,
1045 Bitmap thumbnailHeader) {
Winson Chunga4ccb862014-08-22 15:26:27 -07001046 Animation a;
Filip Gruszczynskid64ef3e2015-10-27 17:58:02 -07001047 getDefaultNextAppTransitionStartRect(mTmpRect);
Filip Gruszczynski170192a2015-08-16 17:46:34 -07001048 final int thumbWidthI = thumbnailHeader.getWidth();
Winson Chunga4ccb862014-08-22 15:26:27 -07001049 final float thumbWidth = thumbWidthI > 0 ? thumbWidthI : 1;
Filip Gruszczynski170192a2015-08-16 17:46:34 -07001050 final int thumbHeightI = thumbnailHeader.getHeight();
Winson Chunga4ccb862014-08-22 15:26:27 -07001051 final float thumbHeight = thumbHeightI > 0 ? thumbHeightI : 1;
1052
1053 if (mNextAppTransitionScaleUp) {
1054 // Animation for the thumbnail zooming from its initial size to the full screen
1055 float scaleW = appWidth / thumbWidth;
1056 float scaleH = appHeight / thumbHeight;
1057 Animation scale = new ScaleAnimation(1, scaleW, 1, scaleH,
Filip Gruszczynskid64ef3e2015-10-27 17:58:02 -07001058 computePivot(mTmpRect.left, 1 / scaleW),
1059 computePivot(mTmpRect.top, 1 / scaleH));
Winson Chunga4ccb862014-08-22 15:26:27 -07001060 scale.setInterpolator(mDecelerateInterpolator);
1061
1062 Animation alpha = new AlphaAnimation(1, 0);
1063 alpha.setInterpolator(mThumbnailFadeOutInterpolator);
1064
1065 // This AnimationSet uses the Interpolators assigned above.
1066 AnimationSet set = new AnimationSet(false);
1067 set.addAnimation(scale);
1068 set.addAnimation(alpha);
1069 a = set;
1070 } else {
1071 // Animation for the thumbnail zooming down from the full screen to its final size
1072 float scaleW = appWidth / thumbWidth;
1073 float scaleH = appHeight / thumbHeight;
1074 a = new ScaleAnimation(scaleW, 1, scaleH, 1,
Filip Gruszczynskid64ef3e2015-10-27 17:58:02 -07001075 computePivot(mTmpRect.left, 1 / scaleW),
1076 computePivot(mTmpRect.top, 1 / scaleH));
Winson Chunga4ccb862014-08-22 15:26:27 -07001077 }
1078
1079 return prepareThumbnailAnimation(a, appWidth, appHeight, transit);
1080 }
1081
1082 /**
Winson Chung399f6202014-03-19 10:47:20 -07001083 * This animation is created when we are doing a thumbnail transition, for the activity that is
1084 * leaving, and the activity that is entering.
1085 */
Filip Gruszczynski541f92c2015-10-25 17:15:06 -07001086 Animation createThumbnailEnterExitAnimationLocked(int thumbTransitState, Rect containingFrame,
1087 int transit, int taskId) {
1088 final int appWidth = containingFrame.width();
1089 final int appHeight = containingFrame.height();
Filip Gruszczynski170192a2015-08-16 17:46:34 -07001090 Bitmap thumbnailHeader = getAppTransitionThumbnailHeader(taskId);
Winson Chung399f6202014-03-19 10:47:20 -07001091 Animation a;
Filip Gruszczynskid64ef3e2015-10-27 17:58:02 -07001092 getDefaultNextAppTransitionStartRect(mTmpRect);
Filip Gruszczynski170192a2015-08-16 17:46:34 -07001093 final int thumbWidthI = thumbnailHeader != null ? thumbnailHeader.getWidth() : appWidth;
Winson Chung399f6202014-03-19 10:47:20 -07001094 final float thumbWidth = thumbWidthI > 0 ? thumbWidthI : 1;
Filip Gruszczynski170192a2015-08-16 17:46:34 -07001095 final int thumbHeightI = thumbnailHeader != null ? thumbnailHeader.getHeight() : appHeight;
Winson Chung399f6202014-03-19 10:47:20 -07001096 final float thumbHeight = thumbHeightI > 0 ? thumbHeightI : 1;
1097
1098 switch (thumbTransitState) {
1099 case THUMBNAIL_TRANSITION_ENTER_SCALE_UP: {
1100 // Entering app scales up with the thumbnail
1101 float scaleW = thumbWidth / appWidth;
1102 float scaleH = thumbHeight / appHeight;
1103 a = new ScaleAnimation(scaleW, 1, scaleH, 1,
Filip Gruszczynskid64ef3e2015-10-27 17:58:02 -07001104 computePivot(mTmpRect.left, scaleW),
1105 computePivot(mTmpRect.top, scaleH));
Winson Chung399f6202014-03-19 10:47:20 -07001106 break;
1107 }
1108 case THUMBNAIL_TRANSITION_EXIT_SCALE_UP: {
1109 // Exiting app while the thumbnail is scaling up should fade or stay in place
1110 if (transit == TRANSIT_WALLPAPER_INTRA_OPEN) {
1111 // Fade out while bringing up selected activity. This keeps the
1112 // current activity from showing through a launching wallpaper
1113 // activity.
1114 a = new AlphaAnimation(1, 0);
1115 } else {
1116 // noop animation
1117 a = new AlphaAnimation(1, 1);
1118 }
1119 break;
1120 }
1121 case THUMBNAIL_TRANSITION_ENTER_SCALE_DOWN: {
1122 // Entering the other app, it should just be visible while we scale the thumbnail
1123 // down above it
1124 a = new AlphaAnimation(1, 1);
1125 break;
1126 }
1127 case THUMBNAIL_TRANSITION_EXIT_SCALE_DOWN: {
1128 // Exiting the current app, the app should scale down with the thumbnail
1129 float scaleW = thumbWidth / appWidth;
1130 float scaleH = thumbHeight / appHeight;
1131 Animation scale = new ScaleAnimation(1, scaleW, 1, scaleH,
Filip Gruszczynskid64ef3e2015-10-27 17:58:02 -07001132 computePivot(mTmpRect.left, scaleW),
1133 computePivot(mTmpRect.top, scaleH));
Winson Chung399f6202014-03-19 10:47:20 -07001134
1135 Animation alpha = new AlphaAnimation(1, 0);
1136
1137 AnimationSet set = new AnimationSet(true);
1138 set.addAnimation(scale);
1139 set.addAnimation(alpha);
1140 set.setZAdjustment(Animation.ZORDER_TOP);
1141 a = set;
1142 break;
1143 }
1144 default:
1145 throw new RuntimeException("Invalid thumbnail transition state");
1146 }
1147
1148 return prepareThumbnailAnimation(a, appWidth, appHeight, transit);
1149 }
1150
Filip Gruszczynski541f92c2015-10-25 17:15:06 -07001151 private Animation createRelaunchAnimation(Rect containingFrame, Rect contentInsets) {
Filip Gruszczynski55a309f2015-09-04 17:15:01 -07001152 getDefaultNextAppTransitionStartRect(mTmpFromClipRect);
1153 final int left = mTmpFromClipRect.left;
1154 final int top = mTmpFromClipRect.top;
1155 mTmpFromClipRect.offset(-left, -top);
Filip Gruszczynski541f92c2015-10-25 17:15:06 -07001156 // TODO: Isn't that strange that we ignore exact position of the containingFrame?
1157 mTmpToClipRect.set(0, 0, containingFrame.width(), containingFrame.height());
Filip Gruszczynski55a309f2015-09-04 17:15:01 -07001158 AnimationSet set = new AnimationSet(true);
Filip Gruszczynski49b80af2015-09-24 09:04:26 -07001159 float fromWidth = mTmpFromClipRect.width();
1160 float toWidth = mTmpToClipRect.width();
1161 float fromHeight = mTmpFromClipRect.height();
Filip Gruszczynski2dfcf842015-10-25 13:40:47 -07001162 // While the window might span the whole display, the actual content will be cropped to the
1163 // system decoration frame, for example when the window is docked. We need to take into
1164 // account the visible height when constructing the animation.
1165 float toHeight = mTmpToClipRect.height() - contentInsets.top - contentInsets.bottom;
1166 int translateAdjustment = 0;
Filip Gruszczynski49b80af2015-09-24 09:04:26 -07001167 if (fromWidth <= toWidth && fromHeight <= toHeight) {
1168 // The final window is larger in both dimensions than current window (e.g. we are
1169 // maximizing), so we can simply unclip the new window and there will be no disappearing
1170 // frame.
1171 set.addAnimation(new ClipRectAnimation(mTmpFromClipRect, mTmpToClipRect));
1172 } else {
1173 // The disappearing window has one larger dimension. We need to apply scaling, so the
1174 // first frame of the entry animation matches the old window.
1175 set.addAnimation(new ScaleAnimation(fromWidth / toWidth, 1, fromHeight / toHeight, 1));
Filip Gruszczynski2dfcf842015-10-25 13:40:47 -07001176 // We might not be going exactly full screen, but instead be aligned under the status
1177 // bar using cropping. We still need to account for the cropped part, which will also
1178 // be scaled.
1179 translateAdjustment = (int) (contentInsets.top * fromHeight / toHeight);
Filip Gruszczynski49b80af2015-09-24 09:04:26 -07001180 }
1181
Filip Gruszczynski2dfcf842015-10-25 13:40:47 -07001182 // We animate the translation from the old position of the removed window, to the new
1183 // position of the added window. The latter might not be full screen, for example docked for
1184 // docked windows.
Filip Gruszczynski49b80af2015-09-24 09:04:26 -07001185 TranslateAnimation translate = new TranslateAnimation(left - containingFrame.left,
Filip Gruszczynski2dfcf842015-10-25 13:40:47 -07001186 0, top - containingFrame.top - translateAdjustment, 0);
Filip Gruszczynski55a309f2015-09-04 17:15:01 -07001187 set.addAnimation(translate);
1188 set.setDuration(DEFAULT_APP_TRANSITION_DURATION);
Filip Gruszczynskie95b0ae2015-09-30 10:55:33 -07001189 set.setZAdjustment(Animation.ZORDER_TOP);
Filip Gruszczynski55a309f2015-09-04 17:15:01 -07001190 return set;
1191 }
1192
Jorim Jaggic554b772015-06-04 16:07:57 -07001193 /**
1194 * @return true if and only if the first frame of the transition can be skipped, i.e. the first
1195 * frame of the transition doesn't change the visuals on screen, so we can start
1196 * directly with the second one
1197 */
1198 boolean canSkipFirstFrame() {
1199 return mNextAppTransitionType != NEXT_TRANSIT_TYPE_CUSTOM
1200 && mNextAppTransitionType != NEXT_TRANSIT_TYPE_CUSTOM_IN_PLACE
1201 && mNextAppTransitionType != NEXT_TRANSIT_TYPE_CLIP_REVEAL;
1202 }
Craig Mautner164d4bb2012-11-26 13:51:23 -08001203
Filip Gruszczynski541f92c2015-10-25 17:15:06 -07001204 /**
1205 *
1206 * @param frame These are the bounds of the window when it finishes the animation. This is where
1207 * the animation must usually finish in entrance animation, as the next frame will
1208 * display the window at these coordinates. In case of exit animation, this is
1209 * where the animation must start, as the frame before the animation is displaying
1210 * the window at these bounds.
1211 * @param insets Knowing where the window will be positioned is not enough. Some parts of the
1212 * window might be obscured, usually by the system windows (status bar and
1213 * navigation bar) and we use content insets to convey that information. This
1214 * usually affects the animation aspects vertically, as the system decoration is
1215 * at the top and the bottom. For example when we animate from full screen to
1216 * recents, we want to exclude the covered parts, because they won't match the
1217 * thumbnail after the last frame is executed.
1218 * @param surfaceInsets In rare situation the surface is larger than the content and we need to
1219 * know about this to make the animation frames match. We currently use
1220 * this for freeform windows, which have larger surfaces to display
1221 * shadows. When we animate them from recents, we want to match the content
1222 * to the recents thumbnail and hence need to account for the surface being
1223 * bigger.
1224 */
Craig Mautner164d4bb2012-11-26 13:51:23 -08001225 Animation loadAnimation(WindowManager.LayoutParams lp, int transit, boolean enter,
Filip Gruszczynski541f92c2015-10-25 17:15:06 -07001226 int orientation, Rect frame, Rect insets, @Nullable Rect surfaceInsets,
1227 boolean isVoiceInteraction, boolean freeform, int taskId) {
Craig Mautner164d4bb2012-11-26 13:51:23 -08001228 Animation a;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001229 if (isVoiceInteraction && (transit == TRANSIT_ACTIVITY_OPEN
1230 || transit == TRANSIT_TASK_OPEN
1231 || transit == TRANSIT_TASK_TO_FRONT)) {
1232 a = loadAnimationRes(lp, enter
1233 ? com.android.internal.R.anim.voice_activity_open_enter
1234 : com.android.internal.R.anim.voice_activity_open_exit);
1235 if (DEBUG_APP_TRANSITIONS || DEBUG_ANIM) Slog.v(TAG,
1236 "applyAnimation voice:"
Wale Ogunwale8ebc82a2015-05-13 15:27:12 -07001237 + " anim=" + a + " transit=" + appTransitionToString(transit)
1238 + " isEntrance=" + enter + " Callers=" + Debug.getCallers(3));
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001239 } else if (isVoiceInteraction && (transit == TRANSIT_ACTIVITY_CLOSE
1240 || transit == TRANSIT_TASK_CLOSE
1241 || transit == TRANSIT_TASK_TO_BACK)) {
1242 a = loadAnimationRes(lp, enter
1243 ? com.android.internal.R.anim.voice_activity_close_enter
1244 : com.android.internal.R.anim.voice_activity_close_exit);
1245 if (DEBUG_APP_TRANSITIONS || DEBUG_ANIM) Slog.v(TAG,
1246 "applyAnimation voice:"
Wale Ogunwale8ebc82a2015-05-13 15:27:12 -07001247 + " anim=" + a + " transit=" + appTransitionToString(transit)
1248 + " isEntrance=" + enter + " Callers=" + Debug.getCallers(3));
Filip Gruszczynski55a309f2015-09-04 17:15:01 -07001249 } else if (transit == TRANSIT_ACTIVITY_RELAUNCH) {
Filip Gruszczynski541f92c2015-10-25 17:15:06 -07001250 a = createRelaunchAnimation(frame, insets);
Filip Gruszczynski49b80af2015-09-24 09:04:26 -07001251 if (DEBUG_APP_TRANSITIONS || DEBUG_ANIM) Slog.v(TAG,
1252 "applyAnimation:"
1253 + " anim=" + a + " nextAppTransition=" + mNextAppTransition
1254 + " transit=" + appTransitionToString(transit)
1255 + " Callers=" + Debug.getCallers(3));
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001256 } else if (mNextAppTransitionType == NEXT_TRANSIT_TYPE_CUSTOM) {
1257 a = loadAnimationRes(mNextAppTransitionPackage, enter ?
Craig Mautner164d4bb2012-11-26 13:51:23 -08001258 mNextAppTransitionEnter : mNextAppTransitionExit);
1259 if (DEBUG_APP_TRANSITIONS || DEBUG_ANIM) Slog.v(TAG,
1260 "applyAnimation:"
1261 + " anim=" + a + " nextAppTransition=ANIM_CUSTOM"
Wale Ogunwale8ebc82a2015-05-13 15:27:12 -07001262 + " transit=" + appTransitionToString(transit) + " isEntrance=" + enter
Craig Mautner164d4bb2012-11-26 13:51:23 -08001263 + " Callers=" + Debug.getCallers(3));
Winson Chung044d5292014-11-06 11:05:19 -08001264 } else if (mNextAppTransitionType == NEXT_TRANSIT_TYPE_CUSTOM_IN_PLACE) {
1265 a = loadAnimationRes(mNextAppTransitionPackage, mNextAppTransitionInPlace);
1266 if (DEBUG_APP_TRANSITIONS || DEBUG_ANIM) Slog.v(TAG,
1267 "applyAnimation:"
Wale Ogunwale8ebc82a2015-05-13 15:27:12 -07001268 + " anim=" + a + " nextAppTransition=ANIM_CUSTOM_IN_PLACE"
1269 + " transit=" + appTransitionToString(transit)
1270 + " Callers=" + Debug.getCallers(3));
Chet Haase10e23ab2015-02-11 15:08:38 -08001271 } else if (mNextAppTransitionType == NEXT_TRANSIT_TYPE_CLIP_REVEAL) {
Filip Gruszczynski541f92c2015-10-25 17:15:06 -07001272 a = createClipRevealAnimationLocked(transit, enter, frame);
Chet Haase10e23ab2015-02-11 15:08:38 -08001273 if (DEBUG_APP_TRANSITIONS || DEBUG_ANIM) Slog.v(TAG,
1274 "applyAnimation:"
1275 + " anim=" + a + " nextAppTransition=ANIM_CLIP_REVEAL"
Filip Gruszczynski49b80af2015-09-24 09:04:26 -07001276 + " transit=" + appTransitionToString(transit)
Chet Haase10e23ab2015-02-11 15:08:38 -08001277 + " Callers=" + Debug.getCallers(3));
Craig Mautner9a29a5d2012-12-27 19:03:40 -08001278 } else if (mNextAppTransitionType == NEXT_TRANSIT_TYPE_SCALE_UP) {
Filip Gruszczynski541f92c2015-10-25 17:15:06 -07001279 a = createScaleUpAnimationLocked(transit, enter, frame);
Craig Mautner164d4bb2012-11-26 13:51:23 -08001280 if (DEBUG_APP_TRANSITIONS || DEBUG_ANIM) Slog.v(TAG,
1281 "applyAnimation:"
1282 + " anim=" + a + " nextAppTransition=ANIM_SCALE_UP"
Wale Ogunwale8ebc82a2015-05-13 15:27:12 -07001283 + " transit=" + appTransitionToString(transit) + " isEntrance=" + enter
Craig Mautner164d4bb2012-11-26 13:51:23 -08001284 + " Callers=" + Debug.getCallers(3));
Craig Mautner9a29a5d2012-12-27 19:03:40 -08001285 } else if (mNextAppTransitionType == NEXT_TRANSIT_TYPE_THUMBNAIL_SCALE_UP ||
1286 mNextAppTransitionType == NEXT_TRANSIT_TYPE_THUMBNAIL_SCALE_DOWN) {
Craig Mautner164d4bb2012-11-26 13:51:23 -08001287 mNextAppTransitionScaleUp =
Craig Mautner9a29a5d2012-12-27 19:03:40 -08001288 (mNextAppTransitionType == NEXT_TRANSIT_TYPE_THUMBNAIL_SCALE_UP);
Winson Chunga4ccb862014-08-22 15:26:27 -07001289 a = createThumbnailEnterExitAnimationLocked(getThumbnailTransitionState(enter),
Filip Gruszczynski541f92c2015-10-25 17:15:06 -07001290 frame, transit, taskId);
Winson Chunga4ccb862014-08-22 15:26:27 -07001291 if (DEBUG_APP_TRANSITIONS || DEBUG_ANIM) {
1292 String animName = mNextAppTransitionScaleUp ?
1293 "ANIM_THUMBNAIL_SCALE_UP" : "ANIM_THUMBNAIL_SCALE_DOWN";
1294 Slog.v(TAG, "applyAnimation:"
1295 + " anim=" + a + " nextAppTransition=" + animName
Wale Ogunwale8ebc82a2015-05-13 15:27:12 -07001296 + " transit=" + appTransitionToString(transit) + " isEntrance=" + enter
Winson Chunga4ccb862014-08-22 15:26:27 -07001297 + " Callers=" + Debug.getCallers(3));
1298 }
1299 } else if (mNextAppTransitionType == NEXT_TRANSIT_TYPE_THUMBNAIL_ASPECT_SCALE_UP ||
1300 mNextAppTransitionType == NEXT_TRANSIT_TYPE_THUMBNAIL_ASPECT_SCALE_DOWN) {
1301 mNextAppTransitionScaleUp =
1302 (mNextAppTransitionType == NEXT_TRANSIT_TYPE_THUMBNAIL_ASPECT_SCALE_UP);
1303 a = createAspectScaledThumbnailEnterExitAnimationLocked(
Filip Gruszczynski541f92c2015-10-25 17:15:06 -07001304 getThumbnailTransitionState(enter), orientation, transit, frame,
1305 insets, surfaceInsets, freeform, taskId);
Craig Mautner164d4bb2012-11-26 13:51:23 -08001306 if (DEBUG_APP_TRANSITIONS || DEBUG_ANIM) {
1307 String animName = mNextAppTransitionScaleUp ?
Winson Chunga4ccb862014-08-22 15:26:27 -07001308 "ANIM_THUMBNAIL_ASPECT_SCALE_UP" : "ANIM_THUMBNAIL_ASPECT_SCALE_DOWN";
Craig Mautner164d4bb2012-11-26 13:51:23 -08001309 Slog.v(TAG, "applyAnimation:"
1310 + " anim=" + a + " nextAppTransition=" + animName
Wale Ogunwale8ebc82a2015-05-13 15:27:12 -07001311 + " transit=" + appTransitionToString(transit) + " isEntrance=" + enter
Craig Mautner164d4bb2012-11-26 13:51:23 -08001312 + " Callers=" + Debug.getCallers(3));
1313 }
1314 } else {
1315 int animAttr = 0;
1316 switch (transit) {
Craig Mautner4b71aa12012-12-27 17:20:01 -08001317 case TRANSIT_ACTIVITY_OPEN:
Craig Mautner164d4bb2012-11-26 13:51:23 -08001318 animAttr = enter
Craig Mautner9a29a5d2012-12-27 19:03:40 -08001319 ? WindowAnimation_activityOpenEnterAnimation
1320 : WindowAnimation_activityOpenExitAnimation;
Craig Mautner164d4bb2012-11-26 13:51:23 -08001321 break;
Craig Mautner4b71aa12012-12-27 17:20:01 -08001322 case TRANSIT_ACTIVITY_CLOSE:
Craig Mautner164d4bb2012-11-26 13:51:23 -08001323 animAttr = enter
Craig Mautner9a29a5d2012-12-27 19:03:40 -08001324 ? WindowAnimation_activityCloseEnterAnimation
1325 : WindowAnimation_activityCloseExitAnimation;
Craig Mautner164d4bb2012-11-26 13:51:23 -08001326 break;
Craig Mautner4b71aa12012-12-27 17:20:01 -08001327 case TRANSIT_TASK_OPEN:
Craig Mautner164d4bb2012-11-26 13:51:23 -08001328 animAttr = enter
Craig Mautner9a29a5d2012-12-27 19:03:40 -08001329 ? WindowAnimation_taskOpenEnterAnimation
1330 : WindowAnimation_taskOpenExitAnimation;
Craig Mautner164d4bb2012-11-26 13:51:23 -08001331 break;
Craig Mautner4b71aa12012-12-27 17:20:01 -08001332 case TRANSIT_TASK_CLOSE:
Craig Mautner164d4bb2012-11-26 13:51:23 -08001333 animAttr = enter
Craig Mautner9a29a5d2012-12-27 19:03:40 -08001334 ? WindowAnimation_taskCloseEnterAnimation
1335 : WindowAnimation_taskCloseExitAnimation;
Craig Mautner164d4bb2012-11-26 13:51:23 -08001336 break;
Craig Mautner4b71aa12012-12-27 17:20:01 -08001337 case TRANSIT_TASK_TO_FRONT:
Craig Mautner164d4bb2012-11-26 13:51:23 -08001338 animAttr = enter
Craig Mautner9a29a5d2012-12-27 19:03:40 -08001339 ? WindowAnimation_taskToFrontEnterAnimation
1340 : WindowAnimation_taskToFrontExitAnimation;
Craig Mautner164d4bb2012-11-26 13:51:23 -08001341 break;
Craig Mautner4b71aa12012-12-27 17:20:01 -08001342 case TRANSIT_TASK_TO_BACK:
Craig Mautner164d4bb2012-11-26 13:51:23 -08001343 animAttr = enter
Craig Mautner9a29a5d2012-12-27 19:03:40 -08001344 ? WindowAnimation_taskToBackEnterAnimation
1345 : WindowAnimation_taskToBackExitAnimation;
Craig Mautner164d4bb2012-11-26 13:51:23 -08001346 break;
Craig Mautner4b71aa12012-12-27 17:20:01 -08001347 case TRANSIT_WALLPAPER_OPEN:
Craig Mautner164d4bb2012-11-26 13:51:23 -08001348 animAttr = enter
Craig Mautner9a29a5d2012-12-27 19:03:40 -08001349 ? WindowAnimation_wallpaperOpenEnterAnimation
1350 : WindowAnimation_wallpaperOpenExitAnimation;
Craig Mautner164d4bb2012-11-26 13:51:23 -08001351 break;
Craig Mautner4b71aa12012-12-27 17:20:01 -08001352 case TRANSIT_WALLPAPER_CLOSE:
Craig Mautner164d4bb2012-11-26 13:51:23 -08001353 animAttr = enter
Craig Mautner9a29a5d2012-12-27 19:03:40 -08001354 ? WindowAnimation_wallpaperCloseEnterAnimation
1355 : WindowAnimation_wallpaperCloseExitAnimation;
Craig Mautner164d4bb2012-11-26 13:51:23 -08001356 break;
Craig Mautner4b71aa12012-12-27 17:20:01 -08001357 case TRANSIT_WALLPAPER_INTRA_OPEN:
Craig Mautner164d4bb2012-11-26 13:51:23 -08001358 animAttr = enter
Craig Mautner9a29a5d2012-12-27 19:03:40 -08001359 ? WindowAnimation_wallpaperIntraOpenEnterAnimation
1360 : WindowAnimation_wallpaperIntraOpenExitAnimation;
Craig Mautner164d4bb2012-11-26 13:51:23 -08001361 break;
Craig Mautner4b71aa12012-12-27 17:20:01 -08001362 case TRANSIT_WALLPAPER_INTRA_CLOSE:
Craig Mautner164d4bb2012-11-26 13:51:23 -08001363 animAttr = enter
Craig Mautner9a29a5d2012-12-27 19:03:40 -08001364 ? WindowAnimation_wallpaperIntraCloseEnterAnimation
1365 : WindowAnimation_wallpaperIntraCloseExitAnimation;
Craig Mautner164d4bb2012-11-26 13:51:23 -08001366 break;
Craig Mautnerbb742462014-07-07 15:28:55 -07001367 case TRANSIT_TASK_OPEN_BEHIND:
1368 animAttr = enter
1369 ? WindowAnimation_launchTaskBehindSourceAnimation
Craig Mautner3b2cd1d2014-08-25 14:25:54 -07001370 : WindowAnimation_launchTaskBehindTargetAnimation;
Craig Mautner164d4bb2012-11-26 13:51:23 -08001371 }
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001372 a = animAttr != 0 ? loadAnimationAttr(lp, animAttr) : null;
Craig Mautner164d4bb2012-11-26 13:51:23 -08001373 if (DEBUG_APP_TRANSITIONS || DEBUG_ANIM) Slog.v(TAG,
1374 "applyAnimation:"
1375 + " anim=" + a
1376 + " animAttr=0x" + Integer.toHexString(animAttr)
Wale Ogunwale8ebc82a2015-05-13 15:27:12 -07001377 + " transit=" + appTransitionToString(transit) + " isEntrance=" + enter
Craig Mautner164d4bb2012-11-26 13:51:23 -08001378 + " Callers=" + Debug.getCallers(3));
1379 }
1380 return a;
1381 }
1382
1383 void postAnimationCallback() {
1384 if (mNextAppTransitionCallback != null) {
Filip Gruszczynski1a4dfe52015-11-15 10:58:57 -08001385 mService.mH.sendMessage(mService.mH.obtainMessage(H.DO_ANIMATION_CALLBACK,
1386 mNextAppTransitionCallback));
Craig Mautner164d4bb2012-11-26 13:51:23 -08001387 mNextAppTransitionCallback = null;
1388 }
1389 }
1390
1391 void overridePendingAppTransition(String packageName, int enterAnim, int exitAnim,
Filip Gruszczynskid1431422015-09-08 11:18:54 -07001392 IRemoteCallback startedCallback) {
Craig Mautner164d4bb2012-11-26 13:51:23 -08001393 if (isTransitionSet()) {
Jorim Jaggi65193992015-11-23 16:49:59 -08001394 clear();
Craig Mautner9a29a5d2012-12-27 19:03:40 -08001395 mNextAppTransitionType = NEXT_TRANSIT_TYPE_CUSTOM;
Craig Mautner164d4bb2012-11-26 13:51:23 -08001396 mNextAppTransitionPackage = packageName;
Craig Mautner164d4bb2012-11-26 13:51:23 -08001397 mNextAppTransitionEnter = enterAnim;
1398 mNextAppTransitionExit = exitAnim;
1399 postAnimationCallback();
1400 mNextAppTransitionCallback = startedCallback;
1401 } else {
1402 postAnimationCallback();
1403 }
1404 }
1405
1406 void overridePendingAppTransitionScaleUp(int startX, int startY, int startWidth,
Filip Gruszczynski170192a2015-08-16 17:46:34 -07001407 int startHeight) {
Craig Mautner164d4bb2012-11-26 13:51:23 -08001408 if (isTransitionSet()) {
Jorim Jaggi65193992015-11-23 16:49:59 -08001409 clear();
Craig Mautner9a29a5d2012-12-27 19:03:40 -08001410 mNextAppTransitionType = NEXT_TRANSIT_TYPE_SCALE_UP;
Filip Gruszczynski170192a2015-08-16 17:46:34 -07001411 putDefaultNextAppTransitionCoordinates(startX, startY, startX + startWidth,
Filip Gruszczynski7248c562015-11-09 13:05:40 -08001412 startY + startHeight, null);
Craig Mautner164d4bb2012-11-26 13:51:23 -08001413 postAnimationCallback();
Craig Mautner164d4bb2012-11-26 13:51:23 -08001414 }
1415 }
1416
Chet Haase10e23ab2015-02-11 15:08:38 -08001417 void overridePendingAppTransitionClipReveal(int startX, int startY,
1418 int startWidth, int startHeight) {
1419 if (isTransitionSet()) {
Jorim Jaggi65193992015-11-23 16:49:59 -08001420 clear();
Chet Haase10e23ab2015-02-11 15:08:38 -08001421 mNextAppTransitionType = NEXT_TRANSIT_TYPE_CLIP_REVEAL;
Filip Gruszczynski7248c562015-11-09 13:05:40 -08001422 putDefaultNextAppTransitionCoordinates(startX, startY, startWidth, startHeight, null);
Chet Haase10e23ab2015-02-11 15:08:38 -08001423 postAnimationCallback();
Chet Haase10e23ab2015-02-11 15:08:38 -08001424 }
1425 }
1426
Craig Mautner164d4bb2012-11-26 13:51:23 -08001427 void overridePendingAppTransitionThumb(Bitmap srcThumb, int startX, int startY,
1428 IRemoteCallback startedCallback, boolean scaleUp) {
1429 if (isTransitionSet()) {
Jorim Jaggi65193992015-11-23 16:49:59 -08001430 clear();
Craig Mautner9a29a5d2012-12-27 19:03:40 -08001431 mNextAppTransitionType = scaleUp ? NEXT_TRANSIT_TYPE_THUMBNAIL_SCALE_UP
1432 : NEXT_TRANSIT_TYPE_THUMBNAIL_SCALE_DOWN;
Craig Mautner164d4bb2012-11-26 13:51:23 -08001433 mNextAppTransitionScaleUp = scaleUp;
Filip Gruszczynski7248c562015-11-09 13:05:40 -08001434 putDefaultNextAppTransitionCoordinates(startX, startY, 0, 0, srcThumb);
Craig Mautner164d4bb2012-11-26 13:51:23 -08001435 postAnimationCallback();
1436 mNextAppTransitionCallback = startedCallback;
1437 } else {
1438 postAnimationCallback();
1439 }
1440 }
1441
Winson Chunga4ccb862014-08-22 15:26:27 -07001442 void overridePendingAppTransitionAspectScaledThumb(Bitmap srcThumb, int startX, int startY,
Winson Chung2e7f3bd2014-09-05 13:17:22 +02001443 int targetWidth, int targetHeight, IRemoteCallback startedCallback, boolean scaleUp) {
Winson Chunga4ccb862014-08-22 15:26:27 -07001444 if (isTransitionSet()) {
Jorim Jaggi65193992015-11-23 16:49:59 -08001445 clear();
Winson Chunga4ccb862014-08-22 15:26:27 -07001446 mNextAppTransitionType = scaleUp ? NEXT_TRANSIT_TYPE_THUMBNAIL_ASPECT_SCALE_UP
1447 : NEXT_TRANSIT_TYPE_THUMBNAIL_ASPECT_SCALE_DOWN;
Winson Chunga4ccb862014-08-22 15:26:27 -07001448 mNextAppTransitionScaleUp = scaleUp;
Filip Gruszczynski7248c562015-11-09 13:05:40 -08001449 putDefaultNextAppTransitionCoordinates(startX, startY, targetWidth, targetHeight,
1450 srcThumb);
Winson Chunga4ccb862014-08-22 15:26:27 -07001451 postAnimationCallback();
1452 mNextAppTransitionCallback = startedCallback;
1453 } else {
1454 postAnimationCallback();
1455 }
1456 }
1457
Filip Gruszczynski170192a2015-08-16 17:46:34 -07001458 public void overridePendingAppTransitionMultiThumb(AppTransitionAnimationSpec[] specs,
Filip Gruszczynski1a5203d2015-10-29 17:43:49 -07001459 IRemoteCallback onAnimationStartedCallback, IRemoteCallback onAnimationFinishedCallback,
1460 boolean scaleUp) {
Filip Gruszczynski170192a2015-08-16 17:46:34 -07001461 if (isTransitionSet()) {
Jorim Jaggi65193992015-11-23 16:49:59 -08001462 clear();
Filip Gruszczynski170192a2015-08-16 17:46:34 -07001463 mNextAppTransitionType = scaleUp ? NEXT_TRANSIT_TYPE_THUMBNAIL_ASPECT_SCALE_UP
1464 : NEXT_TRANSIT_TYPE_THUMBNAIL_ASPECT_SCALE_DOWN;
Filip Gruszczynski170192a2015-08-16 17:46:34 -07001465 mNextAppTransitionScaleUp = scaleUp;
Jorim Jaggi43102412015-11-11 16:28:37 +01001466 if (specs != null) {
1467 for (int i = 0; i < specs.length; i++) {
1468 AppTransitionAnimationSpec spec = specs[i];
1469 if (spec != null) {
1470 mNextAppTransitionAnimationsSpecs.put(spec.taskId, spec);
1471 if (i == 0) {
1472 // In full screen mode, the transition code depends on the default spec
1473 // to be set.
1474 Rect rect = spec.rect;
1475 putDefaultNextAppTransitionCoordinates(rect.left, rect.top,
Filip Gruszczynskie3264d82015-11-20 17:10:04 -08001476 rect.width(), rect.height(), spec.bitmap);
Jorim Jaggi43102412015-11-11 16:28:37 +01001477 }
Filip Gruszczynskid1431422015-09-08 11:18:54 -07001478 }
Filip Gruszczynski170192a2015-08-16 17:46:34 -07001479 }
1480 }
1481 postAnimationCallback();
Filip Gruszczynski1a5203d2015-10-29 17:43:49 -07001482 mNextAppTransitionCallback = onAnimationStartedCallback;
1483 mAnimationFinishedCallback = onAnimationFinishedCallback;
Filip Gruszczynski170192a2015-08-16 17:46:34 -07001484 } else {
1485 postAnimationCallback();
1486 }
1487 }
1488
Jorim Jaggi2f7d2922015-10-29 13:08:29 +01001489 void overridePendingAppTransitionMultiThumbFuture(
1490 IAppTransitionAnimationSpecsFuture specsFuture, IRemoteCallback callback,
1491 boolean scaleUp) {
1492 if (isTransitionSet()) {
Jorim Jaggi65193992015-11-23 16:49:59 -08001493 clear();
Jorim Jaggi2f7d2922015-10-29 13:08:29 +01001494 mNextAppTransitionType = scaleUp ? NEXT_TRANSIT_TYPE_THUMBNAIL_ASPECT_SCALE_UP
1495 : NEXT_TRANSIT_TYPE_THUMBNAIL_ASPECT_SCALE_DOWN;
Jorim Jaggi2f7d2922015-10-29 13:08:29 +01001496 mNextAppTransitionAnimationsSpecsFuture = specsFuture;
1497 mNextAppTransitionScaleUp = scaleUp;
Jorim Jaggi7cc7b082015-11-10 16:06:54 +01001498 mNextAppTransitionFutureCallback = callback;
Jorim Jaggi2f7d2922015-10-29 13:08:29 +01001499 }
1500 }
1501
Winson Chung044d5292014-11-06 11:05:19 -08001502 void overrideInPlaceAppTransition(String packageName, int anim) {
1503 if (isTransitionSet()) {
Jorim Jaggi65193992015-11-23 16:49:59 -08001504 clear();
Winson Chung044d5292014-11-06 11:05:19 -08001505 mNextAppTransitionType = NEXT_TRANSIT_TYPE_CUSTOM_IN_PLACE;
1506 mNextAppTransitionPackage = packageName;
1507 mNextAppTransitionInPlace = anim;
1508 } else {
1509 postAnimationCallback();
1510 }
1511 }
1512
Jorim Jaggi2f7d2922015-10-29 13:08:29 +01001513 /**
1514 * If a future is set for the app transition specs, fetch it in another thread.
1515 */
1516 private void fetchAppTransitionSpecsFromFuture() {
1517 if (mNextAppTransitionAnimationsSpecsFuture != null) {
1518 mNextAppTransitionAnimationsSpecsPending = true;
1519 final IAppTransitionAnimationSpecsFuture future
1520 = mNextAppTransitionAnimationsSpecsFuture;
1521 mNextAppTransitionAnimationsSpecsFuture = null;
1522 mDefaultExecutor.execute(new Runnable() {
1523 @Override
1524 public void run() {
1525 AppTransitionAnimationSpec[] specs = null;
1526 try {
1527 specs = future.get();
1528 } catch (RemoteException e) {
1529 Slog.w(TAG, "Failed to fetch app transition specs: " + e);
1530 }
Filip Gruszczynski1a4dfe52015-11-15 10:58:57 -08001531 synchronized (mService.mWindowMap) {
Jorim Jaggi2f7d2922015-10-29 13:08:29 +01001532 mNextAppTransitionAnimationsSpecsPending = false;
Jorim Jaggi7cc7b082015-11-10 16:06:54 +01001533 overridePendingAppTransitionMultiThumb(specs,
1534 mNextAppTransitionFutureCallback, null /* finishedCallback */,
1535 mNextAppTransitionScaleUp);
1536 mNextAppTransitionFutureCallback = null;
Filip Gruszczynski96daf322015-11-18 18:01:27 -08001537 if (specs != null) {
1538 mService.prolongAnimationsFromSpecs(specs, mNextAppTransitionScaleUp);
1539 }
Jorim Jaggi2f7d2922015-10-29 13:08:29 +01001540 }
Filip Gruszczynski1a4dfe52015-11-15 10:58:57 -08001541 mService.requestTraversal();
Jorim Jaggi2f7d2922015-10-29 13:08:29 +01001542 }
1543 });
1544 }
1545 }
1546
Craig Mautner164d4bb2012-11-26 13:51:23 -08001547 @Override
1548 public String toString() {
Wale Ogunwale8ebc82a2015-05-13 15:27:12 -07001549 return "mNextAppTransition=" + appTransitionToString(mNextAppTransition);
Craig Mautner164d4bb2012-11-26 13:51:23 -08001550 }
1551
Craig Mautner4b71aa12012-12-27 17:20:01 -08001552 /**
1553 * Returns the human readable name of a window transition.
1554 *
1555 * @param transition The window transition.
1556 * @return The transition symbolic name.
1557 */
1558 public static String appTransitionToString(int transition) {
1559 switch (transition) {
1560 case TRANSIT_UNSET: {
1561 return "TRANSIT_UNSET";
1562 }
1563 case TRANSIT_NONE: {
1564 return "TRANSIT_NONE";
1565 }
Craig Mautner4b71aa12012-12-27 17:20:01 -08001566 case TRANSIT_ACTIVITY_OPEN: {
1567 return "TRANSIT_ACTIVITY_OPEN";
1568 }
1569 case TRANSIT_ACTIVITY_CLOSE: {
1570 return "TRANSIT_ACTIVITY_CLOSE";
1571 }
1572 case TRANSIT_TASK_OPEN: {
1573 return "TRANSIT_TASK_OPEN";
1574 }
1575 case TRANSIT_TASK_CLOSE: {
1576 return "TRANSIT_TASK_CLOSE";
1577 }
1578 case TRANSIT_TASK_TO_FRONT: {
1579 return "TRANSIT_TASK_TO_FRONT";
1580 }
1581 case TRANSIT_TASK_TO_BACK: {
1582 return "TRANSIT_TASK_TO_BACK";
1583 }
1584 case TRANSIT_WALLPAPER_CLOSE: {
1585 return "TRANSIT_WALLPAPER_CLOSE";
1586 }
1587 case TRANSIT_WALLPAPER_OPEN: {
1588 return "TRANSIT_WALLPAPER_OPEN";
1589 }
1590 case TRANSIT_WALLPAPER_INTRA_OPEN: {
1591 return "TRANSIT_WALLPAPER_INTRA_OPEN";
1592 }
1593 case TRANSIT_WALLPAPER_INTRA_CLOSE: {
1594 return "TRANSIT_WALLPAPER_INTRA_CLOSE";
1595 }
Craig Mautnerbb742462014-07-07 15:28:55 -07001596 case TRANSIT_TASK_OPEN_BEHIND: {
1597 return "TRANSIT_TASK_OPEN_BEHIND";
1598 }
Filip Gruszczynski55a309f2015-09-04 17:15:01 -07001599 case TRANSIT_ACTIVITY_RELAUNCH: {
1600 return "TRANSIT_ACTIVITY_RELAUNCH";
1601 }
Craig Mautner4b71aa12012-12-27 17:20:01 -08001602 default: {
1603 return "<UNKNOWN>";
1604 }
1605 }
1606 }
1607
Craig Mautner9a29a5d2012-12-27 19:03:40 -08001608 private String appStateToString() {
1609 switch (mAppTransitionState) {
1610 case APP_STATE_IDLE:
1611 return "APP_STATE_IDLE";
1612 case APP_STATE_READY:
1613 return "APP_STATE_READY";
1614 case APP_STATE_RUNNING:
1615 return "APP_STATE_RUNNING";
1616 case APP_STATE_TIMEOUT:
1617 return "APP_STATE_TIMEOUT";
1618 default:
1619 return "unknown state=" + mAppTransitionState;
1620 }
1621 }
1622
1623 private String transitTypeToString() {
1624 switch (mNextAppTransitionType) {
1625 case NEXT_TRANSIT_TYPE_NONE:
1626 return "NEXT_TRANSIT_TYPE_NONE";
1627 case NEXT_TRANSIT_TYPE_CUSTOM:
1628 return "NEXT_TRANSIT_TYPE_CUSTOM";
Winson Chung044d5292014-11-06 11:05:19 -08001629 case NEXT_TRANSIT_TYPE_CUSTOM_IN_PLACE:
1630 return "NEXT_TRANSIT_TYPE_CUSTOM_IN_PLACE";
Craig Mautner9a29a5d2012-12-27 19:03:40 -08001631 case NEXT_TRANSIT_TYPE_SCALE_UP:
1632 return "NEXT_TRANSIT_TYPE_SCALE_UP";
1633 case NEXT_TRANSIT_TYPE_THUMBNAIL_SCALE_UP:
1634 return "NEXT_TRANSIT_TYPE_THUMBNAIL_SCALE_UP";
1635 case NEXT_TRANSIT_TYPE_THUMBNAIL_SCALE_DOWN:
1636 return "NEXT_TRANSIT_TYPE_THUMBNAIL_SCALE_DOWN";
Winson Chunga4ccb862014-08-22 15:26:27 -07001637 case NEXT_TRANSIT_TYPE_THUMBNAIL_ASPECT_SCALE_UP:
1638 return "NEXT_TRANSIT_TYPE_THUMBNAIL_ASPECT_SCALE_UP";
1639 case NEXT_TRANSIT_TYPE_THUMBNAIL_ASPECT_SCALE_DOWN:
1640 return "NEXT_TRANSIT_TYPE_THUMBNAIL_ASPECT_SCALE_DOWN";
Craig Mautner9a29a5d2012-12-27 19:03:40 -08001641 default:
1642 return "unknown type=" + mNextAppTransitionType;
1643 }
1644 }
1645
Craig Mautner164d4bb2012-11-26 13:51:23 -08001646 @Override
Dianne Hackbornae6688b2015-02-11 17:02:41 -08001647 public void dump(PrintWriter pw, String prefix) {
1648 pw.print(prefix); pw.println(this);
1649 pw.print(prefix); pw.print("mAppTransitionState="); pw.println(appStateToString());
Craig Mautner9a29a5d2012-12-27 19:03:40 -08001650 if (mNextAppTransitionType != NEXT_TRANSIT_TYPE_NONE) {
Dianne Hackbornae6688b2015-02-11 17:02:41 -08001651 pw.print(prefix); pw.print("mNextAppTransitionType=");
1652 pw.println(transitTypeToString());
Craig Mautner164d4bb2012-11-26 13:51:23 -08001653 }
1654 switch (mNextAppTransitionType) {
Craig Mautner9a29a5d2012-12-27 19:03:40 -08001655 case NEXT_TRANSIT_TYPE_CUSTOM:
Dianne Hackbornae6688b2015-02-11 17:02:41 -08001656 pw.print(prefix); pw.print("mNextAppTransitionPackage=");
Craig Mautner164d4bb2012-11-26 13:51:23 -08001657 pw.println(mNextAppTransitionPackage);
Dianne Hackbornae6688b2015-02-11 17:02:41 -08001658 pw.print(prefix); pw.print("mNextAppTransitionEnter=0x");
Craig Mautner164d4bb2012-11-26 13:51:23 -08001659 pw.print(Integer.toHexString(mNextAppTransitionEnter));
1660 pw.print(" mNextAppTransitionExit=0x");
1661 pw.println(Integer.toHexString(mNextAppTransitionExit));
1662 break;
Winson Chung044d5292014-11-06 11:05:19 -08001663 case NEXT_TRANSIT_TYPE_CUSTOM_IN_PLACE:
Dianne Hackbornae6688b2015-02-11 17:02:41 -08001664 pw.print(prefix); pw.print("mNextAppTransitionPackage=");
Winson Chung044d5292014-11-06 11:05:19 -08001665 pw.println(mNextAppTransitionPackage);
Dianne Hackbornae6688b2015-02-11 17:02:41 -08001666 pw.print(prefix); pw.print("mNextAppTransitionInPlace=0x");
Winson Chung044d5292014-11-06 11:05:19 -08001667 pw.print(Integer.toHexString(mNextAppTransitionInPlace));
1668 break;
Filip Gruszczynski170192a2015-08-16 17:46:34 -07001669 case NEXT_TRANSIT_TYPE_SCALE_UP: {
Filip Gruszczynskid64ef3e2015-10-27 17:58:02 -07001670 getDefaultNextAppTransitionStartRect(mTmpRect);
Dianne Hackbornae6688b2015-02-11 17:02:41 -08001671 pw.print(prefix); pw.print("mNextAppTransitionStartX=");
Filip Gruszczynskid64ef3e2015-10-27 17:58:02 -07001672 pw.print(mTmpRect.left);
Craig Mautner164d4bb2012-11-26 13:51:23 -08001673 pw.print(" mNextAppTransitionStartY=");
Filip Gruszczynskid64ef3e2015-10-27 17:58:02 -07001674 pw.println(mTmpRect.top);
Dianne Hackbornae6688b2015-02-11 17:02:41 -08001675 pw.print(prefix); pw.print("mNextAppTransitionStartWidth=");
Filip Gruszczynskid64ef3e2015-10-27 17:58:02 -07001676 pw.print(mTmpRect.width());
Craig Mautner164d4bb2012-11-26 13:51:23 -08001677 pw.print(" mNextAppTransitionStartHeight=");
Filip Gruszczynskid64ef3e2015-10-27 17:58:02 -07001678 pw.println(mTmpRect.height());
Craig Mautner164d4bb2012-11-26 13:51:23 -08001679 break;
Filip Gruszczynski170192a2015-08-16 17:46:34 -07001680 }
Craig Mautner9a29a5d2012-12-27 19:03:40 -08001681 case NEXT_TRANSIT_TYPE_THUMBNAIL_SCALE_UP:
1682 case NEXT_TRANSIT_TYPE_THUMBNAIL_SCALE_DOWN:
Winson Chunga4ccb862014-08-22 15:26:27 -07001683 case NEXT_TRANSIT_TYPE_THUMBNAIL_ASPECT_SCALE_UP:
Filip Gruszczynski170192a2015-08-16 17:46:34 -07001684 case NEXT_TRANSIT_TYPE_THUMBNAIL_ASPECT_SCALE_DOWN: {
1685 pw.print(prefix); pw.print("mDefaultNextAppTransitionAnimationSpec=");
1686 pw.println(mDefaultNextAppTransitionAnimationSpec);
1687 pw.print(prefix); pw.print("mNextAppTransitionAnimationsSpecs=");
1688 pw.println(mNextAppTransitionAnimationsSpecs);
Dianne Hackbornae6688b2015-02-11 17:02:41 -08001689 pw.print(prefix); pw.print("mNextAppTransitionScaleUp=");
1690 pw.println(mNextAppTransitionScaleUp);
Craig Mautner164d4bb2012-11-26 13:51:23 -08001691 break;
Filip Gruszczynski170192a2015-08-16 17:46:34 -07001692 }
Craig Mautner164d4bb2012-11-26 13:51:23 -08001693 }
1694 if (mNextAppTransitionCallback != null) {
Dianne Hackbornae6688b2015-02-11 17:02:41 -08001695 pw.print(prefix); pw.print("mNextAppTransitionCallback=");
1696 pw.println(mNextAppTransitionCallback);
Craig Mautner164d4bb2012-11-26 13:51:23 -08001697 }
1698 }
Amith Yamasani4befbec2013-07-10 16:18:01 -07001699
1700 public void setCurrentUser(int newUserId) {
1701 mCurrentUserId = newUserId;
1702 }
Filip Gruszczynski24966d42015-09-05 15:00:00 -07001703
1704 /**
1705 * @return true if transition is not running and should not be skipped, false if transition is
1706 * already running
1707 */
1708 boolean prepareAppTransitionLocked(int transit, boolean alwaysKeepCurrent) {
1709 if (DEBUG_APP_TRANSITIONS) Slog.v(TAG, "Prepare app transition:"
1710 + " transit=" + appTransitionToString(transit)
1711 + " " + this
1712 + " alwaysKeepCurrent=" + alwaysKeepCurrent
1713 + " Callers=" + Debug.getCallers(3));
1714 if (!isTransitionSet() || mNextAppTransition == TRANSIT_NONE) {
1715 setAppTransition(transit);
1716 } else if (!alwaysKeepCurrent) {
1717 if (transit == TRANSIT_TASK_OPEN && isTransitionEqual(TRANSIT_TASK_CLOSE)) {
1718 // Opening a new task always supersedes a close for the anim.
1719 setAppTransition(transit);
1720 } else if (transit == TRANSIT_ACTIVITY_OPEN
1721 && isTransitionEqual(TRANSIT_ACTIVITY_CLOSE)) {
1722 // Opening a new activity always supersedes a close for the anim.
1723 setAppTransition(transit);
1724 }
1725 }
1726 boolean prepared = prepare();
1727 if (isTransitionSet()) {
Filip Gruszczynski1a4dfe52015-11-15 10:58:57 -08001728 mService.mH.removeMessages(H.APP_TRANSITION_TIMEOUT);
1729 mService.mH.sendEmptyMessageDelayed(H.APP_TRANSITION_TIMEOUT, APP_TRANSITION_TIMEOUT_MS);
Filip Gruszczynski24966d42015-09-05 15:00:00 -07001730 }
1731 return prepared;
1732 }
Craig Mautner164d4bb2012-11-26 13:51:23 -08001733}