blob: a8664a5727ab41f82652a4b87b9aa42ca3154c29 [file] [log] [blame]
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001/*
2 * Copyright (C) 2011 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package com.android.server.wm;
18
Wale Ogunwale6cae7652015-12-26 07:36:26 -080019import static android.app.ActivityManager.StackId;
Wale Ogunwale72919d22016-12-08 18:58:50 -080020import static android.content.pm.ActivityInfo.CONFIG_ORIENTATION;
21import static android.content.pm.ActivityInfo.CONFIG_SCREEN_SIZE;
Wale Ogunwale5e5a68d2017-03-24 17:36:38 -070022import static android.content.pm.ActivityInfo.SCREEN_ORIENTATION_BEHIND;
Wale Ogunwale51362492016-09-08 17:49:17 -070023import static android.content.pm.ActivityInfo.SCREEN_ORIENTATION_UNSET;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -070024import static android.view.Display.DEFAULT_DISPLAY;
Jorim Jaggife762342016-10-13 14:33:27 +020025import static android.view.WindowManager.LayoutParams.FLAG_DISMISS_KEYGUARD;
26import static android.view.WindowManager.LayoutParams.FLAG_SHOW_WHEN_LOCKED;
Wale Ogunwaled1c37912016-08-16 03:19:39 -070027import static android.view.WindowManager.LayoutParams.TYPE_APPLICATION;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080028import static android.view.WindowManager.LayoutParams.TYPE_APPLICATION_STARTING;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -070029import static android.view.WindowManager.LayoutParams.TYPE_BASE_APPLICATION;
Wale Ogunwale3f4433d2016-08-18 20:42:42 -070030import static android.view.WindowManagerPolicy.FINISH_LAYOUT_REDO_ANIM;
31import static android.view.WindowManagerPolicy.FINISH_LAYOUT_REDO_WALLPAPER;
Wale Ogunwaleac2561e2016-11-01 15:43:46 -070032import static com.android.server.wm.AppTransition.TRANSIT_UNSET;
Jorim Jaggiba41f4b2016-12-14 17:43:07 -080033import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_ADD_REMOVE;
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -080034import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_ANIM;
35import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_APP_TRANSITIONS;
Wale Ogunwaleac2561e2016-11-01 15:43:46 -070036import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_FOCUS_LIGHT;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -070037import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_LAYOUT_REPEATS;
38import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_ORIENTATION;
Wale Ogunwale9017ec02016-02-25 08:55:25 -080039import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_STARTING_WINDOW;
Wale Ogunwaleac2561e2016-11-01 15:43:46 -070040import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_TOKEN_MOVEMENT;
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -080041import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_VISIBILITY;
42import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_WINDOW_MOVEMENT;
43import static com.android.server.wm.WindowManagerDebugConfig.TAG_WITH_CLASS_NAME;
44import static com.android.server.wm.WindowManagerDebugConfig.TAG_WM;
Chong Zhang92147042016-05-09 12:47:11 -070045import static com.android.server.wm.WindowManagerService.H.NOTIFY_ACTIVITY_DRAWN;
Wale Ogunwaleac2561e2016-11-01 15:43:46 -070046import static com.android.server.wm.WindowManagerService.UPDATE_FOCUS_NORMAL;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -070047import static com.android.server.wm.WindowManagerService.UPDATE_FOCUS_WILL_PLACE_SURFACES;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -070048import static com.android.server.wm.WindowManagerService.logWithStack;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080049
Filip Gruszczynskia590c992015-11-25 16:45:26 -080050import android.annotation.NonNull;
Jorim Jaggi26c8c422016-05-09 19:57:25 -070051import android.content.res.Configuration;
Jorim Jaggi0429f352015-12-22 16:29:16 +010052import android.graphics.Rect;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -070053import android.os.Binder;
Jorim Jaggiba41f4b2016-12-14 17:43:07 -080054import android.os.Debug;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -070055import android.os.IBinder;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -070056import android.os.SystemClock;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080057import android.util.Slog;
58import android.view.IApplicationToken;
Robert Carr6914f082017-03-20 19:04:30 -070059import android.view.SurfaceControl;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080060import android.view.WindowManager;
Jorim Jaggiba41f4b2016-12-14 17:43:07 -080061import android.view.WindowManagerPolicy.StartingSurface;
62
63import com.android.internal.util.ToBooleanFunction;
64import com.android.server.input.InputApplicationHandle;
65import com.android.server.wm.WindowManagerService.H;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080066
67import java.io.PrintWriter;
Jorim Jaggi0429f352015-12-22 16:29:16 +010068import java.util.ArrayDeque;
Craig Mautnerb1fd65c02013-02-05 13:34:57 -080069import java.util.ArrayList;
70
71class AppTokenList extends ArrayList<AppWindowToken> {
72}
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080073
74/**
75 * Version of WindowToken that is specifically for a particular application (or
76 * really activity) that is displaying windows.
77 */
Wale Ogunwale3f4433d2016-08-18 20:42:42 -070078class AppWindowToken extends WindowToken implements WindowManagerService.AppFreezeListener {
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -080079 private static final String TAG = TAG_WITH_CLASS_NAME ? "AppWindowToken" : TAG_WM;
80
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080081 // Non-null only for application tokens.
82 final IApplicationToken appToken;
83
Filip Gruszczynskia590c992015-11-25 16:45:26 -080084 @NonNull final AppWindowAnimator mAppAnimator;
Craig Mautnerd09cc4b2012-04-04 10:23:31 -070085
Wale Ogunwale72919d22016-12-08 18:58:50 -080086 final boolean mVoiceInteraction;
Dianne Hackborne30e02f2014-05-27 18:24:45 -070087
Wale Ogunwale51362492016-09-08 17:49:17 -070088 /** @see WindowContainer#fillsParent() */
89 private boolean mFillsParent;
Craig Mautner4c5eb222013-11-18 12:59:05 -080090 boolean layoutConfigChanges;
Wale Ogunwale72919d22016-12-08 18:58:50 -080091 boolean mShowForAllUsers;
92 int mTargetSdk;
Craig Mautnera2c77052012-03-26 12:14:43 -070093
Bryce Lee6d410262017-02-28 15:30:17 -080094 // Flag set while reparenting to prevent actions normally triggered by an individual parent
95 // change.
96 private boolean mReparenting;
97
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080098 // The input dispatching timeout for this application token in nanoseconds.
Wale Ogunwale72919d22016-12-08 18:58:50 -080099 long mInputDispatchingTimeoutNanos;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800100
101 // These are used for determining when all windows associated with
102 // an activity have been drawn, so they can be made visible together
103 // at the same time.
Craig Mautner764983d2012-03-22 11:37:36 -0700104 // initialize so that it doesn't match mTransactionSequence which is an int.
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -0700105 private long mLastTransactionSequence = Long.MIN_VALUE;
106 private int mNumInterestingWindows;
107 private int mNumDrawnWindows;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800108 boolean inPendingTransaction;
109 boolean allDrawn;
Craig Mautner7636dfb2012-11-16 15:24:11 -0800110 // Set to true when this app creates a surface while in the middle of an animation. In that
111 // case do not clear allDrawn until the animation completes.
112 boolean deferClearAllDrawn;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800113
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -0700114 /**
115 * These are to track the app's real drawing status if there were no saved surfaces.
116 * @see #updateDrawnWindowStates
117 */
Chong Zhang8e4bda92016-05-04 15:08:18 -0700118 boolean allDrawnExcludingSaved;
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -0700119 private int mNumInterestingWindowsExcludingSaved;
120 private int mNumDrawnWindowsExcludingSaved;
Chong Zhang8e4bda92016-05-04 15:08:18 -0700121
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800122 // Is this window's surface needed? This is almost like hidden, except
123 // it will sometimes be true a little earlier: when the token has
124 // been shown, but is still waiting for its app transition to execute
125 // before making its windows shown.
126 boolean hiddenRequested;
127
128 // Have we told the window clients to hide themselves?
129 boolean clientHidden;
130
131 // Last visibility state we reported to the app token.
132 boolean reportedVisible;
133
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700134 // Last drawn state we reported to the app token.
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -0700135 private boolean reportedDrawn;
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700136
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800137 // Set to true when the token has been removed from the window mgr.
138 boolean removed;
139
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800140 // Information about an application starting window if displayed.
141 StartingData startingData;
142 WindowState startingWindow;
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800143 StartingSurface startingSurface;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800144 boolean startingDisplayed;
145 boolean startingMoved;
146 boolean firstWindowDrawn;
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700147 private final WindowState.UpdateReportedVisibilityResults mReportedVisibilityResults =
148 new WindowState.UpdateReportedVisibilityResults();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800149
150 // Input application handle used by the input dispatcher.
Jeff Brown9302c872011-07-13 22:51:29 -0700151 final InputApplicationHandle mInputApplicationHandle;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800152
Wale Ogunwale571771c2016-08-26 13:18:50 -0700153 // TODO: Have a WindowContainer state for tracking exiting/deferred removal.
Craig Mautner799bc1d2015-01-14 10:33:48 -0800154 boolean mIsExiting;
Craig Mautner9ef471f2014-02-07 13:11:47 -0800155
Craig Mautnerbb742462014-07-07 15:28:55 -0700156 boolean mLaunchTaskBehind;
Craig Mautner8746a472014-07-24 15:12:54 -0700157 boolean mEnteringAnimation;
Craig Mautnerbb742462014-07-07 15:28:55 -0700158
Wale Ogunwale72919d22016-12-08 18:58:50 -0800159 private boolean mAlwaysFocusable;
Wale Ogunwale6cae7652015-12-26 07:36:26 -0800160
Robert Carre12aece2016-02-02 22:43:27 -0800161 boolean mAppStopped;
Robert Carrfd10cd12016-06-29 16:41:50 -0700162 int mRotationAnimationHint;
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -0700163 private int mPendingRelaunchCount;
Robert Carre12aece2016-02-02 22:43:27 -0800164
Jorim Jaggife762342016-10-13 14:33:27 +0200165 private boolean mLastContainsShowWhenLockedWindow;
166 private boolean mLastContainsDismissKeyguardWindow;
167
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -0700168 // The bounds of this activity. Mainly used for aspect-ratio compatibility.
169 // TODO(b/36505427): Every level on WindowContainer now has bounds information, which directly
170 // affects the configuration. We should probably move this into that class.
171 private final Rect mBounds = new Rect();
172
Jorim Jaggi0429f352015-12-22 16:29:16 +0100173 ArrayDeque<Rect> mFrozenBounds = new ArrayDeque<>();
Jorim Jaggi26c8c422016-05-09 19:57:25 -0700174 ArrayDeque<Configuration> mFrozenMergedConfig = new ArrayDeque<>();
Jorim Jaggi0429f352015-12-22 16:29:16 +0100175
Jorim Jaggi0fe7ce962017-02-22 16:45:48 +0100176 private boolean mDisbalePreviewScreenshots;
177
Wale Ogunwale72919d22016-12-08 18:58:50 -0800178 AppWindowToken(WindowManagerService service, IApplicationToken token, boolean voiceInteraction,
179 DisplayContent dc, long inputDispatchingTimeoutNanos, boolean fullscreen,
180 boolean showForAllUsers, int targetSdk, int orientation, int rotationAnimationHint,
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800181 int configChanges, boolean launchTaskBehind, boolean alwaysFocusable,
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -0700182 AppWindowContainerController controller, Configuration overrideConfig, Rect bounds) {
183 this(service, token, voiceInteraction, dc, fullscreen, overrideConfig, bounds);
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800184 setController(controller);
Wale Ogunwale72919d22016-12-08 18:58:50 -0800185 mInputDispatchingTimeoutNanos = inputDispatchingTimeoutNanos;
Wale Ogunwale72919d22016-12-08 18:58:50 -0800186 mShowForAllUsers = showForAllUsers;
187 mTargetSdk = targetSdk;
188 mOrientation = orientation;
189 layoutConfigChanges = (configChanges & (CONFIG_SCREEN_SIZE | CONFIG_ORIENTATION)) != 0;
190 mLaunchTaskBehind = launchTaskBehind;
191 mAlwaysFocusable = alwaysFocusable;
192 mRotationAnimationHint = rotationAnimationHint;
193
194 // Application tokens start out hidden.
195 hidden = true;
196 hiddenRequested = true;
197 }
198
199 AppWindowToken(WindowManagerService service, IApplicationToken token, boolean voiceInteraction,
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -0700200 DisplayContent dc, boolean fillsParent, Configuration overrideConfig, Rect bounds) {
Wale Ogunwale5cd907d2017-01-26 14:14:08 -0800201 super(service, token != null ? token.asBinder() : null, TYPE_APPLICATION, true, dc,
202 false /* ownerCanManageAppTokens */);
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700203 appToken = token;
Wale Ogunwale72919d22016-12-08 18:58:50 -0800204 mVoiceInteraction = voiceInteraction;
Wale Ogunwale17f175c2017-02-07 16:54:10 -0800205 mFillsParent = fillsParent;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800206 mInputApplicationHandle = new InputApplicationHandle(this);
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700207 mAppAnimator = new AppWindowAnimator(this, service);
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -0700208 if (overrideConfig != null) {
209 onOverrideConfigurationChanged(overrideConfig);
210 }
211 if (bounds != null) {
212 mBounds.set(bounds);
213 }
214 }
215
216 void onOverrideConfigurationChanged(Configuration overrideConfiguration, Rect bounds) {
217 onOverrideConfigurationChanged(overrideConfiguration);
218 if (mBounds.equals(bounds)) {
219 return;
220 }
221 // TODO(b/36505427): If bounds is in WC, then we can automatically call onResize() when set.
222 mBounds.set(bounds);
223 onResize();
224 }
225
226 void getBounds(Rect outBounds) {
227 outBounds.set(mBounds);
228 }
229
230 boolean hasBounds() {
231 return !mBounds.isEmpty();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800232 }
233
Wale Ogunwale9017ec02016-02-25 08:55:25 -0800234 void onFirstWindowDrawn(WindowState win, WindowStateAnimator winAnimator) {
235 firstWindowDrawn = true;
236
237 // We now have a good window to show, remove dead placeholders
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700238 removeDeadWindows();
Wale Ogunwale9017ec02016-02-25 08:55:25 -0800239
Jorim Jaggi02886a82016-12-06 09:10:06 -0800240 if (startingWindow != null) {
Wale Ogunwale9017ec02016-02-25 08:55:25 -0800241 if (DEBUG_STARTING_WINDOW || DEBUG_ANIM) Slog.v(TAG, "Finish starting "
242 + win.mToken + ": first real window is shown, no animation");
243 // If this initial window is animating, stop it -- we will do an animation to reveal
244 // it from behind the starting window, so there is no need for it to also be doing its
245 // own stuff.
246 winAnimator.clearAnimation();
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800247 if (getController() != null) {
248 getController().removeStartingWindow();
249 }
Wale Ogunwale9017ec02016-02-25 08:55:25 -0800250 }
251 updateReportedVisibilityLocked();
252 }
253
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800254 void updateReportedVisibilityLocked() {
255 if (appToken == null) {
256 return;
257 }
258
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700259 if (DEBUG_VISIBILITY) Slog.v(TAG, "Update reported visibility: " + this);
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700260 final int count = mChildren.size();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800261
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700262 mReportedVisibilityResults.reset();
263
264 for (int i = 0; i < count; i++) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700265 final WindowState win = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700266 win.updateReportedVisibility(mReportedVisibilityResults);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800267 }
268
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700269 int numInteresting = mReportedVisibilityResults.numInteresting;
270 int numVisible = mReportedVisibilityResults.numVisible;
271 int numDrawn = mReportedVisibilityResults.numDrawn;
272 boolean nowGone = mReportedVisibilityResults.nowGone;
273
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700274 boolean nowDrawn = numInteresting > 0 && numDrawn >= numInteresting;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800275 boolean nowVisible = numInteresting > 0 && numVisible >= numInteresting;
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700276 if (!nowGone) {
277 // If the app is not yet gone, then it can only become visible/drawn.
278 if (!nowDrawn) {
279 nowDrawn = reportedDrawn;
280 }
281 if (!nowVisible) {
282 nowVisible = reportedVisible;
283 }
284 }
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800285 if (DEBUG_VISIBILITY) Slog.v(TAG, "VIS " + this + ": interesting="
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800286 + numInteresting + " visible=" + numVisible);
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800287 final AppWindowContainerController controller = getController();
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700288 if (nowDrawn != reportedDrawn) {
289 if (nowDrawn) {
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800290 if (controller != null) {
291 controller.reportWindowsDrawn();
292 }
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700293 }
294 reportedDrawn = nowDrawn;
295 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800296 if (nowVisible != reportedVisible) {
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700297 if (DEBUG_VISIBILITY) Slog.v(TAG,
298 "Visibility changed in " + this + ": vis=" + nowVisible);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800299 reportedVisible = nowVisible;
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800300 if (controller != null) {
301 if (nowVisible) {
302 controller.reportWindowsVisible();
303 } else {
304 controller.reportWindowsGone();
305 }
306 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800307 }
308 }
309
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700310 boolean setVisibility(WindowManager.LayoutParams lp,
311 boolean visible, int transit, boolean performLayout, boolean isVoiceInteraction) {
312
313 boolean delayed = false;
314 inPendingTransaction = false;
315
316 if (clientHidden == visible) {
317 clientHidden = !visible;
318 sendAppVisibilityToClients();
319 }
320
321 // Allow for state changes and animation to be applied if:
322 // * token is transitioning visibility state
323 // * or the token was marked as hidden and is exiting before we had a chance to play the
324 // transition animation
325 // * or this is an opening app and windows are being replaced.
326 boolean visibilityChanged = false;
327 if (hidden == visible || (hidden && mIsExiting) || (visible && waitingForReplacement())) {
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700328 final AccessibilityController accessibilityController = mService.mAccessibilityController;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700329 boolean changed = false;
330 if (DEBUG_APP_TRANSITIONS) Slog.v(TAG_WM,
331 "Changing app " + this + " hidden=" + hidden + " performLayout=" + performLayout);
332
333 boolean runningAppAnimation = false;
334
335 if (transit != AppTransition.TRANSIT_UNSET) {
336 if (mAppAnimator.animation == AppWindowAnimator.sDummyAnimation) {
337 mAppAnimator.setNullAnimation();
338 }
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700339 if (mService.applyAnimationLocked(this, lp, transit, visible, isVoiceInteraction)) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700340 delayed = runningAppAnimation = true;
341 }
342 final WindowState window = findMainWindow();
343 //TODO (multidisplay): Magnification is supported only for the default display.
344 if (window != null && accessibilityController != null
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -0700345 && getDisplayContent().getDisplayId() == DEFAULT_DISPLAY) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700346 accessibilityController.onAppWindowTransitionLocked(window, transit);
347 }
348 changed = true;
349 }
350
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700351 final int windowsCount = mChildren.size();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700352 for (int i = 0; i < windowsCount; i++) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700353 final WindowState win = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700354 changed |= win.onAppVisibilityChanged(visible, runningAppAnimation);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700355 }
356
357 hidden = hiddenRequested = !visible;
358 visibilityChanged = true;
359 if (!visible) {
360 stopFreezingScreen(true, true);
361 } else {
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700362 // If we are being set visible, and the starting window is not yet displayed,
363 // then make sure it doesn't get displayed.
364 if (startingWindow != null && !startingWindow.isDrawnLw()) {
365 startingWindow.mPolicyVisibility = false;
366 startingWindow.mPolicyVisibilityAfterAnim = false;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700367 }
368 }
369
370 if (DEBUG_APP_TRANSITIONS) Slog.v(TAG_WM, "setVisibility: " + this
371 + ": hidden=" + hidden + " hiddenRequested=" + hiddenRequested);
372
373 if (changed) {
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700374 mService.mInputMonitor.setUpdateInputWindowsNeededLw();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700375 if (performLayout) {
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700376 mService.updateFocusedWindowLocked(UPDATE_FOCUS_WILL_PLACE_SURFACES,
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700377 false /*updateInputWindows*/);
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700378 mService.mWindowPlacerLocked.performSurfacePlacement();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700379 }
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700380 mService.mInputMonitor.updateInputWindowsLw(false /*force*/);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700381 }
382 }
383
384 if (mAppAnimator.animation != null) {
385 delayed = true;
386 }
387
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700388 for (int i = mChildren.size() - 1; i >= 0 && !delayed; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700389 if ((mChildren.get(i)).isWindowAnimationSet()) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700390 delayed = true;
391 }
392 }
393
394 if (visibilityChanged) {
395 if (visible && !delayed) {
396 // The token was made immediately visible, there will be no entrance animation.
397 // We need to inform the client the enter animation was finished.
398 mEnteringAnimation = true;
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700399 mService.mActivityManagerAppTransitionNotifier.onAppTransitionFinishedLocked(token);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700400 }
Robert Carre7cc44d2017-03-20 19:04:30 -0700401 // If we are hidden but there is no delay needed we immediately
402 // apply the Surface transaction so that the ActivityManager
403 // can have some guarantee on the Surface state
404 // following setting the visibility.
Robert Carr6914f082017-03-20 19:04:30 -0700405 if (hidden && !delayed) {
406 SurfaceControl.openTransaction();
407 for (int i = mChildren.size() - 1; i >= 0; i--) {
408 mChildren.get(i).mWinAnimator.hide("immediately hidden");
409 }
410 SurfaceControl.closeTransaction();
411 }
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700412
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700413 if (!mService.mClosingApps.contains(this) && !mService.mOpeningApps.contains(this)) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700414 // The token is not closing nor opening, so even if there is an animation set, that
415 // doesn't mean that it goes through the normal app transition cycle so we have
416 // to inform the docked controller about visibility change.
Andrii Kulian1e32e022016-09-16 15:29:34 -0700417 // TODO(multi-display): notify docked divider on all displays where visibility was
418 // affected.
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700419 mService.getDefaultDisplayContentLocked().getDockedDividerController()
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700420 .notifyAppVisibilityChanged();
Jorim Jaggi8b702ed2017-01-20 16:59:03 +0100421 mService.mTaskSnapshotController.notifyAppVisibilityChanged(this, visible);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700422 }
423 }
424
425 return delayed;
426 }
427
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800428 WindowState findMainWindow() {
Filip Gruszczynski55a309f2015-09-04 17:15:01 -0700429 WindowState candidate = null;
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700430 int j = mChildren.size();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800431 while (j > 0) {
432 j--;
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700433 final WindowState win = mChildren.get(j);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700434 final int type = win.mAttrs.type;
435 // No need to loop through child window as base application and starting types can't be
436 // child windows.
437 if (type == TYPE_BASE_APPLICATION || type == TYPE_APPLICATION_STARTING) {
Filip Gruszczynski55a309f2015-09-04 17:15:01 -0700438 // In cases where there are multiple windows, we prefer the non-exiting window. This
Sungsoo Lim0d3d1f82015-12-02 14:47:59 +0900439 // happens for example when replacing windows during an activity relaunch. When
Filip Gruszczynski55a309f2015-09-04 17:15:01 -0700440 // constructing the animation, we want the new window, not the exiting one.
Wale Ogunwalec48a3542016-02-19 15:18:45 -0800441 if (win.mAnimatingExit) {
Filip Gruszczynski55a309f2015-09-04 17:15:01 -0700442 candidate = win;
443 } else {
444 return win;
445 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800446 }
447 }
Filip Gruszczynski55a309f2015-09-04 17:15:01 -0700448 return candidate;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800449 }
450
Wale Ogunwale6cae7652015-12-26 07:36:26 -0800451 boolean windowsAreFocusable() {
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800452 return StackId.canReceiveKeys(getTask().mStack.mStackId) || mAlwaysFocusable;
Wale Ogunwaled045c822015-12-02 09:14:28 -0800453 }
454
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800455 AppWindowContainerController getController() {
456 final WindowContainerController controller = super.getController();
457 return controller != null ? (AppWindowContainerController) controller : null;
458 }
459
Wale Ogunwale571771c2016-08-26 13:18:50 -0700460 @Override
Wale Ogunwale44f21802016-09-02 12:49:48 -0700461 boolean isVisible() {
Wale Ogunwalee471be62016-10-03 07:53:55 -0700462 // If the app token isn't hidden then it is considered visible and there is no need to check
463 // its children windows to see if they are visible.
464 return !hidden;
Wale Ogunwale44f21802016-09-02 12:49:48 -0700465 }
466
467 @Override
Wale Ogunwale571771c2016-08-26 13:18:50 -0700468 void removeIfPossible() {
Craig Mautnere3119b72015-01-20 15:02:36 -0800469 mIsExiting = false;
Wale Ogunwale3d0bfd92016-12-05 11:38:02 -0800470 removeAllWindowsIfPossible();
Bryce Lee6d410262017-02-28 15:30:17 -0800471 removeImmediately();
Craig Mautnere3119b72015-01-20 15:02:36 -0800472 }
473
Wale Ogunwale3f4433d2016-08-18 20:42:42 -0700474 @Override
475 boolean checkCompleteDeferredRemoval() {
476 if (mIsExiting) {
477 removeIfPossible();
478 }
479 return super.checkCompleteDeferredRemoval();
480 }
481
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700482 void onRemovedFromDisplay() {
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700483 if (DEBUG_APP_TRANSITIONS) Slog.v(TAG_WM, "Removing app token: " + this);
484
Wale Ogunwale72919d22016-12-08 18:58:50 -0800485 boolean delayed = setVisibility(null, false, TRANSIT_UNSET, true, mVoiceInteraction);
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700486
487 mService.mOpeningApps.remove(this);
Jorim Jaggi1b4b23e2016-11-15 16:30:12 -0800488 mService.mUnknownAppVisibilityController.appRemoved(this);
Jorim Jaggi10abe2f2017-01-03 16:44:46 +0100489 mService.mTaskSnapshotController.onAppRemoved(this);
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700490 waitingToShow = false;
491 if (mService.mClosingApps.contains(this)) {
492 delayed = true;
493 } else if (mService.mAppTransition.isTransitionSet()) {
494 mService.mClosingApps.add(this);
495 delayed = true;
496 }
497
498 if (DEBUG_APP_TRANSITIONS) Slog.v(TAG_WM, "Removing app " + this + " delayed=" + delayed
499 + " animation=" + mAppAnimator.animation + " animating=" + mAppAnimator.animating);
500
501 if (DEBUG_ADD_REMOVE || DEBUG_TOKEN_MOVEMENT) Slog.v(TAG_WM, "removeAppToken: "
502 + this + " delayed=" + delayed + " Callers=" + Debug.getCallers(4));
503
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800504 if (startingData != null && getController() != null) {
505 getController().removeStartingWindow();
506 }
507
Winson Chung87e5d552017-04-05 11:49:38 -0700508 // If this window was animating, then we need to ensure that the app transition notifies
509 // that animations have completed in WMS.handleAnimatingStoppedAndTransitionLocked(), so
510 // add to that list now
511 if (mAppAnimator.animating) {
512 mService.mNoAnimationNotifyOnTransitionFinished.add(token);
513 }
514
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800515 final TaskStack stack = getTask().mStack;
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700516 if (delayed && !isEmpty()) {
517 // set the token aside because it has an active animation to be finished
518 if (DEBUG_ADD_REMOVE || DEBUG_TOKEN_MOVEMENT) Slog.v(TAG_WM,
519 "removeAppToken make exiting: " + this);
520 stack.mExitingAppTokens.add(this);
521 mIsExiting = true;
522 } else {
523 // Make sure there is no animation running on this token, so any windows associated
524 // with it will be removed as soon as their animations are complete
525 mAppAnimator.clearAnimation();
526 mAppAnimator.animating = false;
527 removeIfPossible();
528 }
529
530 removed = true;
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700531 stopFreezingScreen(true, true);
Bryce Lee6d410262017-02-28 15:30:17 -0800532
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700533 if (mService.mFocusedApp == this) {
534 if (DEBUG_FOCUS_LIGHT) Slog.v(TAG_WM, "Removing focused app token:" + this);
535 mService.mFocusedApp = null;
536 mService.updateFocusedWindowLocked(UPDATE_FOCUS_NORMAL, true /*updateInputWindows*/);
537 mService.mInputMonitor.setFocusedAppLw(null);
538 }
539
540 if (!delayed) {
541 updateReportedVisibilityLocked();
542 }
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700543 }
544
Chong Zhange05bcb12016-07-26 17:47:29 -0700545 void clearAnimatingFlags() {
Chong Zhangb0d26702016-08-12 16:03:29 -0700546 boolean wallpaperMightChange = false;
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700547 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700548 final WindowState win = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700549 wallpaperMightChange |= win.clearAnimatingFlags();
Chong Zhange05bcb12016-07-26 17:47:29 -0700550 }
Chong Zhangb0d26702016-08-12 16:03:29 -0700551 if (wallpaperMightChange) {
552 requestUpdateWallpaperIfNeeded();
553 }
Chong Zhange05bcb12016-07-26 17:47:29 -0700554 }
555
Robert Carre12aece2016-02-02 22:43:27 -0800556 void destroySurfaces() {
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700557 destroySurfaces(false /*cleanupOnResume*/);
558 }
559
560 /**
561 * Destroy surfaces which have been marked as eligible by the animator, taking care to ensure
562 * the client has finished with them.
563 *
564 * @param cleanupOnResume whether this is done when app is resumed without fully stopped. If
565 * set to true, destroy only surfaces of removed windows, and clear relevant flags of the
566 * others so that they are ready to be reused. If set to false (common case), destroy all
567 * surfaces that's eligible, if the app is already stopped.
568 */
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700569 private void destroySurfaces(boolean cleanupOnResume) {
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -0700570 boolean destroyedSomething = false;
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700571 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700572 final WindowState win = mChildren.get(i);
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -0700573 destroyedSomething |= win.destroySurface(cleanupOnResume, mAppStopped);
Robert Carre12aece2016-02-02 22:43:27 -0800574 }
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -0700575 if (destroyedSomething) {
576 final DisplayContent dc = getDisplayContent();
Wale Ogunwalec69694a2016-10-18 13:51:15 -0700577 dc.assignWindowLayers(true /*setLayoutNeeded*/);
Robert Carre12aece2016-02-02 22:43:27 -0800578 }
579 }
580
Wale Ogunwale8d5a5422016-03-03 18:28:21 -0800581 /**
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700582 * Notify that the app is now resumed, and it was not stopped before, perform a clean
583 * up of the surfaces
Wale Ogunwale8d5a5422016-03-03 18:28:21 -0800584 */
Chong Zhangad24f962016-08-25 12:12:33 -0700585 void notifyAppResumed(boolean wasStopped, boolean allowSavedSurface) {
586 if (DEBUG_ADD_REMOVE) Slog.v(TAG, "notifyAppResumed: wasStopped=" + wasStopped
587 + " allowSavedSurface=" + allowSavedSurface + " " + this);
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700588 mAppStopped = false;
589 if (!wasStopped) {
590 destroySurfaces(true /*cleanupOnResume*/);
Wale Ogunwale8d5a5422016-03-03 18:28:21 -0800591 }
Chong Zhangad24f962016-08-25 12:12:33 -0700592 if (!allowSavedSurface) {
593 destroySavedSurfaces();
594 }
Robert Carre12aece2016-02-02 22:43:27 -0800595 }
596
Chong Zhangbef461f2015-10-27 11:38:24 -0700597 /**
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700598 * Notify that the app has stopped, and it is okay to destroy any surfaces which were
599 * keeping alive in case they were still being used.
600 */
601 void notifyAppStopped() {
602 if (DEBUG_ADD_REMOVE) Slog.v(TAG, "notifyAppStopped: " + this);
603 mAppStopped = true;
604 destroySurfaces();
605 // Remove any starting window that was added for this app if they are still around.
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800606 if (getController() != null) {
607 getController().removeStartingWindow();
608 }
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700609 }
610
611 /**
Chong Zhangbef461f2015-10-27 11:38:24 -0700612 * Checks whether we should save surfaces for this app.
613 *
614 * @return true if the surfaces should be saved, false otherwise.
615 */
616 boolean shouldSaveSurface() {
Chong Zhangbfc2f8f2016-01-29 15:50:34 -0800617 // We want to save surface if the app's windows are "allDrawn".
618 // (If we started entering animation early with saved surfaces, allDrawn
619 // should have been restored to true. So we'll save again in that case
620 // even if app didn't actually finish drawing.)
621 return allDrawn;
Robert Carr13f7be9e2015-12-02 18:39:45 -0800622 }
623
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700624 private boolean canRestoreSurfaces() {
625 for (int i = mChildren.size() -1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700626 final WindowState w = mChildren.get(i);
Chong Zhang92147042016-05-09 12:47:11 -0700627 if (w.canRestoreSurface()) {
Robert Carr13f7be9e2015-12-02 18:39:45 -0800628 return true;
629 }
Chong Zhangbef461f2015-10-27 11:38:24 -0700630 }
631 return false;
632 }
633
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700634 private void clearWasVisibleBeforeClientHidden() {
635 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700636 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700637 w.clearWasVisibleBeforeClientHidden();
Chong Zhang92147042016-05-09 12:47:11 -0700638 }
639 }
640
Chong Zhang8e4bda92016-05-04 15:08:18 -0700641 /**
642 * Whether the app has some window that is invisible in layout, but
643 * animating with saved surface.
644 */
645 boolean isAnimatingInvisibleWithSavedSurface() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700646 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700647 final WindowState w = mChildren.get(i);
Chong Zhang8e4bda92016-05-04 15:08:18 -0700648 if (w.isAnimatingInvisibleWithSavedSurface()) {
649 return true;
650 }
651 }
652 return false;
653 }
654
655 /**
656 * Hide all window surfaces that's still invisible in layout but animating
657 * with a saved surface, and mark them destroying.
658 */
659 void stopUsingSavedSurfaceLocked() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700660 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700661 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700662 w.stopUsingSavedSurface();
Chong Zhang8e4bda92016-05-04 15:08:18 -0700663 }
664 destroySurfaces();
665 }
666
Chong Zhangf58631a2016-05-24 16:02:10 -0700667 void markSavedSurfaceExiting() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700668 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700669 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700670 w.markSavedSurfaceExiting();
Chong Zhangf58631a2016-05-24 16:02:10 -0700671 }
672 }
673
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700674 void restoreSavedSurfaceForInterestingWindows() {
Chong Zhang92147042016-05-09 12:47:11 -0700675 if (!canRestoreSurfaces()) {
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700676 clearWasVisibleBeforeClientHidden();
Chong Zhangbef461f2015-10-27 11:38:24 -0700677 return;
678 }
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700679
680 // Check if all interesting windows are drawn and we can mark allDrawn=true.
681 int interestingNotDrawn = -1;
682
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700683 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700684 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700685 interestingNotDrawn = w.restoreSavedSurfaceForInterestingWindow();
Chong Zhangbef461f2015-10-27 11:38:24 -0700686 }
Chong Zhangbfc2f8f2016-01-29 15:50:34 -0800687
Chong Zhang92147042016-05-09 12:47:11 -0700688 if (!allDrawn) {
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700689 allDrawn = (interestingNotDrawn == 0);
Chong Zhang92147042016-05-09 12:47:11 -0700690 if (allDrawn) {
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700691 mService.mH.obtainMessage(NOTIFY_ACTIVITY_DRAWN, token).sendToTarget();
Chong Zhang92147042016-05-09 12:47:11 -0700692 }
693 }
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700694 clearWasVisibleBeforeClientHidden();
Chong Zhangbfc2f8f2016-01-29 15:50:34 -0800695
696 if (DEBUG_APP_TRANSITIONS || DEBUG_ANIM) Slog.d(TAG,
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700697 "restoreSavedSurfaceForInterestingWindows: " + this + " allDrawn=" + allDrawn
698 + " interestingNotDrawn=" + interestingNotDrawn);
Chong Zhangbef461f2015-10-27 11:38:24 -0700699 }
700
701 void destroySavedSurfaces() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700702 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700703 final WindowState win = mChildren.get(i);
Robert Carr13f7be9e2015-12-02 18:39:45 -0800704 win.destroySavedSurface();
Chong Zhangbef461f2015-10-27 11:38:24 -0700705 }
Chong Zhang92147042016-05-09 12:47:11 -0700706 }
707
708 void clearAllDrawn() {
709 allDrawn = false;
710 deferClearAllDrawn = false;
Chong Zhang8e4bda92016-05-04 15:08:18 -0700711 allDrawnExcludingSaved = false;
Chong Zhangbef461f2015-10-27 11:38:24 -0700712 }
713
Bryce Lee6d410262017-02-28 15:30:17 -0800714 Task getTask() {
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800715 return (Task) getParent();
Bryce Lee6d410262017-02-28 15:30:17 -0800716 }
717
Jorim Jaggi3878ca32017-02-02 17:13:05 -0800718 TaskStack getStack() {
719 final Task task = getTask();
720 if (task != null) {
721 return task.mStack;
722 } else {
723 return null;
724 }
725 }
726
Bryce Lee6d410262017-02-28 15:30:17 -0800727 @Override
728 void onParentSet() {
729 super.onParentSet();
730
731 // When the associated task is {@code null}, the {@link AppWindowToken} can no longer
732 // access visual elements like the {@link DisplayContent}. We must remove any associations
733 // such as animations.
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800734 if (!mReparenting) {
735 final Task task = getTask();
736 if (task == null) {
737 // It is possible we have been marked as a closing app earlier. We must remove ourselves
738 // from this list so we do not participate in any future animations.
739 mService.mClosingApps.remove(this);
740 } else if (task.mStack != null) {
741 task.mStack.mExitingAppTokens.remove(this);
742 }
Bryce Lee6d410262017-02-28 15:30:17 -0800743 }
744 }
745
Wale Ogunwalefa854eb2016-09-20 13:43:52 -0700746 void postWindowRemoveStartingWindowCleanup(WindowState win) {
Wale Ogunwale92fc3722016-08-05 12:19:08 -0700747 // TODO: Something smells about the code below...Is there a better way?
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700748 if (startingWindow == win) {
749 if (DEBUG_STARTING_WINDOW) Slog.v(TAG_WM, "Notify removed startingWindow " + win);
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800750 if (getController() != null) {
751 getController().removeStartingWindow();
752 }
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700753 } else if (mChildren.size() == 0 && startingData != null) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700754 // If this is the last window and we had requested a starting transition window,
755 // well there is no point now.
Jorim Jaggi02886a82016-12-06 09:10:06 -0800756 if (DEBUG_STARTING_WINDOW) Slog.v(TAG_WM, "Nulling last startingData");
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700757 startingData = null;
Jorim Jaggi829b9cd2017-01-23 16:20:53 +0100758 } else if (mChildren.size() == 1 && startingSurface != null && !isRelaunching()) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700759 // If this is the last window except for a starting transition window,
760 // we need to get rid of the starting transition.
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800761 if (getController() != null) {
762 getController().removeStartingWindow();
763 }
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700764 }
765 }
766
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700767 void removeDeadWindows() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700768 for (int winNdx = mChildren.size() - 1; winNdx >= 0; --winNdx) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700769 WindowState win = mChildren.get(winNdx);
Chong Zhang112eb8c2015-11-02 11:17:00 -0800770 if (win.mAppDied) {
Wale Ogunwale92fc3722016-08-05 12:19:08 -0700771 if (DEBUG_WINDOW_MOVEMENT || DEBUG_ADD_REMOVE) Slog.w(TAG,
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700772 "removeDeadWindows: " + win);
Chong Zhang112eb8c2015-11-02 11:17:00 -0800773 // Set mDestroying, we don't want any animation or delayed removal here.
774 win.mDestroying = true;
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700775 // Also removes child windows.
Wale Ogunwale92fc3722016-08-05 12:19:08 -0700776 win.removeIfPossible();
Chong Zhang112eb8c2015-11-02 11:17:00 -0800777 }
778 }
779 }
780
Wale Ogunwalee42d0e12016-05-02 16:40:59 -0700781 boolean hasWindowsAlive() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700782 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700783 // No need to loop through child windows as the answer should be the same as that of the
784 // parent window.
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700785 if (!(mChildren.get(i)).mAppDied) {
Wale Ogunwalee42d0e12016-05-02 16:40:59 -0700786 return true;
787 }
788 }
789 return false;
790 }
791
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700792 void setWillReplaceWindows(boolean animate) {
Wale Ogunwale455fac52016-07-21 07:24:49 -0700793 if (DEBUG_ADD_REMOVE) Slog.d(TAG_WM,
794 "Marking app token " + this + " with replacing windows.");
Robert Carra1eb4392015-12-10 12:43:51 -0800795
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700796 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700797 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700798 w.setWillReplaceWindow(animate);
Robert Carra1eb4392015-12-10 12:43:51 -0800799 }
800 if (animate) {
801 // Set-up dummy animation so we can start treating windows associated with this
802 // token like they are in transition before the new app window is ready for us to
803 // run the real transition animation.
804 if (DEBUG_APP_TRANSITIONS) Slog.v(TAG_WM,
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700805 "setWillReplaceWindow() Setting dummy animation on: " + this);
Robert Carra1eb4392015-12-10 12:43:51 -0800806 mAppAnimator.setDummyAnimation();
807 }
808 }
809
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700810 void setWillReplaceChildWindows() {
Wale Ogunwale455fac52016-07-21 07:24:49 -0700811 if (DEBUG_ADD_REMOVE) Slog.d(TAG_WM, "Marking app token " + this
Robert Carr23fa16b2016-01-13 13:19:58 -0800812 + " with replacing child windows.");
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700813 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700814 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700815 w.setWillReplaceChildWindows();
Robert Carr23fa16b2016-01-13 13:19:58 -0800816 }
817 }
818
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700819 void clearWillReplaceWindows() {
Wale Ogunwale455fac52016-07-21 07:24:49 -0700820 if (DEBUG_ADD_REMOVE) Slog.d(TAG_WM,
821 "Resetting app token " + this + " of replacing window marks.");
Chong Zhangf596cd52016-01-05 13:42:44 -0800822
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700823 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700824 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700825 w.clearWillReplaceWindow();
Chong Zhangf596cd52016-01-05 13:42:44 -0800826 }
827 }
828
Chong Zhang4d7369a2016-04-25 16:09:14 -0700829 void requestUpdateWallpaperIfNeeded() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700830 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700831 final WindowState w = mChildren.get(i);
Chong Zhang4d7369a2016-04-25 16:09:14 -0700832 w.requestUpdateWallpaperIfNeeded();
833 }
834 }
835
Chong Zhangd78ddb42016-03-02 17:01:14 -0800836 boolean isRelaunching() {
837 return mPendingRelaunchCount > 0;
838 }
839
840 void startRelaunching() {
841 if (canFreezeBounds()) {
842 freezeBounds();
843 }
Robert Carrd5c7dd62017-03-08 10:39:30 -0800844
845 // In the process of tearing down before relaunching, the app will
846 // try and clean up it's child surfaces. We need to prevent this from
847 // happening, so we sever the children, transfering their ownership
848 // from the client it-self to the parent surface (owned by us).
849 for (int i = mChildren.size() - 1; i >= 0; i--) {
850 final WindowState w = mChildren.get(i);
851 w.mWinAnimator.detachChildren();
852 }
853
Chong Zhangd78ddb42016-03-02 17:01:14 -0800854 mPendingRelaunchCount++;
855 }
856
857 void finishRelaunching() {
858 if (canFreezeBounds()) {
859 unfreezeBounds();
860 }
861 if (mPendingRelaunchCount > 0) {
862 mPendingRelaunchCount--;
863 }
864 }
865
Wale Ogunwale8fd75422016-06-24 14:20:37 -0700866 void clearRelaunching() {
Wale Ogunwale37dbafc2016-06-27 10:15:20 -0700867 if (mPendingRelaunchCount == 0) {
868 return;
869 }
Wale Ogunwale8fd75422016-06-24 14:20:37 -0700870 if (canFreezeBounds()) {
871 unfreezeBounds();
872 }
873 mPendingRelaunchCount = 0;
874 }
875
Wale Ogunwale07bcab72016-10-14 15:30:09 -0700876 /**
877 * Returns true if the new child window we are adding to this token is considered greater than
878 * the existing child window in this token in terms of z-order.
879 */
880 @Override
881 protected boolean isFirstChildWindowGreaterThanSecond(WindowState newWindow,
882 WindowState existingWindow) {
883 final int type1 = newWindow.mAttrs.type;
884 final int type2 = existingWindow.mAttrs.type;
885
886 // Base application windows should be z-ordered BELOW all other windows in the app token.
887 if (type1 == TYPE_BASE_APPLICATION && type2 != TYPE_BASE_APPLICATION) {
888 return false;
889 } else if (type1 != TYPE_BASE_APPLICATION && type2 == TYPE_BASE_APPLICATION) {
890 return true;
891 }
892
893 // Starting windows should be z-ordered ABOVE all other windows in the app token.
894 if (type1 == TYPE_APPLICATION_STARTING && type2 != TYPE_APPLICATION_STARTING) {
895 return true;
896 } else if (type1 != TYPE_APPLICATION_STARTING && type2 == TYPE_APPLICATION_STARTING) {
897 return false;
898 }
899
900 // Otherwise the new window is greater than the existing window.
901 return true;
902 }
903
Wale Ogunwale92fc3722016-08-05 12:19:08 -0700904 @Override
Robert Carra1eb4392015-12-10 12:43:51 -0800905 void addWindow(WindowState w) {
Wale Ogunwale92fc3722016-08-05 12:19:08 -0700906 super.addWindow(w);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700907
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700908 boolean gotReplacementWindow = false;
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700909 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700910 final WindowState candidate = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700911 gotReplacementWindow |= candidate.setReplacementWindowIfNeeded(w);
912 }
Wale Ogunwale92fc3722016-08-05 12:19:08 -0700913
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700914 // if we got a replacement window, reset the timeout to give drawing more time
915 if (gotReplacementWindow) {
916 mService.scheduleWindowReplacementTimeouts(this);
Robert Carra1eb4392015-12-10 12:43:51 -0800917 }
Jorim Jaggife762342016-10-13 14:33:27 +0200918 checkKeyguardFlagsChanged();
919 }
920
921 @Override
922 void removeChild(WindowState child) {
923 super.removeChild(child);
924 checkKeyguardFlagsChanged();
Robert Carra1eb4392015-12-10 12:43:51 -0800925 }
926
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -0700927 private boolean waitingForReplacement() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700928 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700929 final WindowState candidate = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700930 if (candidate.waitingForReplacement()) {
Robert Carra1eb4392015-12-10 12:43:51 -0800931 return true;
932 }
933 }
934 return false;
935 }
936
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700937 void onWindowReplacementTimeout() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700938 for (int i = mChildren.size() - 1; i >= 0; --i) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700939 (mChildren.get(i)).onWindowReplacementTimeout();
Robert Carra1eb4392015-12-10 12:43:51 -0800940 }
941 }
942
Winson Chung30480042017-01-26 10:55:34 -0800943 void reparent(Task task, int position) {
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800944 final Task currentTask = getTask();
945 if (task == currentTask) {
Winson Chung30480042017-01-26 10:55:34 -0800946 throw new IllegalArgumentException(
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800947 "window token=" + this + " already child of task=" + currentTask);
Winson Chung30480042017-01-26 10:55:34 -0800948 }
Bryce Lee6d410262017-02-28 15:30:17 -0800949
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800950 if (currentTask.mStack != task.mStack) {
Bryce Lee6d410262017-02-28 15:30:17 -0800951 throw new IllegalArgumentException(
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800952 "window token=" + this + " current task=" + currentTask
Bryce Lee6d410262017-02-28 15:30:17 -0800953 + " belongs to a different stack than " + task);
954 }
955
Winson Chung30480042017-01-26 10:55:34 -0800956 if (DEBUG_ADD_REMOVE) Slog.i(TAG, "reParentWindowToken: removing window token=" + this
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800957 + " from task=" + currentTask);
Winson Chung30480042017-01-26 10:55:34 -0800958 final DisplayContent prevDisplayContent = getDisplayContent();
959
Bryce Lee6d410262017-02-28 15:30:17 -0800960 mReparenting = true;
961
Winson Chung30480042017-01-26 10:55:34 -0800962 getParent().removeChild(this);
963 task.addChild(this, position);
964
Bryce Lee6d410262017-02-28 15:30:17 -0800965 mReparenting = false;
966
Winson Chung30480042017-01-26 10:55:34 -0800967 // Relayout display(s).
968 final DisplayContent displayContent = task.getDisplayContent();
969 displayContent.setLayoutNeeded();
970 if (prevDisplayContent != displayContent) {
971 onDisplayChanged(displayContent);
972 prevDisplayContent.setLayoutNeeded();
973 }
974 }
975
Chong Zhangd78ddb42016-03-02 17:01:14 -0800976 private boolean canFreezeBounds() {
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800977 final Task task = getTask();
978
Chong Zhangd78ddb42016-03-02 17:01:14 -0800979 // For freeform windows, we can't freeze the bounds at the moment because this would make
980 // the resizing unresponsive.
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800981 return task != null && !task.inFreeformWorkspace();
Chong Zhangd78ddb42016-03-02 17:01:14 -0800982 }
983
Jorim Jaggi0429f352015-12-22 16:29:16 +0100984 /**
985 * Freezes the task bounds. The size of this task reported the app will be fixed to the bounds
986 * freezed by {@link Task#prepareFreezingBounds} until {@link #unfreezeBounds} gets called, even
987 * if they change in the meantime. If the bounds are already frozen, the bounds will be frozen
988 * with a queue.
989 */
Chong Zhangd78ddb42016-03-02 17:01:14 -0800990 private void freezeBounds() {
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800991 final Task task = getTask();
992 mFrozenBounds.offer(new Rect(task.mPreparedFrozenBounds));
Jorim Jaggi26c8c422016-05-09 19:57:25 -0700993
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800994 if (task.mPreparedFrozenMergedConfig.equals(Configuration.EMPTY)) {
Jorim Jaggi26c8c422016-05-09 19:57:25 -0700995 // We didn't call prepareFreezingBounds on the task, so use the current value.
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800996 mFrozenMergedConfig.offer(new Configuration(task.getConfiguration()));
Jorim Jaggi26c8c422016-05-09 19:57:25 -0700997 } else {
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800998 mFrozenMergedConfig.offer(new Configuration(task.mPreparedFrozenMergedConfig));
Jorim Jaggi26c8c422016-05-09 19:57:25 -0700999 }
Andrii Kulianb10330d2016-09-16 13:51:46 -07001000 // Calling unset() to make it equal to Configuration.EMPTY.
Bryce Lee7fbeb8a2017-03-02 08:42:30 -08001001 task.mPreparedFrozenMergedConfig.unset();
Jorim Jaggi0429f352015-12-22 16:29:16 +01001002 }
1003
1004 /**
1005 * Unfreezes the previously frozen bounds. See {@link #freezeBounds}.
1006 */
Chong Zhangd78ddb42016-03-02 17:01:14 -08001007 private void unfreezeBounds() {
Wale Ogunwale37dbafc2016-06-27 10:15:20 -07001008 if (!mFrozenBounds.isEmpty()) {
1009 mFrozenBounds.remove();
1010 }
1011 if (!mFrozenMergedConfig.isEmpty()) {
1012 mFrozenMergedConfig.remove();
1013 }
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001014 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07001015 final WindowState win = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001016 win.onUnfreezeBounds();
Jorim Jaggi4846ee32016-01-07 17:39:12 +01001017 }
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001018 mService.mWindowPlacerLocked.performSurfacePlacement();
Jorim Jaggi0429f352015-12-22 16:29:16 +01001019 }
1020
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -07001021 void setAppLayoutChanges(int changes, String reason) {
1022 if (!mChildren.isEmpty()) {
1023 final DisplayContent dc = getDisplayContent();
1024 dc.pendingLayoutChanges |= changes;
1025 if (DEBUG_LAYOUT_REPEATS) {
1026 mService.mWindowPlacerLocked.debugLayoutRepeats(reason, dc.pendingLayoutChanges);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001027 }
1028 }
1029 }
1030
1031 void removeReplacedWindowIfNeeded(WindowState replacement) {
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001032 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07001033 final WindowState win = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001034 if (win.removeReplacedWindowIfNeeded(replacement)) {
1035 return;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001036 }
1037 }
1038 }
1039
1040 void startFreezingScreen() {
1041 if (DEBUG_ORIENTATION) logWithStack(TAG, "Set freezing of " + appToken + ": hidden="
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001042 + hidden + " freezing=" + mAppAnimator.freezingScreen + " hiddenRequested="
1043 + hiddenRequested);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001044 if (!hiddenRequested) {
1045 if (!mAppAnimator.freezingScreen) {
1046 mAppAnimator.freezingScreen = true;
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001047 mService.registerAppFreezeListener(this);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001048 mAppAnimator.lastFreezeDuration = 0;
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001049 mService.mAppsFreezingScreen++;
1050 if (mService.mAppsFreezingScreen == 1) {
1051 mService.startFreezingDisplayLocked(false, 0, 0);
1052 mService.mH.removeMessages(H.APP_FREEZE_TIMEOUT);
1053 mService.mH.sendEmptyMessageDelayed(H.APP_FREEZE_TIMEOUT, 2000);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001054 }
1055 }
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001056 final int count = mChildren.size();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001057 for (int i = 0; i < count; i++) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07001058 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001059 w.onStartFreezingScreen();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001060 }
1061 }
1062 }
1063
1064 void stopFreezingScreen(boolean unfreezeSurfaceNow, boolean force) {
1065 if (!mAppAnimator.freezingScreen) {
1066 return;
1067 }
1068 if (DEBUG_ORIENTATION) Slog.v(TAG_WM, "Clear freezing of " + this + " force=" + force);
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001069 final int count = mChildren.size();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001070 boolean unfrozeWindows = false;
1071 for (int i = 0; i < count; i++) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07001072 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001073 unfrozeWindows |= w.onStopFreezingScreen();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001074 }
1075 if (force || unfrozeWindows) {
1076 if (DEBUG_ORIENTATION) Slog.v(TAG_WM, "No longer freezing: " + this);
1077 mAppAnimator.freezingScreen = false;
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001078 mService.unregisterAppFreezeListener(this);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001079 mAppAnimator.lastFreezeDuration =
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001080 (int)(SystemClock.elapsedRealtime() - mService.mDisplayFreezeTime);
1081 mService.mAppsFreezingScreen--;
1082 mService.mLastFinishedFreezeSource = this;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001083 }
1084 if (unfreezeSurfaceNow) {
1085 if (unfrozeWindows) {
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001086 mService.mWindowPlacerLocked.performSurfacePlacement();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001087 }
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001088 mService.stopFreezingDisplayLocked();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001089 }
1090 }
1091
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001092 @Override
1093 public void onAppFreezeTimeout() {
1094 Slog.w(TAG_WM, "Force clearing freeze: " + this);
1095 stopFreezingScreen(true, true);
1096 }
1097
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001098 boolean transferStartingWindow(IBinder transferFrom) {
Wale Ogunwale02319a62016-09-26 15:21:22 -07001099 final AppWindowToken fromToken = getDisplayContent().getAppWindowToken(transferFrom);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001100 if (fromToken == null) {
1101 return false;
1102 }
1103
1104 final WindowState tStartingWindow = fromToken.startingWindow;
Jorim Jaggiba41f4b2016-12-14 17:43:07 -08001105 if (tStartingWindow != null && fromToken.startingSurface != null) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001106 // In this case, the starting icon has already been displayed, so start
1107 // letting windows get shown immediately without any more transitions.
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001108 mService.mSkipAppTransitionAnimation = true;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001109
1110 if (DEBUG_STARTING_WINDOW) Slog.v(TAG_WM, "Moving existing starting " + tStartingWindow
1111 + " from " + fromToken + " to " + this);
1112
1113 final long origId = Binder.clearCallingIdentity();
1114
1115 // Transfer the starting window over to the new token.
1116 startingData = fromToken.startingData;
Jorim Jaggiba41f4b2016-12-14 17:43:07 -08001117 startingSurface = fromToken.startingSurface;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001118 startingDisplayed = fromToken.startingDisplayed;
1119 fromToken.startingDisplayed = false;
1120 startingWindow = tStartingWindow;
1121 reportedVisible = fromToken.reportedVisible;
1122 fromToken.startingData = null;
Jorim Jaggiba41f4b2016-12-14 17:43:07 -08001123 fromToken.startingSurface = null;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001124 fromToken.startingWindow = null;
1125 fromToken.startingMoved = true;
1126 tStartingWindow.mToken = this;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001127 tStartingWindow.mAppToken = this;
1128
Wale Ogunwale6213caa2016-12-02 16:47:15 +00001129 if (DEBUG_ADD_REMOVE || DEBUG_STARTING_WINDOW) Slog.v(TAG_WM,
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001130 "Removing starting " + tStartingWindow + " from " + fromToken);
Wale Ogunwalefa854eb2016-09-20 13:43:52 -07001131 fromToken.removeChild(tStartingWindow);
1132 fromToken.postWindowRemoveStartingWindowCleanup(tStartingWindow);
Wale Ogunwale92fc3722016-08-05 12:19:08 -07001133 addWindow(tStartingWindow);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001134
1135 // Propagate other interesting state between the tokens. If the old token is displayed,
1136 // we should immediately force the new one to be displayed. If it is animating, we need
1137 // to move that animation to the new one.
1138 if (fromToken.allDrawn) {
1139 allDrawn = true;
1140 deferClearAllDrawn = fromToken.deferClearAllDrawn;
1141 }
1142 if (fromToken.firstWindowDrawn) {
1143 firstWindowDrawn = true;
1144 }
1145 if (!fromToken.hidden) {
1146 hidden = false;
1147 hiddenRequested = false;
1148 }
1149 if (clientHidden != fromToken.clientHidden) {
1150 clientHidden = fromToken.clientHidden;
1151 sendAppVisibilityToClients();
1152 }
1153 fromToken.mAppAnimator.transferCurrentAnimation(
1154 mAppAnimator, tStartingWindow.mWinAnimator);
1155
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001156 mService.updateFocusedWindowLocked(
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001157 UPDATE_FOCUS_WILL_PLACE_SURFACES, true /*updateInputWindows*/);
Andrii Kulian5406e7a2016-10-21 11:55:23 -07001158 getDisplayContent().setLayoutNeeded();
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001159 mService.mWindowPlacerLocked.performSurfacePlacement();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001160 Binder.restoreCallingIdentity(origId);
1161 return true;
1162 } else if (fromToken.startingData != null) {
1163 // The previous app was getting ready to show a
1164 // starting window, but hasn't yet done so. Steal it!
1165 if (DEBUG_STARTING_WINDOW) Slog.v(TAG_WM,
1166 "Moving pending starting from " + fromToken + " to " + this);
1167 startingData = fromToken.startingData;
1168 fromToken.startingData = null;
1169 fromToken.startingMoved = true;
Jorim Jaggiba41f4b2016-12-14 17:43:07 -08001170 if (getController() != null) {
1171 getController().scheduleAddStartingWindow();
1172 }
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001173 return true;
1174 }
1175
1176 final AppWindowAnimator tAppAnimator = fromToken.mAppAnimator;
1177 final AppWindowAnimator wAppAnimator = mAppAnimator;
1178 if (tAppAnimator.thumbnail != null) {
1179 // The old token is animating with a thumbnail, transfer that to the new token.
1180 if (wAppAnimator.thumbnail != null) {
1181 wAppAnimator.thumbnail.destroy();
1182 }
1183 wAppAnimator.thumbnail = tAppAnimator.thumbnail;
1184 wAppAnimator.thumbnailLayer = tAppAnimator.thumbnailLayer;
1185 wAppAnimator.thumbnailAnimation = tAppAnimator.thumbnailAnimation;
1186 tAppAnimator.thumbnail = null;
1187 }
1188 return false;
1189 }
1190
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001191 boolean isLastWindow(WindowState win) {
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001192 return mChildren.size() == 1 && mChildren.get(0) == win;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001193 }
1194
1195 void setAllAppWinAnimators() {
1196 final ArrayList<WindowStateAnimator> allAppWinAnimators = mAppAnimator.mAllAppWinAnimators;
1197 allAppWinAnimators.clear();
1198
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001199 final int windowsCount = mChildren.size();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001200 for (int j = 0; j < windowsCount; j++) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07001201 (mChildren.get(j)).addWinAnimatorToList(allAppWinAnimators);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001202 }
1203 }
1204
Wale Ogunwale9adfe572016-09-08 20:43:58 -07001205 @Override
1206 void onAppTransitionDone() {
1207 sendingToBottom = false;
1208 }
1209
Wale Ogunwale51362492016-09-08 17:49:17 -07001210 /**
1211 * We override because this class doesn't want its children affecting its reported orientation
1212 * in anyway.
1213 */
1214 @Override
Wale Ogunwale5e5a68d2017-03-24 17:36:38 -07001215 int getOrientation(int candidate) {
1216 if (!fillsParent()) {
1217 // Can't specify orientation if app doesn't fill parent.
1218 return SCREEN_ORIENTATION_UNSET;
1219 }
1220
1221 if (candidate == SCREEN_ORIENTATION_BEHIND) {
1222 // Allow app to specify orientation regardless of its visibility state if the current
1223 // candidate want us to use orientation behind. I.e. the visible app on-top of this one
1224 // wants us to use the orientation of the app behind it.
1225 return mOrientation;
1226 }
1227
Bryce Lee61fbcbc2017-03-10 14:14:03 -08001228 // The {@link AppWindowToken} should only specify an orientation when it is not closing or
1229 // going to the bottom. Allowing closing {@link AppWindowToken} to participate can lead to
1230 // an Activity in another task being started in the wrong orientation during the transition.
Wale Ogunwale5e5a68d2017-03-24 17:36:38 -07001231 if (!(sendingToBottom || mService.mClosingApps.contains(this))
Bryce Lee61fbcbc2017-03-10 14:14:03 -08001232 && (isVisible() || mService.mOpeningApps.contains(this))) {
Bryce Leea163b762017-01-24 11:05:01 -08001233 return mOrientation;
Wale Ogunwale51362492016-09-08 17:49:17 -07001234 }
Bryce Leea163b762017-01-24 11:05:01 -08001235
1236 return SCREEN_ORIENTATION_UNSET;
Wale Ogunwale51362492016-09-08 17:49:17 -07001237 }
1238
Wale Ogunwaleb198b742016-12-01 08:44:09 -08001239 /** Returns the app's preferred orientation regardless of its currently visibility state. */
1240 int getOrientationIgnoreVisibility() {
1241 return mOrientation;
1242 }
1243
Craig Mautnerdbb79912012-03-01 18:59:14 -08001244 @Override
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -07001245 void checkAppWindowsReadyToShow() {
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001246 if (allDrawn == mAppAnimator.allDrawn) {
1247 return;
1248 }
1249
1250 mAppAnimator.allDrawn = allDrawn;
1251 if (!allDrawn) {
1252 return;
1253 }
1254
1255 // The token has now changed state to having all windows shown... what to do, what to do?
1256 if (mAppAnimator.freezingScreen) {
1257 mAppAnimator.showAllWindowsLocked();
1258 stopFreezingScreen(false, true);
1259 if (DEBUG_ORIENTATION) Slog.i(TAG,
1260 "Setting mOrientationChangeComplete=true because wtoken " + this
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001261 + " numInteresting=" + mNumInterestingWindows + " numDrawn=" + mNumDrawnWindows);
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001262 // This will set mOrientationChangeComplete and cause a pass through layout.
1263 setAppLayoutChanges(FINISH_LAYOUT_REDO_WALLPAPER,
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -07001264 "checkAppWindowsReadyToShow: freezingScreen");
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001265 } else {
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -07001266 setAppLayoutChanges(FINISH_LAYOUT_REDO_ANIM, "checkAppWindowsReadyToShow");
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001267
1268 // We can now show all of the drawn windows!
1269 if (!mService.mOpeningApps.contains(this)) {
1270 mService.mAnimator.orAnimating(mAppAnimator.showAllWindowsLocked());
1271 }
1272 }
1273 }
1274
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001275 void updateAllDrawn(DisplayContent dc) {
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001276 if (!allDrawn) {
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001277 final int numInteresting = mNumInterestingWindows;
1278 if (numInteresting > 0 && mNumDrawnWindows >= numInteresting) {
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001279 if (DEBUG_VISIBILITY) Slog.v(TAG, "allDrawn: " + this
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001280 + " interesting=" + numInteresting + " drawn=" + mNumDrawnWindows);
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001281 allDrawn = true;
1282 // Force an additional layout pass where
1283 // WindowStateAnimator#commitFinishDrawingLocked() will call performShowLocked().
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001284 dc.setLayoutNeeded();
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001285 mService.mH.obtainMessage(NOTIFY_ACTIVITY_DRAWN, token).sendToTarget();
1286 }
1287 }
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001288
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001289 if (!allDrawnExcludingSaved) {
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001290 int numInteresting = mNumInterestingWindowsExcludingSaved;
1291 if (numInteresting > 0 && mNumDrawnWindowsExcludingSaved >= numInteresting) {
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001292 if (DEBUG_VISIBILITY) Slog.v(TAG, "allDrawnExcludingSaved: " + this
1293 + " interesting=" + numInteresting
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001294 + " drawn=" + mNumDrawnWindowsExcludingSaved);
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001295 allDrawnExcludingSaved = true;
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001296 dc.setLayoutNeeded();
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001297 if (isAnimatingInvisibleWithSavedSurface()
1298 && !mService.mFinishedEarlyAnim.contains(this)) {
1299 mService.mFinishedEarlyAnim.add(this);
1300 }
1301 }
1302 }
1303 }
1304
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001305 /**
1306 * Updated this app token tracking states for interesting and drawn windows based on the window.
1307 *
1308 * @return Returns true if the input window is considered interesting and drawn while all the
1309 * windows in this app token where not considered drawn as of the last pass.
1310 */
1311 boolean updateDrawnWindowStates(WindowState w) {
1312 if (DEBUG_STARTING_WINDOW && w == startingWindow) {
1313 Slog.d(TAG, "updateWindows: starting " + w + " isOnScreen=" + w.isOnScreen()
1314 + " allDrawn=" + allDrawn + " freezingScreen=" + mAppAnimator.freezingScreen);
1315 }
1316
1317 if (allDrawn && allDrawnExcludingSaved && !mAppAnimator.freezingScreen) {
1318 return false;
1319 }
1320
1321 if (mLastTransactionSequence != mService.mTransactionSequence) {
1322 mLastTransactionSequence = mService.mTransactionSequence;
1323 mNumInterestingWindows = mNumDrawnWindows = 0;
1324 mNumInterestingWindowsExcludingSaved = 0;
1325 mNumDrawnWindowsExcludingSaved = 0;
1326 startingDisplayed = false;
1327 }
1328
1329 final WindowStateAnimator winAnimator = w.mWinAnimator;
1330
1331 boolean isInterestingAndDrawn = false;
1332
1333 if (!allDrawn && w.mightAffectAllDrawn(false /* visibleOnly */)) {
1334 if (DEBUG_VISIBILITY || DEBUG_ORIENTATION) {
1335 Slog.v(TAG, "Eval win " + w + ": isDrawn=" + w.isDrawnLw()
1336 + ", isAnimationSet=" + winAnimator.isAnimationSet());
1337 if (!w.isDrawnLw()) {
1338 Slog.v(TAG, "Not displayed: s=" + winAnimator.mSurfaceController
1339 + " pv=" + w.mPolicyVisibility
1340 + " mDrawState=" + winAnimator.drawStateToString()
1341 + " ph=" + w.isParentWindowHidden() + " th=" + hiddenRequested
1342 + " a=" + winAnimator.mAnimating);
1343 }
1344 }
1345
1346 if (w != startingWindow) {
1347 if (w.isInteresting()) {
1348 mNumInterestingWindows++;
1349 if (w.isDrawnLw()) {
1350 mNumDrawnWindows++;
1351
1352 if (DEBUG_VISIBILITY || DEBUG_ORIENTATION) Slog.v(TAG, "tokenMayBeDrawn: "
1353 + this + " w=" + w + " numInteresting=" + mNumInterestingWindows
1354 + " freezingScreen=" + mAppAnimator.freezingScreen
1355 + " mAppFreezing=" + w.mAppFreezing);
1356
1357 isInterestingAndDrawn = true;
1358 }
1359 }
1360 } else if (w.isDrawnLw()) {
Jorim Jaggi3878ca32017-02-02 17:13:05 -08001361 if (getController() != null) {
1362 getController().reportStartingWindowDrawn();
1363 }
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001364 startingDisplayed = true;
1365 }
1366 }
1367
1368 if (!allDrawnExcludingSaved && w.mightAffectAllDrawn(true /* visibleOnly */)) {
1369 if (w != startingWindow && w.isInteresting()) {
1370 mNumInterestingWindowsExcludingSaved++;
1371 if (w.isDrawnLw() && !w.isAnimatingWithSavedSurface()) {
1372 mNumDrawnWindowsExcludingSaved++;
1373
1374 if (DEBUG_VISIBILITY || DEBUG_ORIENTATION) Slog.v(TAG,
1375 "tokenMayBeDrawnExcludingSaved: " + this + " w=" + w
1376 + " numInteresting=" + mNumInterestingWindowsExcludingSaved
1377 + " freezingScreen=" + mAppAnimator.freezingScreen
1378 + " mAppFreezing=" + w.mAppFreezing);
1379
1380 isInterestingAndDrawn = true;
1381 }
1382 }
1383 }
1384
1385 return isInterestingAndDrawn;
1386 }
1387
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001388 @Override
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -07001389 void stepAppWindowsAnimation(long currentTime) {
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001390 mAppAnimator.wasAnimating = mAppAnimator.animating;
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -07001391 if (mAppAnimator.stepAnimationLocked(currentTime)) {
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001392 mAppAnimator.animating = true;
1393 mService.mAnimator.setAnimating(true);
1394 mService.mAnimator.mAppWindowAnimating = true;
1395 } else if (mAppAnimator.wasAnimating) {
1396 // stopped animating, do one more pass through the layout
Wale Ogunwale1e129a42016-11-21 13:03:47 -08001397 setAppLayoutChanges(FINISH_LAYOUT_REDO_WALLPAPER,
1398 DEBUG_LAYOUT_REPEATS ? "appToken " + this + " done" : null);
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001399 if (DEBUG_ANIM) Slog.v(TAG, "updateWindowsApps...: done animating " + this);
1400 }
1401 }
1402
Wale Ogunwale9adfe572016-09-08 20:43:58 -07001403 @Override
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08001404 boolean forAllWindows(ToBooleanFunction<WindowState> callback, boolean traverseTopToBottom) {
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07001405 // For legacy reasons we process the TaskStack.mExitingAppTokens first in DisplayContent
1406 // before the non-exiting app tokens. So, we skip the exiting app tokens here.
1407 // TODO: Investigate if we need to continue to do this or if we can just process them
1408 // in-order.
1409 if (mIsExiting && !waitingForReplacement()) {
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08001410 return false;
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07001411 }
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08001412 return forAllWindowsUnchecked(callback, traverseTopToBottom);
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07001413 }
1414
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08001415 boolean forAllWindowsUnchecked(ToBooleanFunction<WindowState> callback,
1416 boolean traverseTopToBottom) {
1417 return super.forAllWindows(callback, traverseTopToBottom);
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07001418 }
1419
1420 @Override
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001421 AppWindowToken asAppWindowToken() {
1422 // I am an app window token!
1423 return this;
1424 }
1425
1426 @Override
Wale Ogunwale51362492016-09-08 17:49:17 -07001427 boolean fillsParent() {
1428 return mFillsParent;
1429 }
1430
1431 void setFillsParent(boolean fillsParent) {
1432 mFillsParent = fillsParent;
1433 }
1434
Jorim Jaggife762342016-10-13 14:33:27 +02001435 boolean containsDismissKeyguardWindow() {
1436 for (int i = mChildren.size() - 1; i >= 0; i--) {
1437 if ((mChildren.get(i).mAttrs.flags & FLAG_DISMISS_KEYGUARD) != 0) {
1438 return true;
1439 }
1440 }
1441 return false;
1442 }
1443
1444 boolean containsShowWhenLockedWindow() {
1445 for (int i = mChildren.size() - 1; i >= 0; i--) {
1446 if ((mChildren.get(i).mAttrs.flags & FLAG_SHOW_WHEN_LOCKED) != 0) {
1447 return true;
1448 }
1449 }
1450 return false;
1451 }
1452
1453 void checkKeyguardFlagsChanged() {
1454 final boolean containsDismissKeyguard = containsDismissKeyguardWindow();
1455 final boolean containsShowWhenLocked = containsShowWhenLockedWindow();
1456 if (containsDismissKeyguard != mLastContainsDismissKeyguardWindow
1457 || containsShowWhenLocked != mLastContainsShowWhenLockedWindow) {
1458 mService.notifyKeyguardFlagsChanged(null /* callback */);
1459 }
1460 mLastContainsDismissKeyguardWindow = containsDismissKeyguard;
1461 mLastContainsShowWhenLockedWindow = containsShowWhenLocked;
1462 }
1463
Wale Ogunwale6213caa2016-12-02 16:47:15 +00001464 WindowState getImeTargetBelowWindow(WindowState w) {
1465 final int index = mChildren.indexOf(w);
1466 if (index > 0) {
1467 final WindowState target = mChildren.get(index - 1);
1468 if (target.canBeImeTarget()) {
1469 return target;
1470 }
1471 }
1472 return null;
1473 }
1474
1475 WindowState getHighestAnimLayerWindow(WindowState currentTarget) {
1476 WindowState candidate = null;
1477 for (int i = mChildren.indexOf(currentTarget); i >= 0; i--) {
1478 final WindowState w = mChildren.get(i);
1479 if (w.mRemoved) {
1480 continue;
1481 }
1482 if (candidate == null || w.mWinAnimator.mAnimLayer >
1483 candidate.mWinAnimator.mAnimLayer) {
1484 candidate = w;
1485 }
1486 }
1487 return candidate;
1488 }
1489
Jorim Jaggi0fe7ce962017-02-22 16:45:48 +01001490 void setDisablePreviewSnapshots(boolean disable) {
1491 mDisbalePreviewScreenshots = disable;
1492 }
1493
1494 boolean shouldDisablePreviewScreenshots() {
1495 return mDisbalePreviewScreenshots;
1496 }
1497
Wale Ogunwale51362492016-09-08 17:49:17 -07001498 @Override
Robert Carrdee1b3f2017-02-27 11:33:33 -08001499 int getAnimLayerAdjustment() {
1500 return mAppAnimator.animLayerAdjustment;
1501 }
1502
1503 @Override
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001504 void dump(PrintWriter pw, String prefix) {
1505 super.dump(pw, prefix);
1506 if (appToken != null) {
Wale Ogunwale72919d22016-12-08 18:58:50 -08001507 pw.println(prefix + "app=true mVoiceInteraction=" + mVoiceInteraction);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001508 }
Bryce Lee7fbeb8a2017-03-02 08:42:30 -08001509 pw.print(prefix); pw.print("task="); pw.println(getTask());
Wale Ogunwale51362492016-09-08 17:49:17 -07001510 pw.print(prefix); pw.print(" mFillsParent="); pw.print(mFillsParent);
1511 pw.print(" mOrientation="); pw.println(mOrientation);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001512 pw.print(prefix); pw.print("hiddenRequested="); pw.print(hiddenRequested);
1513 pw.print(" clientHidden="); pw.print(clientHidden);
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -07001514 pw.print(" reportedDrawn="); pw.print(reportedDrawn);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001515 pw.print(" reportedVisible="); pw.println(reportedVisible);
Craig Mautner59431632012-04-04 11:56:44 -07001516 if (paused) {
1517 pw.print(prefix); pw.print("paused="); pw.println(paused);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001518 }
Wale Ogunwale9017ec02016-02-25 08:55:25 -08001519 if (mAppStopped) {
1520 pw.print(prefix); pw.print("mAppStopped="); pw.println(mAppStopped);
1521 }
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001522 if (mNumInterestingWindows != 0 || mNumDrawnWindows != 0
Craig Mautner6fbda632012-07-03 09:26:39 -07001523 || allDrawn || mAppAnimator.allDrawn) {
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001524 pw.print(prefix); pw.print("mNumInterestingWindows=");
1525 pw.print(mNumInterestingWindows);
1526 pw.print(" mNumDrawnWindows="); pw.print(mNumDrawnWindows);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001527 pw.print(" inPendingTransaction="); pw.print(inPendingTransaction);
Craig Mautner6fbda632012-07-03 09:26:39 -07001528 pw.print(" allDrawn="); pw.print(allDrawn);
1529 pw.print(" (animator="); pw.print(mAppAnimator.allDrawn);
1530 pw.println(")");
1531 }
1532 if (inPendingTransaction) {
1533 pw.print(prefix); pw.print("inPendingTransaction=");
1534 pw.println(inPendingTransaction);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001535 }
Craig Mautner799bc1d2015-01-14 10:33:48 -08001536 if (startingData != null || removed || firstWindowDrawn || mIsExiting) {
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001537 pw.print(prefix); pw.print("startingData="); pw.print(startingData);
1538 pw.print(" removed="); pw.print(removed);
Craig Mautner3d7ca312015-01-08 10:56:00 -08001539 pw.print(" firstWindowDrawn="); pw.print(firstWindowDrawn);
Craig Mautner799bc1d2015-01-14 10:33:48 -08001540 pw.print(" mIsExiting="); pw.println(mIsExiting);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001541 }
Jorim Jaggiba41f4b2016-12-14 17:43:07 -08001542 if (startingWindow != null || startingSurface != null
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001543 || startingDisplayed || startingMoved) {
1544 pw.print(prefix); pw.print("startingWindow="); pw.print(startingWindow);
Jorim Jaggiba41f4b2016-12-14 17:43:07 -08001545 pw.print(" startingSurface="); pw.print(startingSurface);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001546 pw.print(" startingDisplayed="); pw.print(startingDisplayed);
Wale Ogunwale9017ec02016-02-25 08:55:25 -08001547 pw.print(" startingMoved="); pw.println(startingMoved);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001548 }
Jorim Jaggi0429f352015-12-22 16:29:16 +01001549 if (!mFrozenBounds.isEmpty()) {
Chong Zhangd78ddb42016-03-02 17:01:14 -08001550 pw.print(prefix); pw.print("mFrozenBounds="); pw.println(mFrozenBounds);
Jorim Jaggi26c8c422016-05-09 19:57:25 -07001551 pw.print(prefix); pw.print("mFrozenMergedConfig="); pw.println(mFrozenMergedConfig);
Chong Zhangd78ddb42016-03-02 17:01:14 -08001552 }
1553 if (mPendingRelaunchCount != 0) {
1554 pw.print(prefix); pw.print("mPendingRelaunchCount="); pw.println(mPendingRelaunchCount);
Jorim Jaggi0429f352015-12-22 16:29:16 +01001555 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001556 }
1557
1558 @Override
1559 public String toString() {
1560 if (stringName == null) {
1561 StringBuilder sb = new StringBuilder();
1562 sb.append("AppWindowToken{");
1563 sb.append(Integer.toHexString(System.identityHashCode(this)));
1564 sb.append(" token="); sb.append(token); sb.append('}');
1565 stringName = sb.toString();
1566 }
Wale Ogunwaleba51ca22016-09-23 06:06:54 -07001567 return stringName + ((mIsExiting) ? " mIsExiting=" : "");
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001568 }
Jeff Browne9bdb312012-04-05 15:30:10 -07001569}