blob: 3ed0f14075b0c02ad970d1f9c23c800ae2021c1d [file] [log] [blame]
Dianne Hackborn6e1eb762011-02-17 16:07:28 -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
Wale Ogunwale6cae7652015-12-26 07:36:26 -080019import static android.app.ActivityManager.StackId;
Wale Ogunwale72919d22016-12-08 18:58:50 -080020import static android.content.pm.ActivityInfo.CONFIG_ORIENTATION;
21import static android.content.pm.ActivityInfo.CONFIG_SCREEN_SIZE;
Wale Ogunwale5e5a68d2017-03-24 17:36:38 -070022import static android.content.pm.ActivityInfo.SCREEN_ORIENTATION_BEHIND;
Wale Ogunwale51362492016-09-08 17:49:17 -070023import static android.content.pm.ActivityInfo.SCREEN_ORIENTATION_UNSET;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -070024import static android.view.Display.DEFAULT_DISPLAY;
Jorim Jaggife762342016-10-13 14:33:27 +020025import static android.view.WindowManager.LayoutParams.FLAG_DISMISS_KEYGUARD;
26import static android.view.WindowManager.LayoutParams.FLAG_SHOW_WHEN_LOCKED;
Wale Ogunwaled1c37912016-08-16 03:19:39 -070027import static android.view.WindowManager.LayoutParams.TYPE_APPLICATION;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080028import static android.view.WindowManager.LayoutParams.TYPE_APPLICATION_STARTING;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -070029import static android.view.WindowManager.LayoutParams.TYPE_BASE_APPLICATION;
Wale Ogunwale3f4433d2016-08-18 20:42:42 -070030import static android.view.WindowManagerPolicy.FINISH_LAYOUT_REDO_ANIM;
31import static android.view.WindowManagerPolicy.FINISH_LAYOUT_REDO_WALLPAPER;
Wale Ogunwaleac2561e2016-11-01 15:43:46 -070032import static com.android.server.wm.AppTransition.TRANSIT_UNSET;
Jorim Jaggiba41f4b2016-12-14 17:43:07 -080033import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_ADD_REMOVE;
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -080034import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_ANIM;
35import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_APP_TRANSITIONS;
Wale Ogunwaleac2561e2016-11-01 15:43:46 -070036import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_FOCUS_LIGHT;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -070037import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_LAYOUT_REPEATS;
38import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_ORIENTATION;
Wale Ogunwale9017ec02016-02-25 08:55:25 -080039import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_STARTING_WINDOW;
Wale Ogunwaleac2561e2016-11-01 15:43:46 -070040import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_TOKEN_MOVEMENT;
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -080041import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_VISIBILITY;
42import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_WINDOW_MOVEMENT;
43import static com.android.server.wm.WindowManagerDebugConfig.TAG_WITH_CLASS_NAME;
44import static com.android.server.wm.WindowManagerDebugConfig.TAG_WM;
Chong Zhang92147042016-05-09 12:47:11 -070045import static com.android.server.wm.WindowManagerService.H.NOTIFY_ACTIVITY_DRAWN;
Wale Ogunwaleac2561e2016-11-01 15:43:46 -070046import static com.android.server.wm.WindowManagerService.UPDATE_FOCUS_NORMAL;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -070047import static com.android.server.wm.WindowManagerService.UPDATE_FOCUS_WILL_PLACE_SURFACES;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -070048import static com.android.server.wm.WindowManagerService.logWithStack;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080049
Filip Gruszczynskia590c992015-11-25 16:45:26 -080050import android.annotation.NonNull;
Jorim Jaggi26c8c422016-05-09 19:57:25 -070051import android.content.res.Configuration;
Jorim Jaggi0429f352015-12-22 16:29:16 +010052import android.graphics.Rect;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -070053import android.os.Binder;
Jorim Jaggiba41f4b2016-12-14 17:43:07 -080054import android.os.Debug;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -070055import android.os.IBinder;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -070056import android.os.SystemClock;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080057import android.util.Slog;
58import android.view.IApplicationToken;
Robert Carr6914f082017-03-20 19:04:30 -070059import android.view.SurfaceControl;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080060import android.view.WindowManager;
Jorim Jaggiba41f4b2016-12-14 17:43:07 -080061import android.view.WindowManagerPolicy.StartingSurface;
62
63import com.android.internal.util.ToBooleanFunction;
64import com.android.server.input.InputApplicationHandle;
65import com.android.server.wm.WindowManagerService.H;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080066
67import java.io.PrintWriter;
Jorim Jaggi0429f352015-12-22 16:29:16 +010068import java.util.ArrayDeque;
Craig Mautnerb1fd65c02013-02-05 13:34:57 -080069import java.util.ArrayList;
70
71class AppTokenList extends ArrayList<AppWindowToken> {
72}
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080073
74/**
75 * Version of WindowToken that is specifically for a particular application (or
76 * really activity) that is displaying windows.
77 */
Wale Ogunwale3f4433d2016-08-18 20:42:42 -070078class AppWindowToken extends WindowToken implements WindowManagerService.AppFreezeListener {
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -080079 private static final String TAG = TAG_WITH_CLASS_NAME ? "AppWindowToken" : TAG_WM;
80
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080081 // Non-null only for application tokens.
82 final IApplicationToken appToken;
83
Filip Gruszczynskia590c992015-11-25 16:45:26 -080084 @NonNull final AppWindowAnimator mAppAnimator;
Craig Mautnerd09cc4b2012-04-04 10:23:31 -070085
Wale Ogunwale72919d22016-12-08 18:58:50 -080086 final boolean mVoiceInteraction;
Dianne Hackborne30e02f2014-05-27 18:24:45 -070087
Wale Ogunwale51362492016-09-08 17:49:17 -070088 /** @see WindowContainer#fillsParent() */
89 private boolean mFillsParent;
Craig Mautner4c5eb222013-11-18 12:59:05 -080090 boolean layoutConfigChanges;
Wale Ogunwale72919d22016-12-08 18:58:50 -080091 boolean mShowForAllUsers;
92 int mTargetSdk;
Craig Mautnera2c77052012-03-26 12:14:43 -070093
Bryce Lee6d410262017-02-28 15:30:17 -080094 // Flag set while reparenting to prevent actions normally triggered by an individual parent
95 // change.
96 private boolean mReparenting;
97
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080098 // The input dispatching timeout for this application token in nanoseconds.
Wale Ogunwale72919d22016-12-08 18:58:50 -080099 long mInputDispatchingTimeoutNanos;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800100
101 // These are used for determining when all windows associated with
102 // an activity have been drawn, so they can be made visible together
103 // at the same time.
Craig Mautner764983d2012-03-22 11:37:36 -0700104 // initialize so that it doesn't match mTransactionSequence which is an int.
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -0700105 private long mLastTransactionSequence = Long.MIN_VALUE;
106 private int mNumInterestingWindows;
107 private int mNumDrawnWindows;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800108 boolean inPendingTransaction;
109 boolean allDrawn;
Craig Mautner7636dfb2012-11-16 15:24:11 -0800110 // Set to true when this app creates a surface while in the middle of an animation. In that
111 // case do not clear allDrawn until the animation completes.
112 boolean deferClearAllDrawn;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800113
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -0700114 /**
115 * These are to track the app's real drawing status if there were no saved surfaces.
116 * @see #updateDrawnWindowStates
117 */
Chong Zhang8e4bda92016-05-04 15:08:18 -0700118 boolean allDrawnExcludingSaved;
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -0700119 private int mNumInterestingWindowsExcludingSaved;
120 private int mNumDrawnWindowsExcludingSaved;
Chong Zhang8e4bda92016-05-04 15:08:18 -0700121
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800122 // Is this window's surface needed? This is almost like hidden, except
123 // it will sometimes be true a little earlier: when the token has
124 // been shown, but is still waiting for its app transition to execute
125 // before making its windows shown.
126 boolean hiddenRequested;
127
128 // Have we told the window clients to hide themselves?
129 boolean clientHidden;
130
131 // Last visibility state we reported to the app token.
132 boolean reportedVisible;
133
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700134 // Last drawn state we reported to the app token.
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -0700135 private boolean reportedDrawn;
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700136
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800137 // Set to true when the token has been removed from the window mgr.
138 boolean removed;
139
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800140 // Information about an application starting window if displayed.
141 StartingData startingData;
142 WindowState startingWindow;
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800143 StartingSurface startingSurface;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800144 boolean startingDisplayed;
145 boolean startingMoved;
146 boolean firstWindowDrawn;
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700147 private final WindowState.UpdateReportedVisibilityResults mReportedVisibilityResults =
148 new WindowState.UpdateReportedVisibilityResults();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800149
150 // Input application handle used by the input dispatcher.
Jeff Brown9302c872011-07-13 22:51:29 -0700151 final InputApplicationHandle mInputApplicationHandle;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800152
Wale Ogunwale571771c2016-08-26 13:18:50 -0700153 // TODO: Have a WindowContainer state for tracking exiting/deferred removal.
Craig Mautner799bc1d2015-01-14 10:33:48 -0800154 boolean mIsExiting;
Craig Mautner9ef471f2014-02-07 13:11:47 -0800155
Craig Mautnerbb742462014-07-07 15:28:55 -0700156 boolean mLaunchTaskBehind;
Craig Mautner8746a472014-07-24 15:12:54 -0700157 boolean mEnteringAnimation;
Craig Mautnerbb742462014-07-07 15:28:55 -0700158
Wale Ogunwale72919d22016-12-08 18:58:50 -0800159 private boolean mAlwaysFocusable;
Wale Ogunwale6cae7652015-12-26 07:36:26 -0800160
Robert Carre12aece2016-02-02 22:43:27 -0800161 boolean mAppStopped;
Robert Carrfd10cd12016-06-29 16:41:50 -0700162 int mRotationAnimationHint;
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -0700163 private int mPendingRelaunchCount;
Robert Carre12aece2016-02-02 22:43:27 -0800164
Jorim Jaggife762342016-10-13 14:33:27 +0200165 private boolean mLastContainsShowWhenLockedWindow;
166 private boolean mLastContainsDismissKeyguardWindow;
167
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -0700168 // The bounds of this activity. Mainly used for aspect-ratio compatibility.
169 // TODO(b/36505427): Every level on WindowContainer now has bounds information, which directly
170 // affects the configuration. We should probably move this into that class.
171 private final Rect mBounds = new Rect();
172
Jorim Jaggi0429f352015-12-22 16:29:16 +0100173 ArrayDeque<Rect> mFrozenBounds = new ArrayDeque<>();
Jorim Jaggi26c8c422016-05-09 19:57:25 -0700174 ArrayDeque<Configuration> mFrozenMergedConfig = new ArrayDeque<>();
Jorim Jaggi0429f352015-12-22 16:29:16 +0100175
Jorim Jaggi0fe7ce962017-02-22 16:45:48 +0100176 private boolean mDisbalePreviewScreenshots;
177
Robert Carred3e83b2017-04-21 13:26:55 -0700178 Task mLastParent;
179
Wale Ogunwale72919d22016-12-08 18:58:50 -0800180 AppWindowToken(WindowManagerService service, IApplicationToken token, boolean voiceInteraction,
181 DisplayContent dc, long inputDispatchingTimeoutNanos, boolean fullscreen,
182 boolean showForAllUsers, int targetSdk, int orientation, int rotationAnimationHint,
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800183 int configChanges, boolean launchTaskBehind, boolean alwaysFocusable,
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -0700184 AppWindowContainerController controller, Configuration overrideConfig, Rect bounds) {
185 this(service, token, voiceInteraction, dc, fullscreen, overrideConfig, bounds);
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800186 setController(controller);
Wale Ogunwale72919d22016-12-08 18:58:50 -0800187 mInputDispatchingTimeoutNanos = inputDispatchingTimeoutNanos;
Wale Ogunwale72919d22016-12-08 18:58:50 -0800188 mShowForAllUsers = showForAllUsers;
189 mTargetSdk = targetSdk;
190 mOrientation = orientation;
191 layoutConfigChanges = (configChanges & (CONFIG_SCREEN_SIZE | CONFIG_ORIENTATION)) != 0;
192 mLaunchTaskBehind = launchTaskBehind;
193 mAlwaysFocusable = alwaysFocusable;
194 mRotationAnimationHint = rotationAnimationHint;
195
196 // Application tokens start out hidden.
197 hidden = true;
198 hiddenRequested = true;
199 }
200
201 AppWindowToken(WindowManagerService service, IApplicationToken token, boolean voiceInteraction,
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -0700202 DisplayContent dc, boolean fillsParent, Configuration overrideConfig, Rect bounds) {
Wale Ogunwale5cd907d2017-01-26 14:14:08 -0800203 super(service, token != null ? token.asBinder() : null, TYPE_APPLICATION, true, dc,
204 false /* ownerCanManageAppTokens */);
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700205 appToken = token;
Wale Ogunwale72919d22016-12-08 18:58:50 -0800206 mVoiceInteraction = voiceInteraction;
Wale Ogunwale17f175c2017-02-07 16:54:10 -0800207 mFillsParent = fillsParent;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800208 mInputApplicationHandle = new InputApplicationHandle(this);
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700209 mAppAnimator = new AppWindowAnimator(this, service);
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -0700210 if (overrideConfig != null) {
211 onOverrideConfigurationChanged(overrideConfig);
212 }
213 if (bounds != null) {
214 mBounds.set(bounds);
215 }
216 }
217
218 void onOverrideConfigurationChanged(Configuration overrideConfiguration, Rect bounds) {
219 onOverrideConfigurationChanged(overrideConfiguration);
220 if (mBounds.equals(bounds)) {
221 return;
222 }
223 // TODO(b/36505427): If bounds is in WC, then we can automatically call onResize() when set.
224 mBounds.set(bounds);
225 onResize();
226 }
227
228 void getBounds(Rect outBounds) {
229 outBounds.set(mBounds);
230 }
231
232 boolean hasBounds() {
233 return !mBounds.isEmpty();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800234 }
235
Wale Ogunwale9017ec02016-02-25 08:55:25 -0800236 void onFirstWindowDrawn(WindowState win, WindowStateAnimator winAnimator) {
237 firstWindowDrawn = true;
238
239 // We now have a good window to show, remove dead placeholders
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700240 removeDeadWindows();
Wale Ogunwale9017ec02016-02-25 08:55:25 -0800241
Jorim Jaggi02886a82016-12-06 09:10:06 -0800242 if (startingWindow != null) {
Wale Ogunwale9017ec02016-02-25 08:55:25 -0800243 if (DEBUG_STARTING_WINDOW || DEBUG_ANIM) Slog.v(TAG, "Finish starting "
244 + win.mToken + ": first real window is shown, no animation");
245 // If this initial window is animating, stop it -- we will do an animation to reveal
246 // it from behind the starting window, so there is no need for it to also be doing its
247 // own stuff.
248 winAnimator.clearAnimation();
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800249 if (getController() != null) {
250 getController().removeStartingWindow();
251 }
Wale Ogunwale9017ec02016-02-25 08:55:25 -0800252 }
253 updateReportedVisibilityLocked();
254 }
255
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800256 void updateReportedVisibilityLocked() {
257 if (appToken == null) {
258 return;
259 }
260
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700261 if (DEBUG_VISIBILITY) Slog.v(TAG, "Update reported visibility: " + this);
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700262 final int count = mChildren.size();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800263
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700264 mReportedVisibilityResults.reset();
265
266 for (int i = 0; i < count; i++) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700267 final WindowState win = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700268 win.updateReportedVisibility(mReportedVisibilityResults);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800269 }
270
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700271 int numInteresting = mReportedVisibilityResults.numInteresting;
272 int numVisible = mReportedVisibilityResults.numVisible;
273 int numDrawn = mReportedVisibilityResults.numDrawn;
274 boolean nowGone = mReportedVisibilityResults.nowGone;
275
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700276 boolean nowDrawn = numInteresting > 0 && numDrawn >= numInteresting;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800277 boolean nowVisible = numInteresting > 0 && numVisible >= numInteresting;
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700278 if (!nowGone) {
279 // If the app is not yet gone, then it can only become visible/drawn.
280 if (!nowDrawn) {
281 nowDrawn = reportedDrawn;
282 }
283 if (!nowVisible) {
284 nowVisible = reportedVisible;
285 }
286 }
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800287 if (DEBUG_VISIBILITY) Slog.v(TAG, "VIS " + this + ": interesting="
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800288 + numInteresting + " visible=" + numVisible);
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800289 final AppWindowContainerController controller = getController();
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700290 if (nowDrawn != reportedDrawn) {
291 if (nowDrawn) {
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800292 if (controller != null) {
293 controller.reportWindowsDrawn();
294 }
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700295 }
296 reportedDrawn = nowDrawn;
297 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800298 if (nowVisible != reportedVisible) {
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700299 if (DEBUG_VISIBILITY) Slog.v(TAG,
300 "Visibility changed in " + this + ": vis=" + nowVisible);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800301 reportedVisible = nowVisible;
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800302 if (controller != null) {
303 if (nowVisible) {
304 controller.reportWindowsVisible();
305 } else {
306 controller.reportWindowsGone();
307 }
308 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800309 }
310 }
311
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700312 boolean setVisibility(WindowManager.LayoutParams lp,
313 boolean visible, int transit, boolean performLayout, boolean isVoiceInteraction) {
314
315 boolean delayed = false;
316 inPendingTransaction = false;
317
318 if (clientHidden == visible) {
319 clientHidden = !visible;
320 sendAppVisibilityToClients();
321 }
322
323 // Allow for state changes and animation to be applied if:
324 // * token is transitioning visibility state
325 // * or the token was marked as hidden and is exiting before we had a chance to play the
326 // transition animation
327 // * or this is an opening app and windows are being replaced.
328 boolean visibilityChanged = false;
329 if (hidden == visible || (hidden && mIsExiting) || (visible && waitingForReplacement())) {
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700330 final AccessibilityController accessibilityController = mService.mAccessibilityController;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700331 boolean changed = false;
332 if (DEBUG_APP_TRANSITIONS) Slog.v(TAG_WM,
333 "Changing app " + this + " hidden=" + hidden + " performLayout=" + performLayout);
334
335 boolean runningAppAnimation = false;
336
337 if (transit != AppTransition.TRANSIT_UNSET) {
338 if (mAppAnimator.animation == AppWindowAnimator.sDummyAnimation) {
339 mAppAnimator.setNullAnimation();
340 }
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700341 if (mService.applyAnimationLocked(this, lp, transit, visible, isVoiceInteraction)) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700342 delayed = runningAppAnimation = true;
343 }
344 final WindowState window = findMainWindow();
345 //TODO (multidisplay): Magnification is supported only for the default display.
346 if (window != null && accessibilityController != null
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -0700347 && getDisplayContent().getDisplayId() == DEFAULT_DISPLAY) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700348 accessibilityController.onAppWindowTransitionLocked(window, transit);
349 }
350 changed = true;
351 }
352
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700353 final int windowsCount = mChildren.size();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700354 for (int i = 0; i < windowsCount; i++) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700355 final WindowState win = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700356 changed |= win.onAppVisibilityChanged(visible, runningAppAnimation);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700357 }
358
359 hidden = hiddenRequested = !visible;
360 visibilityChanged = true;
361 if (!visible) {
362 stopFreezingScreen(true, true);
363 } else {
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700364 // If we are being set visible, and the starting window is not yet displayed,
365 // then make sure it doesn't get displayed.
366 if (startingWindow != null && !startingWindow.isDrawnLw()) {
367 startingWindow.mPolicyVisibility = false;
368 startingWindow.mPolicyVisibilityAfterAnim = false;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700369 }
370 }
371
372 if (DEBUG_APP_TRANSITIONS) Slog.v(TAG_WM, "setVisibility: " + this
373 + ": hidden=" + hidden + " hiddenRequested=" + hiddenRequested);
374
375 if (changed) {
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700376 mService.mInputMonitor.setUpdateInputWindowsNeededLw();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700377 if (performLayout) {
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700378 mService.updateFocusedWindowLocked(UPDATE_FOCUS_WILL_PLACE_SURFACES,
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700379 false /*updateInputWindows*/);
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700380 mService.mWindowPlacerLocked.performSurfacePlacement();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700381 }
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700382 mService.mInputMonitor.updateInputWindowsLw(false /*force*/);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700383 }
384 }
385
386 if (mAppAnimator.animation != null) {
387 delayed = true;
388 }
389
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700390 for (int i = mChildren.size() - 1; i >= 0 && !delayed; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700391 if ((mChildren.get(i)).isWindowAnimationSet()) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700392 delayed = true;
393 }
394 }
395
396 if (visibilityChanged) {
397 if (visible && !delayed) {
398 // The token was made immediately visible, there will be no entrance animation.
399 // We need to inform the client the enter animation was finished.
400 mEnteringAnimation = true;
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700401 mService.mActivityManagerAppTransitionNotifier.onAppTransitionFinishedLocked(token);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700402 }
Robert Carre7cc44d2017-03-20 19:04:30 -0700403 // If we are hidden but there is no delay needed we immediately
404 // apply the Surface transaction so that the ActivityManager
405 // can have some guarantee on the Surface state
406 // following setting the visibility.
Robert Carr6914f082017-03-20 19:04:30 -0700407 if (hidden && !delayed) {
408 SurfaceControl.openTransaction();
409 for (int i = mChildren.size() - 1; i >= 0; i--) {
410 mChildren.get(i).mWinAnimator.hide("immediately hidden");
411 }
412 SurfaceControl.closeTransaction();
413 }
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700414
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700415 if (!mService.mClosingApps.contains(this) && !mService.mOpeningApps.contains(this)) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700416 // The token is not closing nor opening, so even if there is an animation set, that
417 // doesn't mean that it goes through the normal app transition cycle so we have
418 // to inform the docked controller about visibility change.
Andrii Kulian1e32e022016-09-16 15:29:34 -0700419 // TODO(multi-display): notify docked divider on all displays where visibility was
420 // affected.
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700421 mService.getDefaultDisplayContentLocked().getDockedDividerController()
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700422 .notifyAppVisibilityChanged();
Jorim Jaggi8b702ed2017-01-20 16:59:03 +0100423 mService.mTaskSnapshotController.notifyAppVisibilityChanged(this, visible);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700424 }
425 }
426
427 return delayed;
428 }
429
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800430 WindowState findMainWindow() {
Filip Gruszczynski55a309f2015-09-04 17:15:01 -0700431 WindowState candidate = null;
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700432 int j = mChildren.size();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800433 while (j > 0) {
434 j--;
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700435 final WindowState win = mChildren.get(j);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700436 final int type = win.mAttrs.type;
437 // No need to loop through child window as base application and starting types can't be
438 // child windows.
439 if (type == TYPE_BASE_APPLICATION || type == TYPE_APPLICATION_STARTING) {
Filip Gruszczynski55a309f2015-09-04 17:15:01 -0700440 // In cases where there are multiple windows, we prefer the non-exiting window. This
Sungsoo Lim0d3d1f82015-12-02 14:47:59 +0900441 // happens for example when replacing windows during an activity relaunch. When
Filip Gruszczynski55a309f2015-09-04 17:15:01 -0700442 // constructing the animation, we want the new window, not the exiting one.
Wale Ogunwalec48a3542016-02-19 15:18:45 -0800443 if (win.mAnimatingExit) {
Filip Gruszczynski55a309f2015-09-04 17:15:01 -0700444 candidate = win;
445 } else {
446 return win;
447 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800448 }
449 }
Filip Gruszczynski55a309f2015-09-04 17:15:01 -0700450 return candidate;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800451 }
452
Wale Ogunwale6cae7652015-12-26 07:36:26 -0800453 boolean windowsAreFocusable() {
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800454 return StackId.canReceiveKeys(getTask().mStack.mStackId) || mAlwaysFocusable;
Wale Ogunwaled045c822015-12-02 09:14:28 -0800455 }
456
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800457 AppWindowContainerController getController() {
458 final WindowContainerController controller = super.getController();
459 return controller != null ? (AppWindowContainerController) controller : null;
460 }
461
Wale Ogunwale571771c2016-08-26 13:18:50 -0700462 @Override
Wale Ogunwale44f21802016-09-02 12:49:48 -0700463 boolean isVisible() {
Wale Ogunwalee471be62016-10-03 07:53:55 -0700464 // If the app token isn't hidden then it is considered visible and there is no need to check
465 // its children windows to see if they are visible.
466 return !hidden;
Wale Ogunwale44f21802016-09-02 12:49:48 -0700467 }
468
469 @Override
Wale Ogunwale571771c2016-08-26 13:18:50 -0700470 void removeIfPossible() {
Craig Mautnere3119b72015-01-20 15:02:36 -0800471 mIsExiting = false;
Wale Ogunwale3d0bfd92016-12-05 11:38:02 -0800472 removeAllWindowsIfPossible();
Bryce Lee6d410262017-02-28 15:30:17 -0800473 removeImmediately();
Craig Mautnere3119b72015-01-20 15:02:36 -0800474 }
475
Wale Ogunwale3f4433d2016-08-18 20:42:42 -0700476 @Override
477 boolean checkCompleteDeferredRemoval() {
478 if (mIsExiting) {
479 removeIfPossible();
480 }
481 return super.checkCompleteDeferredRemoval();
482 }
483
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700484 void onRemovedFromDisplay() {
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700485 if (DEBUG_APP_TRANSITIONS) Slog.v(TAG_WM, "Removing app token: " + this);
486
Wale Ogunwale72919d22016-12-08 18:58:50 -0800487 boolean delayed = setVisibility(null, false, TRANSIT_UNSET, true, mVoiceInteraction);
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700488
489 mService.mOpeningApps.remove(this);
Jorim Jaggi1b4b23e2016-11-15 16:30:12 -0800490 mService.mUnknownAppVisibilityController.appRemoved(this);
Jorim Jaggi10abe2f2017-01-03 16:44:46 +0100491 mService.mTaskSnapshotController.onAppRemoved(this);
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700492 waitingToShow = false;
493 if (mService.mClosingApps.contains(this)) {
494 delayed = true;
495 } else if (mService.mAppTransition.isTransitionSet()) {
496 mService.mClosingApps.add(this);
497 delayed = true;
498 }
499
500 if (DEBUG_APP_TRANSITIONS) Slog.v(TAG_WM, "Removing app " + this + " delayed=" + delayed
501 + " animation=" + mAppAnimator.animation + " animating=" + mAppAnimator.animating);
502
503 if (DEBUG_ADD_REMOVE || DEBUG_TOKEN_MOVEMENT) Slog.v(TAG_WM, "removeAppToken: "
504 + this + " delayed=" + delayed + " Callers=" + Debug.getCallers(4));
505
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800506 if (startingData != null && getController() != null) {
507 getController().removeStartingWindow();
508 }
509
Winson Chung87e5d552017-04-05 11:49:38 -0700510 // If this window was animating, then we need to ensure that the app transition notifies
511 // that animations have completed in WMS.handleAnimatingStoppedAndTransitionLocked(), so
512 // add to that list now
513 if (mAppAnimator.animating) {
514 mService.mNoAnimationNotifyOnTransitionFinished.add(token);
515 }
516
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800517 final TaskStack stack = getTask().mStack;
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700518 if (delayed && !isEmpty()) {
519 // set the token aside because it has an active animation to be finished
520 if (DEBUG_ADD_REMOVE || DEBUG_TOKEN_MOVEMENT) Slog.v(TAG_WM,
521 "removeAppToken make exiting: " + this);
522 stack.mExitingAppTokens.add(this);
523 mIsExiting = true;
524 } else {
525 // Make sure there is no animation running on this token, so any windows associated
526 // with it will be removed as soon as their animations are complete
527 mAppAnimator.clearAnimation();
528 mAppAnimator.animating = false;
529 removeIfPossible();
530 }
531
532 removed = true;
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700533 stopFreezingScreen(true, true);
Bryce Lee6d410262017-02-28 15:30:17 -0800534
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700535 if (mService.mFocusedApp == this) {
536 if (DEBUG_FOCUS_LIGHT) Slog.v(TAG_WM, "Removing focused app token:" + this);
537 mService.mFocusedApp = null;
538 mService.updateFocusedWindowLocked(UPDATE_FOCUS_NORMAL, true /*updateInputWindows*/);
539 mService.mInputMonitor.setFocusedAppLw(null);
540 }
541
542 if (!delayed) {
543 updateReportedVisibilityLocked();
544 }
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700545 }
546
Chong Zhange05bcb12016-07-26 17:47:29 -0700547 void clearAnimatingFlags() {
Chong Zhangb0d26702016-08-12 16:03:29 -0700548 boolean wallpaperMightChange = false;
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700549 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700550 final WindowState win = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700551 wallpaperMightChange |= win.clearAnimatingFlags();
Chong Zhange05bcb12016-07-26 17:47:29 -0700552 }
Chong Zhangb0d26702016-08-12 16:03:29 -0700553 if (wallpaperMightChange) {
554 requestUpdateWallpaperIfNeeded();
555 }
Chong Zhange05bcb12016-07-26 17:47:29 -0700556 }
557
Robert Carre12aece2016-02-02 22:43:27 -0800558 void destroySurfaces() {
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700559 destroySurfaces(false /*cleanupOnResume*/);
560 }
561
562 /**
563 * Destroy surfaces which have been marked as eligible by the animator, taking care to ensure
564 * the client has finished with them.
565 *
566 * @param cleanupOnResume whether this is done when app is resumed without fully stopped. If
567 * set to true, destroy only surfaces of removed windows, and clear relevant flags of the
568 * others so that they are ready to be reused. If set to false (common case), destroy all
569 * surfaces that's eligible, if the app is already stopped.
570 */
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700571 private void destroySurfaces(boolean cleanupOnResume) {
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -0700572 boolean destroyedSomething = false;
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700573 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700574 final WindowState win = mChildren.get(i);
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -0700575 destroyedSomething |= win.destroySurface(cleanupOnResume, mAppStopped);
Robert Carre12aece2016-02-02 22:43:27 -0800576 }
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -0700577 if (destroyedSomething) {
578 final DisplayContent dc = getDisplayContent();
Wale Ogunwalec69694a2016-10-18 13:51:15 -0700579 dc.assignWindowLayers(true /*setLayoutNeeded*/);
Robert Carre12aece2016-02-02 22:43:27 -0800580 }
581 }
582
Wale Ogunwale8d5a5422016-03-03 18:28:21 -0800583 /**
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700584 * Notify that the app is now resumed, and it was not stopped before, perform a clean
585 * up of the surfaces
Wale Ogunwale8d5a5422016-03-03 18:28:21 -0800586 */
Jorim Jaggibae01b12017-04-11 16:29:10 -0700587 void notifyAppResumed(boolean wasStopped) {
Chong Zhangad24f962016-08-25 12:12:33 -0700588 if (DEBUG_ADD_REMOVE) Slog.v(TAG, "notifyAppResumed: wasStopped=" + wasStopped
Jorim Jaggibae01b12017-04-11 16:29:10 -0700589 + " " + this);
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700590 mAppStopped = false;
591 if (!wasStopped) {
592 destroySurfaces(true /*cleanupOnResume*/);
Wale Ogunwale8d5a5422016-03-03 18:28:21 -0800593 }
Robert Carre12aece2016-02-02 22:43:27 -0800594 }
595
Chong Zhangbef461f2015-10-27 11:38:24 -0700596 /**
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700597 * Notify that the app has stopped, and it is okay to destroy any surfaces which were
598 * keeping alive in case they were still being used.
599 */
600 void notifyAppStopped() {
601 if (DEBUG_ADD_REMOVE) Slog.v(TAG, "notifyAppStopped: " + this);
602 mAppStopped = true;
603 destroySurfaces();
604 // Remove any starting window that was added for this app if they are still around.
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800605 if (getController() != null) {
606 getController().removeStartingWindow();
607 }
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700608 }
609
610 /**
Chong Zhangbef461f2015-10-27 11:38:24 -0700611 * Checks whether we should save surfaces for this app.
612 *
613 * @return true if the surfaces should be saved, false otherwise.
614 */
615 boolean shouldSaveSurface() {
Chong Zhangbfc2f8f2016-01-29 15:50:34 -0800616 // We want to save surface if the app's windows are "allDrawn".
617 // (If we started entering animation early with saved surfaces, allDrawn
618 // should have been restored to true. So we'll save again in that case
619 // even if app didn't actually finish drawing.)
620 return allDrawn;
Robert Carr13f7be9e2015-12-02 18:39:45 -0800621 }
622
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700623 private boolean canRestoreSurfaces() {
624 for (int i = mChildren.size() -1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700625 final WindowState w = mChildren.get(i);
Chong Zhang92147042016-05-09 12:47:11 -0700626 if (w.canRestoreSurface()) {
Robert Carr13f7be9e2015-12-02 18:39:45 -0800627 return true;
628 }
Chong Zhangbef461f2015-10-27 11:38:24 -0700629 }
630 return false;
631 }
632
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700633 private void clearWasVisibleBeforeClientHidden() {
634 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700635 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700636 w.clearWasVisibleBeforeClientHidden();
Chong Zhang92147042016-05-09 12:47:11 -0700637 }
638 }
639
Chong Zhang8e4bda92016-05-04 15:08:18 -0700640 /**
641 * Whether the app has some window that is invisible in layout, but
642 * animating with saved surface.
643 */
644 boolean isAnimatingInvisibleWithSavedSurface() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700645 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700646 final WindowState w = mChildren.get(i);
Chong Zhang8e4bda92016-05-04 15:08:18 -0700647 if (w.isAnimatingInvisibleWithSavedSurface()) {
648 return true;
649 }
650 }
651 return false;
652 }
653
654 /**
655 * Hide all window surfaces that's still invisible in layout but animating
656 * with a saved surface, and mark them destroying.
657 */
658 void stopUsingSavedSurfaceLocked() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700659 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700660 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700661 w.stopUsingSavedSurface();
Chong Zhang8e4bda92016-05-04 15:08:18 -0700662 }
663 destroySurfaces();
664 }
665
Chong Zhangf58631a2016-05-24 16:02:10 -0700666 void markSavedSurfaceExiting() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700667 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700668 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700669 w.markSavedSurfaceExiting();
Chong Zhangf58631a2016-05-24 16:02:10 -0700670 }
671 }
672
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700673 void restoreSavedSurfaceForInterestingWindows() {
Chong Zhang92147042016-05-09 12:47:11 -0700674 if (!canRestoreSurfaces()) {
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700675 clearWasVisibleBeforeClientHidden();
Chong Zhangbef461f2015-10-27 11:38:24 -0700676 return;
677 }
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700678
679 // Check if all interesting windows are drawn and we can mark allDrawn=true.
680 int interestingNotDrawn = -1;
681
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700682 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700683 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700684 interestingNotDrawn = w.restoreSavedSurfaceForInterestingWindow();
Chong Zhangbef461f2015-10-27 11:38:24 -0700685 }
Chong Zhangbfc2f8f2016-01-29 15:50:34 -0800686
Chong Zhang92147042016-05-09 12:47:11 -0700687 if (!allDrawn) {
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700688 allDrawn = (interestingNotDrawn == 0);
Chong Zhang92147042016-05-09 12:47:11 -0700689 if (allDrawn) {
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700690 mService.mH.obtainMessage(NOTIFY_ACTIVITY_DRAWN, token).sendToTarget();
Chong Zhang92147042016-05-09 12:47:11 -0700691 }
692 }
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700693 clearWasVisibleBeforeClientHidden();
Chong Zhangbfc2f8f2016-01-29 15:50:34 -0800694
695 if (DEBUG_APP_TRANSITIONS || DEBUG_ANIM) Slog.d(TAG,
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700696 "restoreSavedSurfaceForInterestingWindows: " + this + " allDrawn=" + allDrawn
697 + " interestingNotDrawn=" + interestingNotDrawn);
Chong Zhangbef461f2015-10-27 11:38:24 -0700698 }
699
700 void destroySavedSurfaces() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700701 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700702 final WindowState win = mChildren.get(i);
Robert Carr13f7be9e2015-12-02 18:39:45 -0800703 win.destroySavedSurface();
Chong Zhangbef461f2015-10-27 11:38:24 -0700704 }
Chong Zhang92147042016-05-09 12:47:11 -0700705 }
706
707 void clearAllDrawn() {
708 allDrawn = false;
709 deferClearAllDrawn = false;
Chong Zhang8e4bda92016-05-04 15:08:18 -0700710 allDrawnExcludingSaved = false;
Chong Zhangbef461f2015-10-27 11:38:24 -0700711 }
712
Bryce Lee6d410262017-02-28 15:30:17 -0800713 Task getTask() {
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800714 return (Task) getParent();
Bryce Lee6d410262017-02-28 15:30:17 -0800715 }
716
Jorim Jaggi3878ca32017-02-02 17:13:05 -0800717 TaskStack getStack() {
718 final Task task = getTask();
719 if (task != null) {
720 return task.mStack;
721 } else {
722 return null;
723 }
724 }
725
Bryce Lee6d410262017-02-28 15:30:17 -0800726 @Override
727 void onParentSet() {
728 super.onParentSet();
729
Robert Carred3e83b2017-04-21 13:26:55 -0700730 final Task task = getTask();
731
Bryce Lee6d410262017-02-28 15:30:17 -0800732 // When the associated task is {@code null}, the {@link AppWindowToken} can no longer
733 // access visual elements like the {@link DisplayContent}. We must remove any associations
734 // such as animations.
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800735 if (!mReparenting) {
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800736 if (task == null) {
737 // It is possible we have been marked as a closing app earlier. We must remove ourselves
738 // from this list so we do not participate in any future animations.
739 mService.mClosingApps.remove(this);
Robert Carred3e83b2017-04-21 13:26:55 -0700740 } else if (mLastParent != null && mLastParent.mStack != null) {
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800741 task.mStack.mExitingAppTokens.remove(this);
742 }
Bryce Lee6d410262017-02-28 15:30:17 -0800743 }
Robert Carred3e83b2017-04-21 13:26:55 -0700744 mLastParent = task;
Bryce Lee6d410262017-02-28 15:30:17 -0800745 }
746
Wale Ogunwalefa854eb2016-09-20 13:43:52 -0700747 void postWindowRemoveStartingWindowCleanup(WindowState win) {
Wale Ogunwale92fc3722016-08-05 12:19:08 -0700748 // TODO: Something smells about the code below...Is there a better way?
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700749 if (startingWindow == win) {
750 if (DEBUG_STARTING_WINDOW) Slog.v(TAG_WM, "Notify removed startingWindow " + win);
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800751 if (getController() != null) {
752 getController().removeStartingWindow();
753 }
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700754 } else if (mChildren.size() == 0 && startingData != null) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700755 // If this is the last window and we had requested a starting transition window,
756 // well there is no point now.
Jorim Jaggi02886a82016-12-06 09:10:06 -0800757 if (DEBUG_STARTING_WINDOW) Slog.v(TAG_WM, "Nulling last startingData");
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700758 startingData = null;
Jorim Jaggi829b9cd2017-01-23 16:20:53 +0100759 } else if (mChildren.size() == 1 && startingSurface != null && !isRelaunching()) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700760 // If this is the last window except for a starting transition window,
761 // we need to get rid of the starting transition.
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800762 if (getController() != null) {
763 getController().removeStartingWindow();
764 }
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700765 }
766 }
767
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700768 void removeDeadWindows() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700769 for (int winNdx = mChildren.size() - 1; winNdx >= 0; --winNdx) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700770 WindowState win = mChildren.get(winNdx);
Chong Zhang112eb8c2015-11-02 11:17:00 -0800771 if (win.mAppDied) {
Wale Ogunwale92fc3722016-08-05 12:19:08 -0700772 if (DEBUG_WINDOW_MOVEMENT || DEBUG_ADD_REMOVE) Slog.w(TAG,
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700773 "removeDeadWindows: " + win);
Chong Zhang112eb8c2015-11-02 11:17:00 -0800774 // Set mDestroying, we don't want any animation or delayed removal here.
775 win.mDestroying = true;
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700776 // Also removes child windows.
Wale Ogunwale92fc3722016-08-05 12:19:08 -0700777 win.removeIfPossible();
Chong Zhang112eb8c2015-11-02 11:17:00 -0800778 }
779 }
780 }
781
Wale Ogunwalee42d0e12016-05-02 16:40:59 -0700782 boolean hasWindowsAlive() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700783 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700784 // No need to loop through child windows as the answer should be the same as that of the
785 // parent window.
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700786 if (!(mChildren.get(i)).mAppDied) {
Wale Ogunwalee42d0e12016-05-02 16:40:59 -0700787 return true;
788 }
789 }
790 return false;
791 }
792
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700793 void setWillReplaceWindows(boolean animate) {
Wale Ogunwale455fac52016-07-21 07:24:49 -0700794 if (DEBUG_ADD_REMOVE) Slog.d(TAG_WM,
795 "Marking app token " + this + " with replacing windows.");
Robert Carra1eb4392015-12-10 12:43:51 -0800796
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700797 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700798 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700799 w.setWillReplaceWindow(animate);
Robert Carra1eb4392015-12-10 12:43:51 -0800800 }
801 if (animate) {
802 // Set-up dummy animation so we can start treating windows associated with this
803 // token like they are in transition before the new app window is ready for us to
804 // run the real transition animation.
805 if (DEBUG_APP_TRANSITIONS) Slog.v(TAG_WM,
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700806 "setWillReplaceWindow() Setting dummy animation on: " + this);
Robert Carra1eb4392015-12-10 12:43:51 -0800807 mAppAnimator.setDummyAnimation();
808 }
809 }
810
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700811 void setWillReplaceChildWindows() {
Wale Ogunwale455fac52016-07-21 07:24:49 -0700812 if (DEBUG_ADD_REMOVE) Slog.d(TAG_WM, "Marking app token " + this
Robert Carr23fa16b2016-01-13 13:19:58 -0800813 + " with replacing child windows.");
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700814 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700815 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700816 w.setWillReplaceChildWindows();
Robert Carr23fa16b2016-01-13 13:19:58 -0800817 }
818 }
819
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700820 void clearWillReplaceWindows() {
Wale Ogunwale455fac52016-07-21 07:24:49 -0700821 if (DEBUG_ADD_REMOVE) Slog.d(TAG_WM,
822 "Resetting app token " + this + " of replacing window marks.");
Chong Zhangf596cd52016-01-05 13:42:44 -0800823
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700824 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700825 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700826 w.clearWillReplaceWindow();
Chong Zhangf596cd52016-01-05 13:42:44 -0800827 }
828 }
829
Chong Zhang4d7369a2016-04-25 16:09:14 -0700830 void requestUpdateWallpaperIfNeeded() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700831 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700832 final WindowState w = mChildren.get(i);
Chong Zhang4d7369a2016-04-25 16:09:14 -0700833 w.requestUpdateWallpaperIfNeeded();
834 }
835 }
836
Chong Zhangd78ddb42016-03-02 17:01:14 -0800837 boolean isRelaunching() {
838 return mPendingRelaunchCount > 0;
839 }
840
841 void startRelaunching() {
842 if (canFreezeBounds()) {
843 freezeBounds();
844 }
Robert Carrd5c7dd62017-03-08 10:39:30 -0800845
846 // In the process of tearing down before relaunching, the app will
847 // try and clean up it's child surfaces. We need to prevent this from
848 // happening, so we sever the children, transfering their ownership
849 // from the client it-self to the parent surface (owned by us).
850 for (int i = mChildren.size() - 1; i >= 0; i--) {
851 final WindowState w = mChildren.get(i);
852 w.mWinAnimator.detachChildren();
853 }
854
Chong Zhangd78ddb42016-03-02 17:01:14 -0800855 mPendingRelaunchCount++;
856 }
857
858 void finishRelaunching() {
859 if (canFreezeBounds()) {
860 unfreezeBounds();
861 }
862 if (mPendingRelaunchCount > 0) {
863 mPendingRelaunchCount--;
864 }
865 }
866
Wale Ogunwale8fd75422016-06-24 14:20:37 -0700867 void clearRelaunching() {
Wale Ogunwale37dbafc2016-06-27 10:15:20 -0700868 if (mPendingRelaunchCount == 0) {
869 return;
870 }
Wale Ogunwale8fd75422016-06-24 14:20:37 -0700871 if (canFreezeBounds()) {
872 unfreezeBounds();
873 }
874 mPendingRelaunchCount = 0;
875 }
876
Wale Ogunwale07bcab72016-10-14 15:30:09 -0700877 /**
878 * Returns true if the new child window we are adding to this token is considered greater than
879 * the existing child window in this token in terms of z-order.
880 */
881 @Override
882 protected boolean isFirstChildWindowGreaterThanSecond(WindowState newWindow,
883 WindowState existingWindow) {
884 final int type1 = newWindow.mAttrs.type;
885 final int type2 = existingWindow.mAttrs.type;
886
887 // Base application windows should be z-ordered BELOW all other windows in the app token.
888 if (type1 == TYPE_BASE_APPLICATION && type2 != TYPE_BASE_APPLICATION) {
889 return false;
890 } else if (type1 != TYPE_BASE_APPLICATION && type2 == TYPE_BASE_APPLICATION) {
891 return true;
892 }
893
894 // Starting windows should be z-ordered ABOVE all other windows in the app token.
895 if (type1 == TYPE_APPLICATION_STARTING && type2 != TYPE_APPLICATION_STARTING) {
896 return true;
897 } else if (type1 != TYPE_APPLICATION_STARTING && type2 == TYPE_APPLICATION_STARTING) {
898 return false;
899 }
900
901 // Otherwise the new window is greater than the existing window.
902 return true;
903 }
904
Wale Ogunwale92fc3722016-08-05 12:19:08 -0700905 @Override
Robert Carra1eb4392015-12-10 12:43:51 -0800906 void addWindow(WindowState w) {
Wale Ogunwale92fc3722016-08-05 12:19:08 -0700907 super.addWindow(w);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700908
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700909 boolean gotReplacementWindow = false;
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700910 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700911 final WindowState candidate = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700912 gotReplacementWindow |= candidate.setReplacementWindowIfNeeded(w);
913 }
Wale Ogunwale92fc3722016-08-05 12:19:08 -0700914
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700915 // if we got a replacement window, reset the timeout to give drawing more time
916 if (gotReplacementWindow) {
917 mService.scheduleWindowReplacementTimeouts(this);
Robert Carra1eb4392015-12-10 12:43:51 -0800918 }
Jorim Jaggife762342016-10-13 14:33:27 +0200919 checkKeyguardFlagsChanged();
920 }
921
922 @Override
923 void removeChild(WindowState child) {
924 super.removeChild(child);
925 checkKeyguardFlagsChanged();
Robert Carra1eb4392015-12-10 12:43:51 -0800926 }
927
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -0700928 private boolean waitingForReplacement() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700929 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700930 final WindowState candidate = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700931 if (candidate.waitingForReplacement()) {
Robert Carra1eb4392015-12-10 12:43:51 -0800932 return true;
933 }
934 }
935 return false;
936 }
937
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700938 void onWindowReplacementTimeout() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700939 for (int i = mChildren.size() - 1; i >= 0; --i) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700940 (mChildren.get(i)).onWindowReplacementTimeout();
Robert Carra1eb4392015-12-10 12:43:51 -0800941 }
942 }
943
Winson Chung30480042017-01-26 10:55:34 -0800944 void reparent(Task task, int position) {
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800945 final Task currentTask = getTask();
946 if (task == currentTask) {
Winson Chung30480042017-01-26 10:55:34 -0800947 throw new IllegalArgumentException(
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800948 "window token=" + this + " already child of task=" + currentTask);
Winson Chung30480042017-01-26 10:55:34 -0800949 }
Bryce Lee6d410262017-02-28 15:30:17 -0800950
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800951 if (currentTask.mStack != task.mStack) {
Bryce Lee6d410262017-02-28 15:30:17 -0800952 throw new IllegalArgumentException(
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800953 "window token=" + this + " current task=" + currentTask
Bryce Lee6d410262017-02-28 15:30:17 -0800954 + " belongs to a different stack than " + task);
955 }
956
Winson Chung30480042017-01-26 10:55:34 -0800957 if (DEBUG_ADD_REMOVE) Slog.i(TAG, "reParentWindowToken: removing window token=" + this
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800958 + " from task=" + currentTask);
Winson Chung30480042017-01-26 10:55:34 -0800959 final DisplayContent prevDisplayContent = getDisplayContent();
960
Bryce Lee6d410262017-02-28 15:30:17 -0800961 mReparenting = true;
962
Winson Chung30480042017-01-26 10:55:34 -0800963 getParent().removeChild(this);
964 task.addChild(this, position);
965
Bryce Lee6d410262017-02-28 15:30:17 -0800966 mReparenting = false;
967
Winson Chung30480042017-01-26 10:55:34 -0800968 // Relayout display(s).
969 final DisplayContent displayContent = task.getDisplayContent();
970 displayContent.setLayoutNeeded();
971 if (prevDisplayContent != displayContent) {
972 onDisplayChanged(displayContent);
973 prevDisplayContent.setLayoutNeeded();
974 }
975 }
976
Chong Zhangd78ddb42016-03-02 17:01:14 -0800977 private boolean canFreezeBounds() {
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800978 final Task task = getTask();
979
Chong Zhangd78ddb42016-03-02 17:01:14 -0800980 // For freeform windows, we can't freeze the bounds at the moment because this would make
981 // the resizing unresponsive.
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800982 return task != null && !task.inFreeformWorkspace();
Chong Zhangd78ddb42016-03-02 17:01:14 -0800983 }
984
Jorim Jaggi0429f352015-12-22 16:29:16 +0100985 /**
986 * Freezes the task bounds. The size of this task reported the app will be fixed to the bounds
987 * freezed by {@link Task#prepareFreezingBounds} until {@link #unfreezeBounds} gets called, even
988 * if they change in the meantime. If the bounds are already frozen, the bounds will be frozen
989 * with a queue.
990 */
Chong Zhangd78ddb42016-03-02 17:01:14 -0800991 private void freezeBounds() {
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800992 final Task task = getTask();
993 mFrozenBounds.offer(new Rect(task.mPreparedFrozenBounds));
Jorim Jaggi26c8c422016-05-09 19:57:25 -0700994
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800995 if (task.mPreparedFrozenMergedConfig.equals(Configuration.EMPTY)) {
Jorim Jaggi26c8c422016-05-09 19:57:25 -0700996 // We didn't call prepareFreezingBounds on the task, so use the current value.
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800997 mFrozenMergedConfig.offer(new Configuration(task.getConfiguration()));
Jorim Jaggi26c8c422016-05-09 19:57:25 -0700998 } else {
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800999 mFrozenMergedConfig.offer(new Configuration(task.mPreparedFrozenMergedConfig));
Jorim Jaggi26c8c422016-05-09 19:57:25 -07001000 }
Andrii Kulianb10330d2016-09-16 13:51:46 -07001001 // Calling unset() to make it equal to Configuration.EMPTY.
Bryce Lee7fbeb8a2017-03-02 08:42:30 -08001002 task.mPreparedFrozenMergedConfig.unset();
Jorim Jaggi0429f352015-12-22 16:29:16 +01001003 }
1004
1005 /**
1006 * Unfreezes the previously frozen bounds. See {@link #freezeBounds}.
1007 */
Chong Zhangd78ddb42016-03-02 17:01:14 -08001008 private void unfreezeBounds() {
Wale Ogunwale37dbafc2016-06-27 10:15:20 -07001009 if (!mFrozenBounds.isEmpty()) {
1010 mFrozenBounds.remove();
1011 }
1012 if (!mFrozenMergedConfig.isEmpty()) {
1013 mFrozenMergedConfig.remove();
1014 }
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001015 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07001016 final WindowState win = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001017 win.onUnfreezeBounds();
Jorim Jaggi4846ee32016-01-07 17:39:12 +01001018 }
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001019 mService.mWindowPlacerLocked.performSurfacePlacement();
Jorim Jaggi0429f352015-12-22 16:29:16 +01001020 }
1021
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -07001022 void setAppLayoutChanges(int changes, String reason) {
1023 if (!mChildren.isEmpty()) {
1024 final DisplayContent dc = getDisplayContent();
1025 dc.pendingLayoutChanges |= changes;
1026 if (DEBUG_LAYOUT_REPEATS) {
1027 mService.mWindowPlacerLocked.debugLayoutRepeats(reason, dc.pendingLayoutChanges);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001028 }
1029 }
1030 }
1031
1032 void removeReplacedWindowIfNeeded(WindowState replacement) {
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001033 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07001034 final WindowState win = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001035 if (win.removeReplacedWindowIfNeeded(replacement)) {
1036 return;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001037 }
1038 }
1039 }
1040
1041 void startFreezingScreen() {
1042 if (DEBUG_ORIENTATION) logWithStack(TAG, "Set freezing of " + appToken + ": hidden="
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001043 + hidden + " freezing=" + mAppAnimator.freezingScreen + " hiddenRequested="
1044 + hiddenRequested);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001045 if (!hiddenRequested) {
1046 if (!mAppAnimator.freezingScreen) {
1047 mAppAnimator.freezingScreen = true;
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001048 mService.registerAppFreezeListener(this);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001049 mAppAnimator.lastFreezeDuration = 0;
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001050 mService.mAppsFreezingScreen++;
1051 if (mService.mAppsFreezingScreen == 1) {
1052 mService.startFreezingDisplayLocked(false, 0, 0);
1053 mService.mH.removeMessages(H.APP_FREEZE_TIMEOUT);
1054 mService.mH.sendEmptyMessageDelayed(H.APP_FREEZE_TIMEOUT, 2000);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001055 }
1056 }
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001057 final int count = mChildren.size();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001058 for (int i = 0; i < count; i++) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07001059 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001060 w.onStartFreezingScreen();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001061 }
1062 }
1063 }
1064
1065 void stopFreezingScreen(boolean unfreezeSurfaceNow, boolean force) {
1066 if (!mAppAnimator.freezingScreen) {
1067 return;
1068 }
1069 if (DEBUG_ORIENTATION) Slog.v(TAG_WM, "Clear freezing of " + this + " force=" + force);
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001070 final int count = mChildren.size();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001071 boolean unfrozeWindows = false;
1072 for (int i = 0; i < count; i++) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07001073 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001074 unfrozeWindows |= w.onStopFreezingScreen();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001075 }
1076 if (force || unfrozeWindows) {
1077 if (DEBUG_ORIENTATION) Slog.v(TAG_WM, "No longer freezing: " + this);
1078 mAppAnimator.freezingScreen = false;
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001079 mService.unregisterAppFreezeListener(this);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001080 mAppAnimator.lastFreezeDuration =
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001081 (int)(SystemClock.elapsedRealtime() - mService.mDisplayFreezeTime);
1082 mService.mAppsFreezingScreen--;
1083 mService.mLastFinishedFreezeSource = this;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001084 }
1085 if (unfreezeSurfaceNow) {
1086 if (unfrozeWindows) {
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001087 mService.mWindowPlacerLocked.performSurfacePlacement();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001088 }
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001089 mService.stopFreezingDisplayLocked();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001090 }
1091 }
1092
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001093 @Override
1094 public void onAppFreezeTimeout() {
1095 Slog.w(TAG_WM, "Force clearing freeze: " + this);
1096 stopFreezingScreen(true, true);
1097 }
1098
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001099 boolean transferStartingWindow(IBinder transferFrom) {
Wale Ogunwale02319a62016-09-26 15:21:22 -07001100 final AppWindowToken fromToken = getDisplayContent().getAppWindowToken(transferFrom);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001101 if (fromToken == null) {
1102 return false;
1103 }
1104
1105 final WindowState tStartingWindow = fromToken.startingWindow;
Jorim Jaggiba41f4b2016-12-14 17:43:07 -08001106 if (tStartingWindow != null && fromToken.startingSurface != null) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001107 // In this case, the starting icon has already been displayed, so start
1108 // letting windows get shown immediately without any more transitions.
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001109 mService.mSkipAppTransitionAnimation = true;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001110
1111 if (DEBUG_STARTING_WINDOW) Slog.v(TAG_WM, "Moving existing starting " + tStartingWindow
1112 + " from " + fromToken + " to " + this);
1113
1114 final long origId = Binder.clearCallingIdentity();
1115
1116 // Transfer the starting window over to the new token.
1117 startingData = fromToken.startingData;
Jorim Jaggiba41f4b2016-12-14 17:43:07 -08001118 startingSurface = fromToken.startingSurface;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001119 startingDisplayed = fromToken.startingDisplayed;
1120 fromToken.startingDisplayed = false;
1121 startingWindow = tStartingWindow;
1122 reportedVisible = fromToken.reportedVisible;
1123 fromToken.startingData = null;
Jorim Jaggiba41f4b2016-12-14 17:43:07 -08001124 fromToken.startingSurface = null;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001125 fromToken.startingWindow = null;
1126 fromToken.startingMoved = true;
1127 tStartingWindow.mToken = this;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001128 tStartingWindow.mAppToken = this;
1129
Wale Ogunwale6213caa2016-12-02 16:47:15 +00001130 if (DEBUG_ADD_REMOVE || DEBUG_STARTING_WINDOW) Slog.v(TAG_WM,
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001131 "Removing starting " + tStartingWindow + " from " + fromToken);
Wale Ogunwalefa854eb2016-09-20 13:43:52 -07001132 fromToken.removeChild(tStartingWindow);
1133 fromToken.postWindowRemoveStartingWindowCleanup(tStartingWindow);
Wale Ogunwale92fc3722016-08-05 12:19:08 -07001134 addWindow(tStartingWindow);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001135
1136 // Propagate other interesting state between the tokens. If the old token is displayed,
1137 // we should immediately force the new one to be displayed. If it is animating, we need
1138 // to move that animation to the new one.
1139 if (fromToken.allDrawn) {
1140 allDrawn = true;
1141 deferClearAllDrawn = fromToken.deferClearAllDrawn;
1142 }
1143 if (fromToken.firstWindowDrawn) {
1144 firstWindowDrawn = true;
1145 }
1146 if (!fromToken.hidden) {
1147 hidden = false;
1148 hiddenRequested = false;
1149 }
1150 if (clientHidden != fromToken.clientHidden) {
1151 clientHidden = fromToken.clientHidden;
1152 sendAppVisibilityToClients();
1153 }
1154 fromToken.mAppAnimator.transferCurrentAnimation(
1155 mAppAnimator, tStartingWindow.mWinAnimator);
1156
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001157 mService.updateFocusedWindowLocked(
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001158 UPDATE_FOCUS_WILL_PLACE_SURFACES, true /*updateInputWindows*/);
Andrii Kulian5406e7a2016-10-21 11:55:23 -07001159 getDisplayContent().setLayoutNeeded();
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001160 mService.mWindowPlacerLocked.performSurfacePlacement();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001161 Binder.restoreCallingIdentity(origId);
1162 return true;
1163 } else if (fromToken.startingData != null) {
1164 // The previous app was getting ready to show a
1165 // starting window, but hasn't yet done so. Steal it!
1166 if (DEBUG_STARTING_WINDOW) Slog.v(TAG_WM,
1167 "Moving pending starting from " + fromToken + " to " + this);
1168 startingData = fromToken.startingData;
1169 fromToken.startingData = null;
1170 fromToken.startingMoved = true;
Jorim Jaggiba41f4b2016-12-14 17:43:07 -08001171 if (getController() != null) {
1172 getController().scheduleAddStartingWindow();
1173 }
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001174 return true;
1175 }
1176
1177 final AppWindowAnimator tAppAnimator = fromToken.mAppAnimator;
1178 final AppWindowAnimator wAppAnimator = mAppAnimator;
1179 if (tAppAnimator.thumbnail != null) {
1180 // The old token is animating with a thumbnail, transfer that to the new token.
1181 if (wAppAnimator.thumbnail != null) {
1182 wAppAnimator.thumbnail.destroy();
1183 }
1184 wAppAnimator.thumbnail = tAppAnimator.thumbnail;
1185 wAppAnimator.thumbnailLayer = tAppAnimator.thumbnailLayer;
1186 wAppAnimator.thumbnailAnimation = tAppAnimator.thumbnailAnimation;
1187 tAppAnimator.thumbnail = null;
1188 }
1189 return false;
1190 }
1191
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001192 boolean isLastWindow(WindowState win) {
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001193 return mChildren.size() == 1 && mChildren.get(0) == win;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001194 }
1195
1196 void setAllAppWinAnimators() {
1197 final ArrayList<WindowStateAnimator> allAppWinAnimators = mAppAnimator.mAllAppWinAnimators;
1198 allAppWinAnimators.clear();
1199
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001200 final int windowsCount = mChildren.size();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001201 for (int j = 0; j < windowsCount; j++) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07001202 (mChildren.get(j)).addWinAnimatorToList(allAppWinAnimators);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001203 }
1204 }
1205
Wale Ogunwale9adfe572016-09-08 20:43:58 -07001206 @Override
1207 void onAppTransitionDone() {
1208 sendingToBottom = false;
1209 }
1210
Wale Ogunwale51362492016-09-08 17:49:17 -07001211 /**
1212 * We override because this class doesn't want its children affecting its reported orientation
1213 * in anyway.
1214 */
1215 @Override
Wale Ogunwale5e5a68d2017-03-24 17:36:38 -07001216 int getOrientation(int candidate) {
1217 if (!fillsParent()) {
1218 // Can't specify orientation if app doesn't fill parent.
1219 return SCREEN_ORIENTATION_UNSET;
1220 }
1221
1222 if (candidate == SCREEN_ORIENTATION_BEHIND) {
1223 // Allow app to specify orientation regardless of its visibility state if the current
1224 // candidate want us to use orientation behind. I.e. the visible app on-top of this one
1225 // wants us to use the orientation of the app behind it.
1226 return mOrientation;
1227 }
1228
Bryce Lee61fbcbc2017-03-10 14:14:03 -08001229 // The {@link AppWindowToken} should only specify an orientation when it is not closing or
1230 // going to the bottom. Allowing closing {@link AppWindowToken} to participate can lead to
1231 // an Activity in another task being started in the wrong orientation during the transition.
Wale Ogunwale5e5a68d2017-03-24 17:36:38 -07001232 if (!(sendingToBottom || mService.mClosingApps.contains(this))
Bryce Lee61fbcbc2017-03-10 14:14:03 -08001233 && (isVisible() || mService.mOpeningApps.contains(this))) {
Bryce Leea163b762017-01-24 11:05:01 -08001234 return mOrientation;
Wale Ogunwale51362492016-09-08 17:49:17 -07001235 }
Bryce Leea163b762017-01-24 11:05:01 -08001236
1237 return SCREEN_ORIENTATION_UNSET;
Wale Ogunwale51362492016-09-08 17:49:17 -07001238 }
1239
Wale Ogunwaleb198b742016-12-01 08:44:09 -08001240 /** Returns the app's preferred orientation regardless of its currently visibility state. */
1241 int getOrientationIgnoreVisibility() {
1242 return mOrientation;
1243 }
1244
Craig Mautnerdbb79912012-03-01 18:59:14 -08001245 @Override
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -07001246 void checkAppWindowsReadyToShow() {
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001247 if (allDrawn == mAppAnimator.allDrawn) {
1248 return;
1249 }
1250
1251 mAppAnimator.allDrawn = allDrawn;
1252 if (!allDrawn) {
1253 return;
1254 }
1255
1256 // The token has now changed state to having all windows shown... what to do, what to do?
1257 if (mAppAnimator.freezingScreen) {
1258 mAppAnimator.showAllWindowsLocked();
1259 stopFreezingScreen(false, true);
1260 if (DEBUG_ORIENTATION) Slog.i(TAG,
1261 "Setting mOrientationChangeComplete=true because wtoken " + this
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001262 + " numInteresting=" + mNumInterestingWindows + " numDrawn=" + mNumDrawnWindows);
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001263 // This will set mOrientationChangeComplete and cause a pass through layout.
1264 setAppLayoutChanges(FINISH_LAYOUT_REDO_WALLPAPER,
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -07001265 "checkAppWindowsReadyToShow: freezingScreen");
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001266 } else {
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -07001267 setAppLayoutChanges(FINISH_LAYOUT_REDO_ANIM, "checkAppWindowsReadyToShow");
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001268
1269 // We can now show all of the drawn windows!
1270 if (!mService.mOpeningApps.contains(this)) {
1271 mService.mAnimator.orAnimating(mAppAnimator.showAllWindowsLocked());
1272 }
1273 }
1274 }
1275
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001276 void updateAllDrawn(DisplayContent dc) {
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001277 if (!allDrawn) {
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001278 final int numInteresting = mNumInterestingWindows;
1279 if (numInteresting > 0 && mNumDrawnWindows >= numInteresting) {
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001280 if (DEBUG_VISIBILITY) Slog.v(TAG, "allDrawn: " + this
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001281 + " interesting=" + numInteresting + " drawn=" + mNumDrawnWindows);
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001282 allDrawn = true;
1283 // Force an additional layout pass where
1284 // WindowStateAnimator#commitFinishDrawingLocked() will call performShowLocked().
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001285 dc.setLayoutNeeded();
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001286 mService.mH.obtainMessage(NOTIFY_ACTIVITY_DRAWN, token).sendToTarget();
Robert Carrecc06b32017-04-18 14:25:10 -07001287
1288 final TaskStack s = getStack();
1289 if (s != null) {
1290 s.onAllWindowsDrawn();
1291 }
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001292 }
1293 }
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001294
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001295 if (!allDrawnExcludingSaved) {
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001296 int numInteresting = mNumInterestingWindowsExcludingSaved;
1297 if (numInteresting > 0 && mNumDrawnWindowsExcludingSaved >= numInteresting) {
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001298 if (DEBUG_VISIBILITY) Slog.v(TAG, "allDrawnExcludingSaved: " + this
1299 + " interesting=" + numInteresting
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001300 + " drawn=" + mNumDrawnWindowsExcludingSaved);
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001301 allDrawnExcludingSaved = true;
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001302 dc.setLayoutNeeded();
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001303 if (isAnimatingInvisibleWithSavedSurface()
1304 && !mService.mFinishedEarlyAnim.contains(this)) {
1305 mService.mFinishedEarlyAnim.add(this);
1306 }
1307 }
1308 }
1309 }
1310
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001311 /**
1312 * Updated this app token tracking states for interesting and drawn windows based on the window.
1313 *
1314 * @return Returns true if the input window is considered interesting and drawn while all the
1315 * windows in this app token where not considered drawn as of the last pass.
1316 */
1317 boolean updateDrawnWindowStates(WindowState w) {
1318 if (DEBUG_STARTING_WINDOW && w == startingWindow) {
1319 Slog.d(TAG, "updateWindows: starting " + w + " isOnScreen=" + w.isOnScreen()
1320 + " allDrawn=" + allDrawn + " freezingScreen=" + mAppAnimator.freezingScreen);
1321 }
1322
1323 if (allDrawn && allDrawnExcludingSaved && !mAppAnimator.freezingScreen) {
1324 return false;
1325 }
1326
1327 if (mLastTransactionSequence != mService.mTransactionSequence) {
1328 mLastTransactionSequence = mService.mTransactionSequence;
1329 mNumInterestingWindows = mNumDrawnWindows = 0;
1330 mNumInterestingWindowsExcludingSaved = 0;
1331 mNumDrawnWindowsExcludingSaved = 0;
1332 startingDisplayed = false;
1333 }
1334
1335 final WindowStateAnimator winAnimator = w.mWinAnimator;
1336
1337 boolean isInterestingAndDrawn = false;
1338
1339 if (!allDrawn && w.mightAffectAllDrawn(false /* visibleOnly */)) {
1340 if (DEBUG_VISIBILITY || DEBUG_ORIENTATION) {
1341 Slog.v(TAG, "Eval win " + w + ": isDrawn=" + w.isDrawnLw()
1342 + ", isAnimationSet=" + winAnimator.isAnimationSet());
1343 if (!w.isDrawnLw()) {
1344 Slog.v(TAG, "Not displayed: s=" + winAnimator.mSurfaceController
1345 + " pv=" + w.mPolicyVisibility
1346 + " mDrawState=" + winAnimator.drawStateToString()
1347 + " ph=" + w.isParentWindowHidden() + " th=" + hiddenRequested
1348 + " a=" + winAnimator.mAnimating);
1349 }
1350 }
1351
1352 if (w != startingWindow) {
1353 if (w.isInteresting()) {
1354 mNumInterestingWindows++;
1355 if (w.isDrawnLw()) {
1356 mNumDrawnWindows++;
1357
1358 if (DEBUG_VISIBILITY || DEBUG_ORIENTATION) Slog.v(TAG, "tokenMayBeDrawn: "
1359 + this + " w=" + w + " numInteresting=" + mNumInterestingWindows
1360 + " freezingScreen=" + mAppAnimator.freezingScreen
1361 + " mAppFreezing=" + w.mAppFreezing);
1362
1363 isInterestingAndDrawn = true;
1364 }
1365 }
1366 } else if (w.isDrawnLw()) {
Jorim Jaggi3878ca32017-02-02 17:13:05 -08001367 if (getController() != null) {
1368 getController().reportStartingWindowDrawn();
1369 }
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001370 startingDisplayed = true;
1371 }
1372 }
1373
1374 if (!allDrawnExcludingSaved && w.mightAffectAllDrawn(true /* visibleOnly */)) {
1375 if (w != startingWindow && w.isInteresting()) {
1376 mNumInterestingWindowsExcludingSaved++;
1377 if (w.isDrawnLw() && !w.isAnimatingWithSavedSurface()) {
1378 mNumDrawnWindowsExcludingSaved++;
1379
1380 if (DEBUG_VISIBILITY || DEBUG_ORIENTATION) Slog.v(TAG,
1381 "tokenMayBeDrawnExcludingSaved: " + this + " w=" + w
1382 + " numInteresting=" + mNumInterestingWindowsExcludingSaved
1383 + " freezingScreen=" + mAppAnimator.freezingScreen
1384 + " mAppFreezing=" + w.mAppFreezing);
1385
1386 isInterestingAndDrawn = true;
1387 }
1388 }
1389 }
1390
1391 return isInterestingAndDrawn;
1392 }
1393
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001394 @Override
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -07001395 void stepAppWindowsAnimation(long currentTime) {
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001396 mAppAnimator.wasAnimating = mAppAnimator.animating;
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -07001397 if (mAppAnimator.stepAnimationLocked(currentTime)) {
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001398 mAppAnimator.animating = true;
1399 mService.mAnimator.setAnimating(true);
1400 mService.mAnimator.mAppWindowAnimating = true;
1401 } else if (mAppAnimator.wasAnimating) {
1402 // stopped animating, do one more pass through the layout
Wale Ogunwale1e129a42016-11-21 13:03:47 -08001403 setAppLayoutChanges(FINISH_LAYOUT_REDO_WALLPAPER,
1404 DEBUG_LAYOUT_REPEATS ? "appToken " + this + " done" : null);
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001405 if (DEBUG_ANIM) Slog.v(TAG, "updateWindowsApps...: done animating " + this);
1406 }
1407 }
1408
Wale Ogunwale9adfe572016-09-08 20:43:58 -07001409 @Override
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08001410 boolean forAllWindows(ToBooleanFunction<WindowState> callback, boolean traverseTopToBottom) {
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07001411 // For legacy reasons we process the TaskStack.mExitingAppTokens first in DisplayContent
1412 // before the non-exiting app tokens. So, we skip the exiting app tokens here.
1413 // TODO: Investigate if we need to continue to do this or if we can just process them
1414 // in-order.
1415 if (mIsExiting && !waitingForReplacement()) {
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08001416 return false;
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07001417 }
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08001418 return forAllWindowsUnchecked(callback, traverseTopToBottom);
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07001419 }
1420
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08001421 boolean forAllWindowsUnchecked(ToBooleanFunction<WindowState> callback,
1422 boolean traverseTopToBottom) {
1423 return super.forAllWindows(callback, traverseTopToBottom);
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07001424 }
1425
1426 @Override
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001427 AppWindowToken asAppWindowToken() {
1428 // I am an app window token!
1429 return this;
1430 }
1431
1432 @Override
Wale Ogunwale51362492016-09-08 17:49:17 -07001433 boolean fillsParent() {
1434 return mFillsParent;
1435 }
1436
1437 void setFillsParent(boolean fillsParent) {
1438 mFillsParent = fillsParent;
1439 }
1440
Jorim Jaggife762342016-10-13 14:33:27 +02001441 boolean containsDismissKeyguardWindow() {
1442 for (int i = mChildren.size() - 1; i >= 0; i--) {
1443 if ((mChildren.get(i).mAttrs.flags & FLAG_DISMISS_KEYGUARD) != 0) {
1444 return true;
1445 }
1446 }
1447 return false;
1448 }
1449
1450 boolean containsShowWhenLockedWindow() {
1451 for (int i = mChildren.size() - 1; i >= 0; i--) {
1452 if ((mChildren.get(i).mAttrs.flags & FLAG_SHOW_WHEN_LOCKED) != 0) {
1453 return true;
1454 }
1455 }
1456 return false;
1457 }
1458
1459 void checkKeyguardFlagsChanged() {
1460 final boolean containsDismissKeyguard = containsDismissKeyguardWindow();
1461 final boolean containsShowWhenLocked = containsShowWhenLockedWindow();
1462 if (containsDismissKeyguard != mLastContainsDismissKeyguardWindow
1463 || containsShowWhenLocked != mLastContainsShowWhenLockedWindow) {
1464 mService.notifyKeyguardFlagsChanged(null /* callback */);
1465 }
1466 mLastContainsDismissKeyguardWindow = containsDismissKeyguard;
1467 mLastContainsShowWhenLockedWindow = containsShowWhenLocked;
1468 }
1469
Wale Ogunwale6213caa2016-12-02 16:47:15 +00001470 WindowState getImeTargetBelowWindow(WindowState w) {
1471 final int index = mChildren.indexOf(w);
1472 if (index > 0) {
1473 final WindowState target = mChildren.get(index - 1);
1474 if (target.canBeImeTarget()) {
1475 return target;
1476 }
1477 }
1478 return null;
1479 }
1480
1481 WindowState getHighestAnimLayerWindow(WindowState currentTarget) {
1482 WindowState candidate = null;
1483 for (int i = mChildren.indexOf(currentTarget); i >= 0; i--) {
1484 final WindowState w = mChildren.get(i);
1485 if (w.mRemoved) {
1486 continue;
1487 }
1488 if (candidate == null || w.mWinAnimator.mAnimLayer >
1489 candidate.mWinAnimator.mAnimLayer) {
1490 candidate = w;
1491 }
1492 }
1493 return candidate;
1494 }
1495
Jorim Jaggi0fe7ce962017-02-22 16:45:48 +01001496 void setDisablePreviewSnapshots(boolean disable) {
1497 mDisbalePreviewScreenshots = disable;
1498 }
1499
1500 boolean shouldDisablePreviewScreenshots() {
1501 return mDisbalePreviewScreenshots;
1502 }
1503
Wale Ogunwale51362492016-09-08 17:49:17 -07001504 @Override
Robert Carrdee1b3f2017-02-27 11:33:33 -08001505 int getAnimLayerAdjustment() {
1506 return mAppAnimator.animLayerAdjustment;
1507 }
1508
1509 @Override
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001510 void dump(PrintWriter pw, String prefix) {
1511 super.dump(pw, prefix);
1512 if (appToken != null) {
Wale Ogunwale72919d22016-12-08 18:58:50 -08001513 pw.println(prefix + "app=true mVoiceInteraction=" + mVoiceInteraction);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001514 }
Bryce Lee7fbeb8a2017-03-02 08:42:30 -08001515 pw.print(prefix); pw.print("task="); pw.println(getTask());
Wale Ogunwale51362492016-09-08 17:49:17 -07001516 pw.print(prefix); pw.print(" mFillsParent="); pw.print(mFillsParent);
1517 pw.print(" mOrientation="); pw.println(mOrientation);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001518 pw.print(prefix); pw.print("hiddenRequested="); pw.print(hiddenRequested);
1519 pw.print(" clientHidden="); pw.print(clientHidden);
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -07001520 pw.print(" reportedDrawn="); pw.print(reportedDrawn);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001521 pw.print(" reportedVisible="); pw.println(reportedVisible);
Craig Mautner59431632012-04-04 11:56:44 -07001522 if (paused) {
1523 pw.print(prefix); pw.print("paused="); pw.println(paused);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001524 }
Wale Ogunwale9017ec02016-02-25 08:55:25 -08001525 if (mAppStopped) {
1526 pw.print(prefix); pw.print("mAppStopped="); pw.println(mAppStopped);
1527 }
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001528 if (mNumInterestingWindows != 0 || mNumDrawnWindows != 0
Craig Mautner6fbda632012-07-03 09:26:39 -07001529 || allDrawn || mAppAnimator.allDrawn) {
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001530 pw.print(prefix); pw.print("mNumInterestingWindows=");
1531 pw.print(mNumInterestingWindows);
1532 pw.print(" mNumDrawnWindows="); pw.print(mNumDrawnWindows);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001533 pw.print(" inPendingTransaction="); pw.print(inPendingTransaction);
Craig Mautner6fbda632012-07-03 09:26:39 -07001534 pw.print(" allDrawn="); pw.print(allDrawn);
1535 pw.print(" (animator="); pw.print(mAppAnimator.allDrawn);
1536 pw.println(")");
1537 }
1538 if (inPendingTransaction) {
1539 pw.print(prefix); pw.print("inPendingTransaction=");
1540 pw.println(inPendingTransaction);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001541 }
Craig Mautner799bc1d2015-01-14 10:33:48 -08001542 if (startingData != null || removed || firstWindowDrawn || mIsExiting) {
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001543 pw.print(prefix); pw.print("startingData="); pw.print(startingData);
1544 pw.print(" removed="); pw.print(removed);
Craig Mautner3d7ca312015-01-08 10:56:00 -08001545 pw.print(" firstWindowDrawn="); pw.print(firstWindowDrawn);
Craig Mautner799bc1d2015-01-14 10:33:48 -08001546 pw.print(" mIsExiting="); pw.println(mIsExiting);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001547 }
Jorim Jaggiba41f4b2016-12-14 17:43:07 -08001548 if (startingWindow != null || startingSurface != null
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001549 || startingDisplayed || startingMoved) {
1550 pw.print(prefix); pw.print("startingWindow="); pw.print(startingWindow);
Jorim Jaggiba41f4b2016-12-14 17:43:07 -08001551 pw.print(" startingSurface="); pw.print(startingSurface);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001552 pw.print(" startingDisplayed="); pw.print(startingDisplayed);
Wale Ogunwale9017ec02016-02-25 08:55:25 -08001553 pw.print(" startingMoved="); pw.println(startingMoved);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001554 }
Jorim Jaggi0429f352015-12-22 16:29:16 +01001555 if (!mFrozenBounds.isEmpty()) {
Chong Zhangd78ddb42016-03-02 17:01:14 -08001556 pw.print(prefix); pw.print("mFrozenBounds="); pw.println(mFrozenBounds);
Jorim Jaggi26c8c422016-05-09 19:57:25 -07001557 pw.print(prefix); pw.print("mFrozenMergedConfig="); pw.println(mFrozenMergedConfig);
Chong Zhangd78ddb42016-03-02 17:01:14 -08001558 }
1559 if (mPendingRelaunchCount != 0) {
1560 pw.print(prefix); pw.print("mPendingRelaunchCount="); pw.println(mPendingRelaunchCount);
Jorim Jaggi0429f352015-12-22 16:29:16 +01001561 }
Wale Ogunwale9c64cb62017-04-12 13:39:59 -07001562 if (getController() != null) {
1563 pw.print(prefix); pw.print("controller="); pw.println(getController());
1564 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001565 }
1566
1567 @Override
1568 public String toString() {
1569 if (stringName == null) {
1570 StringBuilder sb = new StringBuilder();
1571 sb.append("AppWindowToken{");
1572 sb.append(Integer.toHexString(System.identityHashCode(this)));
1573 sb.append(" token="); sb.append(token); sb.append('}');
1574 stringName = sb.toString();
1575 }
Wale Ogunwaleba51ca22016-09-23 06:06:54 -07001576 return stringName + ((mIsExiting) ? " mIsExiting=" : "");
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001577 }
Jeff Browne9bdb312012-04-05 15:30:10 -07001578}