blob: 32cd7d8be4292bab1951e263762201cff7ab856c [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 Ogunwale51362492016-09-08 17:49:17 -070022import static android.content.pm.ActivityInfo.SCREEN_ORIENTATION_UNSET;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -070023import static android.view.Display.DEFAULT_DISPLAY;
Jorim Jaggife762342016-10-13 14:33:27 +020024import static android.view.WindowManager.LayoutParams.FLAG_DISMISS_KEYGUARD;
25import static android.view.WindowManager.LayoutParams.FLAG_SHOW_WHEN_LOCKED;
Wale Ogunwaled1c37912016-08-16 03:19:39 -070026import static android.view.WindowManager.LayoutParams.TYPE_APPLICATION;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080027import static android.view.WindowManager.LayoutParams.TYPE_APPLICATION_STARTING;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -070028import static android.view.WindowManager.LayoutParams.TYPE_BASE_APPLICATION;
Wale Ogunwale3f4433d2016-08-18 20:42:42 -070029import static android.view.WindowManagerPolicy.FINISH_LAYOUT_REDO_ANIM;
30import static android.view.WindowManagerPolicy.FINISH_LAYOUT_REDO_WALLPAPER;
Wale Ogunwaleac2561e2016-11-01 15:43:46 -070031import static com.android.server.wm.AppTransition.TRANSIT_UNSET;
Jorim Jaggiba41f4b2016-12-14 17:43:07 -080032import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_ADD_REMOVE;
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -080033import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_ANIM;
34import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_APP_TRANSITIONS;
Wale Ogunwaleac2561e2016-11-01 15:43:46 -070035import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_FOCUS_LIGHT;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -070036import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_LAYOUT_REPEATS;
37import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_ORIENTATION;
Wale Ogunwale9017ec02016-02-25 08:55:25 -080038import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_STARTING_WINDOW;
Wale Ogunwaleac2561e2016-11-01 15:43:46 -070039import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_TOKEN_MOVEMENT;
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -080040import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_VISIBILITY;
41import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_WINDOW_MOVEMENT;
42import static com.android.server.wm.WindowManagerDebugConfig.TAG_WITH_CLASS_NAME;
43import static com.android.server.wm.WindowManagerDebugConfig.TAG_WM;
Chong Zhang92147042016-05-09 12:47:11 -070044import static com.android.server.wm.WindowManagerService.H.NOTIFY_ACTIVITY_DRAWN;
Wale Ogunwaleac2561e2016-11-01 15:43:46 -070045import static com.android.server.wm.WindowManagerService.UPDATE_FOCUS_NORMAL;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -070046import static com.android.server.wm.WindowManagerService.UPDATE_FOCUS_WILL_PLACE_SURFACES;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -070047import static com.android.server.wm.WindowManagerService.logWithStack;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080048
Filip Gruszczynskia590c992015-11-25 16:45:26 -080049import android.annotation.NonNull;
Jorim Jaggi26c8c422016-05-09 19:57:25 -070050import android.content.res.Configuration;
Jorim Jaggi0429f352015-12-22 16:29:16 +010051import android.graphics.Rect;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -070052import android.os.Binder;
Jorim Jaggiba41f4b2016-12-14 17:43:07 -080053import android.os.Debug;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -070054import android.os.IBinder;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -070055import android.os.SystemClock;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080056import android.util.Slog;
57import android.view.IApplicationToken;
Robert Carr6914f082017-03-20 19:04:30 -070058import android.view.SurfaceControl;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080059import android.view.WindowManager;
Jorim Jaggiba41f4b2016-12-14 17:43:07 -080060import android.view.WindowManagerPolicy.StartingSurface;
61
62import com.android.internal.util.ToBooleanFunction;
63import com.android.server.input.InputApplicationHandle;
64import com.android.server.wm.WindowManagerService.H;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080065
66import java.io.PrintWriter;
Jorim Jaggi0429f352015-12-22 16:29:16 +010067import java.util.ArrayDeque;
Craig Mautnerb1fd65c02013-02-05 13:34:57 -080068import java.util.ArrayList;
69
70class AppTokenList extends ArrayList<AppWindowToken> {
71}
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080072
73/**
74 * Version of WindowToken that is specifically for a particular application (or
75 * really activity) that is displaying windows.
76 */
Wale Ogunwale3f4433d2016-08-18 20:42:42 -070077class AppWindowToken extends WindowToken implements WindowManagerService.AppFreezeListener {
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -080078 private static final String TAG = TAG_WITH_CLASS_NAME ? "AppWindowToken" : TAG_WM;
79
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080080 // Non-null only for application tokens.
81 final IApplicationToken appToken;
82
Filip Gruszczynskia590c992015-11-25 16:45:26 -080083 @NonNull final AppWindowAnimator mAppAnimator;
Craig Mautnerd09cc4b2012-04-04 10:23:31 -070084
Wale Ogunwale72919d22016-12-08 18:58:50 -080085 final boolean mVoiceInteraction;
Dianne Hackborne30e02f2014-05-27 18:24:45 -070086
Wale Ogunwale51362492016-09-08 17:49:17 -070087 /** @see WindowContainer#fillsParent() */
88 private boolean mFillsParent;
Craig Mautner4c5eb222013-11-18 12:59:05 -080089 boolean layoutConfigChanges;
Wale Ogunwale72919d22016-12-08 18:58:50 -080090 boolean mShowForAllUsers;
91 int mTargetSdk;
Craig Mautnera2c77052012-03-26 12:14:43 -070092
Bryce Lee6d410262017-02-28 15:30:17 -080093 // Flag set while reparenting to prevent actions normally triggered by an individual parent
94 // change.
95 private boolean mReparenting;
96
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080097 // The input dispatching timeout for this application token in nanoseconds.
Wale Ogunwale72919d22016-12-08 18:58:50 -080098 long mInputDispatchingTimeoutNanos;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080099
100 // These are used for determining when all windows associated with
101 // an activity have been drawn, so they can be made visible together
102 // at the same time.
Craig Mautner764983d2012-03-22 11:37:36 -0700103 // initialize so that it doesn't match mTransactionSequence which is an int.
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -0700104 private long mLastTransactionSequence = Long.MIN_VALUE;
105 private int mNumInterestingWindows;
106 private int mNumDrawnWindows;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800107 boolean inPendingTransaction;
108 boolean allDrawn;
Craig Mautner7636dfb2012-11-16 15:24:11 -0800109 // Set to true when this app creates a surface while in the middle of an animation. In that
110 // case do not clear allDrawn until the animation completes.
111 boolean deferClearAllDrawn;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800112
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -0700113 /**
114 * These are to track the app's real drawing status if there were no saved surfaces.
115 * @see #updateDrawnWindowStates
116 */
Chong Zhang8e4bda92016-05-04 15:08:18 -0700117 boolean allDrawnExcludingSaved;
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -0700118 private int mNumInterestingWindowsExcludingSaved;
119 private int mNumDrawnWindowsExcludingSaved;
Chong Zhang8e4bda92016-05-04 15:08:18 -0700120
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800121 // Is this window's surface needed? This is almost like hidden, except
122 // it will sometimes be true a little earlier: when the token has
123 // been shown, but is still waiting for its app transition to execute
124 // before making its windows shown.
125 boolean hiddenRequested;
126
127 // Have we told the window clients to hide themselves?
128 boolean clientHidden;
129
130 // Last visibility state we reported to the app token.
131 boolean reportedVisible;
132
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700133 // Last drawn state we reported to the app token.
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -0700134 private boolean reportedDrawn;
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700135
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800136 // Set to true when the token has been removed from the window mgr.
137 boolean removed;
138
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800139 // Information about an application starting window if displayed.
140 StartingData startingData;
141 WindowState startingWindow;
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800142 StartingSurface startingSurface;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800143 boolean startingDisplayed;
144 boolean startingMoved;
145 boolean firstWindowDrawn;
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700146 private final WindowState.UpdateReportedVisibilityResults mReportedVisibilityResults =
147 new WindowState.UpdateReportedVisibilityResults();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800148
149 // Input application handle used by the input dispatcher.
Jeff Brown9302c872011-07-13 22:51:29 -0700150 final InputApplicationHandle mInputApplicationHandle;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800151
Wale Ogunwale571771c2016-08-26 13:18:50 -0700152 // TODO: Have a WindowContainer state for tracking exiting/deferred removal.
Craig Mautner799bc1d2015-01-14 10:33:48 -0800153 boolean mIsExiting;
Craig Mautner9ef471f2014-02-07 13:11:47 -0800154
Craig Mautnerbb742462014-07-07 15:28:55 -0700155 boolean mLaunchTaskBehind;
Craig Mautner8746a472014-07-24 15:12:54 -0700156 boolean mEnteringAnimation;
Craig Mautnerbb742462014-07-07 15:28:55 -0700157
Wale Ogunwale72919d22016-12-08 18:58:50 -0800158 private boolean mAlwaysFocusable;
Wale Ogunwale6cae7652015-12-26 07:36:26 -0800159
Robert Carre12aece2016-02-02 22:43:27 -0800160 boolean mAppStopped;
Robert Carrfd10cd12016-06-29 16:41:50 -0700161 int mRotationAnimationHint;
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -0700162 private int mPendingRelaunchCount;
Robert Carre12aece2016-02-02 22:43:27 -0800163
Jorim Jaggife762342016-10-13 14:33:27 +0200164 private boolean mLastContainsShowWhenLockedWindow;
165 private boolean mLastContainsDismissKeyguardWindow;
166
Jorim Jaggi0429f352015-12-22 16:29:16 +0100167 ArrayDeque<Rect> mFrozenBounds = new ArrayDeque<>();
Jorim Jaggi26c8c422016-05-09 19:57:25 -0700168 ArrayDeque<Configuration> mFrozenMergedConfig = new ArrayDeque<>();
Jorim Jaggi0429f352015-12-22 16:29:16 +0100169
Jorim Jaggi0fe7ce962017-02-22 16:45:48 +0100170 private boolean mDisbalePreviewScreenshots;
171
Wale Ogunwale72919d22016-12-08 18:58:50 -0800172 AppWindowToken(WindowManagerService service, IApplicationToken token, boolean voiceInteraction,
173 DisplayContent dc, long inputDispatchingTimeoutNanos, boolean fullscreen,
174 boolean showForAllUsers, int targetSdk, int orientation, int rotationAnimationHint,
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800175 int configChanges, boolean launchTaskBehind, boolean alwaysFocusable,
176 AppWindowContainerController controller) {
Wale Ogunwale17f175c2017-02-07 16:54:10 -0800177 this(service, token, voiceInteraction, dc, fullscreen);
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800178 setController(controller);
Wale Ogunwale72919d22016-12-08 18:58:50 -0800179 mInputDispatchingTimeoutNanos = inputDispatchingTimeoutNanos;
Wale Ogunwale72919d22016-12-08 18:58:50 -0800180 mShowForAllUsers = showForAllUsers;
181 mTargetSdk = targetSdk;
182 mOrientation = orientation;
183 layoutConfigChanges = (configChanges & (CONFIG_SCREEN_SIZE | CONFIG_ORIENTATION)) != 0;
184 mLaunchTaskBehind = launchTaskBehind;
185 mAlwaysFocusable = alwaysFocusable;
186 mRotationAnimationHint = rotationAnimationHint;
187
188 // Application tokens start out hidden.
189 hidden = true;
190 hiddenRequested = true;
191 }
192
193 AppWindowToken(WindowManagerService service, IApplicationToken token, boolean voiceInteraction,
Wale Ogunwale17f175c2017-02-07 16:54:10 -0800194 DisplayContent dc, boolean fillsParent) {
Wale Ogunwale5cd907d2017-01-26 14:14:08 -0800195 super(service, token != null ? token.asBinder() : null, TYPE_APPLICATION, true, dc,
196 false /* ownerCanManageAppTokens */);
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700197 appToken = token;
Wale Ogunwale72919d22016-12-08 18:58:50 -0800198 mVoiceInteraction = voiceInteraction;
Wale Ogunwale17f175c2017-02-07 16:54:10 -0800199 mFillsParent = fillsParent;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800200 mInputApplicationHandle = new InputApplicationHandle(this);
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700201 mAppAnimator = new AppWindowAnimator(this, service);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800202 }
203
Wale Ogunwale9017ec02016-02-25 08:55:25 -0800204 void onFirstWindowDrawn(WindowState win, WindowStateAnimator winAnimator) {
205 firstWindowDrawn = true;
206
207 // We now have a good window to show, remove dead placeholders
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700208 removeDeadWindows();
Wale Ogunwale9017ec02016-02-25 08:55:25 -0800209
Jorim Jaggi02886a82016-12-06 09:10:06 -0800210 if (startingWindow != null) {
Wale Ogunwale9017ec02016-02-25 08:55:25 -0800211 if (DEBUG_STARTING_WINDOW || DEBUG_ANIM) Slog.v(TAG, "Finish starting "
212 + win.mToken + ": first real window is shown, no animation");
213 // If this initial window is animating, stop it -- we will do an animation to reveal
214 // it from behind the starting window, so there is no need for it to also be doing its
215 // own stuff.
216 winAnimator.clearAnimation();
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800217 if (getController() != null) {
218 getController().removeStartingWindow();
219 }
Wale Ogunwale9017ec02016-02-25 08:55:25 -0800220 }
221 updateReportedVisibilityLocked();
222 }
223
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800224 void updateReportedVisibilityLocked() {
225 if (appToken == null) {
226 return;
227 }
228
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700229 if (DEBUG_VISIBILITY) Slog.v(TAG, "Update reported visibility: " + this);
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700230 final int count = mChildren.size();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800231
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700232 mReportedVisibilityResults.reset();
233
234 for (int i = 0; i < count; i++) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700235 final WindowState win = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700236 win.updateReportedVisibility(mReportedVisibilityResults);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800237 }
238
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700239 int numInteresting = mReportedVisibilityResults.numInteresting;
240 int numVisible = mReportedVisibilityResults.numVisible;
241 int numDrawn = mReportedVisibilityResults.numDrawn;
242 boolean nowGone = mReportedVisibilityResults.nowGone;
243
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700244 boolean nowDrawn = numInteresting > 0 && numDrawn >= numInteresting;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800245 boolean nowVisible = numInteresting > 0 && numVisible >= numInteresting;
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700246 if (!nowGone) {
247 // If the app is not yet gone, then it can only become visible/drawn.
248 if (!nowDrawn) {
249 nowDrawn = reportedDrawn;
250 }
251 if (!nowVisible) {
252 nowVisible = reportedVisible;
253 }
254 }
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800255 if (DEBUG_VISIBILITY) Slog.v(TAG, "VIS " + this + ": interesting="
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800256 + numInteresting + " visible=" + numVisible);
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800257 final AppWindowContainerController controller = getController();
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700258 if (nowDrawn != reportedDrawn) {
259 if (nowDrawn) {
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800260 if (controller != null) {
261 controller.reportWindowsDrawn();
262 }
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700263 }
264 reportedDrawn = nowDrawn;
265 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800266 if (nowVisible != reportedVisible) {
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700267 if (DEBUG_VISIBILITY) Slog.v(TAG,
268 "Visibility changed in " + this + ": vis=" + nowVisible);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800269 reportedVisible = nowVisible;
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800270 if (controller != null) {
271 if (nowVisible) {
272 controller.reportWindowsVisible();
273 } else {
274 controller.reportWindowsGone();
275 }
276 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800277 }
278 }
279
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700280 boolean setVisibility(WindowManager.LayoutParams lp,
281 boolean visible, int transit, boolean performLayout, boolean isVoiceInteraction) {
282
283 boolean delayed = false;
284 inPendingTransaction = false;
285
286 if (clientHidden == visible) {
287 clientHidden = !visible;
288 sendAppVisibilityToClients();
289 }
290
291 // Allow for state changes and animation to be applied if:
292 // * token is transitioning visibility state
293 // * or the token was marked as hidden and is exiting before we had a chance to play the
294 // transition animation
295 // * or this is an opening app and windows are being replaced.
296 boolean visibilityChanged = false;
297 if (hidden == visible || (hidden && mIsExiting) || (visible && waitingForReplacement())) {
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700298 final AccessibilityController accessibilityController = mService.mAccessibilityController;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700299 boolean changed = false;
300 if (DEBUG_APP_TRANSITIONS) Slog.v(TAG_WM,
301 "Changing app " + this + " hidden=" + hidden + " performLayout=" + performLayout);
302
303 boolean runningAppAnimation = false;
304
305 if (transit != AppTransition.TRANSIT_UNSET) {
306 if (mAppAnimator.animation == AppWindowAnimator.sDummyAnimation) {
307 mAppAnimator.setNullAnimation();
308 }
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700309 if (mService.applyAnimationLocked(this, lp, transit, visible, isVoiceInteraction)) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700310 delayed = runningAppAnimation = true;
311 }
312 final WindowState window = findMainWindow();
313 //TODO (multidisplay): Magnification is supported only for the default display.
314 if (window != null && accessibilityController != null
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -0700315 && getDisplayContent().getDisplayId() == DEFAULT_DISPLAY) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700316 accessibilityController.onAppWindowTransitionLocked(window, transit);
317 }
318 changed = true;
319 }
320
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700321 final int windowsCount = mChildren.size();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700322 for (int i = 0; i < windowsCount; i++) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700323 final WindowState win = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700324 changed |= win.onAppVisibilityChanged(visible, runningAppAnimation);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700325 }
326
327 hidden = hiddenRequested = !visible;
328 visibilityChanged = true;
329 if (!visible) {
330 stopFreezingScreen(true, true);
331 } else {
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700332 // If we are being set visible, and the starting window is not yet displayed,
333 // then make sure it doesn't get displayed.
334 if (startingWindow != null && !startingWindow.isDrawnLw()) {
335 startingWindow.mPolicyVisibility = false;
336 startingWindow.mPolicyVisibilityAfterAnim = false;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700337 }
338 }
339
340 if (DEBUG_APP_TRANSITIONS) Slog.v(TAG_WM, "setVisibility: " + this
341 + ": hidden=" + hidden + " hiddenRequested=" + hiddenRequested);
342
343 if (changed) {
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700344 mService.mInputMonitor.setUpdateInputWindowsNeededLw();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700345 if (performLayout) {
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700346 mService.updateFocusedWindowLocked(UPDATE_FOCUS_WILL_PLACE_SURFACES,
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700347 false /*updateInputWindows*/);
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700348 mService.mWindowPlacerLocked.performSurfacePlacement();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700349 }
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700350 mService.mInputMonitor.updateInputWindowsLw(false /*force*/);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700351 }
352 }
353
354 if (mAppAnimator.animation != null) {
355 delayed = true;
356 }
357
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700358 for (int i = mChildren.size() - 1; i >= 0 && !delayed; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700359 if ((mChildren.get(i)).isWindowAnimationSet()) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700360 delayed = true;
361 }
362 }
363
364 if (visibilityChanged) {
365 if (visible && !delayed) {
366 // The token was made immediately visible, there will be no entrance animation.
367 // We need to inform the client the enter animation was finished.
368 mEnteringAnimation = true;
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700369 mService.mActivityManagerAppTransitionNotifier.onAppTransitionFinishedLocked(token);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700370 }
Robert Carr6914f082017-03-20 19:04:30 -0700371 if (hidden && !delayed) {
372 SurfaceControl.openTransaction();
373 for (int i = mChildren.size() - 1; i >= 0; i--) {
374 mChildren.get(i).mWinAnimator.hide("immediately hidden");
375 }
376 SurfaceControl.closeTransaction();
377 }
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700378
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700379 if (!mService.mClosingApps.contains(this) && !mService.mOpeningApps.contains(this)) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700380 // The token is not closing nor opening, so even if there is an animation set, that
381 // doesn't mean that it goes through the normal app transition cycle so we have
382 // to inform the docked controller about visibility change.
Andrii Kulian1e32e022016-09-16 15:29:34 -0700383 // TODO(multi-display): notify docked divider on all displays where visibility was
384 // affected.
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700385 mService.getDefaultDisplayContentLocked().getDockedDividerController()
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700386 .notifyAppVisibilityChanged();
Jorim Jaggi8b702ed2017-01-20 16:59:03 +0100387 mService.mTaskSnapshotController.notifyAppVisibilityChanged(this, visible);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700388 }
389 }
390
391 return delayed;
392 }
393
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800394 WindowState findMainWindow() {
Filip Gruszczynski55a309f2015-09-04 17:15:01 -0700395 WindowState candidate = null;
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700396 int j = mChildren.size();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800397 while (j > 0) {
398 j--;
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700399 final WindowState win = mChildren.get(j);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700400 final int type = win.mAttrs.type;
401 // No need to loop through child window as base application and starting types can't be
402 // child windows.
403 if (type == TYPE_BASE_APPLICATION || type == TYPE_APPLICATION_STARTING) {
Filip Gruszczynski55a309f2015-09-04 17:15:01 -0700404 // In cases where there are multiple windows, we prefer the non-exiting window. This
Sungsoo Lim0d3d1f82015-12-02 14:47:59 +0900405 // happens for example when replacing windows during an activity relaunch. When
Filip Gruszczynski55a309f2015-09-04 17:15:01 -0700406 // constructing the animation, we want the new window, not the exiting one.
Wale Ogunwalec48a3542016-02-19 15:18:45 -0800407 if (win.mAnimatingExit) {
Filip Gruszczynski55a309f2015-09-04 17:15:01 -0700408 candidate = win;
409 } else {
410 return win;
411 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800412 }
413 }
Filip Gruszczynski55a309f2015-09-04 17:15:01 -0700414 return candidate;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800415 }
416
Wale Ogunwale6cae7652015-12-26 07:36:26 -0800417 boolean windowsAreFocusable() {
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800418 return StackId.canReceiveKeys(getTask().mStack.mStackId) || mAlwaysFocusable;
Wale Ogunwaled045c822015-12-02 09:14:28 -0800419 }
420
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800421 AppWindowContainerController getController() {
422 final WindowContainerController controller = super.getController();
423 return controller != null ? (AppWindowContainerController) controller : null;
424 }
425
Wale Ogunwale571771c2016-08-26 13:18:50 -0700426 @Override
Wale Ogunwale44f21802016-09-02 12:49:48 -0700427 boolean isVisible() {
Wale Ogunwalee471be62016-10-03 07:53:55 -0700428 // If the app token isn't hidden then it is considered visible and there is no need to check
429 // its children windows to see if they are visible.
430 return !hidden;
Wale Ogunwale44f21802016-09-02 12:49:48 -0700431 }
432
433 @Override
Wale Ogunwale571771c2016-08-26 13:18:50 -0700434 void removeIfPossible() {
Craig Mautnere3119b72015-01-20 15:02:36 -0800435 mIsExiting = false;
Wale Ogunwale3d0bfd92016-12-05 11:38:02 -0800436 removeAllWindowsIfPossible();
Bryce Lee6d410262017-02-28 15:30:17 -0800437 removeImmediately();
Craig Mautnere3119b72015-01-20 15:02:36 -0800438 }
439
Wale Ogunwale3f4433d2016-08-18 20:42:42 -0700440 @Override
441 boolean checkCompleteDeferredRemoval() {
442 if (mIsExiting) {
443 removeIfPossible();
444 }
445 return super.checkCompleteDeferredRemoval();
446 }
447
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700448 void onRemovedFromDisplay() {
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700449 if (DEBUG_APP_TRANSITIONS) Slog.v(TAG_WM, "Removing app token: " + this);
450
Wale Ogunwale72919d22016-12-08 18:58:50 -0800451 boolean delayed = setVisibility(null, false, TRANSIT_UNSET, true, mVoiceInteraction);
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700452
453 mService.mOpeningApps.remove(this);
Jorim Jaggi1b4b23e2016-11-15 16:30:12 -0800454 mService.mUnknownAppVisibilityController.appRemoved(this);
Jorim Jaggi10abe2f2017-01-03 16:44:46 +0100455 mService.mTaskSnapshotController.onAppRemoved(this);
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700456 waitingToShow = false;
457 if (mService.mClosingApps.contains(this)) {
458 delayed = true;
459 } else if (mService.mAppTransition.isTransitionSet()) {
460 mService.mClosingApps.add(this);
461 delayed = true;
462 }
463
464 if (DEBUG_APP_TRANSITIONS) Slog.v(TAG_WM, "Removing app " + this + " delayed=" + delayed
465 + " animation=" + mAppAnimator.animation + " animating=" + mAppAnimator.animating);
466
467 if (DEBUG_ADD_REMOVE || DEBUG_TOKEN_MOVEMENT) Slog.v(TAG_WM, "removeAppToken: "
468 + this + " delayed=" + delayed + " Callers=" + Debug.getCallers(4));
469
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800470 if (startingData != null && getController() != null) {
471 getController().removeStartingWindow();
472 }
473
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800474 final TaskStack stack = getTask().mStack;
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700475 if (delayed && !isEmpty()) {
476 // set the token aside because it has an active animation to be finished
477 if (DEBUG_ADD_REMOVE || DEBUG_TOKEN_MOVEMENT) Slog.v(TAG_WM,
478 "removeAppToken make exiting: " + this);
479 stack.mExitingAppTokens.add(this);
480 mIsExiting = true;
481 } else {
482 // Make sure there is no animation running on this token, so any windows associated
483 // with it will be removed as soon as their animations are complete
484 mAppAnimator.clearAnimation();
485 mAppAnimator.animating = false;
486 removeIfPossible();
487 }
488
489 removed = true;
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700490 stopFreezingScreen(true, true);
Bryce Lee6d410262017-02-28 15:30:17 -0800491
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700492 if (mService.mFocusedApp == this) {
493 if (DEBUG_FOCUS_LIGHT) Slog.v(TAG_WM, "Removing focused app token:" + this);
494 mService.mFocusedApp = null;
495 mService.updateFocusedWindowLocked(UPDATE_FOCUS_NORMAL, true /*updateInputWindows*/);
496 mService.mInputMonitor.setFocusedAppLw(null);
497 }
498
499 if (!delayed) {
500 updateReportedVisibilityLocked();
501 }
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700502 }
503
Chong Zhange05bcb12016-07-26 17:47:29 -0700504 void clearAnimatingFlags() {
Chong Zhangb0d26702016-08-12 16:03:29 -0700505 boolean wallpaperMightChange = false;
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700506 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700507 final WindowState win = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700508 wallpaperMightChange |= win.clearAnimatingFlags();
Chong Zhange05bcb12016-07-26 17:47:29 -0700509 }
Chong Zhangb0d26702016-08-12 16:03:29 -0700510 if (wallpaperMightChange) {
511 requestUpdateWallpaperIfNeeded();
512 }
Chong Zhange05bcb12016-07-26 17:47:29 -0700513 }
514
Robert Carre12aece2016-02-02 22:43:27 -0800515 void destroySurfaces() {
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700516 destroySurfaces(false /*cleanupOnResume*/);
517 }
518
519 /**
520 * Destroy surfaces which have been marked as eligible by the animator, taking care to ensure
521 * the client has finished with them.
522 *
523 * @param cleanupOnResume whether this is done when app is resumed without fully stopped. If
524 * set to true, destroy only surfaces of removed windows, and clear relevant flags of the
525 * others so that they are ready to be reused. If set to false (common case), destroy all
526 * surfaces that's eligible, if the app is already stopped.
527 */
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700528 private void destroySurfaces(boolean cleanupOnResume) {
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -0700529 boolean destroyedSomething = false;
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700530 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700531 final WindowState win = mChildren.get(i);
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -0700532 destroyedSomething |= win.destroySurface(cleanupOnResume, mAppStopped);
Robert Carre12aece2016-02-02 22:43:27 -0800533 }
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -0700534 if (destroyedSomething) {
535 final DisplayContent dc = getDisplayContent();
Wale Ogunwalec69694a2016-10-18 13:51:15 -0700536 dc.assignWindowLayers(true /*setLayoutNeeded*/);
Robert Carre12aece2016-02-02 22:43:27 -0800537 }
538 }
539
Wale Ogunwale8d5a5422016-03-03 18:28:21 -0800540 /**
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700541 * Notify that the app is now resumed, and it was not stopped before, perform a clean
542 * up of the surfaces
Wale Ogunwale8d5a5422016-03-03 18:28:21 -0800543 */
Chong Zhangad24f962016-08-25 12:12:33 -0700544 void notifyAppResumed(boolean wasStopped, boolean allowSavedSurface) {
545 if (DEBUG_ADD_REMOVE) Slog.v(TAG, "notifyAppResumed: wasStopped=" + wasStopped
546 + " allowSavedSurface=" + allowSavedSurface + " " + this);
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700547 mAppStopped = false;
548 if (!wasStopped) {
549 destroySurfaces(true /*cleanupOnResume*/);
Wale Ogunwale8d5a5422016-03-03 18:28:21 -0800550 }
Chong Zhangad24f962016-08-25 12:12:33 -0700551 if (!allowSavedSurface) {
552 destroySavedSurfaces();
553 }
Robert Carre12aece2016-02-02 22:43:27 -0800554 }
555
Chong Zhangbef461f2015-10-27 11:38:24 -0700556 /**
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700557 * Notify that the app has stopped, and it is okay to destroy any surfaces which were
558 * keeping alive in case they were still being used.
559 */
560 void notifyAppStopped() {
561 if (DEBUG_ADD_REMOVE) Slog.v(TAG, "notifyAppStopped: " + this);
562 mAppStopped = true;
563 destroySurfaces();
564 // Remove any starting window that was added for this app if they are still around.
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800565 if (getController() != null) {
566 getController().removeStartingWindow();
567 }
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700568 }
569
570 /**
Chong Zhangbef461f2015-10-27 11:38:24 -0700571 * Checks whether we should save surfaces for this app.
572 *
573 * @return true if the surfaces should be saved, false otherwise.
574 */
575 boolean shouldSaveSurface() {
Chong Zhangbfc2f8f2016-01-29 15:50:34 -0800576 // We want to save surface if the app's windows are "allDrawn".
577 // (If we started entering animation early with saved surfaces, allDrawn
578 // should have been restored to true. So we'll save again in that case
579 // even if app didn't actually finish drawing.)
580 return allDrawn;
Robert Carr13f7be9e2015-12-02 18:39:45 -0800581 }
582
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700583 private boolean canRestoreSurfaces() {
584 for (int i = mChildren.size() -1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700585 final WindowState w = mChildren.get(i);
Chong Zhang92147042016-05-09 12:47:11 -0700586 if (w.canRestoreSurface()) {
Robert Carr13f7be9e2015-12-02 18:39:45 -0800587 return true;
588 }
Chong Zhangbef461f2015-10-27 11:38:24 -0700589 }
590 return false;
591 }
592
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700593 private void clearWasVisibleBeforeClientHidden() {
594 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700595 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700596 w.clearWasVisibleBeforeClientHidden();
Chong Zhang92147042016-05-09 12:47:11 -0700597 }
598 }
599
Chong Zhang8e4bda92016-05-04 15:08:18 -0700600 /**
601 * Whether the app has some window that is invisible in layout, but
602 * animating with saved surface.
603 */
604 boolean isAnimatingInvisibleWithSavedSurface() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700605 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700606 final WindowState w = mChildren.get(i);
Chong Zhang8e4bda92016-05-04 15:08:18 -0700607 if (w.isAnimatingInvisibleWithSavedSurface()) {
608 return true;
609 }
610 }
611 return false;
612 }
613
614 /**
615 * Hide all window surfaces that's still invisible in layout but animating
616 * with a saved surface, and mark them destroying.
617 */
618 void stopUsingSavedSurfaceLocked() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700619 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700620 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700621 w.stopUsingSavedSurface();
Chong Zhang8e4bda92016-05-04 15:08:18 -0700622 }
623 destroySurfaces();
624 }
625
Chong Zhangf58631a2016-05-24 16:02:10 -0700626 void markSavedSurfaceExiting() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700627 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700628 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700629 w.markSavedSurfaceExiting();
Chong Zhangf58631a2016-05-24 16:02:10 -0700630 }
631 }
632
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700633 void restoreSavedSurfaceForInterestingWindows() {
Chong Zhang92147042016-05-09 12:47:11 -0700634 if (!canRestoreSurfaces()) {
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700635 clearWasVisibleBeforeClientHidden();
Chong Zhangbef461f2015-10-27 11:38:24 -0700636 return;
637 }
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700638
639 // Check if all interesting windows are drawn and we can mark allDrawn=true.
640 int interestingNotDrawn = -1;
641
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700642 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700643 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700644 interestingNotDrawn = w.restoreSavedSurfaceForInterestingWindow();
Chong Zhangbef461f2015-10-27 11:38:24 -0700645 }
Chong Zhangbfc2f8f2016-01-29 15:50:34 -0800646
Chong Zhang92147042016-05-09 12:47:11 -0700647 if (!allDrawn) {
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700648 allDrawn = (interestingNotDrawn == 0);
Chong Zhang92147042016-05-09 12:47:11 -0700649 if (allDrawn) {
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700650 mService.mH.obtainMessage(NOTIFY_ACTIVITY_DRAWN, token).sendToTarget();
Chong Zhang92147042016-05-09 12:47:11 -0700651 }
652 }
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700653 clearWasVisibleBeforeClientHidden();
Chong Zhangbfc2f8f2016-01-29 15:50:34 -0800654
655 if (DEBUG_APP_TRANSITIONS || DEBUG_ANIM) Slog.d(TAG,
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700656 "restoreSavedSurfaceForInterestingWindows: " + this + " allDrawn=" + allDrawn
657 + " interestingNotDrawn=" + interestingNotDrawn);
Chong Zhangbef461f2015-10-27 11:38:24 -0700658 }
659
660 void destroySavedSurfaces() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700661 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700662 final WindowState win = mChildren.get(i);
Robert Carr13f7be9e2015-12-02 18:39:45 -0800663 win.destroySavedSurface();
Chong Zhangbef461f2015-10-27 11:38:24 -0700664 }
Chong Zhang92147042016-05-09 12:47:11 -0700665 }
666
667 void clearAllDrawn() {
668 allDrawn = false;
669 deferClearAllDrawn = false;
Chong Zhang8e4bda92016-05-04 15:08:18 -0700670 allDrawnExcludingSaved = false;
Chong Zhangbef461f2015-10-27 11:38:24 -0700671 }
672
Bryce Lee6d410262017-02-28 15:30:17 -0800673 Task getTask() {
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800674 return (Task) getParent();
Bryce Lee6d410262017-02-28 15:30:17 -0800675 }
676
Jorim Jaggi3878ca32017-02-02 17:13:05 -0800677 TaskStack getStack() {
678 final Task task = getTask();
679 if (task != null) {
680 return task.mStack;
681 } else {
682 return null;
683 }
684 }
685
Bryce Lee6d410262017-02-28 15:30:17 -0800686 @Override
687 void onParentSet() {
688 super.onParentSet();
689
690 // When the associated task is {@code null}, the {@link AppWindowToken} can no longer
691 // access visual elements like the {@link DisplayContent}. We must remove any associations
692 // such as animations.
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800693 if (!mReparenting) {
694 final Task task = getTask();
695 if (task == null) {
696 // It is possible we have been marked as a closing app earlier. We must remove ourselves
697 // from this list so we do not participate in any future animations.
698 mService.mClosingApps.remove(this);
699 } else if (task.mStack != null) {
700 task.mStack.mExitingAppTokens.remove(this);
701 }
Bryce Lee6d410262017-02-28 15:30:17 -0800702 }
703 }
704
Wale Ogunwalefa854eb2016-09-20 13:43:52 -0700705 void postWindowRemoveStartingWindowCleanup(WindowState win) {
Wale Ogunwale92fc3722016-08-05 12:19:08 -0700706 // TODO: Something smells about the code below...Is there a better way?
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700707 if (startingWindow == win) {
708 if (DEBUG_STARTING_WINDOW) Slog.v(TAG_WM, "Notify removed startingWindow " + win);
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800709 if (getController() != null) {
710 getController().removeStartingWindow();
711 }
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700712 } else if (mChildren.size() == 0 && startingData != null) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700713 // If this is the last window and we had requested a starting transition window,
714 // well there is no point now.
Jorim Jaggi02886a82016-12-06 09:10:06 -0800715 if (DEBUG_STARTING_WINDOW) Slog.v(TAG_WM, "Nulling last startingData");
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700716 startingData = null;
Jorim Jaggi829b9cd2017-01-23 16:20:53 +0100717 } else if (mChildren.size() == 1 && startingSurface != null && !isRelaunching()) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700718 // If this is the last window except for a starting transition window,
719 // we need to get rid of the starting transition.
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800720 if (getController() != null) {
721 getController().removeStartingWindow();
722 }
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700723 }
724 }
725
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700726 void removeDeadWindows() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700727 for (int winNdx = mChildren.size() - 1; winNdx >= 0; --winNdx) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700728 WindowState win = mChildren.get(winNdx);
Chong Zhang112eb8c2015-11-02 11:17:00 -0800729 if (win.mAppDied) {
Wale Ogunwale92fc3722016-08-05 12:19:08 -0700730 if (DEBUG_WINDOW_MOVEMENT || DEBUG_ADD_REMOVE) Slog.w(TAG,
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700731 "removeDeadWindows: " + win);
Chong Zhang112eb8c2015-11-02 11:17:00 -0800732 // Set mDestroying, we don't want any animation or delayed removal here.
733 win.mDestroying = true;
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700734 // Also removes child windows.
Wale Ogunwale92fc3722016-08-05 12:19:08 -0700735 win.removeIfPossible();
Chong Zhang112eb8c2015-11-02 11:17:00 -0800736 }
737 }
738 }
739
Wale Ogunwalee42d0e12016-05-02 16:40:59 -0700740 boolean hasWindowsAlive() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700741 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700742 // No need to loop through child windows as the answer should be the same as that of the
743 // parent window.
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700744 if (!(mChildren.get(i)).mAppDied) {
Wale Ogunwalee42d0e12016-05-02 16:40:59 -0700745 return true;
746 }
747 }
748 return false;
749 }
750
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700751 void setWillReplaceWindows(boolean animate) {
Wale Ogunwale455fac52016-07-21 07:24:49 -0700752 if (DEBUG_ADD_REMOVE) Slog.d(TAG_WM,
753 "Marking app token " + this + " with replacing windows.");
Robert Carra1eb4392015-12-10 12:43:51 -0800754
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700755 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700756 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700757 w.setWillReplaceWindow(animate);
Robert Carra1eb4392015-12-10 12:43:51 -0800758 }
759 if (animate) {
760 // Set-up dummy animation so we can start treating windows associated with this
761 // token like they are in transition before the new app window is ready for us to
762 // run the real transition animation.
763 if (DEBUG_APP_TRANSITIONS) Slog.v(TAG_WM,
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700764 "setWillReplaceWindow() Setting dummy animation on: " + this);
Robert Carra1eb4392015-12-10 12:43:51 -0800765 mAppAnimator.setDummyAnimation();
766 }
767 }
768
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700769 void setWillReplaceChildWindows() {
Wale Ogunwale455fac52016-07-21 07:24:49 -0700770 if (DEBUG_ADD_REMOVE) Slog.d(TAG_WM, "Marking app token " + this
Robert Carr23fa16b2016-01-13 13:19:58 -0800771 + " with replacing child windows.");
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700772 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700773 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700774 w.setWillReplaceChildWindows();
Robert Carr23fa16b2016-01-13 13:19:58 -0800775 }
776 }
777
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700778 void clearWillReplaceWindows() {
Wale Ogunwale455fac52016-07-21 07:24:49 -0700779 if (DEBUG_ADD_REMOVE) Slog.d(TAG_WM,
780 "Resetting app token " + this + " of replacing window marks.");
Chong Zhangf596cd52016-01-05 13:42:44 -0800781
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700782 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700783 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700784 w.clearWillReplaceWindow();
Chong Zhangf596cd52016-01-05 13:42:44 -0800785 }
786 }
787
Chong Zhang4d7369a2016-04-25 16:09:14 -0700788 void requestUpdateWallpaperIfNeeded() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700789 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700790 final WindowState w = mChildren.get(i);
Chong Zhang4d7369a2016-04-25 16:09:14 -0700791 w.requestUpdateWallpaperIfNeeded();
792 }
793 }
794
Chong Zhangd78ddb42016-03-02 17:01:14 -0800795 boolean isRelaunching() {
796 return mPendingRelaunchCount > 0;
797 }
798
799 void startRelaunching() {
800 if (canFreezeBounds()) {
801 freezeBounds();
802 }
Robert Carrd5c7dd62017-03-08 10:39:30 -0800803
804 // In the process of tearing down before relaunching, the app will
805 // try and clean up it's child surfaces. We need to prevent this from
806 // happening, so we sever the children, transfering their ownership
807 // from the client it-self to the parent surface (owned by us).
808 for (int i = mChildren.size() - 1; i >= 0; i--) {
809 final WindowState w = mChildren.get(i);
810 w.mWinAnimator.detachChildren();
811 }
812
Chong Zhangd78ddb42016-03-02 17:01:14 -0800813 mPendingRelaunchCount++;
814 }
815
816 void finishRelaunching() {
817 if (canFreezeBounds()) {
818 unfreezeBounds();
819 }
820 if (mPendingRelaunchCount > 0) {
821 mPendingRelaunchCount--;
822 }
823 }
824
Wale Ogunwale8fd75422016-06-24 14:20:37 -0700825 void clearRelaunching() {
Wale Ogunwale37dbafc2016-06-27 10:15:20 -0700826 if (mPendingRelaunchCount == 0) {
827 return;
828 }
Wale Ogunwale8fd75422016-06-24 14:20:37 -0700829 if (canFreezeBounds()) {
830 unfreezeBounds();
831 }
832 mPendingRelaunchCount = 0;
833 }
834
Wale Ogunwale07bcab72016-10-14 15:30:09 -0700835 /**
836 * Returns true if the new child window we are adding to this token is considered greater than
837 * the existing child window in this token in terms of z-order.
838 */
839 @Override
840 protected boolean isFirstChildWindowGreaterThanSecond(WindowState newWindow,
841 WindowState existingWindow) {
842 final int type1 = newWindow.mAttrs.type;
843 final int type2 = existingWindow.mAttrs.type;
844
845 // Base application windows should be z-ordered BELOW all other windows in the app token.
846 if (type1 == TYPE_BASE_APPLICATION && type2 != TYPE_BASE_APPLICATION) {
847 return false;
848 } else if (type1 != TYPE_BASE_APPLICATION && type2 == TYPE_BASE_APPLICATION) {
849 return true;
850 }
851
852 // Starting windows should be z-ordered ABOVE all other windows in the app token.
853 if (type1 == TYPE_APPLICATION_STARTING && type2 != TYPE_APPLICATION_STARTING) {
854 return true;
855 } else if (type1 != TYPE_APPLICATION_STARTING && type2 == TYPE_APPLICATION_STARTING) {
856 return false;
857 }
858
859 // Otherwise the new window is greater than the existing window.
860 return true;
861 }
862
Wale Ogunwale92fc3722016-08-05 12:19:08 -0700863 @Override
Robert Carra1eb4392015-12-10 12:43:51 -0800864 void addWindow(WindowState w) {
Wale Ogunwale92fc3722016-08-05 12:19:08 -0700865 super.addWindow(w);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700866
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700867 boolean gotReplacementWindow = false;
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700868 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700869 final WindowState candidate = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700870 gotReplacementWindow |= candidate.setReplacementWindowIfNeeded(w);
871 }
Wale Ogunwale92fc3722016-08-05 12:19:08 -0700872
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700873 // if we got a replacement window, reset the timeout to give drawing more time
874 if (gotReplacementWindow) {
875 mService.scheduleWindowReplacementTimeouts(this);
Robert Carra1eb4392015-12-10 12:43:51 -0800876 }
Jorim Jaggife762342016-10-13 14:33:27 +0200877 checkKeyguardFlagsChanged();
878 }
879
880 @Override
881 void removeChild(WindowState child) {
882 super.removeChild(child);
883 checkKeyguardFlagsChanged();
Robert Carra1eb4392015-12-10 12:43:51 -0800884 }
885
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -0700886 private boolean waitingForReplacement() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700887 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700888 final WindowState candidate = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700889 if (candidate.waitingForReplacement()) {
Robert Carra1eb4392015-12-10 12:43:51 -0800890 return true;
891 }
892 }
893 return false;
894 }
895
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700896 void onWindowReplacementTimeout() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700897 for (int i = mChildren.size() - 1; i >= 0; --i) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700898 (mChildren.get(i)).onWindowReplacementTimeout();
Robert Carra1eb4392015-12-10 12:43:51 -0800899 }
900 }
901
Winson Chung30480042017-01-26 10:55:34 -0800902 void reparent(Task task, int position) {
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800903 final Task currentTask = getTask();
904 if (task == currentTask) {
Winson Chung30480042017-01-26 10:55:34 -0800905 throw new IllegalArgumentException(
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800906 "window token=" + this + " already child of task=" + currentTask);
Winson Chung30480042017-01-26 10:55:34 -0800907 }
Bryce Lee6d410262017-02-28 15:30:17 -0800908
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800909 if (currentTask.mStack != task.mStack) {
Bryce Lee6d410262017-02-28 15:30:17 -0800910 throw new IllegalArgumentException(
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800911 "window token=" + this + " current task=" + currentTask
Bryce Lee6d410262017-02-28 15:30:17 -0800912 + " belongs to a different stack than " + task);
913 }
914
Winson Chung30480042017-01-26 10:55:34 -0800915 if (DEBUG_ADD_REMOVE) Slog.i(TAG, "reParentWindowToken: removing window token=" + this
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800916 + " from task=" + currentTask);
Winson Chung30480042017-01-26 10:55:34 -0800917 final DisplayContent prevDisplayContent = getDisplayContent();
918
Bryce Lee6d410262017-02-28 15:30:17 -0800919 mReparenting = true;
920
Winson Chung30480042017-01-26 10:55:34 -0800921 getParent().removeChild(this);
922 task.addChild(this, position);
923
Bryce Lee6d410262017-02-28 15:30:17 -0800924 mReparenting = false;
925
Winson Chung30480042017-01-26 10:55:34 -0800926 // Relayout display(s).
927 final DisplayContent displayContent = task.getDisplayContent();
928 displayContent.setLayoutNeeded();
929 if (prevDisplayContent != displayContent) {
930 onDisplayChanged(displayContent);
931 prevDisplayContent.setLayoutNeeded();
932 }
933 }
934
Chong Zhangd78ddb42016-03-02 17:01:14 -0800935 private boolean canFreezeBounds() {
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800936 final Task task = getTask();
937
Chong Zhangd78ddb42016-03-02 17:01:14 -0800938 // For freeform windows, we can't freeze the bounds at the moment because this would make
939 // the resizing unresponsive.
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800940 return task != null && !task.inFreeformWorkspace();
Chong Zhangd78ddb42016-03-02 17:01:14 -0800941 }
942
Jorim Jaggi0429f352015-12-22 16:29:16 +0100943 /**
944 * Freezes the task bounds. The size of this task reported the app will be fixed to the bounds
945 * freezed by {@link Task#prepareFreezingBounds} until {@link #unfreezeBounds} gets called, even
946 * if they change in the meantime. If the bounds are already frozen, the bounds will be frozen
947 * with a queue.
948 */
Chong Zhangd78ddb42016-03-02 17:01:14 -0800949 private void freezeBounds() {
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800950 final Task task = getTask();
951 mFrozenBounds.offer(new Rect(task.mPreparedFrozenBounds));
Jorim Jaggi26c8c422016-05-09 19:57:25 -0700952
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800953 if (task.mPreparedFrozenMergedConfig.equals(Configuration.EMPTY)) {
Jorim Jaggi26c8c422016-05-09 19:57:25 -0700954 // We didn't call prepareFreezingBounds on the task, so use the current value.
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800955 mFrozenMergedConfig.offer(new Configuration(task.getConfiguration()));
Jorim Jaggi26c8c422016-05-09 19:57:25 -0700956 } else {
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800957 mFrozenMergedConfig.offer(new Configuration(task.mPreparedFrozenMergedConfig));
Jorim Jaggi26c8c422016-05-09 19:57:25 -0700958 }
Andrii Kulianb10330d2016-09-16 13:51:46 -0700959 // Calling unset() to make it equal to Configuration.EMPTY.
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800960 task.mPreparedFrozenMergedConfig.unset();
Jorim Jaggi0429f352015-12-22 16:29:16 +0100961 }
962
963 /**
964 * Unfreezes the previously frozen bounds. See {@link #freezeBounds}.
965 */
Chong Zhangd78ddb42016-03-02 17:01:14 -0800966 private void unfreezeBounds() {
Wale Ogunwale37dbafc2016-06-27 10:15:20 -0700967 if (!mFrozenBounds.isEmpty()) {
968 mFrozenBounds.remove();
969 }
970 if (!mFrozenMergedConfig.isEmpty()) {
971 mFrozenMergedConfig.remove();
972 }
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700973 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700974 final WindowState win = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700975 win.onUnfreezeBounds();
Jorim Jaggi4846ee32016-01-07 17:39:12 +0100976 }
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700977 mService.mWindowPlacerLocked.performSurfacePlacement();
Jorim Jaggi0429f352015-12-22 16:29:16 +0100978 }
979
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -0700980 void setAppLayoutChanges(int changes, String reason) {
981 if (!mChildren.isEmpty()) {
982 final DisplayContent dc = getDisplayContent();
983 dc.pendingLayoutChanges |= changes;
984 if (DEBUG_LAYOUT_REPEATS) {
985 mService.mWindowPlacerLocked.debugLayoutRepeats(reason, dc.pendingLayoutChanges);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700986 }
987 }
988 }
989
990 void removeReplacedWindowIfNeeded(WindowState replacement) {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700991 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700992 final WindowState win = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700993 if (win.removeReplacedWindowIfNeeded(replacement)) {
994 return;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700995 }
996 }
997 }
998
999 void startFreezingScreen() {
1000 if (DEBUG_ORIENTATION) logWithStack(TAG, "Set freezing of " + appToken + ": hidden="
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001001 + hidden + " freezing=" + mAppAnimator.freezingScreen + " hiddenRequested="
1002 + hiddenRequested);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001003 if (!hiddenRequested) {
1004 if (!mAppAnimator.freezingScreen) {
1005 mAppAnimator.freezingScreen = true;
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001006 mService.registerAppFreezeListener(this);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001007 mAppAnimator.lastFreezeDuration = 0;
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001008 mService.mAppsFreezingScreen++;
1009 if (mService.mAppsFreezingScreen == 1) {
1010 mService.startFreezingDisplayLocked(false, 0, 0);
1011 mService.mH.removeMessages(H.APP_FREEZE_TIMEOUT);
1012 mService.mH.sendEmptyMessageDelayed(H.APP_FREEZE_TIMEOUT, 2000);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001013 }
1014 }
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001015 final int count = mChildren.size();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001016 for (int i = 0; i < count; i++) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07001017 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001018 w.onStartFreezingScreen();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001019 }
1020 }
1021 }
1022
1023 void stopFreezingScreen(boolean unfreezeSurfaceNow, boolean force) {
1024 if (!mAppAnimator.freezingScreen) {
1025 return;
1026 }
1027 if (DEBUG_ORIENTATION) Slog.v(TAG_WM, "Clear freezing of " + this + " force=" + force);
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001028 final int count = mChildren.size();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001029 boolean unfrozeWindows = false;
1030 for (int i = 0; i < count; i++) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07001031 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001032 unfrozeWindows |= w.onStopFreezingScreen();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001033 }
1034 if (force || unfrozeWindows) {
1035 if (DEBUG_ORIENTATION) Slog.v(TAG_WM, "No longer freezing: " + this);
1036 mAppAnimator.freezingScreen = false;
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001037 mService.unregisterAppFreezeListener(this);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001038 mAppAnimator.lastFreezeDuration =
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001039 (int)(SystemClock.elapsedRealtime() - mService.mDisplayFreezeTime);
1040 mService.mAppsFreezingScreen--;
1041 mService.mLastFinishedFreezeSource = this;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001042 }
1043 if (unfreezeSurfaceNow) {
1044 if (unfrozeWindows) {
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001045 mService.mWindowPlacerLocked.performSurfacePlacement();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001046 }
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001047 mService.stopFreezingDisplayLocked();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001048 }
1049 }
1050
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001051 @Override
1052 public void onAppFreezeTimeout() {
1053 Slog.w(TAG_WM, "Force clearing freeze: " + this);
1054 stopFreezingScreen(true, true);
1055 }
1056
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001057 boolean transferStartingWindow(IBinder transferFrom) {
Wale Ogunwale02319a62016-09-26 15:21:22 -07001058 final AppWindowToken fromToken = getDisplayContent().getAppWindowToken(transferFrom);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001059 if (fromToken == null) {
1060 return false;
1061 }
1062
1063 final WindowState tStartingWindow = fromToken.startingWindow;
Jorim Jaggiba41f4b2016-12-14 17:43:07 -08001064 if (tStartingWindow != null && fromToken.startingSurface != null) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001065 // In this case, the starting icon has already been displayed, so start
1066 // letting windows get shown immediately without any more transitions.
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001067 mService.mSkipAppTransitionAnimation = true;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001068
1069 if (DEBUG_STARTING_WINDOW) Slog.v(TAG_WM, "Moving existing starting " + tStartingWindow
1070 + " from " + fromToken + " to " + this);
1071
1072 final long origId = Binder.clearCallingIdentity();
1073
1074 // Transfer the starting window over to the new token.
1075 startingData = fromToken.startingData;
Jorim Jaggiba41f4b2016-12-14 17:43:07 -08001076 startingSurface = fromToken.startingSurface;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001077 startingDisplayed = fromToken.startingDisplayed;
1078 fromToken.startingDisplayed = false;
1079 startingWindow = tStartingWindow;
1080 reportedVisible = fromToken.reportedVisible;
1081 fromToken.startingData = null;
Jorim Jaggiba41f4b2016-12-14 17:43:07 -08001082 fromToken.startingSurface = null;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001083 fromToken.startingWindow = null;
1084 fromToken.startingMoved = true;
1085 tStartingWindow.mToken = this;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001086 tStartingWindow.mAppToken = this;
1087
Wale Ogunwale6213caa2016-12-02 16:47:15 +00001088 if (DEBUG_ADD_REMOVE || DEBUG_STARTING_WINDOW) Slog.v(TAG_WM,
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001089 "Removing starting " + tStartingWindow + " from " + fromToken);
Wale Ogunwalefa854eb2016-09-20 13:43:52 -07001090 fromToken.removeChild(tStartingWindow);
1091 fromToken.postWindowRemoveStartingWindowCleanup(tStartingWindow);
Wale Ogunwale92fc3722016-08-05 12:19:08 -07001092 addWindow(tStartingWindow);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001093
1094 // Propagate other interesting state between the tokens. If the old token is displayed,
1095 // we should immediately force the new one to be displayed. If it is animating, we need
1096 // to move that animation to the new one.
1097 if (fromToken.allDrawn) {
1098 allDrawn = true;
1099 deferClearAllDrawn = fromToken.deferClearAllDrawn;
1100 }
1101 if (fromToken.firstWindowDrawn) {
1102 firstWindowDrawn = true;
1103 }
1104 if (!fromToken.hidden) {
1105 hidden = false;
1106 hiddenRequested = false;
1107 }
1108 if (clientHidden != fromToken.clientHidden) {
1109 clientHidden = fromToken.clientHidden;
1110 sendAppVisibilityToClients();
1111 }
1112 fromToken.mAppAnimator.transferCurrentAnimation(
1113 mAppAnimator, tStartingWindow.mWinAnimator);
1114
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001115 mService.updateFocusedWindowLocked(
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001116 UPDATE_FOCUS_WILL_PLACE_SURFACES, true /*updateInputWindows*/);
Andrii Kulian5406e7a2016-10-21 11:55:23 -07001117 getDisplayContent().setLayoutNeeded();
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001118 mService.mWindowPlacerLocked.performSurfacePlacement();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001119 Binder.restoreCallingIdentity(origId);
1120 return true;
1121 } else if (fromToken.startingData != null) {
1122 // The previous app was getting ready to show a
1123 // starting window, but hasn't yet done so. Steal it!
1124 if (DEBUG_STARTING_WINDOW) Slog.v(TAG_WM,
1125 "Moving pending starting from " + fromToken + " to " + this);
1126 startingData = fromToken.startingData;
1127 fromToken.startingData = null;
1128 fromToken.startingMoved = true;
Jorim Jaggiba41f4b2016-12-14 17:43:07 -08001129 if (getController() != null) {
1130 getController().scheduleAddStartingWindow();
1131 }
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001132 return true;
1133 }
1134
1135 final AppWindowAnimator tAppAnimator = fromToken.mAppAnimator;
1136 final AppWindowAnimator wAppAnimator = mAppAnimator;
1137 if (tAppAnimator.thumbnail != null) {
1138 // The old token is animating with a thumbnail, transfer that to the new token.
1139 if (wAppAnimator.thumbnail != null) {
1140 wAppAnimator.thumbnail.destroy();
1141 }
1142 wAppAnimator.thumbnail = tAppAnimator.thumbnail;
1143 wAppAnimator.thumbnailLayer = tAppAnimator.thumbnailLayer;
1144 wAppAnimator.thumbnailAnimation = tAppAnimator.thumbnailAnimation;
1145 tAppAnimator.thumbnail = null;
1146 }
1147 return false;
1148 }
1149
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001150 boolean isLastWindow(WindowState win) {
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001151 return mChildren.size() == 1 && mChildren.get(0) == win;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001152 }
1153
1154 void setAllAppWinAnimators() {
1155 final ArrayList<WindowStateAnimator> allAppWinAnimators = mAppAnimator.mAllAppWinAnimators;
1156 allAppWinAnimators.clear();
1157
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001158 final int windowsCount = mChildren.size();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001159 for (int j = 0; j < windowsCount; j++) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07001160 (mChildren.get(j)).addWinAnimatorToList(allAppWinAnimators);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001161 }
1162 }
1163
Wale Ogunwale9adfe572016-09-08 20:43:58 -07001164 @Override
1165 void onAppTransitionDone() {
1166 sendingToBottom = false;
1167 }
1168
Wale Ogunwale51362492016-09-08 17:49:17 -07001169 /**
1170 * We override because this class doesn't want its children affecting its reported orientation
1171 * in anyway.
1172 */
1173 @Override
1174 int getOrientation() {
Bryce Leea163b762017-01-24 11:05:01 -08001175 if (fillsParent() && (isVisible() || mService.mOpeningApps.contains(this))) {
1176 return mOrientation;
Wale Ogunwale51362492016-09-08 17:49:17 -07001177 }
Bryce Leea163b762017-01-24 11:05:01 -08001178
1179 return SCREEN_ORIENTATION_UNSET;
Wale Ogunwale51362492016-09-08 17:49:17 -07001180 }
1181
Wale Ogunwaleb198b742016-12-01 08:44:09 -08001182 /** Returns the app's preferred orientation regardless of its currently visibility state. */
1183 int getOrientationIgnoreVisibility() {
1184 return mOrientation;
1185 }
1186
Craig Mautnerdbb79912012-03-01 18:59:14 -08001187 @Override
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -07001188 void checkAppWindowsReadyToShow() {
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001189 if (allDrawn == mAppAnimator.allDrawn) {
1190 return;
1191 }
1192
1193 mAppAnimator.allDrawn = allDrawn;
1194 if (!allDrawn) {
1195 return;
1196 }
1197
1198 // The token has now changed state to having all windows shown... what to do, what to do?
1199 if (mAppAnimator.freezingScreen) {
1200 mAppAnimator.showAllWindowsLocked();
1201 stopFreezingScreen(false, true);
1202 if (DEBUG_ORIENTATION) Slog.i(TAG,
1203 "Setting mOrientationChangeComplete=true because wtoken " + this
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001204 + " numInteresting=" + mNumInterestingWindows + " numDrawn=" + mNumDrawnWindows);
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001205 // This will set mOrientationChangeComplete and cause a pass through layout.
1206 setAppLayoutChanges(FINISH_LAYOUT_REDO_WALLPAPER,
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -07001207 "checkAppWindowsReadyToShow: freezingScreen");
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001208 } else {
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -07001209 setAppLayoutChanges(FINISH_LAYOUT_REDO_ANIM, "checkAppWindowsReadyToShow");
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001210
1211 // We can now show all of the drawn windows!
1212 if (!mService.mOpeningApps.contains(this)) {
1213 mService.mAnimator.orAnimating(mAppAnimator.showAllWindowsLocked());
1214 }
1215 }
1216 }
1217
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001218 void updateAllDrawn(DisplayContent dc) {
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001219 if (!allDrawn) {
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001220 final int numInteresting = mNumInterestingWindows;
1221 if (numInteresting > 0 && mNumDrawnWindows >= numInteresting) {
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001222 if (DEBUG_VISIBILITY) Slog.v(TAG, "allDrawn: " + this
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001223 + " interesting=" + numInteresting + " drawn=" + mNumDrawnWindows);
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001224 allDrawn = true;
1225 // Force an additional layout pass where
1226 // WindowStateAnimator#commitFinishDrawingLocked() will call performShowLocked().
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001227 dc.setLayoutNeeded();
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001228 mService.mH.obtainMessage(NOTIFY_ACTIVITY_DRAWN, token).sendToTarget();
1229 }
1230 }
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001231
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001232 if (!allDrawnExcludingSaved) {
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001233 int numInteresting = mNumInterestingWindowsExcludingSaved;
1234 if (numInteresting > 0 && mNumDrawnWindowsExcludingSaved >= numInteresting) {
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001235 if (DEBUG_VISIBILITY) Slog.v(TAG, "allDrawnExcludingSaved: " + this
1236 + " interesting=" + numInteresting
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001237 + " drawn=" + mNumDrawnWindowsExcludingSaved);
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001238 allDrawnExcludingSaved = true;
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001239 dc.setLayoutNeeded();
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001240 if (isAnimatingInvisibleWithSavedSurface()
1241 && !mService.mFinishedEarlyAnim.contains(this)) {
1242 mService.mFinishedEarlyAnim.add(this);
1243 }
1244 }
1245 }
1246 }
1247
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001248 /**
1249 * Updated this app token tracking states for interesting and drawn windows based on the window.
1250 *
1251 * @return Returns true if the input window is considered interesting and drawn while all the
1252 * windows in this app token where not considered drawn as of the last pass.
1253 */
1254 boolean updateDrawnWindowStates(WindowState w) {
1255 if (DEBUG_STARTING_WINDOW && w == startingWindow) {
1256 Slog.d(TAG, "updateWindows: starting " + w + " isOnScreen=" + w.isOnScreen()
1257 + " allDrawn=" + allDrawn + " freezingScreen=" + mAppAnimator.freezingScreen);
1258 }
1259
1260 if (allDrawn && allDrawnExcludingSaved && !mAppAnimator.freezingScreen) {
1261 return false;
1262 }
1263
1264 if (mLastTransactionSequence != mService.mTransactionSequence) {
1265 mLastTransactionSequence = mService.mTransactionSequence;
1266 mNumInterestingWindows = mNumDrawnWindows = 0;
1267 mNumInterestingWindowsExcludingSaved = 0;
1268 mNumDrawnWindowsExcludingSaved = 0;
1269 startingDisplayed = false;
1270 }
1271
1272 final WindowStateAnimator winAnimator = w.mWinAnimator;
1273
1274 boolean isInterestingAndDrawn = false;
1275
1276 if (!allDrawn && w.mightAffectAllDrawn(false /* visibleOnly */)) {
1277 if (DEBUG_VISIBILITY || DEBUG_ORIENTATION) {
1278 Slog.v(TAG, "Eval win " + w + ": isDrawn=" + w.isDrawnLw()
1279 + ", isAnimationSet=" + winAnimator.isAnimationSet());
1280 if (!w.isDrawnLw()) {
1281 Slog.v(TAG, "Not displayed: s=" + winAnimator.mSurfaceController
1282 + " pv=" + w.mPolicyVisibility
1283 + " mDrawState=" + winAnimator.drawStateToString()
1284 + " ph=" + w.isParentWindowHidden() + " th=" + hiddenRequested
1285 + " a=" + winAnimator.mAnimating);
1286 }
1287 }
1288
1289 if (w != startingWindow) {
1290 if (w.isInteresting()) {
1291 mNumInterestingWindows++;
1292 if (w.isDrawnLw()) {
1293 mNumDrawnWindows++;
1294
1295 if (DEBUG_VISIBILITY || DEBUG_ORIENTATION) Slog.v(TAG, "tokenMayBeDrawn: "
1296 + this + " w=" + w + " numInteresting=" + mNumInterestingWindows
1297 + " freezingScreen=" + mAppAnimator.freezingScreen
1298 + " mAppFreezing=" + w.mAppFreezing);
1299
1300 isInterestingAndDrawn = true;
1301 }
1302 }
1303 } else if (w.isDrawnLw()) {
Jorim Jaggi3878ca32017-02-02 17:13:05 -08001304 if (getController() != null) {
1305 getController().reportStartingWindowDrawn();
1306 }
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001307 startingDisplayed = true;
1308 }
1309 }
1310
1311 if (!allDrawnExcludingSaved && w.mightAffectAllDrawn(true /* visibleOnly */)) {
1312 if (w != startingWindow && w.isInteresting()) {
1313 mNumInterestingWindowsExcludingSaved++;
1314 if (w.isDrawnLw() && !w.isAnimatingWithSavedSurface()) {
1315 mNumDrawnWindowsExcludingSaved++;
1316
1317 if (DEBUG_VISIBILITY || DEBUG_ORIENTATION) Slog.v(TAG,
1318 "tokenMayBeDrawnExcludingSaved: " + this + " w=" + w
1319 + " numInteresting=" + mNumInterestingWindowsExcludingSaved
1320 + " freezingScreen=" + mAppAnimator.freezingScreen
1321 + " mAppFreezing=" + w.mAppFreezing);
1322
1323 isInterestingAndDrawn = true;
1324 }
1325 }
1326 }
1327
1328 return isInterestingAndDrawn;
1329 }
1330
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001331 @Override
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -07001332 void stepAppWindowsAnimation(long currentTime) {
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001333 mAppAnimator.wasAnimating = mAppAnimator.animating;
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -07001334 if (mAppAnimator.stepAnimationLocked(currentTime)) {
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001335 mAppAnimator.animating = true;
1336 mService.mAnimator.setAnimating(true);
1337 mService.mAnimator.mAppWindowAnimating = true;
1338 } else if (mAppAnimator.wasAnimating) {
1339 // stopped animating, do one more pass through the layout
Wale Ogunwale1e129a42016-11-21 13:03:47 -08001340 setAppLayoutChanges(FINISH_LAYOUT_REDO_WALLPAPER,
1341 DEBUG_LAYOUT_REPEATS ? "appToken " + this + " done" : null);
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001342 if (DEBUG_ANIM) Slog.v(TAG, "updateWindowsApps...: done animating " + this);
1343 }
1344 }
1345
Wale Ogunwale9adfe572016-09-08 20:43:58 -07001346 @Override
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08001347 boolean forAllWindows(ToBooleanFunction<WindowState> callback, boolean traverseTopToBottom) {
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07001348 // For legacy reasons we process the TaskStack.mExitingAppTokens first in DisplayContent
1349 // before the non-exiting app tokens. So, we skip the exiting app tokens here.
1350 // TODO: Investigate if we need to continue to do this or if we can just process them
1351 // in-order.
1352 if (mIsExiting && !waitingForReplacement()) {
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08001353 return false;
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07001354 }
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08001355 return forAllWindowsUnchecked(callback, traverseTopToBottom);
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07001356 }
1357
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08001358 boolean forAllWindowsUnchecked(ToBooleanFunction<WindowState> callback,
1359 boolean traverseTopToBottom) {
1360 return super.forAllWindows(callback, traverseTopToBottom);
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07001361 }
1362
1363 @Override
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001364 AppWindowToken asAppWindowToken() {
1365 // I am an app window token!
1366 return this;
1367 }
1368
1369 @Override
Wale Ogunwale51362492016-09-08 17:49:17 -07001370 boolean fillsParent() {
1371 return mFillsParent;
1372 }
1373
1374 void setFillsParent(boolean fillsParent) {
1375 mFillsParent = fillsParent;
1376 }
1377
Jorim Jaggife762342016-10-13 14:33:27 +02001378 boolean containsDismissKeyguardWindow() {
1379 for (int i = mChildren.size() - 1; i >= 0; i--) {
1380 if ((mChildren.get(i).mAttrs.flags & FLAG_DISMISS_KEYGUARD) != 0) {
1381 return true;
1382 }
1383 }
1384 return false;
1385 }
1386
1387 boolean containsShowWhenLockedWindow() {
1388 for (int i = mChildren.size() - 1; i >= 0; i--) {
1389 if ((mChildren.get(i).mAttrs.flags & FLAG_SHOW_WHEN_LOCKED) != 0) {
1390 return true;
1391 }
1392 }
1393 return false;
1394 }
1395
1396 void checkKeyguardFlagsChanged() {
1397 final boolean containsDismissKeyguard = containsDismissKeyguardWindow();
1398 final boolean containsShowWhenLocked = containsShowWhenLockedWindow();
1399 if (containsDismissKeyguard != mLastContainsDismissKeyguardWindow
1400 || containsShowWhenLocked != mLastContainsShowWhenLockedWindow) {
1401 mService.notifyKeyguardFlagsChanged(null /* callback */);
1402 }
1403 mLastContainsDismissKeyguardWindow = containsDismissKeyguard;
1404 mLastContainsShowWhenLockedWindow = containsShowWhenLocked;
1405 }
1406
Wale Ogunwale6213caa2016-12-02 16:47:15 +00001407 WindowState getImeTargetBelowWindow(WindowState w) {
1408 final int index = mChildren.indexOf(w);
1409 if (index > 0) {
1410 final WindowState target = mChildren.get(index - 1);
1411 if (target.canBeImeTarget()) {
1412 return target;
1413 }
1414 }
1415 return null;
1416 }
1417
1418 WindowState getHighestAnimLayerWindow(WindowState currentTarget) {
1419 WindowState candidate = null;
1420 for (int i = mChildren.indexOf(currentTarget); i >= 0; i--) {
1421 final WindowState w = mChildren.get(i);
1422 if (w.mRemoved) {
1423 continue;
1424 }
1425 if (candidate == null || w.mWinAnimator.mAnimLayer >
1426 candidate.mWinAnimator.mAnimLayer) {
1427 candidate = w;
1428 }
1429 }
1430 return candidate;
1431 }
1432
Jorim Jaggi0fe7ce962017-02-22 16:45:48 +01001433 void setDisablePreviewSnapshots(boolean disable) {
1434 mDisbalePreviewScreenshots = disable;
1435 }
1436
1437 boolean shouldDisablePreviewScreenshots() {
1438 return mDisbalePreviewScreenshots;
1439 }
1440
Wale Ogunwale51362492016-09-08 17:49:17 -07001441 @Override
Robert Carrdee1b3f2017-02-27 11:33:33 -08001442 int getAnimLayerAdjustment() {
1443 return mAppAnimator.animLayerAdjustment;
1444 }
1445
1446 @Override
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001447 void dump(PrintWriter pw, String prefix) {
1448 super.dump(pw, prefix);
1449 if (appToken != null) {
Wale Ogunwale72919d22016-12-08 18:58:50 -08001450 pw.println(prefix + "app=true mVoiceInteraction=" + mVoiceInteraction);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001451 }
Bryce Lee7fbeb8a2017-03-02 08:42:30 -08001452 pw.print(prefix); pw.print("task="); pw.println(getTask());
Wale Ogunwale51362492016-09-08 17:49:17 -07001453 pw.print(prefix); pw.print(" mFillsParent="); pw.print(mFillsParent);
1454 pw.print(" mOrientation="); pw.println(mOrientation);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001455 pw.print(prefix); pw.print("hiddenRequested="); pw.print(hiddenRequested);
1456 pw.print(" clientHidden="); pw.print(clientHidden);
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -07001457 pw.print(" reportedDrawn="); pw.print(reportedDrawn);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001458 pw.print(" reportedVisible="); pw.println(reportedVisible);
Craig Mautner59431632012-04-04 11:56:44 -07001459 if (paused) {
1460 pw.print(prefix); pw.print("paused="); pw.println(paused);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001461 }
Wale Ogunwale9017ec02016-02-25 08:55:25 -08001462 if (mAppStopped) {
1463 pw.print(prefix); pw.print("mAppStopped="); pw.println(mAppStopped);
1464 }
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001465 if (mNumInterestingWindows != 0 || mNumDrawnWindows != 0
Craig Mautner6fbda632012-07-03 09:26:39 -07001466 || allDrawn || mAppAnimator.allDrawn) {
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001467 pw.print(prefix); pw.print("mNumInterestingWindows=");
1468 pw.print(mNumInterestingWindows);
1469 pw.print(" mNumDrawnWindows="); pw.print(mNumDrawnWindows);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001470 pw.print(" inPendingTransaction="); pw.print(inPendingTransaction);
Craig Mautner6fbda632012-07-03 09:26:39 -07001471 pw.print(" allDrawn="); pw.print(allDrawn);
1472 pw.print(" (animator="); pw.print(mAppAnimator.allDrawn);
1473 pw.println(")");
1474 }
1475 if (inPendingTransaction) {
1476 pw.print(prefix); pw.print("inPendingTransaction=");
1477 pw.println(inPendingTransaction);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001478 }
Craig Mautner799bc1d2015-01-14 10:33:48 -08001479 if (startingData != null || removed || firstWindowDrawn || mIsExiting) {
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001480 pw.print(prefix); pw.print("startingData="); pw.print(startingData);
1481 pw.print(" removed="); pw.print(removed);
Craig Mautner3d7ca312015-01-08 10:56:00 -08001482 pw.print(" firstWindowDrawn="); pw.print(firstWindowDrawn);
Craig Mautner799bc1d2015-01-14 10:33:48 -08001483 pw.print(" mIsExiting="); pw.println(mIsExiting);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001484 }
Jorim Jaggiba41f4b2016-12-14 17:43:07 -08001485 if (startingWindow != null || startingSurface != null
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001486 || startingDisplayed || startingMoved) {
1487 pw.print(prefix); pw.print("startingWindow="); pw.print(startingWindow);
Jorim Jaggiba41f4b2016-12-14 17:43:07 -08001488 pw.print(" startingSurface="); pw.print(startingSurface);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001489 pw.print(" startingDisplayed="); pw.print(startingDisplayed);
Wale Ogunwale9017ec02016-02-25 08:55:25 -08001490 pw.print(" startingMoved="); pw.println(startingMoved);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001491 }
Jorim Jaggi0429f352015-12-22 16:29:16 +01001492 if (!mFrozenBounds.isEmpty()) {
Chong Zhangd78ddb42016-03-02 17:01:14 -08001493 pw.print(prefix); pw.print("mFrozenBounds="); pw.println(mFrozenBounds);
Jorim Jaggi26c8c422016-05-09 19:57:25 -07001494 pw.print(prefix); pw.print("mFrozenMergedConfig="); pw.println(mFrozenMergedConfig);
Chong Zhangd78ddb42016-03-02 17:01:14 -08001495 }
1496 if (mPendingRelaunchCount != 0) {
1497 pw.print(prefix); pw.print("mPendingRelaunchCount="); pw.println(mPendingRelaunchCount);
Jorim Jaggi0429f352015-12-22 16:29:16 +01001498 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001499 }
1500
1501 @Override
1502 public String toString() {
1503 if (stringName == null) {
1504 StringBuilder sb = new StringBuilder();
1505 sb.append("AppWindowToken{");
1506 sb.append(Integer.toHexString(System.identityHashCode(this)));
1507 sb.append(" token="); sb.append(token); sb.append('}');
1508 stringName = sb.toString();
1509 }
Wale Ogunwaleba51ca22016-09-23 06:06:54 -07001510 return stringName + ((mIsExiting) ? " mIsExiting=" : "");
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001511 }
Jeff Browne9bdb312012-04-05 15:30:10 -07001512}