blob: a474316a7b3bca54bbc98daea7d8294ae4fc15ad [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
Wale Ogunwale72919d22016-12-08 18:58:50 -0800170 AppWindowToken(WindowManagerService service, IApplicationToken token, boolean voiceInteraction,
171 DisplayContent dc, long inputDispatchingTimeoutNanos, boolean fullscreen,
172 boolean showForAllUsers, int targetSdk, int orientation, int rotationAnimationHint,
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800173 int configChanges, boolean launchTaskBehind, boolean alwaysFocusable,
174 AppWindowContainerController controller) {
Wale Ogunwale17f175c2017-02-07 16:54:10 -0800175 this(service, token, voiceInteraction, dc, fullscreen);
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800176 setController(controller);
Wale Ogunwale72919d22016-12-08 18:58:50 -0800177 mInputDispatchingTimeoutNanos = inputDispatchingTimeoutNanos;
Wale Ogunwale72919d22016-12-08 18:58:50 -0800178 mShowForAllUsers = showForAllUsers;
179 mTargetSdk = targetSdk;
180 mOrientation = orientation;
181 layoutConfigChanges = (configChanges & (CONFIG_SCREEN_SIZE | CONFIG_ORIENTATION)) != 0;
182 mLaunchTaskBehind = launchTaskBehind;
183 mAlwaysFocusable = alwaysFocusable;
184 mRotationAnimationHint = rotationAnimationHint;
185
186 // Application tokens start out hidden.
187 hidden = true;
188 hiddenRequested = true;
189 }
190
191 AppWindowToken(WindowManagerService service, IApplicationToken token, boolean voiceInteraction,
Wale Ogunwale17f175c2017-02-07 16:54:10 -0800192 DisplayContent dc, boolean fillsParent) {
Wale Ogunwale5cd907d2017-01-26 14:14:08 -0800193 super(service, token != null ? token.asBinder() : null, TYPE_APPLICATION, true, dc,
194 false /* ownerCanManageAppTokens */);
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700195 appToken = token;
Wale Ogunwale72919d22016-12-08 18:58:50 -0800196 mVoiceInteraction = voiceInteraction;
Wale Ogunwale17f175c2017-02-07 16:54:10 -0800197 mFillsParent = fillsParent;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800198 mInputApplicationHandle = new InputApplicationHandle(this);
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700199 mAppAnimator = new AppWindowAnimator(this, service);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800200 }
201
Wale Ogunwale9017ec02016-02-25 08:55:25 -0800202 void onFirstWindowDrawn(WindowState win, WindowStateAnimator winAnimator) {
203 firstWindowDrawn = true;
204
205 // We now have a good window to show, remove dead placeholders
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700206 removeDeadWindows();
Wale Ogunwale9017ec02016-02-25 08:55:25 -0800207
Jorim Jaggi02886a82016-12-06 09:10:06 -0800208 if (startingWindow != null) {
Wale Ogunwale9017ec02016-02-25 08:55:25 -0800209 if (DEBUG_STARTING_WINDOW || DEBUG_ANIM) Slog.v(TAG, "Finish starting "
210 + win.mToken + ": first real window is shown, no animation");
211 // If this initial window is animating, stop it -- we will do an animation to reveal
212 // it from behind the starting window, so there is no need for it to also be doing its
213 // own stuff.
214 winAnimator.clearAnimation();
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800215 if (getController() != null) {
216 getController().removeStartingWindow();
217 }
Wale Ogunwale9017ec02016-02-25 08:55:25 -0800218 }
219 updateReportedVisibilityLocked();
220 }
221
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800222 void updateReportedVisibilityLocked() {
223 if (appToken == null) {
224 return;
225 }
226
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700227 if (DEBUG_VISIBILITY) Slog.v(TAG, "Update reported visibility: " + this);
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700228 final int count = mChildren.size();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800229
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700230 mReportedVisibilityResults.reset();
231
232 for (int i = 0; i < count; i++) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700233 final WindowState win = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700234 win.updateReportedVisibility(mReportedVisibilityResults);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800235 }
236
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700237 int numInteresting = mReportedVisibilityResults.numInteresting;
238 int numVisible = mReportedVisibilityResults.numVisible;
239 int numDrawn = mReportedVisibilityResults.numDrawn;
240 boolean nowGone = mReportedVisibilityResults.nowGone;
241
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700242 boolean nowDrawn = numInteresting > 0 && numDrawn >= numInteresting;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800243 boolean nowVisible = numInteresting > 0 && numVisible >= numInteresting;
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700244 if (!nowGone) {
245 // If the app is not yet gone, then it can only become visible/drawn.
246 if (!nowDrawn) {
247 nowDrawn = reportedDrawn;
248 }
249 if (!nowVisible) {
250 nowVisible = reportedVisible;
251 }
252 }
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800253 if (DEBUG_VISIBILITY) Slog.v(TAG, "VIS " + this + ": interesting="
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800254 + numInteresting + " visible=" + numVisible);
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800255 final AppWindowContainerController controller = getController();
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700256 if (nowDrawn != reportedDrawn) {
257 if (nowDrawn) {
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800258 if (controller != null) {
259 controller.reportWindowsDrawn();
260 }
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700261 }
262 reportedDrawn = nowDrawn;
263 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800264 if (nowVisible != reportedVisible) {
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700265 if (DEBUG_VISIBILITY) Slog.v(TAG,
266 "Visibility changed in " + this + ": vis=" + nowVisible);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800267 reportedVisible = nowVisible;
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800268 if (controller != null) {
269 if (nowVisible) {
270 controller.reportWindowsVisible();
271 } else {
272 controller.reportWindowsGone();
273 }
274 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800275 }
276 }
277
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700278 boolean setVisibility(WindowManager.LayoutParams lp,
279 boolean visible, int transit, boolean performLayout, boolean isVoiceInteraction) {
280
281 boolean delayed = false;
282 inPendingTransaction = false;
283
284 if (clientHidden == visible) {
285 clientHidden = !visible;
286 sendAppVisibilityToClients();
287 }
288
289 // Allow for state changes and animation to be applied if:
290 // * token is transitioning visibility state
291 // * or the token was marked as hidden and is exiting before we had a chance to play the
292 // transition animation
293 // * or this is an opening app and windows are being replaced.
294 boolean visibilityChanged = false;
295 if (hidden == visible || (hidden && mIsExiting) || (visible && waitingForReplacement())) {
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700296 final AccessibilityController accessibilityController = mService.mAccessibilityController;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700297 boolean changed = false;
298 if (DEBUG_APP_TRANSITIONS) Slog.v(TAG_WM,
299 "Changing app " + this + " hidden=" + hidden + " performLayout=" + performLayout);
300
301 boolean runningAppAnimation = false;
302
303 if (transit != AppTransition.TRANSIT_UNSET) {
304 if (mAppAnimator.animation == AppWindowAnimator.sDummyAnimation) {
305 mAppAnimator.setNullAnimation();
306 }
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700307 if (mService.applyAnimationLocked(this, lp, transit, visible, isVoiceInteraction)) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700308 delayed = runningAppAnimation = true;
309 }
310 final WindowState window = findMainWindow();
311 //TODO (multidisplay): Magnification is supported only for the default display.
312 if (window != null && accessibilityController != null
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -0700313 && getDisplayContent().getDisplayId() == DEFAULT_DISPLAY) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700314 accessibilityController.onAppWindowTransitionLocked(window, transit);
315 }
316 changed = true;
317 }
318
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700319 final int windowsCount = mChildren.size();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700320 for (int i = 0; i < windowsCount; i++) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700321 final WindowState win = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700322 changed |= win.onAppVisibilityChanged(visible, runningAppAnimation);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700323 }
324
325 hidden = hiddenRequested = !visible;
326 visibilityChanged = true;
327 if (!visible) {
328 stopFreezingScreen(true, true);
329 } else {
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700330 // If we are being set visible, and the starting window is not yet displayed,
331 // then make sure it doesn't get displayed.
332 if (startingWindow != null && !startingWindow.isDrawnLw()) {
333 startingWindow.mPolicyVisibility = false;
334 startingWindow.mPolicyVisibilityAfterAnim = false;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700335 }
336 }
337
338 if (DEBUG_APP_TRANSITIONS) Slog.v(TAG_WM, "setVisibility: " + this
339 + ": hidden=" + hidden + " hiddenRequested=" + hiddenRequested);
340
341 if (changed) {
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700342 mService.mInputMonitor.setUpdateInputWindowsNeededLw();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700343 if (performLayout) {
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700344 mService.updateFocusedWindowLocked(UPDATE_FOCUS_WILL_PLACE_SURFACES,
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700345 false /*updateInputWindows*/);
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700346 mService.mWindowPlacerLocked.performSurfacePlacement();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700347 }
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700348 mService.mInputMonitor.updateInputWindowsLw(false /*force*/);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700349 }
350 }
351
352 if (mAppAnimator.animation != null) {
353 delayed = true;
354 }
355
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700356 for (int i = mChildren.size() - 1; i >= 0 && !delayed; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700357 if ((mChildren.get(i)).isWindowAnimationSet()) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700358 delayed = true;
359 }
360 }
361
362 if (visibilityChanged) {
363 if (visible && !delayed) {
364 // The token was made immediately visible, there will be no entrance animation.
365 // We need to inform the client the enter animation was finished.
366 mEnteringAnimation = true;
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700367 mService.mActivityManagerAppTransitionNotifier.onAppTransitionFinishedLocked(token);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700368 }
Robert Carr6914f082017-03-20 19:04:30 -0700369 if (hidden && !delayed) {
370 SurfaceControl.openTransaction();
371 for (int i = mChildren.size() - 1; i >= 0; i--) {
372 mChildren.get(i).mWinAnimator.hide("immediately hidden");
373 }
374 SurfaceControl.closeTransaction();
375 }
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700376
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700377 if (!mService.mClosingApps.contains(this) && !mService.mOpeningApps.contains(this)) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700378 // The token is not closing nor opening, so even if there is an animation set, that
379 // doesn't mean that it goes through the normal app transition cycle so we have
380 // to inform the docked controller about visibility change.
Andrii Kulian1e32e022016-09-16 15:29:34 -0700381 // TODO(multi-display): notify docked divider on all displays where visibility was
382 // affected.
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700383 mService.getDefaultDisplayContentLocked().getDockedDividerController()
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700384 .notifyAppVisibilityChanged();
Jorim Jaggi8b702ed2017-01-20 16:59:03 +0100385 mService.mTaskSnapshotController.notifyAppVisibilityChanged(this, visible);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700386 }
387 }
388
389 return delayed;
390 }
391
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800392 WindowState findMainWindow() {
Filip Gruszczynski55a309f2015-09-04 17:15:01 -0700393 WindowState candidate = null;
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700394 int j = mChildren.size();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800395 while (j > 0) {
396 j--;
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700397 final WindowState win = mChildren.get(j);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700398 final int type = win.mAttrs.type;
399 // No need to loop through child window as base application and starting types can't be
400 // child windows.
401 if (type == TYPE_BASE_APPLICATION || type == TYPE_APPLICATION_STARTING) {
Filip Gruszczynski55a309f2015-09-04 17:15:01 -0700402 // In cases where there are multiple windows, we prefer the non-exiting window. This
Sungsoo Lim0d3d1f82015-12-02 14:47:59 +0900403 // happens for example when replacing windows during an activity relaunch. When
Filip Gruszczynski55a309f2015-09-04 17:15:01 -0700404 // constructing the animation, we want the new window, not the exiting one.
Wale Ogunwalec48a3542016-02-19 15:18:45 -0800405 if (win.mAnimatingExit) {
Filip Gruszczynski55a309f2015-09-04 17:15:01 -0700406 candidate = win;
407 } else {
408 return win;
409 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800410 }
411 }
Filip Gruszczynski55a309f2015-09-04 17:15:01 -0700412 return candidate;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800413 }
414
Wale Ogunwale6cae7652015-12-26 07:36:26 -0800415 boolean windowsAreFocusable() {
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800416 return StackId.canReceiveKeys(getTask().mStack.mStackId) || mAlwaysFocusable;
Wale Ogunwaled045c822015-12-02 09:14:28 -0800417 }
418
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800419 AppWindowContainerController getController() {
420 final WindowContainerController controller = super.getController();
421 return controller != null ? (AppWindowContainerController) controller : null;
422 }
423
Wale Ogunwale571771c2016-08-26 13:18:50 -0700424 @Override
Wale Ogunwale44f21802016-09-02 12:49:48 -0700425 boolean isVisible() {
Wale Ogunwalee471be62016-10-03 07:53:55 -0700426 // If the app token isn't hidden then it is considered visible and there is no need to check
427 // its children windows to see if they are visible.
428 return !hidden;
Wale Ogunwale44f21802016-09-02 12:49:48 -0700429 }
430
431 @Override
Wale Ogunwale571771c2016-08-26 13:18:50 -0700432 void removeIfPossible() {
Craig Mautnere3119b72015-01-20 15:02:36 -0800433 mIsExiting = false;
Wale Ogunwale3d0bfd92016-12-05 11:38:02 -0800434 removeAllWindowsIfPossible();
Bryce Lee6d410262017-02-28 15:30:17 -0800435 removeImmediately();
Craig Mautnere3119b72015-01-20 15:02:36 -0800436 }
437
Wale Ogunwale3f4433d2016-08-18 20:42:42 -0700438 @Override
439 boolean checkCompleteDeferredRemoval() {
440 if (mIsExiting) {
441 removeIfPossible();
442 }
443 return super.checkCompleteDeferredRemoval();
444 }
445
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700446 void onRemovedFromDisplay() {
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700447 if (DEBUG_APP_TRANSITIONS) Slog.v(TAG_WM, "Removing app token: " + this);
448
Wale Ogunwale72919d22016-12-08 18:58:50 -0800449 boolean delayed = setVisibility(null, false, TRANSIT_UNSET, true, mVoiceInteraction);
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700450
451 mService.mOpeningApps.remove(this);
Jorim Jaggi1b4b23e2016-11-15 16:30:12 -0800452 mService.mUnknownAppVisibilityController.appRemoved(this);
Jorim Jaggi10abe2f2017-01-03 16:44:46 +0100453 mService.mTaskSnapshotController.onAppRemoved(this);
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700454 waitingToShow = false;
455 if (mService.mClosingApps.contains(this)) {
456 delayed = true;
457 } else if (mService.mAppTransition.isTransitionSet()) {
458 mService.mClosingApps.add(this);
459 delayed = true;
460 }
461
462 if (DEBUG_APP_TRANSITIONS) Slog.v(TAG_WM, "Removing app " + this + " delayed=" + delayed
463 + " animation=" + mAppAnimator.animation + " animating=" + mAppAnimator.animating);
464
465 if (DEBUG_ADD_REMOVE || DEBUG_TOKEN_MOVEMENT) Slog.v(TAG_WM, "removeAppToken: "
466 + this + " delayed=" + delayed + " Callers=" + Debug.getCallers(4));
467
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800468 if (startingData != null && getController() != null) {
469 getController().removeStartingWindow();
470 }
471
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800472 final TaskStack stack = getTask().mStack;
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700473 if (delayed && !isEmpty()) {
474 // set the token aside because it has an active animation to be finished
475 if (DEBUG_ADD_REMOVE || DEBUG_TOKEN_MOVEMENT) Slog.v(TAG_WM,
476 "removeAppToken make exiting: " + this);
477 stack.mExitingAppTokens.add(this);
478 mIsExiting = true;
479 } else {
480 // Make sure there is no animation running on this token, so any windows associated
481 // with it will be removed as soon as their animations are complete
482 mAppAnimator.clearAnimation();
483 mAppAnimator.animating = false;
484 removeIfPossible();
485 }
486
487 removed = true;
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700488 stopFreezingScreen(true, true);
Bryce Lee6d410262017-02-28 15:30:17 -0800489
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700490 if (mService.mFocusedApp == this) {
491 if (DEBUG_FOCUS_LIGHT) Slog.v(TAG_WM, "Removing focused app token:" + this);
492 mService.mFocusedApp = null;
493 mService.updateFocusedWindowLocked(UPDATE_FOCUS_NORMAL, true /*updateInputWindows*/);
494 mService.mInputMonitor.setFocusedAppLw(null);
495 }
496
497 if (!delayed) {
498 updateReportedVisibilityLocked();
499 }
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700500 }
501
Chong Zhange05bcb12016-07-26 17:47:29 -0700502 void clearAnimatingFlags() {
Chong Zhangb0d26702016-08-12 16:03:29 -0700503 boolean wallpaperMightChange = false;
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700504 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700505 final WindowState win = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700506 wallpaperMightChange |= win.clearAnimatingFlags();
Chong Zhange05bcb12016-07-26 17:47:29 -0700507 }
Chong Zhangb0d26702016-08-12 16:03:29 -0700508 if (wallpaperMightChange) {
509 requestUpdateWallpaperIfNeeded();
510 }
Chong Zhange05bcb12016-07-26 17:47:29 -0700511 }
512
Robert Carre12aece2016-02-02 22:43:27 -0800513 void destroySurfaces() {
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700514 destroySurfaces(false /*cleanupOnResume*/);
515 }
516
517 /**
518 * Destroy surfaces which have been marked as eligible by the animator, taking care to ensure
519 * the client has finished with them.
520 *
521 * @param cleanupOnResume whether this is done when app is resumed without fully stopped. If
522 * set to true, destroy only surfaces of removed windows, and clear relevant flags of the
523 * others so that they are ready to be reused. If set to false (common case), destroy all
524 * surfaces that's eligible, if the app is already stopped.
525 */
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700526 private void destroySurfaces(boolean cleanupOnResume) {
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -0700527 boolean destroyedSomething = false;
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700528 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700529 final WindowState win = mChildren.get(i);
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -0700530 destroyedSomething |= win.destroySurface(cleanupOnResume, mAppStopped);
Robert Carre12aece2016-02-02 22:43:27 -0800531 }
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -0700532 if (destroyedSomething) {
533 final DisplayContent dc = getDisplayContent();
Wale Ogunwalec69694a2016-10-18 13:51:15 -0700534 dc.assignWindowLayers(true /*setLayoutNeeded*/);
Robert Carre12aece2016-02-02 22:43:27 -0800535 }
536 }
537
Wale Ogunwale8d5a5422016-03-03 18:28:21 -0800538 /**
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700539 * Notify that the app is now resumed, and it was not stopped before, perform a clean
540 * up of the surfaces
Wale Ogunwale8d5a5422016-03-03 18:28:21 -0800541 */
Chong Zhangad24f962016-08-25 12:12:33 -0700542 void notifyAppResumed(boolean wasStopped, boolean allowSavedSurface) {
543 if (DEBUG_ADD_REMOVE) Slog.v(TAG, "notifyAppResumed: wasStopped=" + wasStopped
544 + " allowSavedSurface=" + allowSavedSurface + " " + this);
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700545 mAppStopped = false;
546 if (!wasStopped) {
547 destroySurfaces(true /*cleanupOnResume*/);
Wale Ogunwale8d5a5422016-03-03 18:28:21 -0800548 }
Chong Zhangad24f962016-08-25 12:12:33 -0700549 if (!allowSavedSurface) {
550 destroySavedSurfaces();
551 }
Robert Carre12aece2016-02-02 22:43:27 -0800552 }
553
Chong Zhangbef461f2015-10-27 11:38:24 -0700554 /**
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700555 * Notify that the app has stopped, and it is okay to destroy any surfaces which were
556 * keeping alive in case they were still being used.
557 */
558 void notifyAppStopped() {
559 if (DEBUG_ADD_REMOVE) Slog.v(TAG, "notifyAppStopped: " + this);
560 mAppStopped = true;
561 destroySurfaces();
562 // Remove any starting window that was added for this app if they are still around.
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800563 if (getController() != null) {
564 getController().removeStartingWindow();
565 }
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700566 }
567
568 /**
Chong Zhangbef461f2015-10-27 11:38:24 -0700569 * Checks whether we should save surfaces for this app.
570 *
571 * @return true if the surfaces should be saved, false otherwise.
572 */
573 boolean shouldSaveSurface() {
Chong Zhangbfc2f8f2016-01-29 15:50:34 -0800574 // We want to save surface if the app's windows are "allDrawn".
575 // (If we started entering animation early with saved surfaces, allDrawn
576 // should have been restored to true. So we'll save again in that case
577 // even if app didn't actually finish drawing.)
578 return allDrawn;
Robert Carr13f7be9e2015-12-02 18:39:45 -0800579 }
580
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700581 private boolean canRestoreSurfaces() {
582 for (int i = mChildren.size() -1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700583 final WindowState w = mChildren.get(i);
Chong Zhang92147042016-05-09 12:47:11 -0700584 if (w.canRestoreSurface()) {
Robert Carr13f7be9e2015-12-02 18:39:45 -0800585 return true;
586 }
Chong Zhangbef461f2015-10-27 11:38:24 -0700587 }
588 return false;
589 }
590
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700591 private void clearWasVisibleBeforeClientHidden() {
592 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700593 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700594 w.clearWasVisibleBeforeClientHidden();
Chong Zhang92147042016-05-09 12:47:11 -0700595 }
596 }
597
Chong Zhang8e4bda92016-05-04 15:08:18 -0700598 /**
599 * Whether the app has some window that is invisible in layout, but
600 * animating with saved surface.
601 */
602 boolean isAnimatingInvisibleWithSavedSurface() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700603 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700604 final WindowState w = mChildren.get(i);
Chong Zhang8e4bda92016-05-04 15:08:18 -0700605 if (w.isAnimatingInvisibleWithSavedSurface()) {
606 return true;
607 }
608 }
609 return false;
610 }
611
612 /**
613 * Hide all window surfaces that's still invisible in layout but animating
614 * with a saved surface, and mark them destroying.
615 */
616 void stopUsingSavedSurfaceLocked() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700617 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700618 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700619 w.stopUsingSavedSurface();
Chong Zhang8e4bda92016-05-04 15:08:18 -0700620 }
621 destroySurfaces();
622 }
623
Chong Zhangf58631a2016-05-24 16:02:10 -0700624 void markSavedSurfaceExiting() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700625 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700626 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700627 w.markSavedSurfaceExiting();
Chong Zhangf58631a2016-05-24 16:02:10 -0700628 }
629 }
630
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700631 void restoreSavedSurfaceForInterestingWindows() {
Chong Zhang92147042016-05-09 12:47:11 -0700632 if (!canRestoreSurfaces()) {
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700633 clearWasVisibleBeforeClientHidden();
Chong Zhangbef461f2015-10-27 11:38:24 -0700634 return;
635 }
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700636
637 // Check if all interesting windows are drawn and we can mark allDrawn=true.
638 int interestingNotDrawn = -1;
639
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700640 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700641 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700642 interestingNotDrawn = w.restoreSavedSurfaceForInterestingWindow();
Chong Zhangbef461f2015-10-27 11:38:24 -0700643 }
Chong Zhangbfc2f8f2016-01-29 15:50:34 -0800644
Chong Zhang92147042016-05-09 12:47:11 -0700645 if (!allDrawn) {
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700646 allDrawn = (interestingNotDrawn == 0);
Chong Zhang92147042016-05-09 12:47:11 -0700647 if (allDrawn) {
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700648 mService.mH.obtainMessage(NOTIFY_ACTIVITY_DRAWN, token).sendToTarget();
Chong Zhang92147042016-05-09 12:47:11 -0700649 }
650 }
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700651 clearWasVisibleBeforeClientHidden();
Chong Zhangbfc2f8f2016-01-29 15:50:34 -0800652
653 if (DEBUG_APP_TRANSITIONS || DEBUG_ANIM) Slog.d(TAG,
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700654 "restoreSavedSurfaceForInterestingWindows: " + this + " allDrawn=" + allDrawn
655 + " interestingNotDrawn=" + interestingNotDrawn);
Chong Zhangbef461f2015-10-27 11:38:24 -0700656 }
657
658 void destroySavedSurfaces() {
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 win = mChildren.get(i);
Robert Carr13f7be9e2015-12-02 18:39:45 -0800661 win.destroySavedSurface();
Chong Zhangbef461f2015-10-27 11:38:24 -0700662 }
Chong Zhang92147042016-05-09 12:47:11 -0700663 }
664
665 void clearAllDrawn() {
666 allDrawn = false;
667 deferClearAllDrawn = false;
Chong Zhang8e4bda92016-05-04 15:08:18 -0700668 allDrawnExcludingSaved = false;
Chong Zhangbef461f2015-10-27 11:38:24 -0700669 }
670
Bryce Lee6d410262017-02-28 15:30:17 -0800671 Task getTask() {
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800672 return (Task) getParent();
Bryce Lee6d410262017-02-28 15:30:17 -0800673 }
674
Jorim Jaggi3878ca32017-02-02 17:13:05 -0800675 TaskStack getStack() {
676 final Task task = getTask();
677 if (task != null) {
678 return task.mStack;
679 } else {
680 return null;
681 }
682 }
683
Bryce Lee6d410262017-02-28 15:30:17 -0800684 @Override
685 void onParentSet() {
686 super.onParentSet();
687
688 // When the associated task is {@code null}, the {@link AppWindowToken} can no longer
689 // access visual elements like the {@link DisplayContent}. We must remove any associations
690 // such as animations.
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800691 if (!mReparenting) {
692 final Task task = getTask();
693 if (task == null) {
694 // It is possible we have been marked as a closing app earlier. We must remove ourselves
695 // from this list so we do not participate in any future animations.
696 mService.mClosingApps.remove(this);
697 } else if (task.mStack != null) {
698 task.mStack.mExitingAppTokens.remove(this);
699 }
Bryce Lee6d410262017-02-28 15:30:17 -0800700 }
701 }
702
Wale Ogunwalefa854eb2016-09-20 13:43:52 -0700703 void postWindowRemoveStartingWindowCleanup(WindowState win) {
Wale Ogunwale92fc3722016-08-05 12:19:08 -0700704 // TODO: Something smells about the code below...Is there a better way?
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700705 if (startingWindow == win) {
706 if (DEBUG_STARTING_WINDOW) Slog.v(TAG_WM, "Notify removed startingWindow " + win);
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800707 if (getController() != null) {
708 getController().removeStartingWindow();
709 }
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700710 } else if (mChildren.size() == 0 && startingData != null) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700711 // If this is the last window and we had requested a starting transition window,
712 // well there is no point now.
Jorim Jaggi02886a82016-12-06 09:10:06 -0800713 if (DEBUG_STARTING_WINDOW) Slog.v(TAG_WM, "Nulling last startingData");
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700714 startingData = null;
Jorim Jaggi829b9cd2017-01-23 16:20:53 +0100715 } else if (mChildren.size() == 1 && startingSurface != null && !isRelaunching()) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700716 // If this is the last window except for a starting transition window,
717 // we need to get rid of the starting transition.
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800718 if (getController() != null) {
719 getController().removeStartingWindow();
720 }
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700721 }
722 }
723
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700724 void removeDeadWindows() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700725 for (int winNdx = mChildren.size() - 1; winNdx >= 0; --winNdx) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700726 WindowState win = mChildren.get(winNdx);
Chong Zhang112eb8c2015-11-02 11:17:00 -0800727 if (win.mAppDied) {
Wale Ogunwale92fc3722016-08-05 12:19:08 -0700728 if (DEBUG_WINDOW_MOVEMENT || DEBUG_ADD_REMOVE) Slog.w(TAG,
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700729 "removeDeadWindows: " + win);
Chong Zhang112eb8c2015-11-02 11:17:00 -0800730 // Set mDestroying, we don't want any animation or delayed removal here.
731 win.mDestroying = true;
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700732 // Also removes child windows.
Wale Ogunwale92fc3722016-08-05 12:19:08 -0700733 win.removeIfPossible();
Chong Zhang112eb8c2015-11-02 11:17:00 -0800734 }
735 }
736 }
737
Wale Ogunwalee42d0e12016-05-02 16:40:59 -0700738 boolean hasWindowsAlive() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700739 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700740 // No need to loop through child windows as the answer should be the same as that of the
741 // parent window.
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700742 if (!(mChildren.get(i)).mAppDied) {
Wale Ogunwalee42d0e12016-05-02 16:40:59 -0700743 return true;
744 }
745 }
746 return false;
747 }
748
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700749 void setWillReplaceWindows(boolean animate) {
Wale Ogunwale455fac52016-07-21 07:24:49 -0700750 if (DEBUG_ADD_REMOVE) Slog.d(TAG_WM,
751 "Marking app token " + this + " with replacing windows.");
Robert Carra1eb4392015-12-10 12:43:51 -0800752
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700753 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700754 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700755 w.setWillReplaceWindow(animate);
Robert Carra1eb4392015-12-10 12:43:51 -0800756 }
757 if (animate) {
758 // Set-up dummy animation so we can start treating windows associated with this
759 // token like they are in transition before the new app window is ready for us to
760 // run the real transition animation.
761 if (DEBUG_APP_TRANSITIONS) Slog.v(TAG_WM,
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700762 "setWillReplaceWindow() Setting dummy animation on: " + this);
Robert Carra1eb4392015-12-10 12:43:51 -0800763 mAppAnimator.setDummyAnimation();
764 }
765 }
766
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700767 void setWillReplaceChildWindows() {
Wale Ogunwale455fac52016-07-21 07:24:49 -0700768 if (DEBUG_ADD_REMOVE) Slog.d(TAG_WM, "Marking app token " + this
Robert Carr23fa16b2016-01-13 13:19:58 -0800769 + " with replacing child windows.");
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700770 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700771 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700772 w.setWillReplaceChildWindows();
Robert Carr23fa16b2016-01-13 13:19:58 -0800773 }
774 }
775
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700776 void clearWillReplaceWindows() {
Wale Ogunwale455fac52016-07-21 07:24:49 -0700777 if (DEBUG_ADD_REMOVE) Slog.d(TAG_WM,
778 "Resetting app token " + this + " of replacing window marks.");
Chong Zhangf596cd52016-01-05 13:42:44 -0800779
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700780 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700781 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700782 w.clearWillReplaceWindow();
Chong Zhangf596cd52016-01-05 13:42:44 -0800783 }
784 }
785
Chong Zhang4d7369a2016-04-25 16:09:14 -0700786 void requestUpdateWallpaperIfNeeded() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700787 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700788 final WindowState w = mChildren.get(i);
Chong Zhang4d7369a2016-04-25 16:09:14 -0700789 w.requestUpdateWallpaperIfNeeded();
790 }
791 }
792
Chong Zhangd78ddb42016-03-02 17:01:14 -0800793 boolean isRelaunching() {
794 return mPendingRelaunchCount > 0;
795 }
796
797 void startRelaunching() {
798 if (canFreezeBounds()) {
799 freezeBounds();
800 }
Robert Carrd5c7dd62017-03-08 10:39:30 -0800801
802 // In the process of tearing down before relaunching, the app will
803 // try and clean up it's child surfaces. We need to prevent this from
804 // happening, so we sever the children, transfering their ownership
805 // from the client it-self to the parent surface (owned by us).
806 for (int i = mChildren.size() - 1; i >= 0; i--) {
807 final WindowState w = mChildren.get(i);
808 w.mWinAnimator.detachChildren();
809 }
810
Chong Zhangd78ddb42016-03-02 17:01:14 -0800811 mPendingRelaunchCount++;
812 }
813
814 void finishRelaunching() {
815 if (canFreezeBounds()) {
816 unfreezeBounds();
817 }
818 if (mPendingRelaunchCount > 0) {
819 mPendingRelaunchCount--;
820 }
821 }
822
Wale Ogunwale8fd75422016-06-24 14:20:37 -0700823 void clearRelaunching() {
Wale Ogunwale37dbafc2016-06-27 10:15:20 -0700824 if (mPendingRelaunchCount == 0) {
825 return;
826 }
Wale Ogunwale8fd75422016-06-24 14:20:37 -0700827 if (canFreezeBounds()) {
828 unfreezeBounds();
829 }
830 mPendingRelaunchCount = 0;
831 }
832
Wale Ogunwale07bcab72016-10-14 15:30:09 -0700833 /**
834 * Returns true if the new child window we are adding to this token is considered greater than
835 * the existing child window in this token in terms of z-order.
836 */
837 @Override
838 protected boolean isFirstChildWindowGreaterThanSecond(WindowState newWindow,
839 WindowState existingWindow) {
840 final int type1 = newWindow.mAttrs.type;
841 final int type2 = existingWindow.mAttrs.type;
842
843 // Base application windows should be z-ordered BELOW all other windows in the app token.
844 if (type1 == TYPE_BASE_APPLICATION && type2 != TYPE_BASE_APPLICATION) {
845 return false;
846 } else if (type1 != TYPE_BASE_APPLICATION && type2 == TYPE_BASE_APPLICATION) {
847 return true;
848 }
849
850 // Starting windows should be z-ordered ABOVE all other windows in the app token.
851 if (type1 == TYPE_APPLICATION_STARTING && type2 != TYPE_APPLICATION_STARTING) {
852 return true;
853 } else if (type1 != TYPE_APPLICATION_STARTING && type2 == TYPE_APPLICATION_STARTING) {
854 return false;
855 }
856
857 // Otherwise the new window is greater than the existing window.
858 return true;
859 }
860
Wale Ogunwale92fc3722016-08-05 12:19:08 -0700861 @Override
Robert Carra1eb4392015-12-10 12:43:51 -0800862 void addWindow(WindowState w) {
Wale Ogunwale92fc3722016-08-05 12:19:08 -0700863 super.addWindow(w);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700864
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700865 boolean gotReplacementWindow = false;
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700866 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700867 final WindowState candidate = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700868 gotReplacementWindow |= candidate.setReplacementWindowIfNeeded(w);
869 }
Wale Ogunwale92fc3722016-08-05 12:19:08 -0700870
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700871 // if we got a replacement window, reset the timeout to give drawing more time
872 if (gotReplacementWindow) {
873 mService.scheduleWindowReplacementTimeouts(this);
Robert Carra1eb4392015-12-10 12:43:51 -0800874 }
Jorim Jaggife762342016-10-13 14:33:27 +0200875 checkKeyguardFlagsChanged();
876 }
877
878 @Override
879 void removeChild(WindowState child) {
880 super.removeChild(child);
881 checkKeyguardFlagsChanged();
Robert Carra1eb4392015-12-10 12:43:51 -0800882 }
883
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -0700884 private boolean waitingForReplacement() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700885 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700886 final WindowState candidate = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700887 if (candidate.waitingForReplacement()) {
Robert Carra1eb4392015-12-10 12:43:51 -0800888 return true;
889 }
890 }
891 return false;
892 }
893
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700894 void onWindowReplacementTimeout() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700895 for (int i = mChildren.size() - 1; i >= 0; --i) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700896 (mChildren.get(i)).onWindowReplacementTimeout();
Robert Carra1eb4392015-12-10 12:43:51 -0800897 }
898 }
899
Winson Chung30480042017-01-26 10:55:34 -0800900 void reparent(Task task, int position) {
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800901 final Task currentTask = getTask();
902 if (task == currentTask) {
Winson Chung30480042017-01-26 10:55:34 -0800903 throw new IllegalArgumentException(
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800904 "window token=" + this + " already child of task=" + currentTask);
Winson Chung30480042017-01-26 10:55:34 -0800905 }
Bryce Lee6d410262017-02-28 15:30:17 -0800906
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800907 if (currentTask.mStack != task.mStack) {
Bryce Lee6d410262017-02-28 15:30:17 -0800908 throw new IllegalArgumentException(
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800909 "window token=" + this + " current task=" + currentTask
Bryce Lee6d410262017-02-28 15:30:17 -0800910 + " belongs to a different stack than " + task);
911 }
912
Winson Chung30480042017-01-26 10:55:34 -0800913 if (DEBUG_ADD_REMOVE) Slog.i(TAG, "reParentWindowToken: removing window token=" + this
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800914 + " from task=" + currentTask);
Winson Chung30480042017-01-26 10:55:34 -0800915 final DisplayContent prevDisplayContent = getDisplayContent();
916
Bryce Lee6d410262017-02-28 15:30:17 -0800917 mReparenting = true;
918
Winson Chung30480042017-01-26 10:55:34 -0800919 getParent().removeChild(this);
920 task.addChild(this, position);
921
Bryce Lee6d410262017-02-28 15:30:17 -0800922 mReparenting = false;
923
Winson Chung30480042017-01-26 10:55:34 -0800924 // Relayout display(s).
925 final DisplayContent displayContent = task.getDisplayContent();
926 displayContent.setLayoutNeeded();
927 if (prevDisplayContent != displayContent) {
928 onDisplayChanged(displayContent);
929 prevDisplayContent.setLayoutNeeded();
930 }
931 }
932
Chong Zhangd78ddb42016-03-02 17:01:14 -0800933 private boolean canFreezeBounds() {
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800934 final Task task = getTask();
935
Chong Zhangd78ddb42016-03-02 17:01:14 -0800936 // For freeform windows, we can't freeze the bounds at the moment because this would make
937 // the resizing unresponsive.
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800938 return task != null && !task.inFreeformWorkspace();
Chong Zhangd78ddb42016-03-02 17:01:14 -0800939 }
940
Jorim Jaggi0429f352015-12-22 16:29:16 +0100941 /**
942 * Freezes the task bounds. The size of this task reported the app will be fixed to the bounds
943 * freezed by {@link Task#prepareFreezingBounds} until {@link #unfreezeBounds} gets called, even
944 * if they change in the meantime. If the bounds are already frozen, the bounds will be frozen
945 * with a queue.
946 */
Chong Zhangd78ddb42016-03-02 17:01:14 -0800947 private void freezeBounds() {
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800948 final Task task = getTask();
949 mFrozenBounds.offer(new Rect(task.mPreparedFrozenBounds));
Jorim Jaggi26c8c422016-05-09 19:57:25 -0700950
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800951 if (task.mPreparedFrozenMergedConfig.equals(Configuration.EMPTY)) {
Jorim Jaggi26c8c422016-05-09 19:57:25 -0700952 // We didn't call prepareFreezingBounds on the task, so use the current value.
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800953 mFrozenMergedConfig.offer(new Configuration(task.getConfiguration()));
Jorim Jaggi26c8c422016-05-09 19:57:25 -0700954 } else {
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800955 mFrozenMergedConfig.offer(new Configuration(task.mPreparedFrozenMergedConfig));
Jorim Jaggi26c8c422016-05-09 19:57:25 -0700956 }
Andrii Kulianb10330d2016-09-16 13:51:46 -0700957 // Calling unset() to make it equal to Configuration.EMPTY.
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800958 task.mPreparedFrozenMergedConfig.unset();
Jorim Jaggi0429f352015-12-22 16:29:16 +0100959 }
960
961 /**
962 * Unfreezes the previously frozen bounds. See {@link #freezeBounds}.
963 */
Chong Zhangd78ddb42016-03-02 17:01:14 -0800964 private void unfreezeBounds() {
Wale Ogunwale37dbafc2016-06-27 10:15:20 -0700965 if (!mFrozenBounds.isEmpty()) {
966 mFrozenBounds.remove();
967 }
968 if (!mFrozenMergedConfig.isEmpty()) {
969 mFrozenMergedConfig.remove();
970 }
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700971 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700972 final WindowState win = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700973 win.onUnfreezeBounds();
Jorim Jaggi4846ee32016-01-07 17:39:12 +0100974 }
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700975 mService.mWindowPlacerLocked.performSurfacePlacement();
Jorim Jaggi0429f352015-12-22 16:29:16 +0100976 }
977
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -0700978 void setAppLayoutChanges(int changes, String reason) {
979 if (!mChildren.isEmpty()) {
980 final DisplayContent dc = getDisplayContent();
981 dc.pendingLayoutChanges |= changes;
982 if (DEBUG_LAYOUT_REPEATS) {
983 mService.mWindowPlacerLocked.debugLayoutRepeats(reason, dc.pendingLayoutChanges);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700984 }
985 }
986 }
987
988 void removeReplacedWindowIfNeeded(WindowState replacement) {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700989 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700990 final WindowState win = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700991 if (win.removeReplacedWindowIfNeeded(replacement)) {
992 return;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700993 }
994 }
995 }
996
997 void startFreezingScreen() {
998 if (DEBUG_ORIENTATION) logWithStack(TAG, "Set freezing of " + appToken + ": hidden="
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700999 + hidden + " freezing=" + mAppAnimator.freezingScreen + " hiddenRequested="
1000 + hiddenRequested);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001001 if (!hiddenRequested) {
1002 if (!mAppAnimator.freezingScreen) {
1003 mAppAnimator.freezingScreen = true;
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001004 mService.registerAppFreezeListener(this);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001005 mAppAnimator.lastFreezeDuration = 0;
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001006 mService.mAppsFreezingScreen++;
1007 if (mService.mAppsFreezingScreen == 1) {
1008 mService.startFreezingDisplayLocked(false, 0, 0);
1009 mService.mH.removeMessages(H.APP_FREEZE_TIMEOUT);
1010 mService.mH.sendEmptyMessageDelayed(H.APP_FREEZE_TIMEOUT, 2000);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001011 }
1012 }
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001013 final int count = mChildren.size();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001014 for (int i = 0; i < count; i++) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07001015 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001016 w.onStartFreezingScreen();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001017 }
1018 }
1019 }
1020
1021 void stopFreezingScreen(boolean unfreezeSurfaceNow, boolean force) {
1022 if (!mAppAnimator.freezingScreen) {
1023 return;
1024 }
1025 if (DEBUG_ORIENTATION) Slog.v(TAG_WM, "Clear freezing of " + this + " force=" + force);
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001026 final int count = mChildren.size();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001027 boolean unfrozeWindows = false;
1028 for (int i = 0; i < count; i++) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07001029 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001030 unfrozeWindows |= w.onStopFreezingScreen();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001031 }
1032 if (force || unfrozeWindows) {
1033 if (DEBUG_ORIENTATION) Slog.v(TAG_WM, "No longer freezing: " + this);
1034 mAppAnimator.freezingScreen = false;
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001035 mService.unregisterAppFreezeListener(this);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001036 mAppAnimator.lastFreezeDuration =
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001037 (int)(SystemClock.elapsedRealtime() - mService.mDisplayFreezeTime);
1038 mService.mAppsFreezingScreen--;
1039 mService.mLastFinishedFreezeSource = this;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001040 }
1041 if (unfreezeSurfaceNow) {
1042 if (unfrozeWindows) {
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001043 mService.mWindowPlacerLocked.performSurfacePlacement();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001044 }
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001045 mService.stopFreezingDisplayLocked();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001046 }
1047 }
1048
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001049 @Override
1050 public void onAppFreezeTimeout() {
1051 Slog.w(TAG_WM, "Force clearing freeze: " + this);
1052 stopFreezingScreen(true, true);
1053 }
1054
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001055 boolean transferStartingWindow(IBinder transferFrom) {
Wale Ogunwale02319a62016-09-26 15:21:22 -07001056 final AppWindowToken fromToken = getDisplayContent().getAppWindowToken(transferFrom);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001057 if (fromToken == null) {
1058 return false;
1059 }
1060
1061 final WindowState tStartingWindow = fromToken.startingWindow;
Jorim Jaggiba41f4b2016-12-14 17:43:07 -08001062 if (tStartingWindow != null && fromToken.startingSurface != null) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001063 // In this case, the starting icon has already been displayed, so start
1064 // letting windows get shown immediately without any more transitions.
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001065 mService.mSkipAppTransitionAnimation = true;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001066
1067 if (DEBUG_STARTING_WINDOW) Slog.v(TAG_WM, "Moving existing starting " + tStartingWindow
1068 + " from " + fromToken + " to " + this);
1069
1070 final long origId = Binder.clearCallingIdentity();
1071
1072 // Transfer the starting window over to the new token.
1073 startingData = fromToken.startingData;
Jorim Jaggiba41f4b2016-12-14 17:43:07 -08001074 startingSurface = fromToken.startingSurface;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001075 startingDisplayed = fromToken.startingDisplayed;
1076 fromToken.startingDisplayed = false;
1077 startingWindow = tStartingWindow;
1078 reportedVisible = fromToken.reportedVisible;
1079 fromToken.startingData = null;
Jorim Jaggiba41f4b2016-12-14 17:43:07 -08001080 fromToken.startingSurface = null;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001081 fromToken.startingWindow = null;
1082 fromToken.startingMoved = true;
1083 tStartingWindow.mToken = this;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001084 tStartingWindow.mAppToken = this;
1085
Wale Ogunwale6213caa2016-12-02 16:47:15 +00001086 if (DEBUG_ADD_REMOVE || DEBUG_STARTING_WINDOW) Slog.v(TAG_WM,
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001087 "Removing starting " + tStartingWindow + " from " + fromToken);
Wale Ogunwalefa854eb2016-09-20 13:43:52 -07001088 fromToken.removeChild(tStartingWindow);
1089 fromToken.postWindowRemoveStartingWindowCleanup(tStartingWindow);
Wale Ogunwale92fc3722016-08-05 12:19:08 -07001090 addWindow(tStartingWindow);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001091
1092 // Propagate other interesting state between the tokens. If the old token is displayed,
1093 // we should immediately force the new one to be displayed. If it is animating, we need
1094 // to move that animation to the new one.
1095 if (fromToken.allDrawn) {
1096 allDrawn = true;
1097 deferClearAllDrawn = fromToken.deferClearAllDrawn;
1098 }
1099 if (fromToken.firstWindowDrawn) {
1100 firstWindowDrawn = true;
1101 }
1102 if (!fromToken.hidden) {
1103 hidden = false;
1104 hiddenRequested = false;
1105 }
1106 if (clientHidden != fromToken.clientHidden) {
1107 clientHidden = fromToken.clientHidden;
1108 sendAppVisibilityToClients();
1109 }
1110 fromToken.mAppAnimator.transferCurrentAnimation(
1111 mAppAnimator, tStartingWindow.mWinAnimator);
1112
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001113 mService.updateFocusedWindowLocked(
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001114 UPDATE_FOCUS_WILL_PLACE_SURFACES, true /*updateInputWindows*/);
Andrii Kulian5406e7a2016-10-21 11:55:23 -07001115 getDisplayContent().setLayoutNeeded();
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001116 mService.mWindowPlacerLocked.performSurfacePlacement();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001117 Binder.restoreCallingIdentity(origId);
1118 return true;
1119 } else if (fromToken.startingData != null) {
1120 // The previous app was getting ready to show a
1121 // starting window, but hasn't yet done so. Steal it!
1122 if (DEBUG_STARTING_WINDOW) Slog.v(TAG_WM,
1123 "Moving pending starting from " + fromToken + " to " + this);
1124 startingData = fromToken.startingData;
1125 fromToken.startingData = null;
1126 fromToken.startingMoved = true;
Jorim Jaggiba41f4b2016-12-14 17:43:07 -08001127 if (getController() != null) {
1128 getController().scheduleAddStartingWindow();
1129 }
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001130 return true;
1131 }
1132
1133 final AppWindowAnimator tAppAnimator = fromToken.mAppAnimator;
1134 final AppWindowAnimator wAppAnimator = mAppAnimator;
1135 if (tAppAnimator.thumbnail != null) {
1136 // The old token is animating with a thumbnail, transfer that to the new token.
1137 if (wAppAnimator.thumbnail != null) {
1138 wAppAnimator.thumbnail.destroy();
1139 }
1140 wAppAnimator.thumbnail = tAppAnimator.thumbnail;
1141 wAppAnimator.thumbnailLayer = tAppAnimator.thumbnailLayer;
1142 wAppAnimator.thumbnailAnimation = tAppAnimator.thumbnailAnimation;
1143 tAppAnimator.thumbnail = null;
1144 }
1145 return false;
1146 }
1147
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001148 boolean isLastWindow(WindowState win) {
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001149 return mChildren.size() == 1 && mChildren.get(0) == win;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001150 }
1151
1152 void setAllAppWinAnimators() {
1153 final ArrayList<WindowStateAnimator> allAppWinAnimators = mAppAnimator.mAllAppWinAnimators;
1154 allAppWinAnimators.clear();
1155
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001156 final int windowsCount = mChildren.size();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001157 for (int j = 0; j < windowsCount; j++) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07001158 (mChildren.get(j)).addWinAnimatorToList(allAppWinAnimators);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001159 }
1160 }
1161
Wale Ogunwale9adfe572016-09-08 20:43:58 -07001162 @Override
1163 void onAppTransitionDone() {
1164 sendingToBottom = false;
1165 }
1166
Wale Ogunwale51362492016-09-08 17:49:17 -07001167 /**
1168 * We override because this class doesn't want its children affecting its reported orientation
1169 * in anyway.
1170 */
1171 @Override
1172 int getOrientation() {
Bryce Leea163b762017-01-24 11:05:01 -08001173 if (fillsParent() && (isVisible() || mService.mOpeningApps.contains(this))) {
1174 return mOrientation;
Wale Ogunwale51362492016-09-08 17:49:17 -07001175 }
Bryce Leea163b762017-01-24 11:05:01 -08001176
1177 return SCREEN_ORIENTATION_UNSET;
Wale Ogunwale51362492016-09-08 17:49:17 -07001178 }
1179
Wale Ogunwaleb198b742016-12-01 08:44:09 -08001180 /** Returns the app's preferred orientation regardless of its currently visibility state. */
1181 int getOrientationIgnoreVisibility() {
1182 return mOrientation;
1183 }
1184
Craig Mautnerdbb79912012-03-01 18:59:14 -08001185 @Override
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -07001186 void checkAppWindowsReadyToShow() {
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001187 if (allDrawn == mAppAnimator.allDrawn) {
1188 return;
1189 }
1190
1191 mAppAnimator.allDrawn = allDrawn;
1192 if (!allDrawn) {
1193 return;
1194 }
1195
1196 // The token has now changed state to having all windows shown... what to do, what to do?
1197 if (mAppAnimator.freezingScreen) {
1198 mAppAnimator.showAllWindowsLocked();
1199 stopFreezingScreen(false, true);
1200 if (DEBUG_ORIENTATION) Slog.i(TAG,
1201 "Setting mOrientationChangeComplete=true because wtoken " + this
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001202 + " numInteresting=" + mNumInterestingWindows + " numDrawn=" + mNumDrawnWindows);
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001203 // This will set mOrientationChangeComplete and cause a pass through layout.
1204 setAppLayoutChanges(FINISH_LAYOUT_REDO_WALLPAPER,
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -07001205 "checkAppWindowsReadyToShow: freezingScreen");
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001206 } else {
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -07001207 setAppLayoutChanges(FINISH_LAYOUT_REDO_ANIM, "checkAppWindowsReadyToShow");
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001208
1209 // We can now show all of the drawn windows!
1210 if (!mService.mOpeningApps.contains(this)) {
1211 mService.mAnimator.orAnimating(mAppAnimator.showAllWindowsLocked());
1212 }
1213 }
1214 }
1215
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001216 void updateAllDrawn(DisplayContent dc) {
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001217 if (!allDrawn) {
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001218 final int numInteresting = mNumInterestingWindows;
1219 if (numInteresting > 0 && mNumDrawnWindows >= numInteresting) {
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001220 if (DEBUG_VISIBILITY) Slog.v(TAG, "allDrawn: " + this
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001221 + " interesting=" + numInteresting + " drawn=" + mNumDrawnWindows);
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001222 allDrawn = true;
1223 // Force an additional layout pass where
1224 // WindowStateAnimator#commitFinishDrawingLocked() will call performShowLocked().
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001225 dc.setLayoutNeeded();
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001226 mService.mH.obtainMessage(NOTIFY_ACTIVITY_DRAWN, token).sendToTarget();
1227 }
1228 }
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001229
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001230 if (!allDrawnExcludingSaved) {
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001231 int numInteresting = mNumInterestingWindowsExcludingSaved;
1232 if (numInteresting > 0 && mNumDrawnWindowsExcludingSaved >= numInteresting) {
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001233 if (DEBUG_VISIBILITY) Slog.v(TAG, "allDrawnExcludingSaved: " + this
1234 + " interesting=" + numInteresting
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001235 + " drawn=" + mNumDrawnWindowsExcludingSaved);
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001236 allDrawnExcludingSaved = true;
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001237 dc.setLayoutNeeded();
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001238 if (isAnimatingInvisibleWithSavedSurface()
1239 && !mService.mFinishedEarlyAnim.contains(this)) {
1240 mService.mFinishedEarlyAnim.add(this);
1241 }
1242 }
1243 }
1244 }
1245
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001246 /**
1247 * Updated this app token tracking states for interesting and drawn windows based on the window.
1248 *
1249 * @return Returns true if the input window is considered interesting and drawn while all the
1250 * windows in this app token where not considered drawn as of the last pass.
1251 */
1252 boolean updateDrawnWindowStates(WindowState w) {
1253 if (DEBUG_STARTING_WINDOW && w == startingWindow) {
1254 Slog.d(TAG, "updateWindows: starting " + w + " isOnScreen=" + w.isOnScreen()
1255 + " allDrawn=" + allDrawn + " freezingScreen=" + mAppAnimator.freezingScreen);
1256 }
1257
1258 if (allDrawn && allDrawnExcludingSaved && !mAppAnimator.freezingScreen) {
1259 return false;
1260 }
1261
1262 if (mLastTransactionSequence != mService.mTransactionSequence) {
1263 mLastTransactionSequence = mService.mTransactionSequence;
1264 mNumInterestingWindows = mNumDrawnWindows = 0;
1265 mNumInterestingWindowsExcludingSaved = 0;
1266 mNumDrawnWindowsExcludingSaved = 0;
1267 startingDisplayed = false;
1268 }
1269
1270 final WindowStateAnimator winAnimator = w.mWinAnimator;
1271
1272 boolean isInterestingAndDrawn = false;
1273
1274 if (!allDrawn && w.mightAffectAllDrawn(false /* visibleOnly */)) {
1275 if (DEBUG_VISIBILITY || DEBUG_ORIENTATION) {
1276 Slog.v(TAG, "Eval win " + w + ": isDrawn=" + w.isDrawnLw()
1277 + ", isAnimationSet=" + winAnimator.isAnimationSet());
1278 if (!w.isDrawnLw()) {
1279 Slog.v(TAG, "Not displayed: s=" + winAnimator.mSurfaceController
1280 + " pv=" + w.mPolicyVisibility
1281 + " mDrawState=" + winAnimator.drawStateToString()
1282 + " ph=" + w.isParentWindowHidden() + " th=" + hiddenRequested
1283 + " a=" + winAnimator.mAnimating);
1284 }
1285 }
1286
1287 if (w != startingWindow) {
1288 if (w.isInteresting()) {
1289 mNumInterestingWindows++;
1290 if (w.isDrawnLw()) {
1291 mNumDrawnWindows++;
1292
1293 if (DEBUG_VISIBILITY || DEBUG_ORIENTATION) Slog.v(TAG, "tokenMayBeDrawn: "
1294 + this + " w=" + w + " numInteresting=" + mNumInterestingWindows
1295 + " freezingScreen=" + mAppAnimator.freezingScreen
1296 + " mAppFreezing=" + w.mAppFreezing);
1297
1298 isInterestingAndDrawn = true;
1299 }
1300 }
1301 } else if (w.isDrawnLw()) {
Jorim Jaggi3878ca32017-02-02 17:13:05 -08001302 if (getController() != null) {
1303 getController().reportStartingWindowDrawn();
1304 }
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001305 startingDisplayed = true;
1306 }
1307 }
1308
1309 if (!allDrawnExcludingSaved && w.mightAffectAllDrawn(true /* visibleOnly */)) {
1310 if (w != startingWindow && w.isInteresting()) {
1311 mNumInterestingWindowsExcludingSaved++;
1312 if (w.isDrawnLw() && !w.isAnimatingWithSavedSurface()) {
1313 mNumDrawnWindowsExcludingSaved++;
1314
1315 if (DEBUG_VISIBILITY || DEBUG_ORIENTATION) Slog.v(TAG,
1316 "tokenMayBeDrawnExcludingSaved: " + this + " w=" + w
1317 + " numInteresting=" + mNumInterestingWindowsExcludingSaved
1318 + " freezingScreen=" + mAppAnimator.freezingScreen
1319 + " mAppFreezing=" + w.mAppFreezing);
1320
1321 isInterestingAndDrawn = true;
1322 }
1323 }
1324 }
1325
1326 return isInterestingAndDrawn;
1327 }
1328
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001329 @Override
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -07001330 void stepAppWindowsAnimation(long currentTime) {
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001331 mAppAnimator.wasAnimating = mAppAnimator.animating;
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -07001332 if (mAppAnimator.stepAnimationLocked(currentTime)) {
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001333 mAppAnimator.animating = true;
1334 mService.mAnimator.setAnimating(true);
1335 mService.mAnimator.mAppWindowAnimating = true;
1336 } else if (mAppAnimator.wasAnimating) {
1337 // stopped animating, do one more pass through the layout
Wale Ogunwale1e129a42016-11-21 13:03:47 -08001338 setAppLayoutChanges(FINISH_LAYOUT_REDO_WALLPAPER,
1339 DEBUG_LAYOUT_REPEATS ? "appToken " + this + " done" : null);
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001340 if (DEBUG_ANIM) Slog.v(TAG, "updateWindowsApps...: done animating " + this);
1341 }
1342 }
1343
Wale Ogunwale9adfe572016-09-08 20:43:58 -07001344 @Override
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08001345 boolean forAllWindows(ToBooleanFunction<WindowState> callback, boolean traverseTopToBottom) {
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07001346 // For legacy reasons we process the TaskStack.mExitingAppTokens first in DisplayContent
1347 // before the non-exiting app tokens. So, we skip the exiting app tokens here.
1348 // TODO: Investigate if we need to continue to do this or if we can just process them
1349 // in-order.
1350 if (mIsExiting && !waitingForReplacement()) {
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08001351 return false;
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07001352 }
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08001353 return forAllWindowsUnchecked(callback, traverseTopToBottom);
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07001354 }
1355
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08001356 boolean forAllWindowsUnchecked(ToBooleanFunction<WindowState> callback,
1357 boolean traverseTopToBottom) {
1358 return super.forAllWindows(callback, traverseTopToBottom);
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07001359 }
1360
1361 @Override
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001362 AppWindowToken asAppWindowToken() {
1363 // I am an app window token!
1364 return this;
1365 }
1366
1367 @Override
Wale Ogunwale51362492016-09-08 17:49:17 -07001368 boolean fillsParent() {
1369 return mFillsParent;
1370 }
1371
1372 void setFillsParent(boolean fillsParent) {
1373 mFillsParent = fillsParent;
1374 }
1375
Jorim Jaggife762342016-10-13 14:33:27 +02001376 boolean containsDismissKeyguardWindow() {
1377 for (int i = mChildren.size() - 1; i >= 0; i--) {
1378 if ((mChildren.get(i).mAttrs.flags & FLAG_DISMISS_KEYGUARD) != 0) {
1379 return true;
1380 }
1381 }
1382 return false;
1383 }
1384
1385 boolean containsShowWhenLockedWindow() {
1386 for (int i = mChildren.size() - 1; i >= 0; i--) {
1387 if ((mChildren.get(i).mAttrs.flags & FLAG_SHOW_WHEN_LOCKED) != 0) {
1388 return true;
1389 }
1390 }
1391 return false;
1392 }
1393
1394 void checkKeyguardFlagsChanged() {
1395 final boolean containsDismissKeyguard = containsDismissKeyguardWindow();
1396 final boolean containsShowWhenLocked = containsShowWhenLockedWindow();
1397 if (containsDismissKeyguard != mLastContainsDismissKeyguardWindow
1398 || containsShowWhenLocked != mLastContainsShowWhenLockedWindow) {
1399 mService.notifyKeyguardFlagsChanged(null /* callback */);
1400 }
1401 mLastContainsDismissKeyguardWindow = containsDismissKeyguard;
1402 mLastContainsShowWhenLockedWindow = containsShowWhenLocked;
1403 }
1404
Wale Ogunwale6213caa2016-12-02 16:47:15 +00001405 WindowState getImeTargetBelowWindow(WindowState w) {
1406 final int index = mChildren.indexOf(w);
1407 if (index > 0) {
1408 final WindowState target = mChildren.get(index - 1);
1409 if (target.canBeImeTarget()) {
1410 return target;
1411 }
1412 }
1413 return null;
1414 }
1415
1416 WindowState getHighestAnimLayerWindow(WindowState currentTarget) {
1417 WindowState candidate = null;
1418 for (int i = mChildren.indexOf(currentTarget); i >= 0; i--) {
1419 final WindowState w = mChildren.get(i);
1420 if (w.mRemoved) {
1421 continue;
1422 }
1423 if (candidate == null || w.mWinAnimator.mAnimLayer >
1424 candidate.mWinAnimator.mAnimLayer) {
1425 candidate = w;
1426 }
1427 }
1428 return candidate;
1429 }
1430
Wale Ogunwale51362492016-09-08 17:49:17 -07001431 @Override
Robert Carrdee1b3f2017-02-27 11:33:33 -08001432 int getAnimLayerAdjustment() {
1433 return mAppAnimator.animLayerAdjustment;
1434 }
1435
1436 @Override
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001437 void dump(PrintWriter pw, String prefix) {
1438 super.dump(pw, prefix);
1439 if (appToken != null) {
Wale Ogunwale72919d22016-12-08 18:58:50 -08001440 pw.println(prefix + "app=true mVoiceInteraction=" + mVoiceInteraction);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001441 }
Bryce Lee7fbeb8a2017-03-02 08:42:30 -08001442 pw.print(prefix); pw.print("task="); pw.println(getTask());
Wale Ogunwale51362492016-09-08 17:49:17 -07001443 pw.print(prefix); pw.print(" mFillsParent="); pw.print(mFillsParent);
1444 pw.print(" mOrientation="); pw.println(mOrientation);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001445 pw.print(prefix); pw.print("hiddenRequested="); pw.print(hiddenRequested);
1446 pw.print(" clientHidden="); pw.print(clientHidden);
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -07001447 pw.print(" reportedDrawn="); pw.print(reportedDrawn);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001448 pw.print(" reportedVisible="); pw.println(reportedVisible);
Craig Mautner59431632012-04-04 11:56:44 -07001449 if (paused) {
1450 pw.print(prefix); pw.print("paused="); pw.println(paused);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001451 }
Wale Ogunwale9017ec02016-02-25 08:55:25 -08001452 if (mAppStopped) {
1453 pw.print(prefix); pw.print("mAppStopped="); pw.println(mAppStopped);
1454 }
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001455 if (mNumInterestingWindows != 0 || mNumDrawnWindows != 0
Craig Mautner6fbda632012-07-03 09:26:39 -07001456 || allDrawn || mAppAnimator.allDrawn) {
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001457 pw.print(prefix); pw.print("mNumInterestingWindows=");
1458 pw.print(mNumInterestingWindows);
1459 pw.print(" mNumDrawnWindows="); pw.print(mNumDrawnWindows);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001460 pw.print(" inPendingTransaction="); pw.print(inPendingTransaction);
Craig Mautner6fbda632012-07-03 09:26:39 -07001461 pw.print(" allDrawn="); pw.print(allDrawn);
1462 pw.print(" (animator="); pw.print(mAppAnimator.allDrawn);
1463 pw.println(")");
1464 }
1465 if (inPendingTransaction) {
1466 pw.print(prefix); pw.print("inPendingTransaction=");
1467 pw.println(inPendingTransaction);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001468 }
Craig Mautner799bc1d2015-01-14 10:33:48 -08001469 if (startingData != null || removed || firstWindowDrawn || mIsExiting) {
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001470 pw.print(prefix); pw.print("startingData="); pw.print(startingData);
1471 pw.print(" removed="); pw.print(removed);
Craig Mautner3d7ca312015-01-08 10:56:00 -08001472 pw.print(" firstWindowDrawn="); pw.print(firstWindowDrawn);
Craig Mautner799bc1d2015-01-14 10:33:48 -08001473 pw.print(" mIsExiting="); pw.println(mIsExiting);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001474 }
Jorim Jaggiba41f4b2016-12-14 17:43:07 -08001475 if (startingWindow != null || startingSurface != null
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001476 || startingDisplayed || startingMoved) {
1477 pw.print(prefix); pw.print("startingWindow="); pw.print(startingWindow);
Jorim Jaggiba41f4b2016-12-14 17:43:07 -08001478 pw.print(" startingSurface="); pw.print(startingSurface);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001479 pw.print(" startingDisplayed="); pw.print(startingDisplayed);
Wale Ogunwale9017ec02016-02-25 08:55:25 -08001480 pw.print(" startingMoved="); pw.println(startingMoved);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001481 }
Jorim Jaggi0429f352015-12-22 16:29:16 +01001482 if (!mFrozenBounds.isEmpty()) {
Chong Zhangd78ddb42016-03-02 17:01:14 -08001483 pw.print(prefix); pw.print("mFrozenBounds="); pw.println(mFrozenBounds);
Jorim Jaggi26c8c422016-05-09 19:57:25 -07001484 pw.print(prefix); pw.print("mFrozenMergedConfig="); pw.println(mFrozenMergedConfig);
Chong Zhangd78ddb42016-03-02 17:01:14 -08001485 }
1486 if (mPendingRelaunchCount != 0) {
1487 pw.print(prefix); pw.print("mPendingRelaunchCount="); pw.println(mPendingRelaunchCount);
Jorim Jaggi0429f352015-12-22 16:29:16 +01001488 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001489 }
1490
1491 @Override
1492 public String toString() {
1493 if (stringName == null) {
1494 StringBuilder sb = new StringBuilder();
1495 sb.append("AppWindowToken{");
1496 sb.append(Integer.toHexString(System.identityHashCode(this)));
1497 sb.append(" token="); sb.append(token); sb.append('}');
1498 stringName = sb.toString();
1499 }
Wale Ogunwaleba51ca22016-09-23 06:06:54 -07001500 return stringName + ((mIsExiting) ? " mIsExiting=" : "");
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001501 }
Jeff Browne9bdb312012-04-05 15:30:10 -07001502}