blob: 31fdacdd9857883df1a6503049c12e988cae994a [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?
Wale Ogunwale89973222017-04-23 18:39:45 -0700129 private boolean mClientHidden;
130
131 // If true we will defer setting mClientHidden to true and reporting to the client that it is
132 // hidden.
133 boolean mDeferHidingClient;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800134
135 // Last visibility state we reported to the app token.
136 boolean reportedVisible;
137
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700138 // Last drawn state we reported to the app token.
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -0700139 private boolean reportedDrawn;
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700140
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800141 // Set to true when the token has been removed from the window mgr.
142 boolean removed;
143
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800144 // Information about an application starting window if displayed.
145 StartingData startingData;
146 WindowState startingWindow;
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800147 StartingSurface startingSurface;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800148 boolean startingDisplayed;
149 boolean startingMoved;
150 boolean firstWindowDrawn;
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700151 private final WindowState.UpdateReportedVisibilityResults mReportedVisibilityResults =
152 new WindowState.UpdateReportedVisibilityResults();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800153
154 // Input application handle used by the input dispatcher.
Jeff Brown9302c872011-07-13 22:51:29 -0700155 final InputApplicationHandle mInputApplicationHandle;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800156
Wale Ogunwale571771c2016-08-26 13:18:50 -0700157 // TODO: Have a WindowContainer state for tracking exiting/deferred removal.
Craig Mautner799bc1d2015-01-14 10:33:48 -0800158 boolean mIsExiting;
Craig Mautner9ef471f2014-02-07 13:11:47 -0800159
Craig Mautnerbb742462014-07-07 15:28:55 -0700160 boolean mLaunchTaskBehind;
Craig Mautner8746a472014-07-24 15:12:54 -0700161 boolean mEnteringAnimation;
Craig Mautnerbb742462014-07-07 15:28:55 -0700162
Wale Ogunwale72919d22016-12-08 18:58:50 -0800163 private boolean mAlwaysFocusable;
Wale Ogunwale6cae7652015-12-26 07:36:26 -0800164
Robert Carre12aece2016-02-02 22:43:27 -0800165 boolean mAppStopped;
Robert Carrfd10cd12016-06-29 16:41:50 -0700166 int mRotationAnimationHint;
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -0700167 private int mPendingRelaunchCount;
Robert Carre12aece2016-02-02 22:43:27 -0800168
Jorim Jaggife762342016-10-13 14:33:27 +0200169 private boolean mLastContainsShowWhenLockedWindow;
170 private boolean mLastContainsDismissKeyguardWindow;
171
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -0700172 // The bounds of this activity. Mainly used for aspect-ratio compatibility.
173 // TODO(b/36505427): Every level on WindowContainer now has bounds information, which directly
174 // affects the configuration. We should probably move this into that class.
175 private final Rect mBounds = new Rect();
176
Jorim Jaggi0429f352015-12-22 16:29:16 +0100177 ArrayDeque<Rect> mFrozenBounds = new ArrayDeque<>();
Jorim Jaggi26c8c422016-05-09 19:57:25 -0700178 ArrayDeque<Configuration> mFrozenMergedConfig = new ArrayDeque<>();
Jorim Jaggi0429f352015-12-22 16:29:16 +0100179
Jorim Jaggi0fe7ce962017-02-22 16:45:48 +0100180 private boolean mDisbalePreviewScreenshots;
181
Wale Ogunwale72919d22016-12-08 18:58:50 -0800182 AppWindowToken(WindowManagerService service, IApplicationToken token, boolean voiceInteraction,
183 DisplayContent dc, long inputDispatchingTimeoutNanos, boolean fullscreen,
184 boolean showForAllUsers, int targetSdk, int orientation, int rotationAnimationHint,
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800185 int configChanges, boolean launchTaskBehind, boolean alwaysFocusable,
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -0700186 AppWindowContainerController controller, Configuration overrideConfig, Rect bounds) {
187 this(service, token, voiceInteraction, dc, fullscreen, overrideConfig, bounds);
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800188 setController(controller);
Wale Ogunwale72919d22016-12-08 18:58:50 -0800189 mInputDispatchingTimeoutNanos = inputDispatchingTimeoutNanos;
Wale Ogunwale72919d22016-12-08 18:58:50 -0800190 mShowForAllUsers = showForAllUsers;
191 mTargetSdk = targetSdk;
192 mOrientation = orientation;
193 layoutConfigChanges = (configChanges & (CONFIG_SCREEN_SIZE | CONFIG_ORIENTATION)) != 0;
194 mLaunchTaskBehind = launchTaskBehind;
195 mAlwaysFocusable = alwaysFocusable;
196 mRotationAnimationHint = rotationAnimationHint;
197
198 // Application tokens start out hidden.
199 hidden = true;
200 hiddenRequested = true;
201 }
202
203 AppWindowToken(WindowManagerService service, IApplicationToken token, boolean voiceInteraction,
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -0700204 DisplayContent dc, boolean fillsParent, Configuration overrideConfig, Rect bounds) {
Wale Ogunwale5cd907d2017-01-26 14:14:08 -0800205 super(service, token != null ? token.asBinder() : null, TYPE_APPLICATION, true, dc,
206 false /* ownerCanManageAppTokens */);
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700207 appToken = token;
Wale Ogunwale72919d22016-12-08 18:58:50 -0800208 mVoiceInteraction = voiceInteraction;
Wale Ogunwale17f175c2017-02-07 16:54:10 -0800209 mFillsParent = fillsParent;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800210 mInputApplicationHandle = new InputApplicationHandle(this);
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700211 mAppAnimator = new AppWindowAnimator(this, service);
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -0700212 if (overrideConfig != null) {
213 onOverrideConfigurationChanged(overrideConfig);
214 }
215 if (bounds != null) {
216 mBounds.set(bounds);
217 }
218 }
219
220 void onOverrideConfigurationChanged(Configuration overrideConfiguration, Rect bounds) {
221 onOverrideConfigurationChanged(overrideConfiguration);
222 if (mBounds.equals(bounds)) {
223 return;
224 }
225 // TODO(b/36505427): If bounds is in WC, then we can automatically call onResize() when set.
226 mBounds.set(bounds);
227 onResize();
228 }
229
230 void getBounds(Rect outBounds) {
231 outBounds.set(mBounds);
232 }
233
234 boolean hasBounds() {
235 return !mBounds.isEmpty();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800236 }
237
Wale Ogunwale9017ec02016-02-25 08:55:25 -0800238 void onFirstWindowDrawn(WindowState win, WindowStateAnimator winAnimator) {
239 firstWindowDrawn = true;
240
241 // We now have a good window to show, remove dead placeholders
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700242 removeDeadWindows();
Wale Ogunwale9017ec02016-02-25 08:55:25 -0800243
Jorim Jaggi02886a82016-12-06 09:10:06 -0800244 if (startingWindow != null) {
Wale Ogunwale9017ec02016-02-25 08:55:25 -0800245 if (DEBUG_STARTING_WINDOW || DEBUG_ANIM) Slog.v(TAG, "Finish starting "
246 + win.mToken + ": first real window is shown, no animation");
247 // If this initial window is animating, stop it -- we will do an animation to reveal
248 // it from behind the starting window, so there is no need for it to also be doing its
249 // own stuff.
250 winAnimator.clearAnimation();
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800251 if (getController() != null) {
252 getController().removeStartingWindow();
253 }
Wale Ogunwale9017ec02016-02-25 08:55:25 -0800254 }
255 updateReportedVisibilityLocked();
256 }
257
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800258 void updateReportedVisibilityLocked() {
259 if (appToken == null) {
260 return;
261 }
262
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700263 if (DEBUG_VISIBILITY) Slog.v(TAG, "Update reported visibility: " + this);
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700264 final int count = mChildren.size();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800265
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700266 mReportedVisibilityResults.reset();
267
268 for (int i = 0; i < count; i++) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700269 final WindowState win = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700270 win.updateReportedVisibility(mReportedVisibilityResults);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800271 }
272
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700273 int numInteresting = mReportedVisibilityResults.numInteresting;
274 int numVisible = mReportedVisibilityResults.numVisible;
275 int numDrawn = mReportedVisibilityResults.numDrawn;
276 boolean nowGone = mReportedVisibilityResults.nowGone;
277
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700278 boolean nowDrawn = numInteresting > 0 && numDrawn >= numInteresting;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800279 boolean nowVisible = numInteresting > 0 && numVisible >= numInteresting;
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700280 if (!nowGone) {
281 // If the app is not yet gone, then it can only become visible/drawn.
282 if (!nowDrawn) {
283 nowDrawn = reportedDrawn;
284 }
285 if (!nowVisible) {
286 nowVisible = reportedVisible;
287 }
288 }
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800289 if (DEBUG_VISIBILITY) Slog.v(TAG, "VIS " + this + ": interesting="
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800290 + numInteresting + " visible=" + numVisible);
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800291 final AppWindowContainerController controller = getController();
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700292 if (nowDrawn != reportedDrawn) {
293 if (nowDrawn) {
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800294 if (controller != null) {
295 controller.reportWindowsDrawn();
296 }
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700297 }
298 reportedDrawn = nowDrawn;
299 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800300 if (nowVisible != reportedVisible) {
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700301 if (DEBUG_VISIBILITY) Slog.v(TAG,
302 "Visibility changed in " + this + ": vis=" + nowVisible);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800303 reportedVisible = nowVisible;
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800304 if (controller != null) {
305 if (nowVisible) {
306 controller.reportWindowsVisible();
307 } else {
308 controller.reportWindowsGone();
309 }
310 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800311 }
312 }
313
Wale Ogunwale89973222017-04-23 18:39:45 -0700314 boolean isClientHidden() {
315 return mClientHidden;
316 }
317
318 void setClientHidden(boolean hideClient) {
319 if (mClientHidden == hideClient || (hideClient && mDeferHidingClient)) {
320 return;
321 }
322 mClientHidden = hideClient;
323 sendAppVisibilityToClients();
324 }
325
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700326 boolean setVisibility(WindowManager.LayoutParams lp,
327 boolean visible, int transit, boolean performLayout, boolean isVoiceInteraction) {
328
329 boolean delayed = false;
330 inPendingTransaction = false;
331
Wale Ogunwale89973222017-04-23 18:39:45 -0700332 setClientHidden(!visible);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700333
334 // Allow for state changes and animation to be applied if:
335 // * token is transitioning visibility state
336 // * or the token was marked as hidden and is exiting before we had a chance to play the
337 // transition animation
338 // * or this is an opening app and windows are being replaced.
339 boolean visibilityChanged = false;
340 if (hidden == visible || (hidden && mIsExiting) || (visible && waitingForReplacement())) {
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700341 final AccessibilityController accessibilityController = mService.mAccessibilityController;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700342 boolean changed = false;
343 if (DEBUG_APP_TRANSITIONS) Slog.v(TAG_WM,
344 "Changing app " + this + " hidden=" + hidden + " performLayout=" + performLayout);
345
346 boolean runningAppAnimation = false;
347
348 if (transit != AppTransition.TRANSIT_UNSET) {
349 if (mAppAnimator.animation == AppWindowAnimator.sDummyAnimation) {
350 mAppAnimator.setNullAnimation();
351 }
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700352 if (mService.applyAnimationLocked(this, lp, transit, visible, isVoiceInteraction)) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700353 delayed = runningAppAnimation = true;
354 }
355 final WindowState window = findMainWindow();
356 //TODO (multidisplay): Magnification is supported only for the default display.
357 if (window != null && accessibilityController != null
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -0700358 && getDisplayContent().getDisplayId() == DEFAULT_DISPLAY) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700359 accessibilityController.onAppWindowTransitionLocked(window, transit);
360 }
361 changed = true;
362 }
363
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700364 final int windowsCount = mChildren.size();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700365 for (int i = 0; i < windowsCount; i++) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700366 final WindowState win = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700367 changed |= win.onAppVisibilityChanged(visible, runningAppAnimation);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700368 }
369
370 hidden = hiddenRequested = !visible;
371 visibilityChanged = true;
372 if (!visible) {
373 stopFreezingScreen(true, true);
374 } else {
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700375 // If we are being set visible, and the starting window is not yet displayed,
376 // then make sure it doesn't get displayed.
377 if (startingWindow != null && !startingWindow.isDrawnLw()) {
378 startingWindow.mPolicyVisibility = false;
379 startingWindow.mPolicyVisibilityAfterAnim = false;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700380 }
381 }
382
383 if (DEBUG_APP_TRANSITIONS) Slog.v(TAG_WM, "setVisibility: " + this
384 + ": hidden=" + hidden + " hiddenRequested=" + hiddenRequested);
385
386 if (changed) {
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700387 mService.mInputMonitor.setUpdateInputWindowsNeededLw();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700388 if (performLayout) {
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700389 mService.updateFocusedWindowLocked(UPDATE_FOCUS_WILL_PLACE_SURFACES,
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700390 false /*updateInputWindows*/);
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700391 mService.mWindowPlacerLocked.performSurfacePlacement();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700392 }
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700393 mService.mInputMonitor.updateInputWindowsLw(false /*force*/);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700394 }
395 }
396
397 if (mAppAnimator.animation != null) {
398 delayed = true;
399 }
400
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700401 for (int i = mChildren.size() - 1; i >= 0 && !delayed; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700402 if ((mChildren.get(i)).isWindowAnimationSet()) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700403 delayed = true;
404 }
405 }
406
407 if (visibilityChanged) {
408 if (visible && !delayed) {
409 // The token was made immediately visible, there will be no entrance animation.
410 // We need to inform the client the enter animation was finished.
411 mEnteringAnimation = true;
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700412 mService.mActivityManagerAppTransitionNotifier.onAppTransitionFinishedLocked(token);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700413 }
Robert Carre7cc44d2017-03-20 19:04:30 -0700414 // If we are hidden but there is no delay needed we immediately
415 // apply the Surface transaction so that the ActivityManager
416 // can have some guarantee on the Surface state
417 // following setting the visibility.
Robert Carr6914f082017-03-20 19:04:30 -0700418 if (hidden && !delayed) {
419 SurfaceControl.openTransaction();
420 for (int i = mChildren.size() - 1; i >= 0; i--) {
421 mChildren.get(i).mWinAnimator.hide("immediately hidden");
422 }
423 SurfaceControl.closeTransaction();
424 }
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700425
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700426 if (!mService.mClosingApps.contains(this) && !mService.mOpeningApps.contains(this)) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700427 // The token is not closing nor opening, so even if there is an animation set, that
428 // doesn't mean that it goes through the normal app transition cycle so we have
429 // to inform the docked controller about visibility change.
Andrii Kulian1e32e022016-09-16 15:29:34 -0700430 // TODO(multi-display): notify docked divider on all displays where visibility was
431 // affected.
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700432 mService.getDefaultDisplayContentLocked().getDockedDividerController()
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700433 .notifyAppVisibilityChanged();
Jorim Jaggi8b702ed2017-01-20 16:59:03 +0100434 mService.mTaskSnapshotController.notifyAppVisibilityChanged(this, visible);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700435 }
436 }
437
438 return delayed;
439 }
440
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800441 WindowState findMainWindow() {
Filip Gruszczynski55a309f2015-09-04 17:15:01 -0700442 WindowState candidate = null;
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700443 int j = mChildren.size();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800444 while (j > 0) {
445 j--;
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700446 final WindowState win = mChildren.get(j);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700447 final int type = win.mAttrs.type;
448 // No need to loop through child window as base application and starting types can't be
449 // child windows.
450 if (type == TYPE_BASE_APPLICATION || type == TYPE_APPLICATION_STARTING) {
Filip Gruszczynski55a309f2015-09-04 17:15:01 -0700451 // In cases where there are multiple windows, we prefer the non-exiting window. This
Sungsoo Lim0d3d1f82015-12-02 14:47:59 +0900452 // happens for example when replacing windows during an activity relaunch. When
Filip Gruszczynski55a309f2015-09-04 17:15:01 -0700453 // constructing the animation, we want the new window, not the exiting one.
Wale Ogunwalec48a3542016-02-19 15:18:45 -0800454 if (win.mAnimatingExit) {
Filip Gruszczynski55a309f2015-09-04 17:15:01 -0700455 candidate = win;
456 } else {
457 return win;
458 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800459 }
460 }
Filip Gruszczynski55a309f2015-09-04 17:15:01 -0700461 return candidate;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800462 }
463
Wale Ogunwale6cae7652015-12-26 07:36:26 -0800464 boolean windowsAreFocusable() {
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800465 return StackId.canReceiveKeys(getTask().mStack.mStackId) || mAlwaysFocusable;
Wale Ogunwaled045c822015-12-02 09:14:28 -0800466 }
467
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800468 AppWindowContainerController getController() {
469 final WindowContainerController controller = super.getController();
470 return controller != null ? (AppWindowContainerController) controller : null;
471 }
472
Wale Ogunwale571771c2016-08-26 13:18:50 -0700473 @Override
Wale Ogunwale44f21802016-09-02 12:49:48 -0700474 boolean isVisible() {
Wale Ogunwalee471be62016-10-03 07:53:55 -0700475 // If the app token isn't hidden then it is considered visible and there is no need to check
476 // its children windows to see if they are visible.
477 return !hidden;
Wale Ogunwale44f21802016-09-02 12:49:48 -0700478 }
479
480 @Override
Wale Ogunwale571771c2016-08-26 13:18:50 -0700481 void removeIfPossible() {
Craig Mautnere3119b72015-01-20 15:02:36 -0800482 mIsExiting = false;
Wale Ogunwale3d0bfd92016-12-05 11:38:02 -0800483 removeAllWindowsIfPossible();
Bryce Lee6d410262017-02-28 15:30:17 -0800484 removeImmediately();
Craig Mautnere3119b72015-01-20 15:02:36 -0800485 }
486
Wale Ogunwale3f4433d2016-08-18 20:42:42 -0700487 @Override
488 boolean checkCompleteDeferredRemoval() {
489 if (mIsExiting) {
490 removeIfPossible();
491 }
492 return super.checkCompleteDeferredRemoval();
493 }
494
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700495 void onRemovedFromDisplay() {
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700496 if (DEBUG_APP_TRANSITIONS) Slog.v(TAG_WM, "Removing app token: " + this);
497
Wale Ogunwale72919d22016-12-08 18:58:50 -0800498 boolean delayed = setVisibility(null, false, TRANSIT_UNSET, true, mVoiceInteraction);
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700499
500 mService.mOpeningApps.remove(this);
Jorim Jaggi1b4b23e2016-11-15 16:30:12 -0800501 mService.mUnknownAppVisibilityController.appRemoved(this);
Jorim Jaggi10abe2f2017-01-03 16:44:46 +0100502 mService.mTaskSnapshotController.onAppRemoved(this);
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700503 waitingToShow = false;
504 if (mService.mClosingApps.contains(this)) {
505 delayed = true;
506 } else if (mService.mAppTransition.isTransitionSet()) {
507 mService.mClosingApps.add(this);
508 delayed = true;
509 }
510
511 if (DEBUG_APP_TRANSITIONS) Slog.v(TAG_WM, "Removing app " + this + " delayed=" + delayed
512 + " animation=" + mAppAnimator.animation + " animating=" + mAppAnimator.animating);
513
514 if (DEBUG_ADD_REMOVE || DEBUG_TOKEN_MOVEMENT) Slog.v(TAG_WM, "removeAppToken: "
515 + this + " delayed=" + delayed + " Callers=" + Debug.getCallers(4));
516
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800517 if (startingData != null && getController() != null) {
518 getController().removeStartingWindow();
519 }
520
Winson Chung87e5d552017-04-05 11:49:38 -0700521 // If this window was animating, then we need to ensure that the app transition notifies
522 // that animations have completed in WMS.handleAnimatingStoppedAndTransitionLocked(), so
523 // add to that list now
524 if (mAppAnimator.animating) {
525 mService.mNoAnimationNotifyOnTransitionFinished.add(token);
526 }
527
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800528 final TaskStack stack = getTask().mStack;
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700529 if (delayed && !isEmpty()) {
530 // set the token aside because it has an active animation to be finished
531 if (DEBUG_ADD_REMOVE || DEBUG_TOKEN_MOVEMENT) Slog.v(TAG_WM,
532 "removeAppToken make exiting: " + this);
533 stack.mExitingAppTokens.add(this);
534 mIsExiting = true;
535 } else {
536 // Make sure there is no animation running on this token, so any windows associated
537 // with it will be removed as soon as their animations are complete
538 mAppAnimator.clearAnimation();
539 mAppAnimator.animating = false;
540 removeIfPossible();
541 }
542
543 removed = true;
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700544 stopFreezingScreen(true, true);
Bryce Lee6d410262017-02-28 15:30:17 -0800545
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700546 if (mService.mFocusedApp == this) {
547 if (DEBUG_FOCUS_LIGHT) Slog.v(TAG_WM, "Removing focused app token:" + this);
548 mService.mFocusedApp = null;
549 mService.updateFocusedWindowLocked(UPDATE_FOCUS_NORMAL, true /*updateInputWindows*/);
550 mService.mInputMonitor.setFocusedAppLw(null);
551 }
552
553 if (!delayed) {
554 updateReportedVisibilityLocked();
555 }
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700556 }
557
Chong Zhange05bcb12016-07-26 17:47:29 -0700558 void clearAnimatingFlags() {
Chong Zhangb0d26702016-08-12 16:03:29 -0700559 boolean wallpaperMightChange = false;
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700560 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700561 final WindowState win = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700562 wallpaperMightChange |= win.clearAnimatingFlags();
Chong Zhange05bcb12016-07-26 17:47:29 -0700563 }
Chong Zhangb0d26702016-08-12 16:03:29 -0700564 if (wallpaperMightChange) {
565 requestUpdateWallpaperIfNeeded();
566 }
Chong Zhange05bcb12016-07-26 17:47:29 -0700567 }
568
Robert Carre12aece2016-02-02 22:43:27 -0800569 void destroySurfaces() {
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700570 destroySurfaces(false /*cleanupOnResume*/);
571 }
572
573 /**
574 * Destroy surfaces which have been marked as eligible by the animator, taking care to ensure
575 * the client has finished with them.
576 *
577 * @param cleanupOnResume whether this is done when app is resumed without fully stopped. If
578 * set to true, destroy only surfaces of removed windows, and clear relevant flags of the
579 * others so that they are ready to be reused. If set to false (common case), destroy all
580 * surfaces that's eligible, if the app is already stopped.
581 */
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700582 private void destroySurfaces(boolean cleanupOnResume) {
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -0700583 boolean destroyedSomething = false;
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700584 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700585 final WindowState win = mChildren.get(i);
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -0700586 destroyedSomething |= win.destroySurface(cleanupOnResume, mAppStopped);
Robert Carre12aece2016-02-02 22:43:27 -0800587 }
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -0700588 if (destroyedSomething) {
589 final DisplayContent dc = getDisplayContent();
Wale Ogunwalec69694a2016-10-18 13:51:15 -0700590 dc.assignWindowLayers(true /*setLayoutNeeded*/);
Robert Carre12aece2016-02-02 22:43:27 -0800591 }
592 }
593
Wale Ogunwale8d5a5422016-03-03 18:28:21 -0800594 /**
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700595 * Notify that the app is now resumed, and it was not stopped before, perform a clean
596 * up of the surfaces
Wale Ogunwale8d5a5422016-03-03 18:28:21 -0800597 */
Jorim Jaggibae01b12017-04-11 16:29:10 -0700598 void notifyAppResumed(boolean wasStopped) {
Chong Zhangad24f962016-08-25 12:12:33 -0700599 if (DEBUG_ADD_REMOVE) Slog.v(TAG, "notifyAppResumed: wasStopped=" + wasStopped
Jorim Jaggibae01b12017-04-11 16:29:10 -0700600 + " " + this);
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700601 mAppStopped = false;
602 if (!wasStopped) {
603 destroySurfaces(true /*cleanupOnResume*/);
Wale Ogunwale8d5a5422016-03-03 18:28:21 -0800604 }
Robert Carre12aece2016-02-02 22:43:27 -0800605 }
606
Chong Zhangbef461f2015-10-27 11:38:24 -0700607 /**
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700608 * Notify that the app has stopped, and it is okay to destroy any surfaces which were
609 * keeping alive in case they were still being used.
610 */
611 void notifyAppStopped() {
612 if (DEBUG_ADD_REMOVE) Slog.v(TAG, "notifyAppStopped: " + this);
613 mAppStopped = true;
614 destroySurfaces();
615 // Remove any starting window that was added for this app if they are still around.
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800616 if (getController() != null) {
617 getController().removeStartingWindow();
618 }
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700619 }
620
621 /**
Chong Zhangbef461f2015-10-27 11:38:24 -0700622 * Checks whether we should save surfaces for this app.
623 *
624 * @return true if the surfaces should be saved, false otherwise.
625 */
626 boolean shouldSaveSurface() {
Chong Zhangbfc2f8f2016-01-29 15:50:34 -0800627 // We want to save surface if the app's windows are "allDrawn".
628 // (If we started entering animation early with saved surfaces, allDrawn
629 // should have been restored to true. So we'll save again in that case
630 // even if app didn't actually finish drawing.)
631 return allDrawn;
Robert Carr13f7be9e2015-12-02 18:39:45 -0800632 }
633
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700634 private boolean canRestoreSurfaces() {
635 for (int i = mChildren.size() -1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700636 final WindowState w = mChildren.get(i);
Chong Zhang92147042016-05-09 12:47:11 -0700637 if (w.canRestoreSurface()) {
Robert Carr13f7be9e2015-12-02 18:39:45 -0800638 return true;
639 }
Chong Zhangbef461f2015-10-27 11:38:24 -0700640 }
641 return false;
642 }
643
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700644 private void clearWasVisibleBeforeClientHidden() {
645 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700646 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700647 w.clearWasVisibleBeforeClientHidden();
Chong Zhang92147042016-05-09 12:47:11 -0700648 }
649 }
650
Chong Zhang8e4bda92016-05-04 15:08:18 -0700651 /**
652 * Whether the app has some window that is invisible in layout, but
653 * animating with saved surface.
654 */
655 boolean isAnimatingInvisibleWithSavedSurface() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700656 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700657 final WindowState w = mChildren.get(i);
Chong Zhang8e4bda92016-05-04 15:08:18 -0700658 if (w.isAnimatingInvisibleWithSavedSurface()) {
659 return true;
660 }
661 }
662 return false;
663 }
664
665 /**
666 * Hide all window surfaces that's still invisible in layout but animating
667 * with a saved surface, and mark them destroying.
668 */
669 void stopUsingSavedSurfaceLocked() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700670 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700671 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700672 w.stopUsingSavedSurface();
Chong Zhang8e4bda92016-05-04 15:08:18 -0700673 }
674 destroySurfaces();
675 }
676
Chong Zhangf58631a2016-05-24 16:02:10 -0700677 void markSavedSurfaceExiting() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700678 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700679 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700680 w.markSavedSurfaceExiting();
Chong Zhangf58631a2016-05-24 16:02:10 -0700681 }
682 }
683
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700684 void restoreSavedSurfaceForInterestingWindows() {
Chong Zhang92147042016-05-09 12:47:11 -0700685 if (!canRestoreSurfaces()) {
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700686 clearWasVisibleBeforeClientHidden();
Chong Zhangbef461f2015-10-27 11:38:24 -0700687 return;
688 }
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700689
690 // Check if all interesting windows are drawn and we can mark allDrawn=true.
691 int interestingNotDrawn = -1;
692
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700693 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700694 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700695 interestingNotDrawn = w.restoreSavedSurfaceForInterestingWindow();
Chong Zhangbef461f2015-10-27 11:38:24 -0700696 }
Chong Zhangbfc2f8f2016-01-29 15:50:34 -0800697
Chong Zhang92147042016-05-09 12:47:11 -0700698 if (!allDrawn) {
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700699 allDrawn = (interestingNotDrawn == 0);
Chong Zhang92147042016-05-09 12:47:11 -0700700 if (allDrawn) {
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700701 mService.mH.obtainMessage(NOTIFY_ACTIVITY_DRAWN, token).sendToTarget();
Chong Zhang92147042016-05-09 12:47:11 -0700702 }
703 }
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700704 clearWasVisibleBeforeClientHidden();
Chong Zhangbfc2f8f2016-01-29 15:50:34 -0800705
706 if (DEBUG_APP_TRANSITIONS || DEBUG_ANIM) Slog.d(TAG,
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700707 "restoreSavedSurfaceForInterestingWindows: " + this + " allDrawn=" + allDrawn
708 + " interestingNotDrawn=" + interestingNotDrawn);
Chong Zhangbef461f2015-10-27 11:38:24 -0700709 }
710
711 void destroySavedSurfaces() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700712 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700713 final WindowState win = mChildren.get(i);
Robert Carr13f7be9e2015-12-02 18:39:45 -0800714 win.destroySavedSurface();
Chong Zhangbef461f2015-10-27 11:38:24 -0700715 }
Chong Zhang92147042016-05-09 12:47:11 -0700716 }
717
718 void clearAllDrawn() {
719 allDrawn = false;
720 deferClearAllDrawn = false;
Chong Zhang8e4bda92016-05-04 15:08:18 -0700721 allDrawnExcludingSaved = false;
Chong Zhangbef461f2015-10-27 11:38:24 -0700722 }
723
Bryce Lee6d410262017-02-28 15:30:17 -0800724 Task getTask() {
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800725 return (Task) getParent();
Bryce Lee6d410262017-02-28 15:30:17 -0800726 }
727
Jorim Jaggi3878ca32017-02-02 17:13:05 -0800728 TaskStack getStack() {
729 final Task task = getTask();
730 if (task != null) {
731 return task.mStack;
732 } else {
733 return null;
734 }
735 }
736
Bryce Lee6d410262017-02-28 15:30:17 -0800737 @Override
738 void onParentSet() {
739 super.onParentSet();
740
741 // When the associated task is {@code null}, the {@link AppWindowToken} can no longer
742 // access visual elements like the {@link DisplayContent}. We must remove any associations
743 // such as animations.
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800744 if (!mReparenting) {
745 final Task task = getTask();
746 if (task == null) {
747 // It is possible we have been marked as a closing app earlier. We must remove ourselves
748 // from this list so we do not participate in any future animations.
749 mService.mClosingApps.remove(this);
750 } else if (task.mStack != null) {
751 task.mStack.mExitingAppTokens.remove(this);
752 }
Bryce Lee6d410262017-02-28 15:30:17 -0800753 }
754 }
755
Wale Ogunwalefa854eb2016-09-20 13:43:52 -0700756 void postWindowRemoveStartingWindowCleanup(WindowState win) {
Wale Ogunwale92fc3722016-08-05 12:19:08 -0700757 // TODO: Something smells about the code below...Is there a better way?
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700758 if (startingWindow == win) {
759 if (DEBUG_STARTING_WINDOW) Slog.v(TAG_WM, "Notify removed startingWindow " + win);
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800760 if (getController() != null) {
761 getController().removeStartingWindow();
762 }
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700763 } else if (mChildren.size() == 0 && startingData != null) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700764 // If this is the last window and we had requested a starting transition window,
765 // well there is no point now.
Jorim Jaggi02886a82016-12-06 09:10:06 -0800766 if (DEBUG_STARTING_WINDOW) Slog.v(TAG_WM, "Nulling last startingData");
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700767 startingData = null;
Jorim Jaggi829b9cd2017-01-23 16:20:53 +0100768 } else if (mChildren.size() == 1 && startingSurface != null && !isRelaunching()) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700769 // If this is the last window except for a starting transition window,
770 // we need to get rid of the starting transition.
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800771 if (getController() != null) {
772 getController().removeStartingWindow();
773 }
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700774 }
775 }
776
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700777 void removeDeadWindows() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700778 for (int winNdx = mChildren.size() - 1; winNdx >= 0; --winNdx) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700779 WindowState win = mChildren.get(winNdx);
Chong Zhang112eb8c2015-11-02 11:17:00 -0800780 if (win.mAppDied) {
Wale Ogunwale92fc3722016-08-05 12:19:08 -0700781 if (DEBUG_WINDOW_MOVEMENT || DEBUG_ADD_REMOVE) Slog.w(TAG,
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700782 "removeDeadWindows: " + win);
Chong Zhang112eb8c2015-11-02 11:17:00 -0800783 // Set mDestroying, we don't want any animation or delayed removal here.
784 win.mDestroying = true;
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700785 // Also removes child windows.
Wale Ogunwale92fc3722016-08-05 12:19:08 -0700786 win.removeIfPossible();
Chong Zhang112eb8c2015-11-02 11:17:00 -0800787 }
788 }
789 }
790
Wale Ogunwalee42d0e12016-05-02 16:40:59 -0700791 boolean hasWindowsAlive() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700792 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700793 // No need to loop through child windows as the answer should be the same as that of the
794 // parent window.
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700795 if (!(mChildren.get(i)).mAppDied) {
Wale Ogunwalee42d0e12016-05-02 16:40:59 -0700796 return true;
797 }
798 }
799 return false;
800 }
801
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700802 void setWillReplaceWindows(boolean animate) {
Wale Ogunwale455fac52016-07-21 07:24:49 -0700803 if (DEBUG_ADD_REMOVE) Slog.d(TAG_WM,
804 "Marking app token " + this + " with replacing windows.");
Robert Carra1eb4392015-12-10 12:43:51 -0800805
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700806 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700807 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700808 w.setWillReplaceWindow(animate);
Robert Carra1eb4392015-12-10 12:43:51 -0800809 }
810 if (animate) {
811 // Set-up dummy animation so we can start treating windows associated with this
812 // token like they are in transition before the new app window is ready for us to
813 // run the real transition animation.
814 if (DEBUG_APP_TRANSITIONS) Slog.v(TAG_WM,
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700815 "setWillReplaceWindow() Setting dummy animation on: " + this);
Robert Carra1eb4392015-12-10 12:43:51 -0800816 mAppAnimator.setDummyAnimation();
817 }
818 }
819
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700820 void setWillReplaceChildWindows() {
Wale Ogunwale455fac52016-07-21 07:24:49 -0700821 if (DEBUG_ADD_REMOVE) Slog.d(TAG_WM, "Marking app token " + this
Robert Carr23fa16b2016-01-13 13:19:58 -0800822 + " with replacing child windows.");
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.setWillReplaceChildWindows();
Robert Carr23fa16b2016-01-13 13:19:58 -0800826 }
827 }
828
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700829 void clearWillReplaceWindows() {
Wale Ogunwale455fac52016-07-21 07:24:49 -0700830 if (DEBUG_ADD_REMOVE) Slog.d(TAG_WM,
831 "Resetting app token " + this + " of replacing window marks.");
Chong Zhangf596cd52016-01-05 13:42:44 -0800832
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700833 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700834 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700835 w.clearWillReplaceWindow();
Chong Zhangf596cd52016-01-05 13:42:44 -0800836 }
837 }
838
Chong Zhang4d7369a2016-04-25 16:09:14 -0700839 void requestUpdateWallpaperIfNeeded() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700840 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700841 final WindowState w = mChildren.get(i);
Chong Zhang4d7369a2016-04-25 16:09:14 -0700842 w.requestUpdateWallpaperIfNeeded();
843 }
844 }
845
Chong Zhangd78ddb42016-03-02 17:01:14 -0800846 boolean isRelaunching() {
847 return mPendingRelaunchCount > 0;
848 }
849
850 void startRelaunching() {
851 if (canFreezeBounds()) {
852 freezeBounds();
853 }
Robert Carrd5c7dd62017-03-08 10:39:30 -0800854
855 // In the process of tearing down before relaunching, the app will
856 // try and clean up it's child surfaces. We need to prevent this from
857 // happening, so we sever the children, transfering their ownership
858 // from the client it-self to the parent surface (owned by us).
859 for (int i = mChildren.size() - 1; i >= 0; i--) {
860 final WindowState w = mChildren.get(i);
861 w.mWinAnimator.detachChildren();
862 }
863
Chong Zhangd78ddb42016-03-02 17:01:14 -0800864 mPendingRelaunchCount++;
865 }
866
867 void finishRelaunching() {
868 if (canFreezeBounds()) {
869 unfreezeBounds();
870 }
871 if (mPendingRelaunchCount > 0) {
872 mPendingRelaunchCount--;
873 }
874 }
875
Wale Ogunwale8fd75422016-06-24 14:20:37 -0700876 void clearRelaunching() {
Wale Ogunwale37dbafc2016-06-27 10:15:20 -0700877 if (mPendingRelaunchCount == 0) {
878 return;
879 }
Wale Ogunwale8fd75422016-06-24 14:20:37 -0700880 if (canFreezeBounds()) {
881 unfreezeBounds();
882 }
883 mPendingRelaunchCount = 0;
884 }
885
Wale Ogunwale07bcab72016-10-14 15:30:09 -0700886 /**
887 * Returns true if the new child window we are adding to this token is considered greater than
888 * the existing child window in this token in terms of z-order.
889 */
890 @Override
891 protected boolean isFirstChildWindowGreaterThanSecond(WindowState newWindow,
892 WindowState existingWindow) {
893 final int type1 = newWindow.mAttrs.type;
894 final int type2 = existingWindow.mAttrs.type;
895
896 // Base application windows should be z-ordered BELOW all other windows in the app token.
897 if (type1 == TYPE_BASE_APPLICATION && type2 != TYPE_BASE_APPLICATION) {
898 return false;
899 } else if (type1 != TYPE_BASE_APPLICATION && type2 == TYPE_BASE_APPLICATION) {
900 return true;
901 }
902
903 // Starting windows should be z-ordered ABOVE all other windows in the app token.
904 if (type1 == TYPE_APPLICATION_STARTING && type2 != TYPE_APPLICATION_STARTING) {
905 return true;
906 } else if (type1 != TYPE_APPLICATION_STARTING && type2 == TYPE_APPLICATION_STARTING) {
907 return false;
908 }
909
910 // Otherwise the new window is greater than the existing window.
911 return true;
912 }
913
Wale Ogunwale92fc3722016-08-05 12:19:08 -0700914 @Override
Robert Carra1eb4392015-12-10 12:43:51 -0800915 void addWindow(WindowState w) {
Wale Ogunwale92fc3722016-08-05 12:19:08 -0700916 super.addWindow(w);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700917
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700918 boolean gotReplacementWindow = false;
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700919 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700920 final WindowState candidate = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700921 gotReplacementWindow |= candidate.setReplacementWindowIfNeeded(w);
922 }
Wale Ogunwale92fc3722016-08-05 12:19:08 -0700923
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700924 // if we got a replacement window, reset the timeout to give drawing more time
925 if (gotReplacementWindow) {
926 mService.scheduleWindowReplacementTimeouts(this);
Robert Carra1eb4392015-12-10 12:43:51 -0800927 }
Jorim Jaggife762342016-10-13 14:33:27 +0200928 checkKeyguardFlagsChanged();
929 }
930
931 @Override
932 void removeChild(WindowState child) {
933 super.removeChild(child);
934 checkKeyguardFlagsChanged();
Robert Carra1eb4392015-12-10 12:43:51 -0800935 }
936
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -0700937 private boolean waitingForReplacement() {
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 final WindowState candidate = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700940 if (candidate.waitingForReplacement()) {
Robert Carra1eb4392015-12-10 12:43:51 -0800941 return true;
942 }
943 }
944 return false;
945 }
946
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700947 void onWindowReplacementTimeout() {
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)).onWindowReplacementTimeout();
Robert Carra1eb4392015-12-10 12:43:51 -0800950 }
951 }
952
Winson Chung30480042017-01-26 10:55:34 -0800953 void reparent(Task task, int position) {
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800954 final Task currentTask = getTask();
955 if (task == currentTask) {
Winson Chung30480042017-01-26 10:55:34 -0800956 throw new IllegalArgumentException(
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800957 "window token=" + this + " already child of task=" + currentTask);
Winson Chung30480042017-01-26 10:55:34 -0800958 }
Bryce Lee6d410262017-02-28 15:30:17 -0800959
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800960 if (currentTask.mStack != task.mStack) {
Bryce Lee6d410262017-02-28 15:30:17 -0800961 throw new IllegalArgumentException(
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800962 "window token=" + this + " current task=" + currentTask
Bryce Lee6d410262017-02-28 15:30:17 -0800963 + " belongs to a different stack than " + task);
964 }
965
Winson Chung30480042017-01-26 10:55:34 -0800966 if (DEBUG_ADD_REMOVE) Slog.i(TAG, "reParentWindowToken: removing window token=" + this
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800967 + " from task=" + currentTask);
Winson Chung30480042017-01-26 10:55:34 -0800968 final DisplayContent prevDisplayContent = getDisplayContent();
969
Bryce Lee6d410262017-02-28 15:30:17 -0800970 mReparenting = true;
971
Winson Chung30480042017-01-26 10:55:34 -0800972 getParent().removeChild(this);
973 task.addChild(this, position);
974
Bryce Lee6d410262017-02-28 15:30:17 -0800975 mReparenting = false;
976
Winson Chung30480042017-01-26 10:55:34 -0800977 // Relayout display(s).
978 final DisplayContent displayContent = task.getDisplayContent();
979 displayContent.setLayoutNeeded();
980 if (prevDisplayContent != displayContent) {
981 onDisplayChanged(displayContent);
982 prevDisplayContent.setLayoutNeeded();
983 }
984 }
985
Chong Zhangd78ddb42016-03-02 17:01:14 -0800986 private boolean canFreezeBounds() {
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800987 final Task task = getTask();
988
Chong Zhangd78ddb42016-03-02 17:01:14 -0800989 // For freeform windows, we can't freeze the bounds at the moment because this would make
990 // the resizing unresponsive.
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800991 return task != null && !task.inFreeformWorkspace();
Chong Zhangd78ddb42016-03-02 17:01:14 -0800992 }
993
Jorim Jaggi0429f352015-12-22 16:29:16 +0100994 /**
995 * Freezes the task bounds. The size of this task reported the app will be fixed to the bounds
996 * freezed by {@link Task#prepareFreezingBounds} until {@link #unfreezeBounds} gets called, even
997 * if they change in the meantime. If the bounds are already frozen, the bounds will be frozen
998 * with a queue.
999 */
Chong Zhangd78ddb42016-03-02 17:01:14 -08001000 private void freezeBounds() {
Bryce Lee7fbeb8a2017-03-02 08:42:30 -08001001 final Task task = getTask();
1002 mFrozenBounds.offer(new Rect(task.mPreparedFrozenBounds));
Jorim Jaggi26c8c422016-05-09 19:57:25 -07001003
Bryce Lee7fbeb8a2017-03-02 08:42:30 -08001004 if (task.mPreparedFrozenMergedConfig.equals(Configuration.EMPTY)) {
Jorim Jaggi26c8c422016-05-09 19:57:25 -07001005 // We didn't call prepareFreezingBounds on the task, so use the current value.
Bryce Lee7fbeb8a2017-03-02 08:42:30 -08001006 mFrozenMergedConfig.offer(new Configuration(task.getConfiguration()));
Jorim Jaggi26c8c422016-05-09 19:57:25 -07001007 } else {
Bryce Lee7fbeb8a2017-03-02 08:42:30 -08001008 mFrozenMergedConfig.offer(new Configuration(task.mPreparedFrozenMergedConfig));
Jorim Jaggi26c8c422016-05-09 19:57:25 -07001009 }
Andrii Kulianb10330d2016-09-16 13:51:46 -07001010 // Calling unset() to make it equal to Configuration.EMPTY.
Bryce Lee7fbeb8a2017-03-02 08:42:30 -08001011 task.mPreparedFrozenMergedConfig.unset();
Jorim Jaggi0429f352015-12-22 16:29:16 +01001012 }
1013
1014 /**
1015 * Unfreezes the previously frozen bounds. See {@link #freezeBounds}.
1016 */
Chong Zhangd78ddb42016-03-02 17:01:14 -08001017 private void unfreezeBounds() {
Wale Ogunwale37dbafc2016-06-27 10:15:20 -07001018 if (!mFrozenBounds.isEmpty()) {
1019 mFrozenBounds.remove();
1020 }
1021 if (!mFrozenMergedConfig.isEmpty()) {
1022 mFrozenMergedConfig.remove();
1023 }
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001024 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07001025 final WindowState win = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001026 win.onUnfreezeBounds();
Jorim Jaggi4846ee32016-01-07 17:39:12 +01001027 }
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001028 mService.mWindowPlacerLocked.performSurfacePlacement();
Jorim Jaggi0429f352015-12-22 16:29:16 +01001029 }
1030
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -07001031 void setAppLayoutChanges(int changes, String reason) {
1032 if (!mChildren.isEmpty()) {
1033 final DisplayContent dc = getDisplayContent();
1034 dc.pendingLayoutChanges |= changes;
1035 if (DEBUG_LAYOUT_REPEATS) {
1036 mService.mWindowPlacerLocked.debugLayoutRepeats(reason, dc.pendingLayoutChanges);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001037 }
1038 }
1039 }
1040
1041 void removeReplacedWindowIfNeeded(WindowState replacement) {
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001042 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07001043 final WindowState win = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001044 if (win.removeReplacedWindowIfNeeded(replacement)) {
1045 return;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001046 }
1047 }
1048 }
1049
1050 void startFreezingScreen() {
1051 if (DEBUG_ORIENTATION) logWithStack(TAG, "Set freezing of " + appToken + ": hidden="
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001052 + hidden + " freezing=" + mAppAnimator.freezingScreen + " hiddenRequested="
1053 + hiddenRequested);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001054 if (!hiddenRequested) {
1055 if (!mAppAnimator.freezingScreen) {
1056 mAppAnimator.freezingScreen = true;
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001057 mService.registerAppFreezeListener(this);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001058 mAppAnimator.lastFreezeDuration = 0;
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001059 mService.mAppsFreezingScreen++;
1060 if (mService.mAppsFreezingScreen == 1) {
1061 mService.startFreezingDisplayLocked(false, 0, 0);
1062 mService.mH.removeMessages(H.APP_FREEZE_TIMEOUT);
1063 mService.mH.sendEmptyMessageDelayed(H.APP_FREEZE_TIMEOUT, 2000);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001064 }
1065 }
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001066 final int count = mChildren.size();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001067 for (int i = 0; i < count; i++) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07001068 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001069 w.onStartFreezingScreen();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001070 }
1071 }
1072 }
1073
1074 void stopFreezingScreen(boolean unfreezeSurfaceNow, boolean force) {
1075 if (!mAppAnimator.freezingScreen) {
1076 return;
1077 }
1078 if (DEBUG_ORIENTATION) Slog.v(TAG_WM, "Clear freezing of " + this + " force=" + force);
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001079 final int count = mChildren.size();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001080 boolean unfrozeWindows = false;
1081 for (int i = 0; i < count; i++) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07001082 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001083 unfrozeWindows |= w.onStopFreezingScreen();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001084 }
1085 if (force || unfrozeWindows) {
1086 if (DEBUG_ORIENTATION) Slog.v(TAG_WM, "No longer freezing: " + this);
1087 mAppAnimator.freezingScreen = false;
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001088 mService.unregisterAppFreezeListener(this);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001089 mAppAnimator.lastFreezeDuration =
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001090 (int)(SystemClock.elapsedRealtime() - mService.mDisplayFreezeTime);
1091 mService.mAppsFreezingScreen--;
1092 mService.mLastFinishedFreezeSource = this;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001093 }
1094 if (unfreezeSurfaceNow) {
1095 if (unfrozeWindows) {
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001096 mService.mWindowPlacerLocked.performSurfacePlacement();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001097 }
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001098 mService.stopFreezingDisplayLocked();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001099 }
1100 }
1101
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001102 @Override
1103 public void onAppFreezeTimeout() {
1104 Slog.w(TAG_WM, "Force clearing freeze: " + this);
1105 stopFreezingScreen(true, true);
1106 }
1107
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001108 boolean transferStartingWindow(IBinder transferFrom) {
Wale Ogunwale02319a62016-09-26 15:21:22 -07001109 final AppWindowToken fromToken = getDisplayContent().getAppWindowToken(transferFrom);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001110 if (fromToken == null) {
1111 return false;
1112 }
1113
1114 final WindowState tStartingWindow = fromToken.startingWindow;
Jorim Jaggiba41f4b2016-12-14 17:43:07 -08001115 if (tStartingWindow != null && fromToken.startingSurface != null) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001116 // In this case, the starting icon has already been displayed, so start
1117 // letting windows get shown immediately without any more transitions.
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001118 mService.mSkipAppTransitionAnimation = true;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001119
1120 if (DEBUG_STARTING_WINDOW) Slog.v(TAG_WM, "Moving existing starting " + tStartingWindow
1121 + " from " + fromToken + " to " + this);
1122
1123 final long origId = Binder.clearCallingIdentity();
1124
1125 // Transfer the starting window over to the new token.
1126 startingData = fromToken.startingData;
Jorim Jaggiba41f4b2016-12-14 17:43:07 -08001127 startingSurface = fromToken.startingSurface;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001128 startingDisplayed = fromToken.startingDisplayed;
1129 fromToken.startingDisplayed = false;
1130 startingWindow = tStartingWindow;
1131 reportedVisible = fromToken.reportedVisible;
1132 fromToken.startingData = null;
Jorim Jaggiba41f4b2016-12-14 17:43:07 -08001133 fromToken.startingSurface = null;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001134 fromToken.startingWindow = null;
1135 fromToken.startingMoved = true;
1136 tStartingWindow.mToken = this;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001137 tStartingWindow.mAppToken = this;
1138
Wale Ogunwale6213caa2016-12-02 16:47:15 +00001139 if (DEBUG_ADD_REMOVE || DEBUG_STARTING_WINDOW) Slog.v(TAG_WM,
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001140 "Removing starting " + tStartingWindow + " from " + fromToken);
Wale Ogunwalefa854eb2016-09-20 13:43:52 -07001141 fromToken.removeChild(tStartingWindow);
1142 fromToken.postWindowRemoveStartingWindowCleanup(tStartingWindow);
Wale Ogunwale92fc3722016-08-05 12:19:08 -07001143 addWindow(tStartingWindow);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001144
1145 // Propagate other interesting state between the tokens. If the old token is displayed,
1146 // we should immediately force the new one to be displayed. If it is animating, we need
1147 // to move that animation to the new one.
1148 if (fromToken.allDrawn) {
1149 allDrawn = true;
1150 deferClearAllDrawn = fromToken.deferClearAllDrawn;
1151 }
1152 if (fromToken.firstWindowDrawn) {
1153 firstWindowDrawn = true;
1154 }
1155 if (!fromToken.hidden) {
1156 hidden = false;
1157 hiddenRequested = false;
1158 }
Wale Ogunwale89973222017-04-23 18:39:45 -07001159 setClientHidden(fromToken.mClientHidden);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001160 fromToken.mAppAnimator.transferCurrentAnimation(
1161 mAppAnimator, tStartingWindow.mWinAnimator);
1162
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001163 mService.updateFocusedWindowLocked(
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001164 UPDATE_FOCUS_WILL_PLACE_SURFACES, true /*updateInputWindows*/);
Andrii Kulian5406e7a2016-10-21 11:55:23 -07001165 getDisplayContent().setLayoutNeeded();
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001166 mService.mWindowPlacerLocked.performSurfacePlacement();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001167 Binder.restoreCallingIdentity(origId);
1168 return true;
1169 } else if (fromToken.startingData != null) {
1170 // The previous app was getting ready to show a
1171 // starting window, but hasn't yet done so. Steal it!
1172 if (DEBUG_STARTING_WINDOW) Slog.v(TAG_WM,
1173 "Moving pending starting from " + fromToken + " to " + this);
1174 startingData = fromToken.startingData;
1175 fromToken.startingData = null;
1176 fromToken.startingMoved = true;
Jorim Jaggiba41f4b2016-12-14 17:43:07 -08001177 if (getController() != null) {
1178 getController().scheduleAddStartingWindow();
1179 }
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001180 return true;
1181 }
1182
1183 final AppWindowAnimator tAppAnimator = fromToken.mAppAnimator;
1184 final AppWindowAnimator wAppAnimator = mAppAnimator;
1185 if (tAppAnimator.thumbnail != null) {
1186 // The old token is animating with a thumbnail, transfer that to the new token.
1187 if (wAppAnimator.thumbnail != null) {
1188 wAppAnimator.thumbnail.destroy();
1189 }
1190 wAppAnimator.thumbnail = tAppAnimator.thumbnail;
1191 wAppAnimator.thumbnailLayer = tAppAnimator.thumbnailLayer;
1192 wAppAnimator.thumbnailAnimation = tAppAnimator.thumbnailAnimation;
1193 tAppAnimator.thumbnail = null;
1194 }
1195 return false;
1196 }
1197
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001198 boolean isLastWindow(WindowState win) {
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001199 return mChildren.size() == 1 && mChildren.get(0) == win;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001200 }
1201
1202 void setAllAppWinAnimators() {
1203 final ArrayList<WindowStateAnimator> allAppWinAnimators = mAppAnimator.mAllAppWinAnimators;
1204 allAppWinAnimators.clear();
1205
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001206 final int windowsCount = mChildren.size();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001207 for (int j = 0; j < windowsCount; j++) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07001208 (mChildren.get(j)).addWinAnimatorToList(allAppWinAnimators);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001209 }
1210 }
1211
Wale Ogunwale9adfe572016-09-08 20:43:58 -07001212 @Override
1213 void onAppTransitionDone() {
1214 sendingToBottom = false;
1215 }
1216
Wale Ogunwale51362492016-09-08 17:49:17 -07001217 /**
1218 * We override because this class doesn't want its children affecting its reported orientation
1219 * in anyway.
1220 */
1221 @Override
Wale Ogunwale5e5a68d2017-03-24 17:36:38 -07001222 int getOrientation(int candidate) {
1223 if (!fillsParent()) {
1224 // Can't specify orientation if app doesn't fill parent.
1225 return SCREEN_ORIENTATION_UNSET;
1226 }
1227
1228 if (candidate == SCREEN_ORIENTATION_BEHIND) {
1229 // Allow app to specify orientation regardless of its visibility state if the current
1230 // candidate want us to use orientation behind. I.e. the visible app on-top of this one
1231 // wants us to use the orientation of the app behind it.
1232 return mOrientation;
1233 }
1234
Bryce Lee61fbcbc2017-03-10 14:14:03 -08001235 // The {@link AppWindowToken} should only specify an orientation when it is not closing or
1236 // going to the bottom. Allowing closing {@link AppWindowToken} to participate can lead to
1237 // an Activity in another task being started in the wrong orientation during the transition.
Wale Ogunwale5e5a68d2017-03-24 17:36:38 -07001238 if (!(sendingToBottom || mService.mClosingApps.contains(this))
Bryce Lee61fbcbc2017-03-10 14:14:03 -08001239 && (isVisible() || mService.mOpeningApps.contains(this))) {
Bryce Leea163b762017-01-24 11:05:01 -08001240 return mOrientation;
Wale Ogunwale51362492016-09-08 17:49:17 -07001241 }
Bryce Leea163b762017-01-24 11:05:01 -08001242
1243 return SCREEN_ORIENTATION_UNSET;
Wale Ogunwale51362492016-09-08 17:49:17 -07001244 }
1245
Wale Ogunwaleb198b742016-12-01 08:44:09 -08001246 /** Returns the app's preferred orientation regardless of its currently visibility state. */
1247 int getOrientationIgnoreVisibility() {
1248 return mOrientation;
1249 }
1250
Craig Mautnerdbb79912012-03-01 18:59:14 -08001251 @Override
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -07001252 void checkAppWindowsReadyToShow() {
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001253 if (allDrawn == mAppAnimator.allDrawn) {
1254 return;
1255 }
1256
1257 mAppAnimator.allDrawn = allDrawn;
1258 if (!allDrawn) {
1259 return;
1260 }
1261
1262 // The token has now changed state to having all windows shown... what to do, what to do?
1263 if (mAppAnimator.freezingScreen) {
1264 mAppAnimator.showAllWindowsLocked();
1265 stopFreezingScreen(false, true);
1266 if (DEBUG_ORIENTATION) Slog.i(TAG,
1267 "Setting mOrientationChangeComplete=true because wtoken " + this
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001268 + " numInteresting=" + mNumInterestingWindows + " numDrawn=" + mNumDrawnWindows);
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001269 // This will set mOrientationChangeComplete and cause a pass through layout.
1270 setAppLayoutChanges(FINISH_LAYOUT_REDO_WALLPAPER,
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -07001271 "checkAppWindowsReadyToShow: freezingScreen");
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001272 } else {
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -07001273 setAppLayoutChanges(FINISH_LAYOUT_REDO_ANIM, "checkAppWindowsReadyToShow");
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001274
1275 // We can now show all of the drawn windows!
1276 if (!mService.mOpeningApps.contains(this)) {
1277 mService.mAnimator.orAnimating(mAppAnimator.showAllWindowsLocked());
1278 }
1279 }
1280 }
1281
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001282 void updateAllDrawn(DisplayContent dc) {
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001283 if (!allDrawn) {
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001284 final int numInteresting = mNumInterestingWindows;
1285 if (numInteresting > 0 && mNumDrawnWindows >= numInteresting) {
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001286 if (DEBUG_VISIBILITY) Slog.v(TAG, "allDrawn: " + this
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001287 + " interesting=" + numInteresting + " drawn=" + mNumDrawnWindows);
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001288 allDrawn = true;
1289 // Force an additional layout pass where
1290 // WindowStateAnimator#commitFinishDrawingLocked() will call performShowLocked().
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001291 dc.setLayoutNeeded();
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001292 mService.mH.obtainMessage(NOTIFY_ACTIVITY_DRAWN, token).sendToTarget();
Robert Carrecc06b32017-04-18 14:25:10 -07001293
1294 final TaskStack s = getStack();
1295 if (s != null) {
1296 s.onAllWindowsDrawn();
1297 }
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001298 }
1299 }
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001300
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001301 if (!allDrawnExcludingSaved) {
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001302 int numInteresting = mNumInterestingWindowsExcludingSaved;
1303 if (numInteresting > 0 && mNumDrawnWindowsExcludingSaved >= numInteresting) {
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001304 if (DEBUG_VISIBILITY) Slog.v(TAG, "allDrawnExcludingSaved: " + this
1305 + " interesting=" + numInteresting
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001306 + " drawn=" + mNumDrawnWindowsExcludingSaved);
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001307 allDrawnExcludingSaved = true;
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001308 dc.setLayoutNeeded();
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001309 if (isAnimatingInvisibleWithSavedSurface()
1310 && !mService.mFinishedEarlyAnim.contains(this)) {
1311 mService.mFinishedEarlyAnim.add(this);
1312 }
1313 }
1314 }
1315 }
1316
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001317 /**
1318 * Updated this app token tracking states for interesting and drawn windows based on the window.
1319 *
1320 * @return Returns true if the input window is considered interesting and drawn while all the
1321 * windows in this app token where not considered drawn as of the last pass.
1322 */
1323 boolean updateDrawnWindowStates(WindowState w) {
1324 if (DEBUG_STARTING_WINDOW && w == startingWindow) {
1325 Slog.d(TAG, "updateWindows: starting " + w + " isOnScreen=" + w.isOnScreen()
1326 + " allDrawn=" + allDrawn + " freezingScreen=" + mAppAnimator.freezingScreen);
1327 }
1328
1329 if (allDrawn && allDrawnExcludingSaved && !mAppAnimator.freezingScreen) {
1330 return false;
1331 }
1332
1333 if (mLastTransactionSequence != mService.mTransactionSequence) {
1334 mLastTransactionSequence = mService.mTransactionSequence;
1335 mNumInterestingWindows = mNumDrawnWindows = 0;
1336 mNumInterestingWindowsExcludingSaved = 0;
1337 mNumDrawnWindowsExcludingSaved = 0;
1338 startingDisplayed = false;
1339 }
1340
1341 final WindowStateAnimator winAnimator = w.mWinAnimator;
1342
1343 boolean isInterestingAndDrawn = false;
1344
1345 if (!allDrawn && w.mightAffectAllDrawn(false /* visibleOnly */)) {
1346 if (DEBUG_VISIBILITY || DEBUG_ORIENTATION) {
1347 Slog.v(TAG, "Eval win " + w + ": isDrawn=" + w.isDrawnLw()
1348 + ", isAnimationSet=" + winAnimator.isAnimationSet());
1349 if (!w.isDrawnLw()) {
1350 Slog.v(TAG, "Not displayed: s=" + winAnimator.mSurfaceController
1351 + " pv=" + w.mPolicyVisibility
1352 + " mDrawState=" + winAnimator.drawStateToString()
1353 + " ph=" + w.isParentWindowHidden() + " th=" + hiddenRequested
1354 + " a=" + winAnimator.mAnimating);
1355 }
1356 }
1357
1358 if (w != startingWindow) {
1359 if (w.isInteresting()) {
1360 mNumInterestingWindows++;
1361 if (w.isDrawnLw()) {
1362 mNumDrawnWindows++;
1363
1364 if (DEBUG_VISIBILITY || DEBUG_ORIENTATION) Slog.v(TAG, "tokenMayBeDrawn: "
1365 + this + " w=" + w + " numInteresting=" + mNumInterestingWindows
1366 + " freezingScreen=" + mAppAnimator.freezingScreen
1367 + " mAppFreezing=" + w.mAppFreezing);
1368
1369 isInterestingAndDrawn = true;
1370 }
1371 }
1372 } else if (w.isDrawnLw()) {
Jorim Jaggi3878ca32017-02-02 17:13:05 -08001373 if (getController() != null) {
1374 getController().reportStartingWindowDrawn();
1375 }
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001376 startingDisplayed = true;
1377 }
1378 }
1379
1380 if (!allDrawnExcludingSaved && w.mightAffectAllDrawn(true /* visibleOnly */)) {
1381 if (w != startingWindow && w.isInteresting()) {
1382 mNumInterestingWindowsExcludingSaved++;
1383 if (w.isDrawnLw() && !w.isAnimatingWithSavedSurface()) {
1384 mNumDrawnWindowsExcludingSaved++;
1385
1386 if (DEBUG_VISIBILITY || DEBUG_ORIENTATION) Slog.v(TAG,
1387 "tokenMayBeDrawnExcludingSaved: " + this + " w=" + w
1388 + " numInteresting=" + mNumInterestingWindowsExcludingSaved
1389 + " freezingScreen=" + mAppAnimator.freezingScreen
1390 + " mAppFreezing=" + w.mAppFreezing);
1391
1392 isInterestingAndDrawn = true;
1393 }
1394 }
1395 }
1396
1397 return isInterestingAndDrawn;
1398 }
1399
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001400 @Override
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -07001401 void stepAppWindowsAnimation(long currentTime) {
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001402 mAppAnimator.wasAnimating = mAppAnimator.animating;
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -07001403 if (mAppAnimator.stepAnimationLocked(currentTime)) {
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001404 mAppAnimator.animating = true;
1405 mService.mAnimator.setAnimating(true);
1406 mService.mAnimator.mAppWindowAnimating = true;
1407 } else if (mAppAnimator.wasAnimating) {
1408 // stopped animating, do one more pass through the layout
Wale Ogunwale1e129a42016-11-21 13:03:47 -08001409 setAppLayoutChanges(FINISH_LAYOUT_REDO_WALLPAPER,
1410 DEBUG_LAYOUT_REPEATS ? "appToken " + this + " done" : null);
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001411 if (DEBUG_ANIM) Slog.v(TAG, "updateWindowsApps...: done animating " + this);
1412 }
1413 }
1414
Wale Ogunwale9adfe572016-09-08 20:43:58 -07001415 @Override
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08001416 boolean forAllWindows(ToBooleanFunction<WindowState> callback, boolean traverseTopToBottom) {
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07001417 // For legacy reasons we process the TaskStack.mExitingAppTokens first in DisplayContent
1418 // before the non-exiting app tokens. So, we skip the exiting app tokens here.
1419 // TODO: Investigate if we need to continue to do this or if we can just process them
1420 // in-order.
1421 if (mIsExiting && !waitingForReplacement()) {
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08001422 return false;
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07001423 }
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08001424 return forAllWindowsUnchecked(callback, traverseTopToBottom);
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07001425 }
1426
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08001427 boolean forAllWindowsUnchecked(ToBooleanFunction<WindowState> callback,
1428 boolean traverseTopToBottom) {
1429 return super.forAllWindows(callback, traverseTopToBottom);
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07001430 }
1431
1432 @Override
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001433 AppWindowToken asAppWindowToken() {
1434 // I am an app window token!
1435 return this;
1436 }
1437
1438 @Override
Wale Ogunwale51362492016-09-08 17:49:17 -07001439 boolean fillsParent() {
1440 return mFillsParent;
1441 }
1442
1443 void setFillsParent(boolean fillsParent) {
1444 mFillsParent = fillsParent;
1445 }
1446
Jorim Jaggife762342016-10-13 14:33:27 +02001447 boolean containsDismissKeyguardWindow() {
1448 for (int i = mChildren.size() - 1; i >= 0; i--) {
1449 if ((mChildren.get(i).mAttrs.flags & FLAG_DISMISS_KEYGUARD) != 0) {
1450 return true;
1451 }
1452 }
1453 return false;
1454 }
1455
1456 boolean containsShowWhenLockedWindow() {
1457 for (int i = mChildren.size() - 1; i >= 0; i--) {
1458 if ((mChildren.get(i).mAttrs.flags & FLAG_SHOW_WHEN_LOCKED) != 0) {
1459 return true;
1460 }
1461 }
1462 return false;
1463 }
1464
1465 void checkKeyguardFlagsChanged() {
1466 final boolean containsDismissKeyguard = containsDismissKeyguardWindow();
1467 final boolean containsShowWhenLocked = containsShowWhenLockedWindow();
1468 if (containsDismissKeyguard != mLastContainsDismissKeyguardWindow
1469 || containsShowWhenLocked != mLastContainsShowWhenLockedWindow) {
1470 mService.notifyKeyguardFlagsChanged(null /* callback */);
1471 }
1472 mLastContainsDismissKeyguardWindow = containsDismissKeyguard;
1473 mLastContainsShowWhenLockedWindow = containsShowWhenLocked;
1474 }
1475
Wale Ogunwale6213caa2016-12-02 16:47:15 +00001476 WindowState getImeTargetBelowWindow(WindowState w) {
1477 final int index = mChildren.indexOf(w);
1478 if (index > 0) {
1479 final WindowState target = mChildren.get(index - 1);
1480 if (target.canBeImeTarget()) {
1481 return target;
1482 }
1483 }
1484 return null;
1485 }
1486
1487 WindowState getHighestAnimLayerWindow(WindowState currentTarget) {
1488 WindowState candidate = null;
1489 for (int i = mChildren.indexOf(currentTarget); i >= 0; i--) {
1490 final WindowState w = mChildren.get(i);
1491 if (w.mRemoved) {
1492 continue;
1493 }
1494 if (candidate == null || w.mWinAnimator.mAnimLayer >
1495 candidate.mWinAnimator.mAnimLayer) {
1496 candidate = w;
1497 }
1498 }
1499 return candidate;
1500 }
1501
Jorim Jaggi0fe7ce962017-02-22 16:45:48 +01001502 void setDisablePreviewSnapshots(boolean disable) {
1503 mDisbalePreviewScreenshots = disable;
1504 }
1505
1506 boolean shouldDisablePreviewScreenshots() {
1507 return mDisbalePreviewScreenshots;
1508 }
1509
Wale Ogunwale51362492016-09-08 17:49:17 -07001510 @Override
Robert Carrdee1b3f2017-02-27 11:33:33 -08001511 int getAnimLayerAdjustment() {
1512 return mAppAnimator.animLayerAdjustment;
1513 }
1514
1515 @Override
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001516 void dump(PrintWriter pw, String prefix) {
1517 super.dump(pw, prefix);
1518 if (appToken != null) {
Wale Ogunwale72919d22016-12-08 18:58:50 -08001519 pw.println(prefix + "app=true mVoiceInteraction=" + mVoiceInteraction);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001520 }
Bryce Lee7fbeb8a2017-03-02 08:42:30 -08001521 pw.print(prefix); pw.print("task="); pw.println(getTask());
Wale Ogunwale51362492016-09-08 17:49:17 -07001522 pw.print(prefix); pw.print(" mFillsParent="); pw.print(mFillsParent);
1523 pw.print(" mOrientation="); pw.println(mOrientation);
Wale Ogunwale89973222017-04-23 18:39:45 -07001524 pw.println(prefix + "hiddenRequested=" + hiddenRequested + " mClientHidden=" + mClientHidden
1525 + ((mDeferHidingClient) ? " mDeferHidingClient=" + mDeferHidingClient : "")
1526 + " reportedDrawn=" + reportedDrawn + " reportedVisible=" + reportedVisible);
Craig Mautner59431632012-04-04 11:56:44 -07001527 if (paused) {
1528 pw.print(prefix); pw.print("paused="); pw.println(paused);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001529 }
Wale Ogunwale9017ec02016-02-25 08:55:25 -08001530 if (mAppStopped) {
1531 pw.print(prefix); pw.print("mAppStopped="); pw.println(mAppStopped);
1532 }
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001533 if (mNumInterestingWindows != 0 || mNumDrawnWindows != 0
Craig Mautner6fbda632012-07-03 09:26:39 -07001534 || allDrawn || mAppAnimator.allDrawn) {
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001535 pw.print(prefix); pw.print("mNumInterestingWindows=");
1536 pw.print(mNumInterestingWindows);
1537 pw.print(" mNumDrawnWindows="); pw.print(mNumDrawnWindows);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001538 pw.print(" inPendingTransaction="); pw.print(inPendingTransaction);
Craig Mautner6fbda632012-07-03 09:26:39 -07001539 pw.print(" allDrawn="); pw.print(allDrawn);
1540 pw.print(" (animator="); pw.print(mAppAnimator.allDrawn);
1541 pw.println(")");
1542 }
1543 if (inPendingTransaction) {
1544 pw.print(prefix); pw.print("inPendingTransaction=");
1545 pw.println(inPendingTransaction);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001546 }
Craig Mautner799bc1d2015-01-14 10:33:48 -08001547 if (startingData != null || removed || firstWindowDrawn || mIsExiting) {
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001548 pw.print(prefix); pw.print("startingData="); pw.print(startingData);
1549 pw.print(" removed="); pw.print(removed);
Craig Mautner3d7ca312015-01-08 10:56:00 -08001550 pw.print(" firstWindowDrawn="); pw.print(firstWindowDrawn);
Craig Mautner799bc1d2015-01-14 10:33:48 -08001551 pw.print(" mIsExiting="); pw.println(mIsExiting);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001552 }
Jorim Jaggiba41f4b2016-12-14 17:43:07 -08001553 if (startingWindow != null || startingSurface != null
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001554 || startingDisplayed || startingMoved) {
1555 pw.print(prefix); pw.print("startingWindow="); pw.print(startingWindow);
Jorim Jaggiba41f4b2016-12-14 17:43:07 -08001556 pw.print(" startingSurface="); pw.print(startingSurface);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001557 pw.print(" startingDisplayed="); pw.print(startingDisplayed);
Wale Ogunwale9017ec02016-02-25 08:55:25 -08001558 pw.print(" startingMoved="); pw.println(startingMoved);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001559 }
Jorim Jaggi0429f352015-12-22 16:29:16 +01001560 if (!mFrozenBounds.isEmpty()) {
Chong Zhangd78ddb42016-03-02 17:01:14 -08001561 pw.print(prefix); pw.print("mFrozenBounds="); pw.println(mFrozenBounds);
Jorim Jaggi26c8c422016-05-09 19:57:25 -07001562 pw.print(prefix); pw.print("mFrozenMergedConfig="); pw.println(mFrozenMergedConfig);
Chong Zhangd78ddb42016-03-02 17:01:14 -08001563 }
1564 if (mPendingRelaunchCount != 0) {
1565 pw.print(prefix); pw.print("mPendingRelaunchCount="); pw.println(mPendingRelaunchCount);
Jorim Jaggi0429f352015-12-22 16:29:16 +01001566 }
Wale Ogunwale9c64cb62017-04-12 13:39:59 -07001567 if (getController() != null) {
1568 pw.print(prefix); pw.print("controller="); pw.println(getController());
1569 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001570 }
1571
1572 @Override
1573 public String toString() {
1574 if (stringName == null) {
1575 StringBuilder sb = new StringBuilder();
1576 sb.append("AppWindowToken{");
1577 sb.append(Integer.toHexString(System.identityHashCode(this)));
1578 sb.append(" token="); sb.append(token); sb.append('}');
1579 stringName = sb.toString();
1580 }
Wale Ogunwaleba51ca22016-09-23 06:06:54 -07001581 return stringName + ((mIsExiting) ? " mIsExiting=" : "");
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001582 }
Jeff Browne9bdb312012-04-05 15:30:10 -07001583}