blob: 22630428ad01efc71b94fa0abb378d0ac5492e27 [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 Ogunwale9d9d8f12016-09-28 15:29:59 -070045import static com.android.server.wm.WindowManagerService.H.NOTIFY_STARTING_WINDOW_DRAWN;
Wale Ogunwaleac2561e2016-11-01 15:43:46 -070046import static com.android.server.wm.WindowManagerService.UPDATE_FOCUS_NORMAL;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -070047import static com.android.server.wm.WindowManagerService.UPDATE_FOCUS_WILL_PLACE_SURFACES;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -070048import static com.android.server.wm.WindowManagerService.logWithStack;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080049
Filip Gruszczynskia590c992015-11-25 16:45:26 -080050import android.annotation.NonNull;
Jorim Jaggi26c8c422016-05-09 19:57:25 -070051import android.content.res.Configuration;
Jorim Jaggi0429f352015-12-22 16:29:16 +010052import android.graphics.Rect;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -070053import android.os.Binder;
Jorim Jaggiba41f4b2016-12-14 17:43:07 -080054import android.os.Debug;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -070055import android.os.IBinder;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -070056import android.os.SystemClock;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080057import android.util.Slog;
58import android.view.IApplicationToken;
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 Ogunwalef6192862016-09-10 13:42:30 -070087 // TODO: Use getParent instead?
Craig Mautner83162a92015-01-26 14:43:30 -080088 Task mTask;
Wale Ogunwale51362492016-09-08 17:49:17 -070089 /** @see WindowContainer#fillsParent() */
90 private boolean mFillsParent;
Craig Mautner4c5eb222013-11-18 12:59:05 -080091 boolean layoutConfigChanges;
Wale Ogunwale72919d22016-12-08 18:58:50 -080092 boolean mShowForAllUsers;
93 int mTargetSdk;
Craig Mautnera2c77052012-03-26 12:14:43 -070094
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080095 // The input dispatching timeout for this application token in nanoseconds.
Wale Ogunwale72919d22016-12-08 18:58:50 -080096 long mInputDispatchingTimeoutNanos;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080097
98 // These are used for determining when all windows associated with
99 // an activity have been drawn, so they can be made visible together
100 // at the same time.
Craig Mautner764983d2012-03-22 11:37:36 -0700101 // initialize so that it doesn't match mTransactionSequence which is an int.
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -0700102 private long mLastTransactionSequence = Long.MIN_VALUE;
103 private int mNumInterestingWindows;
104 private int mNumDrawnWindows;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800105 boolean inPendingTransaction;
106 boolean allDrawn;
Craig Mautner7636dfb2012-11-16 15:24:11 -0800107 // Set to true when this app creates a surface while in the middle of an animation. In that
108 // case do not clear allDrawn until the animation completes.
109 boolean deferClearAllDrawn;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800110
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -0700111 /**
112 * These are to track the app's real drawing status if there were no saved surfaces.
113 * @see #updateDrawnWindowStates
114 */
Chong Zhang8e4bda92016-05-04 15:08:18 -0700115 boolean allDrawnExcludingSaved;
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -0700116 private int mNumInterestingWindowsExcludingSaved;
117 private int mNumDrawnWindowsExcludingSaved;
Chong Zhang8e4bda92016-05-04 15:08:18 -0700118
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800119 // Is this window's surface needed? This is almost like hidden, except
120 // it will sometimes be true a little earlier: when the token has
121 // been shown, but is still waiting for its app transition to execute
122 // before making its windows shown.
123 boolean hiddenRequested;
124
125 // Have we told the window clients to hide themselves?
126 boolean clientHidden;
127
128 // Last visibility state we reported to the app token.
129 boolean reportedVisible;
130
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700131 // Last drawn state we reported to the app token.
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -0700132 private boolean reportedDrawn;
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700133
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800134 // Set to true when the token has been removed from the window mgr.
135 boolean removed;
136
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800137 // Information about an application starting window if displayed.
138 StartingData startingData;
139 WindowState startingWindow;
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800140 StartingSurface startingSurface;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800141 boolean startingDisplayed;
142 boolean startingMoved;
143 boolean firstWindowDrawn;
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700144 private final WindowState.UpdateReportedVisibilityResults mReportedVisibilityResults =
145 new WindowState.UpdateReportedVisibilityResults();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800146
147 // Input application handle used by the input dispatcher.
Jeff Brown9302c872011-07-13 22:51:29 -0700148 final InputApplicationHandle mInputApplicationHandle;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800149
Wale Ogunwale571771c2016-08-26 13:18:50 -0700150 // TODO: Have a WindowContainer state for tracking exiting/deferred removal.
Craig Mautner799bc1d2015-01-14 10:33:48 -0800151 boolean mIsExiting;
Craig Mautner9ef471f2014-02-07 13:11:47 -0800152
Craig Mautnerbb742462014-07-07 15:28:55 -0700153 boolean mLaunchTaskBehind;
Craig Mautner8746a472014-07-24 15:12:54 -0700154 boolean mEnteringAnimation;
Craig Mautnerbb742462014-07-07 15:28:55 -0700155
Wale Ogunwale72919d22016-12-08 18:58:50 -0800156 private boolean mAlwaysFocusable;
Wale Ogunwale6cae7652015-12-26 07:36:26 -0800157
Robert Carre12aece2016-02-02 22:43:27 -0800158 boolean mAppStopped;
Robert Carrfd10cd12016-06-29 16:41:50 -0700159 int mRotationAnimationHint;
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -0700160 private int mPendingRelaunchCount;
Robert Carre12aece2016-02-02 22:43:27 -0800161
Jorim Jaggife762342016-10-13 14:33:27 +0200162 private boolean mLastContainsShowWhenLockedWindow;
163 private boolean mLastContainsDismissKeyguardWindow;
164
Robert Carr91b228092016-06-28 17:32:37 -0700165 private ArrayList<WindowSurfaceController.SurfaceControlWithBackground> mSurfaceViewBackgrounds =
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700166 new ArrayList<>();
Robert Carr91b228092016-06-28 17:32:37 -0700167
Jorim Jaggi0429f352015-12-22 16:29:16 +0100168 ArrayDeque<Rect> mFrozenBounds = new ArrayDeque<>();
Jorim Jaggi26c8c422016-05-09 19:57:25 -0700169 ArrayDeque<Configuration> mFrozenMergedConfig = new ArrayDeque<>();
Jorim Jaggi0429f352015-12-22 16:29:16 +0100170
Wale Ogunwale72919d22016-12-08 18:58:50 -0800171 AppWindowToken(WindowManagerService service, IApplicationToken token, boolean voiceInteraction,
172 DisplayContent dc, long inputDispatchingTimeoutNanos, boolean fullscreen,
173 boolean showForAllUsers, int targetSdk, int orientation, int rotationAnimationHint,
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800174 int configChanges, boolean launchTaskBehind, boolean alwaysFocusable,
175 AppWindowContainerController controller) {
Wale Ogunwale17f175c2017-02-07 16:54:10 -0800176 this(service, token, voiceInteraction, dc, fullscreen);
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800177 setController(controller);
Wale Ogunwale72919d22016-12-08 18:58:50 -0800178 mInputDispatchingTimeoutNanos = inputDispatchingTimeoutNanos;
Wale Ogunwale72919d22016-12-08 18:58:50 -0800179 mShowForAllUsers = showForAllUsers;
180 mTargetSdk = targetSdk;
181 mOrientation = orientation;
182 layoutConfigChanges = (configChanges & (CONFIG_SCREEN_SIZE | CONFIG_ORIENTATION)) != 0;
183 mLaunchTaskBehind = launchTaskBehind;
184 mAlwaysFocusable = alwaysFocusable;
185 mRotationAnimationHint = rotationAnimationHint;
186
187 // Application tokens start out hidden.
188 hidden = true;
189 hiddenRequested = true;
190 }
191
192 AppWindowToken(WindowManagerService service, IApplicationToken token, boolean voiceInteraction,
Wale Ogunwale17f175c2017-02-07 16:54:10 -0800193 DisplayContent dc, boolean fillsParent) {
Wale Ogunwale5cd907d2017-01-26 14:14:08 -0800194 super(service, token != null ? token.asBinder() : null, TYPE_APPLICATION, true, dc,
195 false /* ownerCanManageAppTokens */);
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700196 appToken = token;
Wale Ogunwale72919d22016-12-08 18:58:50 -0800197 mVoiceInteraction = voiceInteraction;
Wale Ogunwale17f175c2017-02-07 16:54:10 -0800198 mFillsParent = fillsParent;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800199 mInputApplicationHandle = new InputApplicationHandle(this);
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700200 mAppAnimator = new AppWindowAnimator(this, service);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800201 }
202
Wale Ogunwale9017ec02016-02-25 08:55:25 -0800203 void onFirstWindowDrawn(WindowState win, WindowStateAnimator winAnimator) {
204 firstWindowDrawn = true;
205
206 // We now have a good window to show, remove dead placeholders
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700207 removeDeadWindows();
Wale Ogunwale9017ec02016-02-25 08:55:25 -0800208
Jorim Jaggi02886a82016-12-06 09:10:06 -0800209 if (startingWindow != null) {
Wale Ogunwale9017ec02016-02-25 08:55:25 -0800210 if (DEBUG_STARTING_WINDOW || DEBUG_ANIM) Slog.v(TAG, "Finish starting "
211 + win.mToken + ": first real window is shown, no animation");
212 // If this initial window is animating, stop it -- we will do an animation to reveal
213 // it from behind the starting window, so there is no need for it to also be doing its
214 // own stuff.
215 winAnimator.clearAnimation();
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800216 if (getController() != null) {
217 getController().removeStartingWindow();
218 }
Wale Ogunwale9017ec02016-02-25 08:55:25 -0800219 }
220 updateReportedVisibilityLocked();
221 }
222
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800223 void updateReportedVisibilityLocked() {
224 if (appToken == null) {
225 return;
226 }
227
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700228 if (DEBUG_VISIBILITY) Slog.v(TAG, "Update reported visibility: " + this);
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700229 final int count = mChildren.size();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800230
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700231 mReportedVisibilityResults.reset();
232
233 for (int i = 0; i < count; i++) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700234 final WindowState win = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700235 win.updateReportedVisibility(mReportedVisibilityResults);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800236 }
237
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700238 int numInteresting = mReportedVisibilityResults.numInteresting;
239 int numVisible = mReportedVisibilityResults.numVisible;
240 int numDrawn = mReportedVisibilityResults.numDrawn;
241 boolean nowGone = mReportedVisibilityResults.nowGone;
242
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700243 boolean nowDrawn = numInteresting > 0 && numDrawn >= numInteresting;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800244 boolean nowVisible = numInteresting > 0 && numVisible >= numInteresting;
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700245 if (!nowGone) {
246 // If the app is not yet gone, then it can only become visible/drawn.
247 if (!nowDrawn) {
248 nowDrawn = reportedDrawn;
249 }
250 if (!nowVisible) {
251 nowVisible = reportedVisible;
252 }
253 }
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800254 if (DEBUG_VISIBILITY) Slog.v(TAG, "VIS " + this + ": interesting="
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800255 + numInteresting + " visible=" + numVisible);
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800256 final AppWindowContainerController controller = getController();
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700257 if (nowDrawn != reportedDrawn) {
258 if (nowDrawn) {
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800259 if (controller != null) {
260 controller.reportWindowsDrawn();
261 }
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700262 }
263 reportedDrawn = nowDrawn;
264 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800265 if (nowVisible != reportedVisible) {
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700266 if (DEBUG_VISIBILITY) Slog.v(TAG,
267 "Visibility changed in " + this + ": vis=" + nowVisible);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800268 reportedVisible = nowVisible;
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800269 if (controller != null) {
270 if (nowVisible) {
271 controller.reportWindowsVisible();
272 } else {
273 controller.reportWindowsGone();
274 }
275 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800276 }
277 }
278
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700279 boolean setVisibility(WindowManager.LayoutParams lp,
280 boolean visible, int transit, boolean performLayout, boolean isVoiceInteraction) {
281
282 boolean delayed = false;
283 inPendingTransaction = false;
284
285 if (clientHidden == visible) {
286 clientHidden = !visible;
287 sendAppVisibilityToClients();
288 }
289
290 // Allow for state changes and animation to be applied if:
291 // * token is transitioning visibility state
292 // * or the token was marked as hidden and is exiting before we had a chance to play the
293 // transition animation
294 // * or this is an opening app and windows are being replaced.
295 boolean visibilityChanged = false;
296 if (hidden == visible || (hidden && mIsExiting) || (visible && waitingForReplacement())) {
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700297 final AccessibilityController accessibilityController = mService.mAccessibilityController;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700298 boolean changed = false;
299 if (DEBUG_APP_TRANSITIONS) Slog.v(TAG_WM,
300 "Changing app " + this + " hidden=" + hidden + " performLayout=" + performLayout);
301
302 boolean runningAppAnimation = false;
303
304 if (transit != AppTransition.TRANSIT_UNSET) {
305 if (mAppAnimator.animation == AppWindowAnimator.sDummyAnimation) {
306 mAppAnimator.setNullAnimation();
307 }
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700308 if (mService.applyAnimationLocked(this, lp, transit, visible, isVoiceInteraction)) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700309 delayed = runningAppAnimation = true;
310 }
311 final WindowState window = findMainWindow();
312 //TODO (multidisplay): Magnification is supported only for the default display.
313 if (window != null && accessibilityController != null
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -0700314 && getDisplayContent().getDisplayId() == DEFAULT_DISPLAY) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700315 accessibilityController.onAppWindowTransitionLocked(window, transit);
316 }
317 changed = true;
318 }
319
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700320 final int windowsCount = mChildren.size();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700321 for (int i = 0; i < windowsCount; i++) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700322 final WindowState win = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700323 changed |= win.onAppVisibilityChanged(visible, runningAppAnimation);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700324 }
325
326 hidden = hiddenRequested = !visible;
327 visibilityChanged = true;
328 if (!visible) {
329 stopFreezingScreen(true, true);
330 } else {
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700331 // If we are being set visible, and the starting window is not yet displayed,
332 // then make sure it doesn't get displayed.
333 if (startingWindow != null && !startingWindow.isDrawnLw()) {
334 startingWindow.mPolicyVisibility = false;
335 startingWindow.mPolicyVisibilityAfterAnim = false;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700336 }
337 }
338
339 if (DEBUG_APP_TRANSITIONS) Slog.v(TAG_WM, "setVisibility: " + this
340 + ": hidden=" + hidden + " hiddenRequested=" + hiddenRequested);
341
342 if (changed) {
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700343 mService.mInputMonitor.setUpdateInputWindowsNeededLw();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700344 if (performLayout) {
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700345 mService.updateFocusedWindowLocked(UPDATE_FOCUS_WILL_PLACE_SURFACES,
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700346 false /*updateInputWindows*/);
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700347 mService.mWindowPlacerLocked.performSurfacePlacement();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700348 }
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700349 mService.mInputMonitor.updateInputWindowsLw(false /*force*/);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700350 }
351 }
352
353 if (mAppAnimator.animation != null) {
354 delayed = true;
355 }
356
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700357 for (int i = mChildren.size() - 1; i >= 0 && !delayed; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700358 if ((mChildren.get(i)).isWindowAnimationSet()) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700359 delayed = true;
360 }
361 }
362
363 if (visibilityChanged) {
364 if (visible && !delayed) {
365 // The token was made immediately visible, there will be no entrance animation.
366 // We need to inform the client the enter animation was finished.
367 mEnteringAnimation = true;
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700368 mService.mActivityManagerAppTransitionNotifier.onAppTransitionFinishedLocked(token);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700369 }
370
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700371 if (!mService.mClosingApps.contains(this) && !mService.mOpeningApps.contains(this)) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700372 // The token is not closing nor opening, so even if there is an animation set, that
373 // doesn't mean that it goes through the normal app transition cycle so we have
374 // to inform the docked controller about visibility change.
Andrii Kulian1e32e022016-09-16 15:29:34 -0700375 // TODO(multi-display): notify docked divider on all displays where visibility was
376 // affected.
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700377 mService.getDefaultDisplayContentLocked().getDockedDividerController()
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700378 .notifyAppVisibilityChanged();
Jorim Jaggi8b702ed2017-01-20 16:59:03 +0100379 mService.mTaskSnapshotController.notifyAppVisibilityChanged(this, visible);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700380 }
381 }
382
383 return delayed;
384 }
385
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800386 WindowState findMainWindow() {
Filip Gruszczynski55a309f2015-09-04 17:15:01 -0700387 WindowState candidate = null;
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700388 int j = mChildren.size();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800389 while (j > 0) {
390 j--;
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700391 final WindowState win = mChildren.get(j);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700392 final int type = win.mAttrs.type;
393 // No need to loop through child window as base application and starting types can't be
394 // child windows.
395 if (type == TYPE_BASE_APPLICATION || type == TYPE_APPLICATION_STARTING) {
Filip Gruszczynski55a309f2015-09-04 17:15:01 -0700396 // In cases where there are multiple windows, we prefer the non-exiting window. This
Sungsoo Lim0d3d1f82015-12-02 14:47:59 +0900397 // happens for example when replacing windows during an activity relaunch. When
Filip Gruszczynski55a309f2015-09-04 17:15:01 -0700398 // constructing the animation, we want the new window, not the exiting one.
Wale Ogunwalec48a3542016-02-19 15:18:45 -0800399 if (win.mAnimatingExit) {
Filip Gruszczynski55a309f2015-09-04 17:15:01 -0700400 candidate = win;
401 } else {
402 return win;
403 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800404 }
405 }
Filip Gruszczynski55a309f2015-09-04 17:15:01 -0700406 return candidate;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800407 }
408
Wale Ogunwale6cae7652015-12-26 07:36:26 -0800409 boolean windowsAreFocusable() {
410 return StackId.canReceiveKeys(mTask.mStack.mStackId) || mAlwaysFocusable;
Wale Ogunwaled045c822015-12-02 09:14:28 -0800411 }
412
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800413 AppWindowContainerController getController() {
414 final WindowContainerController controller = super.getController();
415 return controller != null ? (AppWindowContainerController) controller : null;
416 }
417
Wale Ogunwale571771c2016-08-26 13:18:50 -0700418 @Override
Wale Ogunwale44f21802016-09-02 12:49:48 -0700419 boolean isVisible() {
Wale Ogunwalee471be62016-10-03 07:53:55 -0700420 // If the app token isn't hidden then it is considered visible and there is no need to check
421 // its children windows to see if they are visible.
422 return !hidden;
Wale Ogunwale44f21802016-09-02 12:49:48 -0700423 }
424
425 @Override
Wale Ogunwale571771c2016-08-26 13:18:50 -0700426 void removeIfPossible() {
Craig Mautnere3119b72015-01-20 15:02:36 -0800427 mIsExiting = false;
Wale Ogunwale3d0bfd92016-12-05 11:38:02 -0800428 removeAllWindowsIfPossible();
Wale Ogunwale571771c2016-08-26 13:18:50 -0700429 if (mTask != null) {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700430 mTask.mStack.mExitingAppTokens.remove(this);
Wale Ogunwale3d0bfd92016-12-05 11:38:02 -0800431 removeImmediately();
Craig Mautnere3119b72015-01-20 15:02:36 -0800432 }
433 }
434
Wale Ogunwale3f4433d2016-08-18 20:42:42 -0700435 @Override
436 boolean checkCompleteDeferredRemoval() {
437 if (mIsExiting) {
438 removeIfPossible();
439 }
440 return super.checkCompleteDeferredRemoval();
441 }
442
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700443 void onRemovedFromDisplay() {
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700444 if (DEBUG_APP_TRANSITIONS) Slog.v(TAG_WM, "Removing app token: " + this);
445
Wale Ogunwale72919d22016-12-08 18:58:50 -0800446 boolean delayed = setVisibility(null, false, TRANSIT_UNSET, true, mVoiceInteraction);
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700447
448 mService.mOpeningApps.remove(this);
Jorim Jaggi1b4b23e2016-11-15 16:30:12 -0800449 mService.mUnknownAppVisibilityController.appRemoved(this);
Jorim Jaggi10abe2f2017-01-03 16:44:46 +0100450 mService.mTaskSnapshotController.onAppRemoved(this);
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700451 waitingToShow = false;
452 if (mService.mClosingApps.contains(this)) {
453 delayed = true;
454 } else if (mService.mAppTransition.isTransitionSet()) {
455 mService.mClosingApps.add(this);
456 delayed = true;
457 }
458
459 if (DEBUG_APP_TRANSITIONS) Slog.v(TAG_WM, "Removing app " + this + " delayed=" + delayed
460 + " animation=" + mAppAnimator.animation + " animating=" + mAppAnimator.animating);
461
462 if (DEBUG_ADD_REMOVE || DEBUG_TOKEN_MOVEMENT) Slog.v(TAG_WM, "removeAppToken: "
463 + this + " delayed=" + delayed + " Callers=" + Debug.getCallers(4));
464
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800465 if (startingData != null && getController() != null) {
466 getController().removeStartingWindow();
467 }
468
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700469 final TaskStack stack = mTask.mStack;
470 if (delayed && !isEmpty()) {
471 // set the token aside because it has an active animation to be finished
472 if (DEBUG_ADD_REMOVE || DEBUG_TOKEN_MOVEMENT) Slog.v(TAG_WM,
473 "removeAppToken make exiting: " + this);
474 stack.mExitingAppTokens.add(this);
475 mIsExiting = true;
476 } else {
477 // Make sure there is no animation running on this token, so any windows associated
478 // with it will be removed as soon as their animations are complete
479 mAppAnimator.clearAnimation();
480 mAppAnimator.animating = false;
481 removeIfPossible();
482 }
483
484 removed = true;
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700485 stopFreezingScreen(true, true);
486 if (mService.mFocusedApp == this) {
487 if (DEBUG_FOCUS_LIGHT) Slog.v(TAG_WM, "Removing focused app token:" + this);
488 mService.mFocusedApp = null;
489 mService.updateFocusedWindowLocked(UPDATE_FOCUS_NORMAL, true /*updateInputWindows*/);
490 mService.mInputMonitor.setFocusedAppLw(null);
491 }
492
493 if (!delayed) {
494 updateReportedVisibilityLocked();
495 }
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700496 }
497
Chong Zhange05bcb12016-07-26 17:47:29 -0700498 void clearAnimatingFlags() {
Chong Zhangb0d26702016-08-12 16:03:29 -0700499 boolean wallpaperMightChange = false;
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700500 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700501 final WindowState win = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700502 wallpaperMightChange |= win.clearAnimatingFlags();
Chong Zhange05bcb12016-07-26 17:47:29 -0700503 }
Chong Zhangb0d26702016-08-12 16:03:29 -0700504 if (wallpaperMightChange) {
505 requestUpdateWallpaperIfNeeded();
506 }
Chong Zhange05bcb12016-07-26 17:47:29 -0700507 }
508
Robert Carre12aece2016-02-02 22:43:27 -0800509 void destroySurfaces() {
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700510 destroySurfaces(false /*cleanupOnResume*/);
511 }
512
513 /**
514 * Destroy surfaces which have been marked as eligible by the animator, taking care to ensure
515 * the client has finished with them.
516 *
517 * @param cleanupOnResume whether this is done when app is resumed without fully stopped. If
518 * set to true, destroy only surfaces of removed windows, and clear relevant flags of the
519 * others so that they are ready to be reused. If set to false (common case), destroy all
520 * surfaces that's eligible, if the app is already stopped.
521 */
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700522 private void destroySurfaces(boolean cleanupOnResume) {
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -0700523 boolean destroyedSomething = false;
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700524 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700525 final WindowState win = mChildren.get(i);
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -0700526 destroyedSomething |= win.destroySurface(cleanupOnResume, mAppStopped);
Robert Carre12aece2016-02-02 22:43:27 -0800527 }
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -0700528 if (destroyedSomething) {
529 final DisplayContent dc = getDisplayContent();
Wale Ogunwalec69694a2016-10-18 13:51:15 -0700530 dc.assignWindowLayers(true /*setLayoutNeeded*/);
Robert Carre12aece2016-02-02 22:43:27 -0800531 }
532 }
533
Wale Ogunwale8d5a5422016-03-03 18:28:21 -0800534 /**
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700535 * Notify that the app is now resumed, and it was not stopped before, perform a clean
536 * up of the surfaces
Wale Ogunwale8d5a5422016-03-03 18:28:21 -0800537 */
Chong Zhangad24f962016-08-25 12:12:33 -0700538 void notifyAppResumed(boolean wasStopped, boolean allowSavedSurface) {
539 if (DEBUG_ADD_REMOVE) Slog.v(TAG, "notifyAppResumed: wasStopped=" + wasStopped
540 + " allowSavedSurface=" + allowSavedSurface + " " + this);
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700541 mAppStopped = false;
542 if (!wasStopped) {
543 destroySurfaces(true /*cleanupOnResume*/);
Wale Ogunwale8d5a5422016-03-03 18:28:21 -0800544 }
Chong Zhangad24f962016-08-25 12:12:33 -0700545 if (!allowSavedSurface) {
546 destroySavedSurfaces();
547 }
Robert Carre12aece2016-02-02 22:43:27 -0800548 }
549
Chong Zhangbef461f2015-10-27 11:38:24 -0700550 /**
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700551 * Notify that the app has stopped, and it is okay to destroy any surfaces which were
552 * keeping alive in case they were still being used.
553 */
554 void notifyAppStopped() {
555 if (DEBUG_ADD_REMOVE) Slog.v(TAG, "notifyAppStopped: " + this);
556 mAppStopped = true;
557 destroySurfaces();
558 // Remove any starting window that was added for this app if they are still around.
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800559 if (getController() != null) {
560 getController().removeStartingWindow();
561 }
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700562 }
563
564 /**
Chong Zhangbef461f2015-10-27 11:38:24 -0700565 * Checks whether we should save surfaces for this app.
566 *
567 * @return true if the surfaces should be saved, false otherwise.
568 */
569 boolean shouldSaveSurface() {
Chong Zhangbfc2f8f2016-01-29 15:50:34 -0800570 // We want to save surface if the app's windows are "allDrawn".
571 // (If we started entering animation early with saved surfaces, allDrawn
572 // should have been restored to true. So we'll save again in that case
573 // even if app didn't actually finish drawing.)
574 return allDrawn;
Robert Carr13f7be9e2015-12-02 18:39:45 -0800575 }
576
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700577 private boolean canRestoreSurfaces() {
578 for (int i = mChildren.size() -1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700579 final WindowState w = mChildren.get(i);
Chong Zhang92147042016-05-09 12:47:11 -0700580 if (w.canRestoreSurface()) {
Robert Carr13f7be9e2015-12-02 18:39:45 -0800581 return true;
582 }
Chong Zhangbef461f2015-10-27 11:38:24 -0700583 }
584 return false;
585 }
586
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700587 private void clearWasVisibleBeforeClientHidden() {
588 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700589 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700590 w.clearWasVisibleBeforeClientHidden();
Chong Zhang92147042016-05-09 12:47:11 -0700591 }
592 }
593
Chong Zhang8e4bda92016-05-04 15:08:18 -0700594 /**
595 * Whether the app has some window that is invisible in layout, but
596 * animating with saved surface.
597 */
598 boolean isAnimatingInvisibleWithSavedSurface() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700599 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700600 final WindowState w = mChildren.get(i);
Chong Zhang8e4bda92016-05-04 15:08:18 -0700601 if (w.isAnimatingInvisibleWithSavedSurface()) {
602 return true;
603 }
604 }
605 return false;
606 }
607
608 /**
609 * Hide all window surfaces that's still invisible in layout but animating
610 * with a saved surface, and mark them destroying.
611 */
612 void stopUsingSavedSurfaceLocked() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700613 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700614 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700615 w.stopUsingSavedSurface();
Chong Zhang8e4bda92016-05-04 15:08:18 -0700616 }
617 destroySurfaces();
618 }
619
Chong Zhangf58631a2016-05-24 16:02:10 -0700620 void markSavedSurfaceExiting() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700621 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700622 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700623 w.markSavedSurfaceExiting();
Chong Zhangf58631a2016-05-24 16:02:10 -0700624 }
625 }
626
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700627 void restoreSavedSurfaceForInterestingWindows() {
Chong Zhang92147042016-05-09 12:47:11 -0700628 if (!canRestoreSurfaces()) {
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700629 clearWasVisibleBeforeClientHidden();
Chong Zhangbef461f2015-10-27 11:38:24 -0700630 return;
631 }
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700632
633 // Check if all interesting windows are drawn and we can mark allDrawn=true.
634 int interestingNotDrawn = -1;
635
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700636 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700637 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700638 interestingNotDrawn = w.restoreSavedSurfaceForInterestingWindow();
Chong Zhangbef461f2015-10-27 11:38:24 -0700639 }
Chong Zhangbfc2f8f2016-01-29 15:50:34 -0800640
Chong Zhang92147042016-05-09 12:47:11 -0700641 if (!allDrawn) {
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700642 allDrawn = (interestingNotDrawn == 0);
Chong Zhang92147042016-05-09 12:47:11 -0700643 if (allDrawn) {
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700644 mService.mH.obtainMessage(NOTIFY_ACTIVITY_DRAWN, token).sendToTarget();
Chong Zhang92147042016-05-09 12:47:11 -0700645 }
646 }
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700647 clearWasVisibleBeforeClientHidden();
Chong Zhangbfc2f8f2016-01-29 15:50:34 -0800648
649 if (DEBUG_APP_TRANSITIONS || DEBUG_ANIM) Slog.d(TAG,
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700650 "restoreSavedSurfaceForInterestingWindows: " + this + " allDrawn=" + allDrawn
651 + " interestingNotDrawn=" + interestingNotDrawn);
Chong Zhangbef461f2015-10-27 11:38:24 -0700652 }
653
654 void destroySavedSurfaces() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700655 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700656 final WindowState win = mChildren.get(i);
Robert Carr13f7be9e2015-12-02 18:39:45 -0800657 win.destroySavedSurface();
Chong Zhangbef461f2015-10-27 11:38:24 -0700658 }
Chong Zhang92147042016-05-09 12:47:11 -0700659 }
660
661 void clearAllDrawn() {
662 allDrawn = false;
663 deferClearAllDrawn = false;
Chong Zhang8e4bda92016-05-04 15:08:18 -0700664 allDrawnExcludingSaved = false;
Chong Zhangbef461f2015-10-27 11:38:24 -0700665 }
666
Wale Ogunwalefa854eb2016-09-20 13:43:52 -0700667 void postWindowRemoveStartingWindowCleanup(WindowState win) {
Wale Ogunwale92fc3722016-08-05 12:19:08 -0700668 // TODO: Something smells about the code below...Is there a better way?
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700669 if (startingWindow == win) {
670 if (DEBUG_STARTING_WINDOW) Slog.v(TAG_WM, "Notify removed startingWindow " + win);
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800671 if (getController() != null) {
672 getController().removeStartingWindow();
673 }
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700674 } else if (mChildren.size() == 0 && startingData != null) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700675 // If this is the last window and we had requested a starting transition window,
676 // well there is no point now.
Jorim Jaggi02886a82016-12-06 09:10:06 -0800677 if (DEBUG_STARTING_WINDOW) Slog.v(TAG_WM, "Nulling last startingData");
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700678 startingData = null;
Jorim Jaggi829b9cd2017-01-23 16:20:53 +0100679 } else if (mChildren.size() == 1 && startingSurface != null && !isRelaunching()) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700680 // If this is the last window except for a starting transition window,
681 // we need to get rid of the starting transition.
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800682 if (getController() != null) {
683 getController().removeStartingWindow();
684 }
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700685 }
686 }
687
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700688 void removeDeadWindows() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700689 for (int winNdx = mChildren.size() - 1; winNdx >= 0; --winNdx) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700690 WindowState win = mChildren.get(winNdx);
Chong Zhang112eb8c2015-11-02 11:17:00 -0800691 if (win.mAppDied) {
Wale Ogunwale92fc3722016-08-05 12:19:08 -0700692 if (DEBUG_WINDOW_MOVEMENT || DEBUG_ADD_REMOVE) Slog.w(TAG,
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700693 "removeDeadWindows: " + win);
Chong Zhang112eb8c2015-11-02 11:17:00 -0800694 // Set mDestroying, we don't want any animation or delayed removal here.
695 win.mDestroying = true;
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700696 // Also removes child windows.
Wale Ogunwale92fc3722016-08-05 12:19:08 -0700697 win.removeIfPossible();
Chong Zhang112eb8c2015-11-02 11:17:00 -0800698 }
699 }
700 }
701
Wale Ogunwalee42d0e12016-05-02 16:40:59 -0700702 boolean hasWindowsAlive() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700703 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700704 // No need to loop through child windows as the answer should be the same as that of the
705 // parent window.
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700706 if (!(mChildren.get(i)).mAppDied) {
Wale Ogunwalee42d0e12016-05-02 16:40:59 -0700707 return true;
708 }
709 }
710 return false;
711 }
712
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700713 void setWillReplaceWindows(boolean animate) {
Wale Ogunwale455fac52016-07-21 07:24:49 -0700714 if (DEBUG_ADD_REMOVE) Slog.d(TAG_WM,
715 "Marking app token " + this + " with replacing windows.");
Robert Carra1eb4392015-12-10 12:43:51 -0800716
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700717 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700718 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700719 w.setWillReplaceWindow(animate);
Robert Carra1eb4392015-12-10 12:43:51 -0800720 }
721 if (animate) {
722 // Set-up dummy animation so we can start treating windows associated with this
723 // token like they are in transition before the new app window is ready for us to
724 // run the real transition animation.
725 if (DEBUG_APP_TRANSITIONS) Slog.v(TAG_WM,
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700726 "setWillReplaceWindow() Setting dummy animation on: " + this);
Robert Carra1eb4392015-12-10 12:43:51 -0800727 mAppAnimator.setDummyAnimation();
728 }
729 }
730
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700731 void setWillReplaceChildWindows() {
Wale Ogunwale455fac52016-07-21 07:24:49 -0700732 if (DEBUG_ADD_REMOVE) Slog.d(TAG_WM, "Marking app token " + this
Robert Carr23fa16b2016-01-13 13:19:58 -0800733 + " with replacing child windows.");
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700734 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700735 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700736 w.setWillReplaceChildWindows();
Robert Carr23fa16b2016-01-13 13:19:58 -0800737 }
738 }
739
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700740 void clearWillReplaceWindows() {
Wale Ogunwale455fac52016-07-21 07:24:49 -0700741 if (DEBUG_ADD_REMOVE) Slog.d(TAG_WM,
742 "Resetting app token " + this + " of replacing window marks.");
Chong Zhangf596cd52016-01-05 13:42:44 -0800743
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700744 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700745 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700746 w.clearWillReplaceWindow();
Chong Zhangf596cd52016-01-05 13:42:44 -0800747 }
748 }
749
Chong Zhang4d7369a2016-04-25 16:09:14 -0700750 void requestUpdateWallpaperIfNeeded() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700751 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700752 final WindowState w = mChildren.get(i);
Chong Zhang4d7369a2016-04-25 16:09:14 -0700753 w.requestUpdateWallpaperIfNeeded();
754 }
755 }
756
Chong Zhangd78ddb42016-03-02 17:01:14 -0800757 boolean isRelaunching() {
758 return mPendingRelaunchCount > 0;
759 }
760
761 void startRelaunching() {
762 if (canFreezeBounds()) {
763 freezeBounds();
764 }
765 mPendingRelaunchCount++;
766 }
767
768 void finishRelaunching() {
769 if (canFreezeBounds()) {
770 unfreezeBounds();
771 }
772 if (mPendingRelaunchCount > 0) {
773 mPendingRelaunchCount--;
774 }
775 }
776
Wale Ogunwale8fd75422016-06-24 14:20:37 -0700777 void clearRelaunching() {
Wale Ogunwale37dbafc2016-06-27 10:15:20 -0700778 if (mPendingRelaunchCount == 0) {
779 return;
780 }
Wale Ogunwale8fd75422016-06-24 14:20:37 -0700781 if (canFreezeBounds()) {
782 unfreezeBounds();
783 }
784 mPendingRelaunchCount = 0;
785 }
786
Wale Ogunwale07bcab72016-10-14 15:30:09 -0700787 /**
788 * Returns true if the new child window we are adding to this token is considered greater than
789 * the existing child window in this token in terms of z-order.
790 */
791 @Override
792 protected boolean isFirstChildWindowGreaterThanSecond(WindowState newWindow,
793 WindowState existingWindow) {
794 final int type1 = newWindow.mAttrs.type;
795 final int type2 = existingWindow.mAttrs.type;
796
797 // Base application windows should be z-ordered BELOW all other windows in the app token.
798 if (type1 == TYPE_BASE_APPLICATION && type2 != TYPE_BASE_APPLICATION) {
799 return false;
800 } else if (type1 != TYPE_BASE_APPLICATION && type2 == TYPE_BASE_APPLICATION) {
801 return true;
802 }
803
804 // Starting windows should be z-ordered ABOVE all other windows in the app token.
805 if (type1 == TYPE_APPLICATION_STARTING && type2 != TYPE_APPLICATION_STARTING) {
806 return true;
807 } else if (type1 != TYPE_APPLICATION_STARTING && type2 == TYPE_APPLICATION_STARTING) {
808 return false;
809 }
810
811 // Otherwise the new window is greater than the existing window.
812 return true;
813 }
814
Wale Ogunwale92fc3722016-08-05 12:19:08 -0700815 @Override
Robert Carra1eb4392015-12-10 12:43:51 -0800816 void addWindow(WindowState w) {
Wale Ogunwale92fc3722016-08-05 12:19:08 -0700817 super.addWindow(w);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700818
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700819 boolean gotReplacementWindow = false;
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700820 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700821 final WindowState candidate = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700822 gotReplacementWindow |= candidate.setReplacementWindowIfNeeded(w);
823 }
Wale Ogunwale92fc3722016-08-05 12:19:08 -0700824
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700825 // if we got a replacement window, reset the timeout to give drawing more time
826 if (gotReplacementWindow) {
827 mService.scheduleWindowReplacementTimeouts(this);
Robert Carra1eb4392015-12-10 12:43:51 -0800828 }
Jorim Jaggife762342016-10-13 14:33:27 +0200829 checkKeyguardFlagsChanged();
830 }
831
832 @Override
833 void removeChild(WindowState child) {
834 super.removeChild(child);
835 checkKeyguardFlagsChanged();
Robert Carra1eb4392015-12-10 12:43:51 -0800836 }
837
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -0700838 private boolean waitingForReplacement() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700839 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700840 final WindowState candidate = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700841 if (candidate.waitingForReplacement()) {
Robert Carra1eb4392015-12-10 12:43:51 -0800842 return true;
843 }
844 }
845 return false;
846 }
847
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700848 void onWindowReplacementTimeout() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700849 for (int i = mChildren.size() - 1; i >= 0; --i) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700850 (mChildren.get(i)).onWindowReplacementTimeout();
Robert Carra1eb4392015-12-10 12:43:51 -0800851 }
852 }
853
Winson Chung30480042017-01-26 10:55:34 -0800854 void reparent(Task task, int position) {
855 if (task == mTask) {
856 throw new IllegalArgumentException(
857 "window token=" + this + " already child of task=" + mTask);
858 }
859 if (DEBUG_ADD_REMOVE) Slog.i(TAG, "reParentWindowToken: removing window token=" + this
860 + " from task=" + mTask);
861 final DisplayContent prevDisplayContent = getDisplayContent();
862
863 getParent().removeChild(this);
864 task.addChild(this, position);
865
866 // Relayout display(s).
867 final DisplayContent displayContent = task.getDisplayContent();
868 displayContent.setLayoutNeeded();
869 if (prevDisplayContent != displayContent) {
870 onDisplayChanged(displayContent);
871 prevDisplayContent.setLayoutNeeded();
872 }
873 }
874
Chong Zhangd78ddb42016-03-02 17:01:14 -0800875 private boolean canFreezeBounds() {
876 // For freeform windows, we can't freeze the bounds at the moment because this would make
877 // the resizing unresponsive.
878 return mTask != null && !mTask.inFreeformWorkspace();
879 }
880
Jorim Jaggi0429f352015-12-22 16:29:16 +0100881 /**
882 * Freezes the task bounds. The size of this task reported the app will be fixed to the bounds
883 * freezed by {@link Task#prepareFreezingBounds} until {@link #unfreezeBounds} gets called, even
884 * if they change in the meantime. If the bounds are already frozen, the bounds will be frozen
885 * with a queue.
886 */
Chong Zhangd78ddb42016-03-02 17:01:14 -0800887 private void freezeBounds() {
Jorim Jaggi0429f352015-12-22 16:29:16 +0100888 mFrozenBounds.offer(new Rect(mTask.mPreparedFrozenBounds));
Jorim Jaggi26c8c422016-05-09 19:57:25 -0700889
890 if (mTask.mPreparedFrozenMergedConfig.equals(Configuration.EMPTY)) {
891 // We didn't call prepareFreezingBounds on the task, so use the current value.
Andrii Kulian441e4492016-09-29 15:25:00 -0700892 mFrozenMergedConfig.offer(new Configuration(mTask.getConfiguration()));
Jorim Jaggi26c8c422016-05-09 19:57:25 -0700893 } else {
894 mFrozenMergedConfig.offer(new Configuration(mTask.mPreparedFrozenMergedConfig));
895 }
Andrii Kulianb10330d2016-09-16 13:51:46 -0700896 // Calling unset() to make it equal to Configuration.EMPTY.
897 mTask.mPreparedFrozenMergedConfig.unset();
Jorim Jaggi0429f352015-12-22 16:29:16 +0100898 }
899
900 /**
901 * Unfreezes the previously frozen bounds. See {@link #freezeBounds}.
902 */
Chong Zhangd78ddb42016-03-02 17:01:14 -0800903 private void unfreezeBounds() {
Wale Ogunwale37dbafc2016-06-27 10:15:20 -0700904 if (!mFrozenBounds.isEmpty()) {
905 mFrozenBounds.remove();
906 }
907 if (!mFrozenMergedConfig.isEmpty()) {
908 mFrozenMergedConfig.remove();
909 }
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700910 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700911 final WindowState win = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700912 win.onUnfreezeBounds();
Jorim Jaggi4846ee32016-01-07 17:39:12 +0100913 }
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700914 mService.mWindowPlacerLocked.performSurfacePlacement();
Jorim Jaggi0429f352015-12-22 16:29:16 +0100915 }
916
Robert Carr91b228092016-06-28 17:32:37 -0700917 void addSurfaceViewBackground(WindowSurfaceController.SurfaceControlWithBackground background) {
918 mSurfaceViewBackgrounds.add(background);
919 }
920
921 void removeSurfaceViewBackground(WindowSurfaceController.SurfaceControlWithBackground background) {
922 mSurfaceViewBackgrounds.remove(background);
923 updateSurfaceViewBackgroundVisibilities();
924 }
925
926 // We use DimLayers behind SurfaceViews to prevent holes while resizing and creating.
927 // However, we need to ensure one SurfaceView doesn't cover another when they are both placed
928 // below the main app window (as traditionally a SurfaceView which is never drawn
929 // to is totally translucent). So we look at all our SurfaceView backgrounds and only enable
930 // the background for the SurfaceView with lowest Z order
931 void updateSurfaceViewBackgroundVisibilities() {
932 WindowSurfaceController.SurfaceControlWithBackground bottom = null;
933 int bottomLayer = Integer.MAX_VALUE;
934 for (int i = 0; i < mSurfaceViewBackgrounds.size(); i++) {
935 WindowSurfaceController.SurfaceControlWithBackground sc = mSurfaceViewBackgrounds.get(i);
936 if (sc.mVisible && sc.mLayer < bottomLayer) {
937 bottomLayer = sc.mLayer;
938 bottom = sc;
939 }
940 }
941 for (int i = 0; i < mSurfaceViewBackgrounds.size(); i++) {
942 WindowSurfaceController.SurfaceControlWithBackground sc = mSurfaceViewBackgrounds.get(i);
943 sc.updateBackgroundVisibility(sc != bottom);
944 }
945 }
946
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700947 void resetJustMovedInStack() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700948 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700949 (mChildren.get(i)).resetJustMovedInStack();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700950 }
951 }
952
953 void notifyMovedInStack() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700954 for (int winNdx = mChildren.size() - 1; winNdx >= 0; --winNdx) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700955 final WindowState win = mChildren.get(winNdx);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700956 win.notifyMovedInStack();
957 }
958 }
959
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -0700960 void setAppLayoutChanges(int changes, String reason) {
961 if (!mChildren.isEmpty()) {
962 final DisplayContent dc = getDisplayContent();
963 dc.pendingLayoutChanges |= changes;
964 if (DEBUG_LAYOUT_REPEATS) {
965 mService.mWindowPlacerLocked.debugLayoutRepeats(reason, dc.pendingLayoutChanges);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700966 }
967 }
968 }
969
970 void removeReplacedWindowIfNeeded(WindowState replacement) {
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 if (win.removeReplacedWindowIfNeeded(replacement)) {
974 return;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700975 }
976 }
977 }
978
979 void startFreezingScreen() {
980 if (DEBUG_ORIENTATION) logWithStack(TAG, "Set freezing of " + appToken + ": hidden="
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700981 + hidden + " freezing=" + mAppAnimator.freezingScreen + " hiddenRequested="
982 + hiddenRequested);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700983 if (!hiddenRequested) {
984 if (!mAppAnimator.freezingScreen) {
985 mAppAnimator.freezingScreen = true;
Wale Ogunwale3f4433d2016-08-18 20:42:42 -0700986 mService.registerAppFreezeListener(this);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700987 mAppAnimator.lastFreezeDuration = 0;
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700988 mService.mAppsFreezingScreen++;
989 if (mService.mAppsFreezingScreen == 1) {
990 mService.startFreezingDisplayLocked(false, 0, 0);
991 mService.mH.removeMessages(H.APP_FREEZE_TIMEOUT);
992 mService.mH.sendEmptyMessageDelayed(H.APP_FREEZE_TIMEOUT, 2000);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700993 }
994 }
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700995 final int count = mChildren.size();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700996 for (int i = 0; i < count; i++) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700997 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700998 w.onStartFreezingScreen();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700999 }
1000 }
1001 }
1002
1003 void stopFreezingScreen(boolean unfreezeSurfaceNow, boolean force) {
1004 if (!mAppAnimator.freezingScreen) {
1005 return;
1006 }
1007 if (DEBUG_ORIENTATION) Slog.v(TAG_WM, "Clear freezing of " + this + " force=" + force);
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001008 final int count = mChildren.size();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001009 boolean unfrozeWindows = false;
1010 for (int i = 0; i < count; i++) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07001011 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001012 unfrozeWindows |= w.onStopFreezingScreen();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001013 }
1014 if (force || unfrozeWindows) {
1015 if (DEBUG_ORIENTATION) Slog.v(TAG_WM, "No longer freezing: " + this);
1016 mAppAnimator.freezingScreen = false;
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001017 mService.unregisterAppFreezeListener(this);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001018 mAppAnimator.lastFreezeDuration =
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001019 (int)(SystemClock.elapsedRealtime() - mService.mDisplayFreezeTime);
1020 mService.mAppsFreezingScreen--;
1021 mService.mLastFinishedFreezeSource = this;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001022 }
1023 if (unfreezeSurfaceNow) {
1024 if (unfrozeWindows) {
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001025 mService.mWindowPlacerLocked.performSurfacePlacement();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001026 }
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001027 mService.stopFreezingDisplayLocked();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001028 }
1029 }
1030
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001031 @Override
1032 public void onAppFreezeTimeout() {
1033 Slog.w(TAG_WM, "Force clearing freeze: " + this);
1034 stopFreezingScreen(true, true);
1035 }
1036
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001037 boolean transferStartingWindow(IBinder transferFrom) {
Wale Ogunwale02319a62016-09-26 15:21:22 -07001038 final AppWindowToken fromToken = getDisplayContent().getAppWindowToken(transferFrom);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001039 if (fromToken == null) {
1040 return false;
1041 }
1042
1043 final WindowState tStartingWindow = fromToken.startingWindow;
Jorim Jaggiba41f4b2016-12-14 17:43:07 -08001044 if (tStartingWindow != null && fromToken.startingSurface != null) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001045 // In this case, the starting icon has already been displayed, so start
1046 // letting windows get shown immediately without any more transitions.
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001047 mService.mSkipAppTransitionAnimation = true;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001048
1049 if (DEBUG_STARTING_WINDOW) Slog.v(TAG_WM, "Moving existing starting " + tStartingWindow
1050 + " from " + fromToken + " to " + this);
1051
1052 final long origId = Binder.clearCallingIdentity();
1053
1054 // Transfer the starting window over to the new token.
1055 startingData = fromToken.startingData;
Jorim Jaggiba41f4b2016-12-14 17:43:07 -08001056 startingSurface = fromToken.startingSurface;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001057 startingDisplayed = fromToken.startingDisplayed;
1058 fromToken.startingDisplayed = false;
1059 startingWindow = tStartingWindow;
1060 reportedVisible = fromToken.reportedVisible;
1061 fromToken.startingData = null;
Jorim Jaggiba41f4b2016-12-14 17:43:07 -08001062 fromToken.startingSurface = null;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001063 fromToken.startingWindow = null;
1064 fromToken.startingMoved = true;
1065 tStartingWindow.mToken = this;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001066 tStartingWindow.mAppToken = this;
1067
Wale Ogunwale6213caa2016-12-02 16:47:15 +00001068 if (DEBUG_ADD_REMOVE || DEBUG_STARTING_WINDOW) Slog.v(TAG_WM,
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001069 "Removing starting " + tStartingWindow + " from " + fromToken);
Wale Ogunwalefa854eb2016-09-20 13:43:52 -07001070 fromToken.removeChild(tStartingWindow);
1071 fromToken.postWindowRemoveStartingWindowCleanup(tStartingWindow);
Wale Ogunwale92fc3722016-08-05 12:19:08 -07001072 addWindow(tStartingWindow);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001073
1074 // Propagate other interesting state between the tokens. If the old token is displayed,
1075 // we should immediately force the new one to be displayed. If it is animating, we need
1076 // to move that animation to the new one.
1077 if (fromToken.allDrawn) {
1078 allDrawn = true;
1079 deferClearAllDrawn = fromToken.deferClearAllDrawn;
1080 }
1081 if (fromToken.firstWindowDrawn) {
1082 firstWindowDrawn = true;
1083 }
1084 if (!fromToken.hidden) {
1085 hidden = false;
1086 hiddenRequested = false;
1087 }
1088 if (clientHidden != fromToken.clientHidden) {
1089 clientHidden = fromToken.clientHidden;
1090 sendAppVisibilityToClients();
1091 }
1092 fromToken.mAppAnimator.transferCurrentAnimation(
1093 mAppAnimator, tStartingWindow.mWinAnimator);
1094
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001095 mService.updateFocusedWindowLocked(
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001096 UPDATE_FOCUS_WILL_PLACE_SURFACES, true /*updateInputWindows*/);
Andrii Kulian5406e7a2016-10-21 11:55:23 -07001097 getDisplayContent().setLayoutNeeded();
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001098 mService.mWindowPlacerLocked.performSurfacePlacement();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001099 Binder.restoreCallingIdentity(origId);
1100 return true;
1101 } else if (fromToken.startingData != null) {
1102 // The previous app was getting ready to show a
1103 // starting window, but hasn't yet done so. Steal it!
1104 if (DEBUG_STARTING_WINDOW) Slog.v(TAG_WM,
1105 "Moving pending starting from " + fromToken + " to " + this);
1106 startingData = fromToken.startingData;
1107 fromToken.startingData = null;
1108 fromToken.startingMoved = true;
Jorim Jaggiba41f4b2016-12-14 17:43:07 -08001109 if (getController() != null) {
1110 getController().scheduleAddStartingWindow();
1111 }
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001112 return true;
1113 }
1114
1115 final AppWindowAnimator tAppAnimator = fromToken.mAppAnimator;
1116 final AppWindowAnimator wAppAnimator = mAppAnimator;
1117 if (tAppAnimator.thumbnail != null) {
1118 // The old token is animating with a thumbnail, transfer that to the new token.
1119 if (wAppAnimator.thumbnail != null) {
1120 wAppAnimator.thumbnail.destroy();
1121 }
1122 wAppAnimator.thumbnail = tAppAnimator.thumbnail;
1123 wAppAnimator.thumbnailLayer = tAppAnimator.thumbnailLayer;
1124 wAppAnimator.thumbnailAnimation = tAppAnimator.thumbnailAnimation;
1125 tAppAnimator.thumbnail = null;
1126 }
1127 return false;
1128 }
1129
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001130 boolean isLastWindow(WindowState win) {
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001131 return mChildren.size() == 1 && mChildren.get(0) == win;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001132 }
1133
1134 void setAllAppWinAnimators() {
1135 final ArrayList<WindowStateAnimator> allAppWinAnimators = mAppAnimator.mAllAppWinAnimators;
1136 allAppWinAnimators.clear();
1137
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001138 final int windowsCount = mChildren.size();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001139 for (int j = 0; j < windowsCount; j++) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07001140 (mChildren.get(j)).addWinAnimatorToList(allAppWinAnimators);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001141 }
1142 }
1143
Wale Ogunwale9adfe572016-09-08 20:43:58 -07001144 @Override
1145 void onAppTransitionDone() {
1146 sendingToBottom = false;
1147 }
1148
Wale Ogunwale51362492016-09-08 17:49:17 -07001149 /**
1150 * We override because this class doesn't want its children affecting its reported orientation
1151 * in anyway.
1152 */
1153 @Override
1154 int getOrientation() {
Bryce Leea163b762017-01-24 11:05:01 -08001155 if (fillsParent() && (isVisible() || mService.mOpeningApps.contains(this))) {
1156 return mOrientation;
Wale Ogunwale51362492016-09-08 17:49:17 -07001157 }
Bryce Leea163b762017-01-24 11:05:01 -08001158
1159 return SCREEN_ORIENTATION_UNSET;
Wale Ogunwale51362492016-09-08 17:49:17 -07001160 }
1161
Wale Ogunwaleb198b742016-12-01 08:44:09 -08001162 /** Returns the app's preferred orientation regardless of its currently visibility state. */
1163 int getOrientationIgnoreVisibility() {
1164 return mOrientation;
1165 }
1166
Craig Mautnerdbb79912012-03-01 18:59:14 -08001167 @Override
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -07001168 void checkAppWindowsReadyToShow() {
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001169 if (allDrawn == mAppAnimator.allDrawn) {
1170 return;
1171 }
1172
1173 mAppAnimator.allDrawn = allDrawn;
1174 if (!allDrawn) {
1175 return;
1176 }
1177
1178 // The token has now changed state to having all windows shown... what to do, what to do?
1179 if (mAppAnimator.freezingScreen) {
1180 mAppAnimator.showAllWindowsLocked();
1181 stopFreezingScreen(false, true);
1182 if (DEBUG_ORIENTATION) Slog.i(TAG,
1183 "Setting mOrientationChangeComplete=true because wtoken " + this
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001184 + " numInteresting=" + mNumInterestingWindows + " numDrawn=" + mNumDrawnWindows);
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001185 // This will set mOrientationChangeComplete and cause a pass through layout.
1186 setAppLayoutChanges(FINISH_LAYOUT_REDO_WALLPAPER,
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -07001187 "checkAppWindowsReadyToShow: freezingScreen");
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001188 } else {
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -07001189 setAppLayoutChanges(FINISH_LAYOUT_REDO_ANIM, "checkAppWindowsReadyToShow");
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001190
1191 // We can now show all of the drawn windows!
1192 if (!mService.mOpeningApps.contains(this)) {
1193 mService.mAnimator.orAnimating(mAppAnimator.showAllWindowsLocked());
1194 }
1195 }
1196 }
1197
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001198 void updateAllDrawn(DisplayContent dc) {
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001199 if (!allDrawn) {
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001200 final int numInteresting = mNumInterestingWindows;
1201 if (numInteresting > 0 && mNumDrawnWindows >= numInteresting) {
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001202 if (DEBUG_VISIBILITY) Slog.v(TAG, "allDrawn: " + this
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001203 + " interesting=" + numInteresting + " drawn=" + mNumDrawnWindows);
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001204 allDrawn = true;
1205 // Force an additional layout pass where
1206 // WindowStateAnimator#commitFinishDrawingLocked() will call performShowLocked().
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001207 dc.setLayoutNeeded();
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001208 mService.mH.obtainMessage(NOTIFY_ACTIVITY_DRAWN, token).sendToTarget();
1209 }
1210 }
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001211
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001212 if (!allDrawnExcludingSaved) {
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001213 int numInteresting = mNumInterestingWindowsExcludingSaved;
1214 if (numInteresting > 0 && mNumDrawnWindowsExcludingSaved >= numInteresting) {
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001215 if (DEBUG_VISIBILITY) Slog.v(TAG, "allDrawnExcludingSaved: " + this
1216 + " interesting=" + numInteresting
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001217 + " drawn=" + mNumDrawnWindowsExcludingSaved);
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001218 allDrawnExcludingSaved = true;
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001219 dc.setLayoutNeeded();
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001220 if (isAnimatingInvisibleWithSavedSurface()
1221 && !mService.mFinishedEarlyAnim.contains(this)) {
1222 mService.mFinishedEarlyAnim.add(this);
1223 }
1224 }
1225 }
1226 }
1227
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001228 /**
1229 * Updated this app token tracking states for interesting and drawn windows based on the window.
1230 *
1231 * @return Returns true if the input window is considered interesting and drawn while all the
1232 * windows in this app token where not considered drawn as of the last pass.
1233 */
1234 boolean updateDrawnWindowStates(WindowState w) {
1235 if (DEBUG_STARTING_WINDOW && w == startingWindow) {
1236 Slog.d(TAG, "updateWindows: starting " + w + " isOnScreen=" + w.isOnScreen()
1237 + " allDrawn=" + allDrawn + " freezingScreen=" + mAppAnimator.freezingScreen);
1238 }
1239
1240 if (allDrawn && allDrawnExcludingSaved && !mAppAnimator.freezingScreen) {
1241 return false;
1242 }
1243
1244 if (mLastTransactionSequence != mService.mTransactionSequence) {
1245 mLastTransactionSequence = mService.mTransactionSequence;
1246 mNumInterestingWindows = mNumDrawnWindows = 0;
1247 mNumInterestingWindowsExcludingSaved = 0;
1248 mNumDrawnWindowsExcludingSaved = 0;
1249 startingDisplayed = false;
1250 }
1251
1252 final WindowStateAnimator winAnimator = w.mWinAnimator;
1253
1254 boolean isInterestingAndDrawn = false;
1255
1256 if (!allDrawn && w.mightAffectAllDrawn(false /* visibleOnly */)) {
1257 if (DEBUG_VISIBILITY || DEBUG_ORIENTATION) {
1258 Slog.v(TAG, "Eval win " + w + ": isDrawn=" + w.isDrawnLw()
1259 + ", isAnimationSet=" + winAnimator.isAnimationSet());
1260 if (!w.isDrawnLw()) {
1261 Slog.v(TAG, "Not displayed: s=" + winAnimator.mSurfaceController
1262 + " pv=" + w.mPolicyVisibility
1263 + " mDrawState=" + winAnimator.drawStateToString()
1264 + " ph=" + w.isParentWindowHidden() + " th=" + hiddenRequested
1265 + " a=" + winAnimator.mAnimating);
1266 }
1267 }
1268
1269 if (w != startingWindow) {
1270 if (w.isInteresting()) {
1271 mNumInterestingWindows++;
1272 if (w.isDrawnLw()) {
1273 mNumDrawnWindows++;
1274
1275 if (DEBUG_VISIBILITY || DEBUG_ORIENTATION) Slog.v(TAG, "tokenMayBeDrawn: "
1276 + this + " w=" + w + " numInteresting=" + mNumInterestingWindows
1277 + " freezingScreen=" + mAppAnimator.freezingScreen
1278 + " mAppFreezing=" + w.mAppFreezing);
1279
1280 isInterestingAndDrawn = true;
1281 }
1282 }
1283 } else if (w.isDrawnLw()) {
1284 mService.mH.sendEmptyMessage(NOTIFY_STARTING_WINDOW_DRAWN);
1285 startingDisplayed = true;
1286 }
1287 }
1288
1289 if (!allDrawnExcludingSaved && w.mightAffectAllDrawn(true /* visibleOnly */)) {
1290 if (w != startingWindow && w.isInteresting()) {
1291 mNumInterestingWindowsExcludingSaved++;
1292 if (w.isDrawnLw() && !w.isAnimatingWithSavedSurface()) {
1293 mNumDrawnWindowsExcludingSaved++;
1294
1295 if (DEBUG_VISIBILITY || DEBUG_ORIENTATION) Slog.v(TAG,
1296 "tokenMayBeDrawnExcludingSaved: " + this + " w=" + w
1297 + " numInteresting=" + mNumInterestingWindowsExcludingSaved
1298 + " freezingScreen=" + mAppAnimator.freezingScreen
1299 + " mAppFreezing=" + w.mAppFreezing);
1300
1301 isInterestingAndDrawn = true;
1302 }
1303 }
1304 }
1305
1306 return isInterestingAndDrawn;
1307 }
1308
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001309 @Override
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -07001310 void stepAppWindowsAnimation(long currentTime) {
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001311 mAppAnimator.wasAnimating = mAppAnimator.animating;
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -07001312 if (mAppAnimator.stepAnimationLocked(currentTime)) {
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001313 mAppAnimator.animating = true;
1314 mService.mAnimator.setAnimating(true);
1315 mService.mAnimator.mAppWindowAnimating = true;
1316 } else if (mAppAnimator.wasAnimating) {
1317 // stopped animating, do one more pass through the layout
Wale Ogunwale1e129a42016-11-21 13:03:47 -08001318 setAppLayoutChanges(FINISH_LAYOUT_REDO_WALLPAPER,
1319 DEBUG_LAYOUT_REPEATS ? "appToken " + this + " done" : null);
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001320 if (DEBUG_ANIM) Slog.v(TAG, "updateWindowsApps...: done animating " + this);
1321 }
1322 }
1323
Wale Ogunwale9adfe572016-09-08 20:43:58 -07001324 @Override
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08001325 boolean forAllWindows(ToBooleanFunction<WindowState> callback, boolean traverseTopToBottom) {
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07001326 // For legacy reasons we process the TaskStack.mExitingAppTokens first in DisplayContent
1327 // before the non-exiting app tokens. So, we skip the exiting app tokens here.
1328 // TODO: Investigate if we need to continue to do this or if we can just process them
1329 // in-order.
1330 if (mIsExiting && !waitingForReplacement()) {
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08001331 return false;
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07001332 }
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08001333 return forAllWindowsUnchecked(callback, traverseTopToBottom);
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07001334 }
1335
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08001336 boolean forAllWindowsUnchecked(ToBooleanFunction<WindowState> callback,
1337 boolean traverseTopToBottom) {
1338 return super.forAllWindows(callback, traverseTopToBottom);
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07001339 }
1340
1341 @Override
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001342 AppWindowToken asAppWindowToken() {
1343 // I am an app window token!
1344 return this;
1345 }
1346
1347 @Override
Wale Ogunwale51362492016-09-08 17:49:17 -07001348 boolean fillsParent() {
1349 return mFillsParent;
1350 }
1351
1352 void setFillsParent(boolean fillsParent) {
1353 mFillsParent = fillsParent;
1354 }
1355
Jorim Jaggife762342016-10-13 14:33:27 +02001356 boolean containsDismissKeyguardWindow() {
1357 for (int i = mChildren.size() - 1; i >= 0; i--) {
1358 if ((mChildren.get(i).mAttrs.flags & FLAG_DISMISS_KEYGUARD) != 0) {
1359 return true;
1360 }
1361 }
1362 return false;
1363 }
1364
1365 boolean containsShowWhenLockedWindow() {
1366 for (int i = mChildren.size() - 1; i >= 0; i--) {
1367 if ((mChildren.get(i).mAttrs.flags & FLAG_SHOW_WHEN_LOCKED) != 0) {
1368 return true;
1369 }
1370 }
1371 return false;
1372 }
1373
1374 void checkKeyguardFlagsChanged() {
1375 final boolean containsDismissKeyguard = containsDismissKeyguardWindow();
1376 final boolean containsShowWhenLocked = containsShowWhenLockedWindow();
1377 if (containsDismissKeyguard != mLastContainsDismissKeyguardWindow
1378 || containsShowWhenLocked != mLastContainsShowWhenLockedWindow) {
1379 mService.notifyKeyguardFlagsChanged(null /* callback */);
1380 }
1381 mLastContainsDismissKeyguardWindow = containsDismissKeyguard;
1382 mLastContainsShowWhenLockedWindow = containsShowWhenLocked;
1383 }
1384
Wale Ogunwale6213caa2016-12-02 16:47:15 +00001385 WindowState getImeTargetBelowWindow(WindowState w) {
1386 final int index = mChildren.indexOf(w);
1387 if (index > 0) {
1388 final WindowState target = mChildren.get(index - 1);
1389 if (target.canBeImeTarget()) {
1390 return target;
1391 }
1392 }
1393 return null;
1394 }
1395
1396 WindowState getHighestAnimLayerWindow(WindowState currentTarget) {
1397 WindowState candidate = null;
1398 for (int i = mChildren.indexOf(currentTarget); i >= 0; i--) {
1399 final WindowState w = mChildren.get(i);
1400 if (w.mRemoved) {
1401 continue;
1402 }
1403 if (candidate == null || w.mWinAnimator.mAnimLayer >
1404 candidate.mWinAnimator.mAnimLayer) {
1405 candidate = w;
1406 }
1407 }
1408 return candidate;
1409 }
1410
Wale Ogunwale51362492016-09-08 17:49:17 -07001411 @Override
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001412 void dump(PrintWriter pw, String prefix) {
1413 super.dump(pw, prefix);
1414 if (appToken != null) {
Wale Ogunwale72919d22016-12-08 18:58:50 -08001415 pw.println(prefix + "app=true mVoiceInteraction=" + mVoiceInteraction);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001416 }
Craig Mautner83162a92015-01-26 14:43:30 -08001417 pw.print(prefix); pw.print("task="); pw.println(mTask);
Wale Ogunwale51362492016-09-08 17:49:17 -07001418 pw.print(prefix); pw.print(" mFillsParent="); pw.print(mFillsParent);
1419 pw.print(" mOrientation="); pw.println(mOrientation);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001420 pw.print(prefix); pw.print("hiddenRequested="); pw.print(hiddenRequested);
1421 pw.print(" clientHidden="); pw.print(clientHidden);
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -07001422 pw.print(" reportedDrawn="); pw.print(reportedDrawn);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001423 pw.print(" reportedVisible="); pw.println(reportedVisible);
Craig Mautner59431632012-04-04 11:56:44 -07001424 if (paused) {
1425 pw.print(prefix); pw.print("paused="); pw.println(paused);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001426 }
Wale Ogunwale9017ec02016-02-25 08:55:25 -08001427 if (mAppStopped) {
1428 pw.print(prefix); pw.print("mAppStopped="); pw.println(mAppStopped);
1429 }
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001430 if (mNumInterestingWindows != 0 || mNumDrawnWindows != 0
Craig Mautner6fbda632012-07-03 09:26:39 -07001431 || allDrawn || mAppAnimator.allDrawn) {
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001432 pw.print(prefix); pw.print("mNumInterestingWindows=");
1433 pw.print(mNumInterestingWindows);
1434 pw.print(" mNumDrawnWindows="); pw.print(mNumDrawnWindows);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001435 pw.print(" inPendingTransaction="); pw.print(inPendingTransaction);
Craig Mautner6fbda632012-07-03 09:26:39 -07001436 pw.print(" allDrawn="); pw.print(allDrawn);
1437 pw.print(" (animator="); pw.print(mAppAnimator.allDrawn);
1438 pw.println(")");
1439 }
1440 if (inPendingTransaction) {
1441 pw.print(prefix); pw.print("inPendingTransaction=");
1442 pw.println(inPendingTransaction);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001443 }
Craig Mautner799bc1d2015-01-14 10:33:48 -08001444 if (startingData != null || removed || firstWindowDrawn || mIsExiting) {
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001445 pw.print(prefix); pw.print("startingData="); pw.print(startingData);
1446 pw.print(" removed="); pw.print(removed);
Craig Mautner3d7ca312015-01-08 10:56:00 -08001447 pw.print(" firstWindowDrawn="); pw.print(firstWindowDrawn);
Craig Mautner799bc1d2015-01-14 10:33:48 -08001448 pw.print(" mIsExiting="); pw.println(mIsExiting);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001449 }
Jorim Jaggiba41f4b2016-12-14 17:43:07 -08001450 if (startingWindow != null || startingSurface != null
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001451 || startingDisplayed || startingMoved) {
1452 pw.print(prefix); pw.print("startingWindow="); pw.print(startingWindow);
Jorim Jaggiba41f4b2016-12-14 17:43:07 -08001453 pw.print(" startingSurface="); pw.print(startingSurface);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001454 pw.print(" startingDisplayed="); pw.print(startingDisplayed);
Wale Ogunwale9017ec02016-02-25 08:55:25 -08001455 pw.print(" startingMoved="); pw.println(startingMoved);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001456 }
Jorim Jaggi0429f352015-12-22 16:29:16 +01001457 if (!mFrozenBounds.isEmpty()) {
Chong Zhangd78ddb42016-03-02 17:01:14 -08001458 pw.print(prefix); pw.print("mFrozenBounds="); pw.println(mFrozenBounds);
Jorim Jaggi26c8c422016-05-09 19:57:25 -07001459 pw.print(prefix); pw.print("mFrozenMergedConfig="); pw.println(mFrozenMergedConfig);
Chong Zhangd78ddb42016-03-02 17:01:14 -08001460 }
1461 if (mPendingRelaunchCount != 0) {
1462 pw.print(prefix); pw.print("mPendingRelaunchCount="); pw.println(mPendingRelaunchCount);
Jorim Jaggi0429f352015-12-22 16:29:16 +01001463 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001464 }
1465
1466 @Override
1467 public String toString() {
1468 if (stringName == null) {
1469 StringBuilder sb = new StringBuilder();
1470 sb.append("AppWindowToken{");
1471 sb.append(Integer.toHexString(System.identityHashCode(this)));
1472 sb.append(" token="); sb.append(token); sb.append('}');
1473 stringName = sb.toString();
1474 }
Wale Ogunwaleba51ca22016-09-23 06:06:54 -07001475 return stringName + ((mIsExiting) ? " mIsExiting=" : "");
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001476 }
Jeff Browne9bdb312012-04-05 15:30:10 -07001477}