blob: 17db253adb16bf38ad89cd7a66f19471b8b31ad4 [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;
Jorim Jaggid635a4a2017-05-03 15:21:26 +020026import static android.view.WindowManager.LayoutParams.FLAG_SECURE;
Jorim Jaggife762342016-10-13 14:33:27 +020027import static android.view.WindowManager.LayoutParams.FLAG_SHOW_WHEN_LOCKED;
Wale Ogunwaled1c37912016-08-16 03:19:39 -070028import static android.view.WindowManager.LayoutParams.TYPE_APPLICATION;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080029import static android.view.WindowManager.LayoutParams.TYPE_APPLICATION_STARTING;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -070030import static android.view.WindowManager.LayoutParams.TYPE_BASE_APPLICATION;
Wale Ogunwale3f4433d2016-08-18 20:42:42 -070031import static android.view.WindowManagerPolicy.FINISH_LAYOUT_REDO_ANIM;
32import static android.view.WindowManagerPolicy.FINISH_LAYOUT_REDO_WALLPAPER;
Wale Ogunwaleac2561e2016-11-01 15:43:46 -070033import static com.android.server.wm.AppTransition.TRANSIT_UNSET;
Jorim Jaggiba41f4b2016-12-14 17:43:07 -080034import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_ADD_REMOVE;
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -080035import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_ANIM;
36import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_APP_TRANSITIONS;
Wale Ogunwaleac2561e2016-11-01 15:43:46 -070037import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_FOCUS_LIGHT;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -070038import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_LAYOUT_REPEATS;
39import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_ORIENTATION;
Wale Ogunwale9017ec02016-02-25 08:55:25 -080040import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_STARTING_WINDOW;
Jorim Jaggie4b0f282017-05-17 15:10:29 +020041import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_STARTING_WINDOW_VERBOSE;
Wale Ogunwaleac2561e2016-11-01 15:43:46 -070042import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_TOKEN_MOVEMENT;
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -080043import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_VISIBILITY;
44import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_WINDOW_MOVEMENT;
45import static com.android.server.wm.WindowManagerDebugConfig.TAG_WITH_CLASS_NAME;
46import static com.android.server.wm.WindowManagerDebugConfig.TAG_WM;
Chong Zhang92147042016-05-09 12:47:11 -070047import static com.android.server.wm.WindowManagerService.H.NOTIFY_ACTIVITY_DRAWN;
Wale Ogunwaleac2561e2016-11-01 15:43:46 -070048import static com.android.server.wm.WindowManagerService.UPDATE_FOCUS_NORMAL;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -070049import static com.android.server.wm.WindowManagerService.UPDATE_FOCUS_WILL_PLACE_SURFACES;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -070050import static com.android.server.wm.WindowManagerService.logWithStack;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080051
Filip Gruszczynskia590c992015-11-25 16:45:26 -080052import android.annotation.NonNull;
Jorim Jaggid635a4a2017-05-03 15:21:26 +020053import android.app.Activity;
Jorim Jaggi26c8c422016-05-09 19:57:25 -070054import android.content.res.Configuration;
Jorim Jaggi0429f352015-12-22 16:29:16 +010055import android.graphics.Rect;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -070056import android.os.Binder;
Jorim Jaggiba41f4b2016-12-14 17:43:07 -080057import android.os.Debug;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -070058import android.os.IBinder;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -070059import android.os.SystemClock;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080060import android.util.Slog;
61import android.view.IApplicationToken;
Robert Carr6914f082017-03-20 19:04:30 -070062import android.view.SurfaceControl;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080063import android.view.WindowManager;
Jorim Jaggiba41f4b2016-12-14 17:43:07 -080064import android.view.WindowManagerPolicy.StartingSurface;
65
66import com.android.internal.util.ToBooleanFunction;
67import com.android.server.input.InputApplicationHandle;
68import com.android.server.wm.WindowManagerService.H;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080069
70import java.io.PrintWriter;
Jorim Jaggi0429f352015-12-22 16:29:16 +010071import java.util.ArrayDeque;
Craig Mautnerb1fd65c02013-02-05 13:34:57 -080072import java.util.ArrayList;
73
Bryce Lee39791592017-04-26 09:29:12 -070074import static android.os.Build.VERSION_CODES.O;
75
Craig Mautnerb1fd65c02013-02-05 13:34:57 -080076class AppTokenList extends ArrayList<AppWindowToken> {
77}
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080078
79/**
80 * Version of WindowToken that is specifically for a particular application (or
81 * really activity) that is displaying windows.
82 */
Wale Ogunwale3f4433d2016-08-18 20:42:42 -070083class AppWindowToken extends WindowToken implements WindowManagerService.AppFreezeListener {
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -080084 private static final String TAG = TAG_WITH_CLASS_NAME ? "AppWindowToken" : TAG_WM;
85
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080086 // Non-null only for application tokens.
87 final IApplicationToken appToken;
88
Filip Gruszczynskia590c992015-11-25 16:45:26 -080089 @NonNull final AppWindowAnimator mAppAnimator;
Craig Mautnerd09cc4b2012-04-04 10:23:31 -070090
Wale Ogunwale72919d22016-12-08 18:58:50 -080091 final boolean mVoiceInteraction;
Dianne Hackborne30e02f2014-05-27 18:24:45 -070092
Wale Ogunwale51362492016-09-08 17:49:17 -070093 /** @see WindowContainer#fillsParent() */
94 private boolean mFillsParent;
Craig Mautner4c5eb222013-11-18 12:59:05 -080095 boolean layoutConfigChanges;
Wale Ogunwale72919d22016-12-08 18:58:50 -080096 boolean mShowForAllUsers;
97 int mTargetSdk;
Craig Mautnera2c77052012-03-26 12:14:43 -070098
Bryce Lee6d410262017-02-28 15:30:17 -080099 // Flag set while reparenting to prevent actions normally triggered by an individual parent
100 // change.
101 private boolean mReparenting;
102
Wale Ogunwalee287e192017-04-21 09:30:12 -0700103 // True if we are current in the process of removing this app token from the display
104 private boolean mRemovingFromDisplay = false;
105
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800106 // The input dispatching timeout for this application token in nanoseconds.
Wale Ogunwale72919d22016-12-08 18:58:50 -0800107 long mInputDispatchingTimeoutNanos;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800108
109 // These are used for determining when all windows associated with
110 // an activity have been drawn, so they can be made visible together
111 // at the same time.
Craig Mautner764983d2012-03-22 11:37:36 -0700112 // initialize so that it doesn't match mTransactionSequence which is an int.
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -0700113 private long mLastTransactionSequence = Long.MIN_VALUE;
114 private int mNumInterestingWindows;
115 private int mNumDrawnWindows;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800116 boolean inPendingTransaction;
117 boolean allDrawn;
Craig Mautner7636dfb2012-11-16 15:24:11 -0800118 // Set to true when this app creates a surface while in the middle of an animation. In that
119 // case do not clear allDrawn until the animation completes.
120 boolean deferClearAllDrawn;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800121
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -0700122 /**
123 * These are to track the app's real drawing status if there were no saved surfaces.
124 * @see #updateDrawnWindowStates
125 */
Chong Zhang8e4bda92016-05-04 15:08:18 -0700126 boolean allDrawnExcludingSaved;
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -0700127 private int mNumInterestingWindowsExcludingSaved;
128 private int mNumDrawnWindowsExcludingSaved;
Chong Zhang8e4bda92016-05-04 15:08:18 -0700129
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800130 // Is this window's surface needed? This is almost like hidden, except
131 // it will sometimes be true a little earlier: when the token has
132 // been shown, but is still waiting for its app transition to execute
133 // before making its windows shown.
134 boolean hiddenRequested;
135
136 // Have we told the window clients to hide themselves?
Wale Ogunwale89973222017-04-23 18:39:45 -0700137 private boolean mClientHidden;
138
139 // If true we will defer setting mClientHidden to true and reporting to the client that it is
140 // hidden.
141 boolean mDeferHidingClient;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800142
143 // Last visibility state we reported to the app token.
144 boolean reportedVisible;
145
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700146 // Last drawn state we reported to the app token.
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -0700147 private boolean reportedDrawn;
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700148
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800149 // Set to true when the token has been removed from the window mgr.
150 boolean removed;
151
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800152 // Information about an application starting window if displayed.
153 StartingData startingData;
154 WindowState startingWindow;
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800155 StartingSurface startingSurface;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800156 boolean startingDisplayed;
157 boolean startingMoved;
Wale Ogunwale6c459212017-05-17 08:56:03 -0700158 // True if the hidden state of this token was forced to false due to a transferred starting
159 // window.
160 private boolean mHiddenSetFromTransferredStartingWindow;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800161 boolean firstWindowDrawn;
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700162 private final WindowState.UpdateReportedVisibilityResults mReportedVisibilityResults =
163 new WindowState.UpdateReportedVisibilityResults();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800164
165 // Input application handle used by the input dispatcher.
Jeff Brown9302c872011-07-13 22:51:29 -0700166 final InputApplicationHandle mInputApplicationHandle;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800167
Wale Ogunwale571771c2016-08-26 13:18:50 -0700168 // TODO: Have a WindowContainer state for tracking exiting/deferred removal.
Craig Mautner799bc1d2015-01-14 10:33:48 -0800169 boolean mIsExiting;
Craig Mautner9ef471f2014-02-07 13:11:47 -0800170
Craig Mautnerbb742462014-07-07 15:28:55 -0700171 boolean mLaunchTaskBehind;
Craig Mautner8746a472014-07-24 15:12:54 -0700172 boolean mEnteringAnimation;
Craig Mautnerbb742462014-07-07 15:28:55 -0700173
Wale Ogunwale72919d22016-12-08 18:58:50 -0800174 private boolean mAlwaysFocusable;
Wale Ogunwale6cae7652015-12-26 07:36:26 -0800175
Robert Carre12aece2016-02-02 22:43:27 -0800176 boolean mAppStopped;
Robert Carrfd10cd12016-06-29 16:41:50 -0700177 int mRotationAnimationHint;
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -0700178 private int mPendingRelaunchCount;
Robert Carre12aece2016-02-02 22:43:27 -0800179
Jorim Jaggife762342016-10-13 14:33:27 +0200180 private boolean mLastContainsShowWhenLockedWindow;
181 private boolean mLastContainsDismissKeyguardWindow;
182
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -0700183 // The bounds of this activity. Mainly used for aspect-ratio compatibility.
184 // TODO(b/36505427): Every level on WindowContainer now has bounds information, which directly
185 // affects the configuration. We should probably move this into that class.
186 private final Rect mBounds = new Rect();
187
Jorim Jaggi0429f352015-12-22 16:29:16 +0100188 ArrayDeque<Rect> mFrozenBounds = new ArrayDeque<>();
Jorim Jaggi26c8c422016-05-09 19:57:25 -0700189 ArrayDeque<Configuration> mFrozenMergedConfig = new ArrayDeque<>();
Jorim Jaggi0429f352015-12-22 16:29:16 +0100190
Wale Ogunwale6c459212017-05-17 08:56:03 -0700191 private boolean mDisablePreviewScreenshots;
Jorim Jaggi0fe7ce962017-02-22 16:45:48 +0100192
Robert Carred3e83b2017-04-21 13:26:55 -0700193 Task mLastParent;
194
Wale Ogunwale72919d22016-12-08 18:58:50 -0800195 AppWindowToken(WindowManagerService service, IApplicationToken token, boolean voiceInteraction,
196 DisplayContent dc, long inputDispatchingTimeoutNanos, boolean fullscreen,
197 boolean showForAllUsers, int targetSdk, int orientation, int rotationAnimationHint,
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800198 int configChanges, boolean launchTaskBehind, boolean alwaysFocusable,
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -0700199 AppWindowContainerController controller, Configuration overrideConfig, Rect bounds) {
200 this(service, token, voiceInteraction, dc, fullscreen, overrideConfig, bounds);
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800201 setController(controller);
Wale Ogunwale72919d22016-12-08 18:58:50 -0800202 mInputDispatchingTimeoutNanos = inputDispatchingTimeoutNanos;
Wale Ogunwale72919d22016-12-08 18:58:50 -0800203 mShowForAllUsers = showForAllUsers;
204 mTargetSdk = targetSdk;
205 mOrientation = orientation;
206 layoutConfigChanges = (configChanges & (CONFIG_SCREEN_SIZE | CONFIG_ORIENTATION)) != 0;
207 mLaunchTaskBehind = launchTaskBehind;
208 mAlwaysFocusable = alwaysFocusable;
209 mRotationAnimationHint = rotationAnimationHint;
210
211 // Application tokens start out hidden.
212 hidden = true;
213 hiddenRequested = true;
214 }
215
216 AppWindowToken(WindowManagerService service, IApplicationToken token, boolean voiceInteraction,
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -0700217 DisplayContent dc, boolean fillsParent, Configuration overrideConfig, Rect bounds) {
Wale Ogunwale5cd907d2017-01-26 14:14:08 -0800218 super(service, token != null ? token.asBinder() : null, TYPE_APPLICATION, true, dc,
219 false /* ownerCanManageAppTokens */);
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700220 appToken = token;
Wale Ogunwale72919d22016-12-08 18:58:50 -0800221 mVoiceInteraction = voiceInteraction;
Wale Ogunwale17f175c2017-02-07 16:54:10 -0800222 mFillsParent = fillsParent;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800223 mInputApplicationHandle = new InputApplicationHandle(this);
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700224 mAppAnimator = new AppWindowAnimator(this, service);
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -0700225 if (overrideConfig != null) {
226 onOverrideConfigurationChanged(overrideConfig);
227 }
228 if (bounds != null) {
229 mBounds.set(bounds);
230 }
231 }
232
233 void onOverrideConfigurationChanged(Configuration overrideConfiguration, Rect bounds) {
234 onOverrideConfigurationChanged(overrideConfiguration);
235 if (mBounds.equals(bounds)) {
236 return;
237 }
238 // TODO(b/36505427): If bounds is in WC, then we can automatically call onResize() when set.
239 mBounds.set(bounds);
240 onResize();
241 }
242
243 void getBounds(Rect outBounds) {
244 outBounds.set(mBounds);
245 }
246
247 boolean hasBounds() {
248 return !mBounds.isEmpty();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800249 }
250
Wale Ogunwale9017ec02016-02-25 08:55:25 -0800251 void onFirstWindowDrawn(WindowState win, WindowStateAnimator winAnimator) {
252 firstWindowDrawn = true;
253
254 // We now have a good window to show, remove dead placeholders
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700255 removeDeadWindows();
Wale Ogunwale9017ec02016-02-25 08:55:25 -0800256
Jorim Jaggi02886a82016-12-06 09:10:06 -0800257 if (startingWindow != null) {
Wale Ogunwale9017ec02016-02-25 08:55:25 -0800258 if (DEBUG_STARTING_WINDOW || DEBUG_ANIM) Slog.v(TAG, "Finish starting "
259 + win.mToken + ": first real window is shown, no animation");
260 // If this initial window is animating, stop it -- we will do an animation to reveal
261 // it from behind the starting window, so there is no need for it to also be doing its
262 // own stuff.
263 winAnimator.clearAnimation();
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800264 if (getController() != null) {
265 getController().removeStartingWindow();
266 }
Wale Ogunwale9017ec02016-02-25 08:55:25 -0800267 }
268 updateReportedVisibilityLocked();
269 }
270
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800271 void updateReportedVisibilityLocked() {
272 if (appToken == null) {
273 return;
274 }
275
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700276 if (DEBUG_VISIBILITY) Slog.v(TAG, "Update reported visibility: " + this);
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700277 final int count = mChildren.size();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800278
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700279 mReportedVisibilityResults.reset();
280
281 for (int i = 0; i < count; i++) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700282 final WindowState win = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700283 win.updateReportedVisibility(mReportedVisibilityResults);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800284 }
285
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700286 int numInteresting = mReportedVisibilityResults.numInteresting;
287 int numVisible = mReportedVisibilityResults.numVisible;
288 int numDrawn = mReportedVisibilityResults.numDrawn;
289 boolean nowGone = mReportedVisibilityResults.nowGone;
290
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700291 boolean nowDrawn = numInteresting > 0 && numDrawn >= numInteresting;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800292 boolean nowVisible = numInteresting > 0 && numVisible >= numInteresting;
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700293 if (!nowGone) {
294 // If the app is not yet gone, then it can only become visible/drawn.
295 if (!nowDrawn) {
296 nowDrawn = reportedDrawn;
297 }
298 if (!nowVisible) {
299 nowVisible = reportedVisible;
300 }
301 }
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800302 if (DEBUG_VISIBILITY) Slog.v(TAG, "VIS " + this + ": interesting="
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800303 + numInteresting + " visible=" + numVisible);
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800304 final AppWindowContainerController controller = getController();
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700305 if (nowDrawn != reportedDrawn) {
306 if (nowDrawn) {
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800307 if (controller != null) {
308 controller.reportWindowsDrawn();
309 }
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700310 }
311 reportedDrawn = nowDrawn;
312 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800313 if (nowVisible != reportedVisible) {
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700314 if (DEBUG_VISIBILITY) Slog.v(TAG,
315 "Visibility changed in " + this + ": vis=" + nowVisible);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800316 reportedVisible = nowVisible;
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800317 if (controller != null) {
318 if (nowVisible) {
319 controller.reportWindowsVisible();
320 } else {
321 controller.reportWindowsGone();
322 }
323 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800324 }
325 }
326
Wale Ogunwale89973222017-04-23 18:39:45 -0700327 boolean isClientHidden() {
328 return mClientHidden;
329 }
330
331 void setClientHidden(boolean hideClient) {
332 if (mClientHidden == hideClient || (hideClient && mDeferHidingClient)) {
333 return;
334 }
335 mClientHidden = hideClient;
336 sendAppVisibilityToClients();
337 }
338
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700339 boolean setVisibility(WindowManager.LayoutParams lp,
340 boolean visible, int transit, boolean performLayout, boolean isVoiceInteraction) {
341
342 boolean delayed = false;
343 inPendingTransaction = false;
344
Wale Ogunwale89973222017-04-23 18:39:45 -0700345 setClientHidden(!visible);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700346
347 // Allow for state changes and animation to be applied if:
348 // * token is transitioning visibility state
349 // * or the token was marked as hidden and is exiting before we had a chance to play the
350 // transition animation
351 // * or this is an opening app and windows are being replaced.
352 boolean visibilityChanged = false;
353 if (hidden == visible || (hidden && mIsExiting) || (visible && waitingForReplacement())) {
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700354 final AccessibilityController accessibilityController = mService.mAccessibilityController;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700355 boolean changed = false;
356 if (DEBUG_APP_TRANSITIONS) Slog.v(TAG_WM,
357 "Changing app " + this + " hidden=" + hidden + " performLayout=" + performLayout);
358
359 boolean runningAppAnimation = false;
360
361 if (transit != AppTransition.TRANSIT_UNSET) {
362 if (mAppAnimator.animation == AppWindowAnimator.sDummyAnimation) {
363 mAppAnimator.setNullAnimation();
364 }
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700365 if (mService.applyAnimationLocked(this, lp, transit, visible, isVoiceInteraction)) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700366 delayed = runningAppAnimation = true;
367 }
368 final WindowState window = findMainWindow();
369 //TODO (multidisplay): Magnification is supported only for the default display.
370 if (window != null && accessibilityController != null
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -0700371 && getDisplayContent().getDisplayId() == DEFAULT_DISPLAY) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700372 accessibilityController.onAppWindowTransitionLocked(window, transit);
373 }
374 changed = true;
375 }
376
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700377 final int windowsCount = mChildren.size();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700378 for (int i = 0; i < windowsCount; i++) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700379 final WindowState win = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700380 changed |= win.onAppVisibilityChanged(visible, runningAppAnimation);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700381 }
382
383 hidden = hiddenRequested = !visible;
384 visibilityChanged = true;
385 if (!visible) {
386 stopFreezingScreen(true, true);
387 } else {
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700388 // If we are being set visible, and the starting window is not yet displayed,
389 // then make sure it doesn't get displayed.
390 if (startingWindow != null && !startingWindow.isDrawnLw()) {
391 startingWindow.mPolicyVisibility = false;
392 startingWindow.mPolicyVisibilityAfterAnim = false;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700393 }
394 }
395
396 if (DEBUG_APP_TRANSITIONS) Slog.v(TAG_WM, "setVisibility: " + this
397 + ": hidden=" + hidden + " hiddenRequested=" + hiddenRequested);
398
399 if (changed) {
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700400 mService.mInputMonitor.setUpdateInputWindowsNeededLw();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700401 if (performLayout) {
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700402 mService.updateFocusedWindowLocked(UPDATE_FOCUS_WILL_PLACE_SURFACES,
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700403 false /*updateInputWindows*/);
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700404 mService.mWindowPlacerLocked.performSurfacePlacement();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700405 }
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700406 mService.mInputMonitor.updateInputWindowsLw(false /*force*/);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700407 }
408 }
409
410 if (mAppAnimator.animation != null) {
411 delayed = true;
412 }
413
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700414 for (int i = mChildren.size() - 1; i >= 0 && !delayed; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700415 if ((mChildren.get(i)).isWindowAnimationSet()) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700416 delayed = true;
417 }
418 }
419
420 if (visibilityChanged) {
421 if (visible && !delayed) {
422 // The token was made immediately visible, there will be no entrance animation.
423 // We need to inform the client the enter animation was finished.
424 mEnteringAnimation = true;
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700425 mService.mActivityManagerAppTransitionNotifier.onAppTransitionFinishedLocked(token);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700426 }
Robert Carre7cc44d2017-03-20 19:04:30 -0700427 // If we are hidden but there is no delay needed we immediately
428 // apply the Surface transaction so that the ActivityManager
429 // can have some guarantee on the Surface state
430 // following setting the visibility.
Robert Carr6914f082017-03-20 19:04:30 -0700431 if (hidden && !delayed) {
432 SurfaceControl.openTransaction();
433 for (int i = mChildren.size() - 1; i >= 0; i--) {
434 mChildren.get(i).mWinAnimator.hide("immediately hidden");
435 }
436 SurfaceControl.closeTransaction();
437 }
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700438
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700439 if (!mService.mClosingApps.contains(this) && !mService.mOpeningApps.contains(this)) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700440 // The token is not closing nor opening, so even if there is an animation set, that
441 // doesn't mean that it goes through the normal app transition cycle so we have
442 // to inform the docked controller about visibility change.
Andrii Kulian1e32e022016-09-16 15:29:34 -0700443 // TODO(multi-display): notify docked divider on all displays where visibility was
444 // affected.
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700445 mService.getDefaultDisplayContentLocked().getDockedDividerController()
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700446 .notifyAppVisibilityChanged();
Jorim Jaggi8b702ed2017-01-20 16:59:03 +0100447 mService.mTaskSnapshotController.notifyAppVisibilityChanged(this, visible);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700448 }
449 }
450
451 return delayed;
452 }
453
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800454 WindowState findMainWindow() {
Filip Gruszczynski55a309f2015-09-04 17:15:01 -0700455 WindowState candidate = null;
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700456 int j = mChildren.size();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800457 while (j > 0) {
458 j--;
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700459 final WindowState win = mChildren.get(j);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700460 final int type = win.mAttrs.type;
461 // No need to loop through child window as base application and starting types can't be
462 // child windows.
463 if (type == TYPE_BASE_APPLICATION || type == TYPE_APPLICATION_STARTING) {
Filip Gruszczynski55a309f2015-09-04 17:15:01 -0700464 // In cases where there are multiple windows, we prefer the non-exiting window. This
Sungsoo Lim0d3d1f82015-12-02 14:47:59 +0900465 // happens for example when replacing windows during an activity relaunch. When
Filip Gruszczynski55a309f2015-09-04 17:15:01 -0700466 // constructing the animation, we want the new window, not the exiting one.
Wale Ogunwalec48a3542016-02-19 15:18:45 -0800467 if (win.mAnimatingExit) {
Filip Gruszczynski55a309f2015-09-04 17:15:01 -0700468 candidate = win;
469 } else {
470 return win;
471 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800472 }
473 }
Filip Gruszczynski55a309f2015-09-04 17:15:01 -0700474 return candidate;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800475 }
476
Wale Ogunwale6cae7652015-12-26 07:36:26 -0800477 boolean windowsAreFocusable() {
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800478 return StackId.canReceiveKeys(getTask().mStack.mStackId) || mAlwaysFocusable;
Wale Ogunwaled045c822015-12-02 09:14:28 -0800479 }
480
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800481 AppWindowContainerController getController() {
482 final WindowContainerController controller = super.getController();
483 return controller != null ? (AppWindowContainerController) controller : null;
484 }
485
Wale Ogunwale571771c2016-08-26 13:18:50 -0700486 @Override
Wale Ogunwale44f21802016-09-02 12:49:48 -0700487 boolean isVisible() {
Wale Ogunwalee471be62016-10-03 07:53:55 -0700488 // If the app token isn't hidden then it is considered visible and there is no need to check
489 // its children windows to see if they are visible.
490 return !hidden;
Wale Ogunwale44f21802016-09-02 12:49:48 -0700491 }
492
493 @Override
Wale Ogunwalee287e192017-04-21 09:30:12 -0700494 void removeImmediately() {
495 onRemovedFromDisplay();
496 super.removeImmediately();
497 }
498
499 @Override
Wale Ogunwale571771c2016-08-26 13:18:50 -0700500 void removeIfPossible() {
Craig Mautnere3119b72015-01-20 15:02:36 -0800501 mIsExiting = false;
Wale Ogunwale3d0bfd92016-12-05 11:38:02 -0800502 removeAllWindowsIfPossible();
Bryce Lee6d410262017-02-28 15:30:17 -0800503 removeImmediately();
Craig Mautnere3119b72015-01-20 15:02:36 -0800504 }
505
Wale Ogunwale3f4433d2016-08-18 20:42:42 -0700506 @Override
507 boolean checkCompleteDeferredRemoval() {
508 if (mIsExiting) {
509 removeIfPossible();
510 }
511 return super.checkCompleteDeferredRemoval();
512 }
513
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700514 void onRemovedFromDisplay() {
Wale Ogunwalee287e192017-04-21 09:30:12 -0700515 if (mRemovingFromDisplay) {
516 return;
517 }
518 mRemovingFromDisplay = true;
519
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700520 if (DEBUG_APP_TRANSITIONS) Slog.v(TAG_WM, "Removing app token: " + this);
521
Wale Ogunwale72919d22016-12-08 18:58:50 -0800522 boolean delayed = setVisibility(null, false, TRANSIT_UNSET, true, mVoiceInteraction);
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700523
524 mService.mOpeningApps.remove(this);
Jorim Jaggi1b4b23e2016-11-15 16:30:12 -0800525 mService.mUnknownAppVisibilityController.appRemoved(this);
Jorim Jaggi10abe2f2017-01-03 16:44:46 +0100526 mService.mTaskSnapshotController.onAppRemoved(this);
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700527 waitingToShow = false;
528 if (mService.mClosingApps.contains(this)) {
529 delayed = true;
530 } else if (mService.mAppTransition.isTransitionSet()) {
531 mService.mClosingApps.add(this);
532 delayed = true;
533 }
534
535 if (DEBUG_APP_TRANSITIONS) Slog.v(TAG_WM, "Removing app " + this + " delayed=" + delayed
536 + " animation=" + mAppAnimator.animation + " animating=" + mAppAnimator.animating);
537
538 if (DEBUG_ADD_REMOVE || DEBUG_TOKEN_MOVEMENT) Slog.v(TAG_WM, "removeAppToken: "
539 + this + " delayed=" + delayed + " Callers=" + Debug.getCallers(4));
540
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800541 if (startingData != null && getController() != null) {
542 getController().removeStartingWindow();
543 }
544
Winson Chung87e5d552017-04-05 11:49:38 -0700545 // If this window was animating, then we need to ensure that the app transition notifies
546 // that animations have completed in WMS.handleAnimatingStoppedAndTransitionLocked(), so
547 // add to that list now
548 if (mAppAnimator.animating) {
549 mService.mNoAnimationNotifyOnTransitionFinished.add(token);
550 }
551
Wale Ogunwalee287e192017-04-21 09:30:12 -0700552 final TaskStack stack = getStack();
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700553 if (delayed && !isEmpty()) {
554 // set the token aside because it has an active animation to be finished
555 if (DEBUG_ADD_REMOVE || DEBUG_TOKEN_MOVEMENT) Slog.v(TAG_WM,
556 "removeAppToken make exiting: " + this);
Wale Ogunwalee287e192017-04-21 09:30:12 -0700557 if (stack != null) {
558 stack.mExitingAppTokens.add(this);
559 }
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700560 mIsExiting = true;
561 } else {
562 // Make sure there is no animation running on this token, so any windows associated
563 // with it will be removed as soon as their animations are complete
564 mAppAnimator.clearAnimation();
565 mAppAnimator.animating = false;
Wale Ogunwale3106ae012017-05-16 08:56:37 -0700566 if (stack != null) {
567 stack.mExitingAppTokens.remove(this);
568 }
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700569 removeIfPossible();
570 }
571
572 removed = true;
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700573 stopFreezingScreen(true, true);
Bryce Lee6d410262017-02-28 15:30:17 -0800574
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700575 if (mService.mFocusedApp == this) {
576 if (DEBUG_FOCUS_LIGHT) Slog.v(TAG_WM, "Removing focused app token:" + this);
577 mService.mFocusedApp = null;
578 mService.updateFocusedWindowLocked(UPDATE_FOCUS_NORMAL, true /*updateInputWindows*/);
579 mService.mInputMonitor.setFocusedAppLw(null);
580 }
581
582 if (!delayed) {
583 updateReportedVisibilityLocked();
584 }
Wale Ogunwalee287e192017-04-21 09:30:12 -0700585
586 mRemovingFromDisplay = false;
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700587 }
588
Chong Zhange05bcb12016-07-26 17:47:29 -0700589 void clearAnimatingFlags() {
Chong Zhangb0d26702016-08-12 16:03:29 -0700590 boolean wallpaperMightChange = false;
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700591 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700592 final WindowState win = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700593 wallpaperMightChange |= win.clearAnimatingFlags();
Chong Zhange05bcb12016-07-26 17:47:29 -0700594 }
Chong Zhangb0d26702016-08-12 16:03:29 -0700595 if (wallpaperMightChange) {
596 requestUpdateWallpaperIfNeeded();
597 }
Chong Zhange05bcb12016-07-26 17:47:29 -0700598 }
599
Robert Carre12aece2016-02-02 22:43:27 -0800600 void destroySurfaces() {
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700601 destroySurfaces(false /*cleanupOnResume*/);
602 }
603
604 /**
605 * Destroy surfaces which have been marked as eligible by the animator, taking care to ensure
606 * the client has finished with them.
607 *
608 * @param cleanupOnResume whether this is done when app is resumed without fully stopped. If
609 * set to true, destroy only surfaces of removed windows, and clear relevant flags of the
610 * others so that they are ready to be reused. If set to false (common case), destroy all
611 * surfaces that's eligible, if the app is already stopped.
612 */
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700613 private void destroySurfaces(boolean cleanupOnResume) {
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -0700614 boolean destroyedSomething = false;
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700615 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700616 final WindowState win = mChildren.get(i);
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -0700617 destroyedSomething |= win.destroySurface(cleanupOnResume, mAppStopped);
Robert Carre12aece2016-02-02 22:43:27 -0800618 }
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -0700619 if (destroyedSomething) {
620 final DisplayContent dc = getDisplayContent();
Wale Ogunwalec69694a2016-10-18 13:51:15 -0700621 dc.assignWindowLayers(true /*setLayoutNeeded*/);
Robert Carre12aece2016-02-02 22:43:27 -0800622 }
623 }
624
Wale Ogunwale8d5a5422016-03-03 18:28:21 -0800625 /**
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700626 * Notify that the app is now resumed, and it was not stopped before, perform a clean
627 * up of the surfaces
Wale Ogunwale8d5a5422016-03-03 18:28:21 -0800628 */
Jorim Jaggibae01b12017-04-11 16:29:10 -0700629 void notifyAppResumed(boolean wasStopped) {
Chong Zhangad24f962016-08-25 12:12:33 -0700630 if (DEBUG_ADD_REMOVE) Slog.v(TAG, "notifyAppResumed: wasStopped=" + wasStopped
Jorim Jaggibae01b12017-04-11 16:29:10 -0700631 + " " + this);
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700632 mAppStopped = false;
633 if (!wasStopped) {
634 destroySurfaces(true /*cleanupOnResume*/);
Wale Ogunwale8d5a5422016-03-03 18:28:21 -0800635 }
Robert Carre12aece2016-02-02 22:43:27 -0800636 }
637
Chong Zhangbef461f2015-10-27 11:38:24 -0700638 /**
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700639 * Notify that the app has stopped, and it is okay to destroy any surfaces which were
640 * keeping alive in case they were still being used.
641 */
642 void notifyAppStopped() {
643 if (DEBUG_ADD_REMOVE) Slog.v(TAG, "notifyAppStopped: " + this);
644 mAppStopped = true;
645 destroySurfaces();
646 // Remove any starting window that was added for this app if they are still around.
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800647 if (getController() != null) {
648 getController().removeStartingWindow();
649 }
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700650 }
651
652 /**
Chong Zhangbef461f2015-10-27 11:38:24 -0700653 * Checks whether we should save surfaces for this app.
654 *
655 * @return true if the surfaces should be saved, false otherwise.
656 */
657 boolean shouldSaveSurface() {
Chong Zhangbfc2f8f2016-01-29 15:50:34 -0800658 // We want to save surface if the app's windows are "allDrawn".
659 // (If we started entering animation early with saved surfaces, allDrawn
660 // should have been restored to true. So we'll save again in that case
661 // even if app didn't actually finish drawing.)
662 return allDrawn;
Robert Carr13f7be9e2015-12-02 18:39:45 -0800663 }
664
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700665 private boolean canRestoreSurfaces() {
666 for (int i = mChildren.size() -1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700667 final WindowState w = mChildren.get(i);
Chong Zhang92147042016-05-09 12:47:11 -0700668 if (w.canRestoreSurface()) {
Robert Carr13f7be9e2015-12-02 18:39:45 -0800669 return true;
670 }
Chong Zhangbef461f2015-10-27 11:38:24 -0700671 }
672 return false;
673 }
674
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700675 private void clearWasVisibleBeforeClientHidden() {
676 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700677 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700678 w.clearWasVisibleBeforeClientHidden();
Chong Zhang92147042016-05-09 12:47:11 -0700679 }
680 }
681
Chong Zhang8e4bda92016-05-04 15:08:18 -0700682 /**
683 * Whether the app has some window that is invisible in layout, but
684 * animating with saved surface.
685 */
686 boolean isAnimatingInvisibleWithSavedSurface() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700687 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700688 final WindowState w = mChildren.get(i);
Chong Zhang8e4bda92016-05-04 15:08:18 -0700689 if (w.isAnimatingInvisibleWithSavedSurface()) {
690 return true;
691 }
692 }
693 return false;
694 }
695
696 /**
697 * Hide all window surfaces that's still invisible in layout but animating
698 * with a saved surface, and mark them destroying.
699 */
700 void stopUsingSavedSurfaceLocked() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700701 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700702 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700703 w.stopUsingSavedSurface();
Chong Zhang8e4bda92016-05-04 15:08:18 -0700704 }
705 destroySurfaces();
706 }
707
Chong Zhangf58631a2016-05-24 16:02:10 -0700708 void markSavedSurfaceExiting() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700709 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700710 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700711 w.markSavedSurfaceExiting();
Chong Zhangf58631a2016-05-24 16:02:10 -0700712 }
713 }
714
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700715 void restoreSavedSurfaceForInterestingWindows() {
Chong Zhang92147042016-05-09 12:47:11 -0700716 if (!canRestoreSurfaces()) {
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700717 clearWasVisibleBeforeClientHidden();
Chong Zhangbef461f2015-10-27 11:38:24 -0700718 return;
719 }
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700720
721 // Check if all interesting windows are drawn and we can mark allDrawn=true.
722 int interestingNotDrawn = -1;
723
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700724 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700725 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700726 interestingNotDrawn = w.restoreSavedSurfaceForInterestingWindow();
Chong Zhangbef461f2015-10-27 11:38:24 -0700727 }
Chong Zhangbfc2f8f2016-01-29 15:50:34 -0800728
Chong Zhang92147042016-05-09 12:47:11 -0700729 if (!allDrawn) {
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700730 allDrawn = (interestingNotDrawn == 0);
Chong Zhang92147042016-05-09 12:47:11 -0700731 if (allDrawn) {
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700732 mService.mH.obtainMessage(NOTIFY_ACTIVITY_DRAWN, token).sendToTarget();
Chong Zhang92147042016-05-09 12:47:11 -0700733 }
734 }
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700735 clearWasVisibleBeforeClientHidden();
Chong Zhangbfc2f8f2016-01-29 15:50:34 -0800736
737 if (DEBUG_APP_TRANSITIONS || DEBUG_ANIM) Slog.d(TAG,
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700738 "restoreSavedSurfaceForInterestingWindows: " + this + " allDrawn=" + allDrawn
739 + " interestingNotDrawn=" + interestingNotDrawn);
Chong Zhangbef461f2015-10-27 11:38:24 -0700740 }
741
742 void destroySavedSurfaces() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700743 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700744 final WindowState win = mChildren.get(i);
Robert Carr13f7be9e2015-12-02 18:39:45 -0800745 win.destroySavedSurface();
Chong Zhangbef461f2015-10-27 11:38:24 -0700746 }
Chong Zhang92147042016-05-09 12:47:11 -0700747 }
748
749 void clearAllDrawn() {
750 allDrawn = false;
751 deferClearAllDrawn = false;
Chong Zhang8e4bda92016-05-04 15:08:18 -0700752 allDrawnExcludingSaved = false;
Chong Zhangbef461f2015-10-27 11:38:24 -0700753 }
754
Bryce Lee6d410262017-02-28 15:30:17 -0800755 Task getTask() {
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800756 return (Task) getParent();
Bryce Lee6d410262017-02-28 15:30:17 -0800757 }
758
Jorim Jaggi3878ca32017-02-02 17:13:05 -0800759 TaskStack getStack() {
760 final Task task = getTask();
761 if (task != null) {
762 return task.mStack;
763 } else {
764 return null;
765 }
766 }
767
Bryce Lee6d410262017-02-28 15:30:17 -0800768 @Override
769 void onParentSet() {
770 super.onParentSet();
771
Robert Carred3e83b2017-04-21 13:26:55 -0700772 final Task task = getTask();
773
Bryce Lee6d410262017-02-28 15:30:17 -0800774 // When the associated task is {@code null}, the {@link AppWindowToken} can no longer
775 // access visual elements like the {@link DisplayContent}. We must remove any associations
776 // such as animations.
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800777 if (!mReparenting) {
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800778 if (task == null) {
779 // It is possible we have been marked as a closing app earlier. We must remove ourselves
780 // from this list so we do not participate in any future animations.
781 mService.mClosingApps.remove(this);
Robert Carred3e83b2017-04-21 13:26:55 -0700782 } else if (mLastParent != null && mLastParent.mStack != null) {
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800783 task.mStack.mExitingAppTokens.remove(this);
784 }
Bryce Lee6d410262017-02-28 15:30:17 -0800785 }
Robert Carred3e83b2017-04-21 13:26:55 -0700786 mLastParent = task;
Bryce Lee6d410262017-02-28 15:30:17 -0800787 }
788
Wale Ogunwalefa854eb2016-09-20 13:43:52 -0700789 void postWindowRemoveStartingWindowCleanup(WindowState win) {
Wale Ogunwale92fc3722016-08-05 12:19:08 -0700790 // TODO: Something smells about the code below...Is there a better way?
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700791 if (startingWindow == win) {
792 if (DEBUG_STARTING_WINDOW) Slog.v(TAG_WM, "Notify removed startingWindow " + win);
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800793 if (getController() != null) {
794 getController().removeStartingWindow();
795 }
Wale Ogunwale6c459212017-05-17 08:56:03 -0700796 } else if (mChildren.size() == 0) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700797 // If this is the last window and we had requested a starting transition window,
798 // well there is no point now.
Jorim Jaggi02886a82016-12-06 09:10:06 -0800799 if (DEBUG_STARTING_WINDOW) Slog.v(TAG_WM, "Nulling last startingData");
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700800 startingData = null;
Wale Ogunwale6c459212017-05-17 08:56:03 -0700801 if (mHiddenSetFromTransferredStartingWindow) {
802 // We set the hidden state to false for the token from a transferred starting window.
803 // We now reset it back to true since the starting window was the last window in the
804 // token.
805 hidden = true;
806 }
Jorim Jaggi829b9cd2017-01-23 16:20:53 +0100807 } else if (mChildren.size() == 1 && startingSurface != null && !isRelaunching()) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700808 // If this is the last window except for a starting transition window,
809 // we need to get rid of the starting transition.
Jorim Jaggie4b0f282017-05-17 15:10:29 +0200810 if (DEBUG_STARTING_WINDOW) Slog.v(TAG_WM, "Last window, removing starting window "
811 + win);
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800812 if (getController() != null) {
813 getController().removeStartingWindow();
814 }
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700815 }
816 }
817
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700818 void removeDeadWindows() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700819 for (int winNdx = mChildren.size() - 1; winNdx >= 0; --winNdx) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700820 WindowState win = mChildren.get(winNdx);
Chong Zhang112eb8c2015-11-02 11:17:00 -0800821 if (win.mAppDied) {
Wale Ogunwale92fc3722016-08-05 12:19:08 -0700822 if (DEBUG_WINDOW_MOVEMENT || DEBUG_ADD_REMOVE) Slog.w(TAG,
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700823 "removeDeadWindows: " + win);
Chong Zhang112eb8c2015-11-02 11:17:00 -0800824 // Set mDestroying, we don't want any animation or delayed removal here.
825 win.mDestroying = true;
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700826 // Also removes child windows.
Wale Ogunwale92fc3722016-08-05 12:19:08 -0700827 win.removeIfPossible();
Chong Zhang112eb8c2015-11-02 11:17:00 -0800828 }
829 }
830 }
831
Wale Ogunwalee42d0e12016-05-02 16:40:59 -0700832 boolean hasWindowsAlive() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700833 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700834 // No need to loop through child windows as the answer should be the same as that of the
835 // parent window.
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700836 if (!(mChildren.get(i)).mAppDied) {
Wale Ogunwalee42d0e12016-05-02 16:40:59 -0700837 return true;
838 }
839 }
840 return false;
841 }
842
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700843 void setWillReplaceWindows(boolean animate) {
Wale Ogunwale455fac52016-07-21 07:24:49 -0700844 if (DEBUG_ADD_REMOVE) Slog.d(TAG_WM,
845 "Marking app token " + this + " with replacing windows.");
Robert Carra1eb4392015-12-10 12:43:51 -0800846
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700847 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700848 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700849 w.setWillReplaceWindow(animate);
Robert Carra1eb4392015-12-10 12:43:51 -0800850 }
851 if (animate) {
852 // Set-up dummy animation so we can start treating windows associated with this
853 // token like they are in transition before the new app window is ready for us to
854 // run the real transition animation.
855 if (DEBUG_APP_TRANSITIONS) Slog.v(TAG_WM,
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700856 "setWillReplaceWindow() Setting dummy animation on: " + this);
Robert Carra1eb4392015-12-10 12:43:51 -0800857 mAppAnimator.setDummyAnimation();
858 }
859 }
860
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700861 void setWillReplaceChildWindows() {
Wale Ogunwale455fac52016-07-21 07:24:49 -0700862 if (DEBUG_ADD_REMOVE) Slog.d(TAG_WM, "Marking app token " + this
Robert Carr23fa16b2016-01-13 13:19:58 -0800863 + " with replacing child windows.");
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700864 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700865 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700866 w.setWillReplaceChildWindows();
Robert Carr23fa16b2016-01-13 13:19:58 -0800867 }
868 }
869
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700870 void clearWillReplaceWindows() {
Wale Ogunwale455fac52016-07-21 07:24:49 -0700871 if (DEBUG_ADD_REMOVE) Slog.d(TAG_WM,
872 "Resetting app token " + this + " of replacing window marks.");
Chong Zhangf596cd52016-01-05 13:42:44 -0800873
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700874 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700875 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700876 w.clearWillReplaceWindow();
Chong Zhangf596cd52016-01-05 13:42:44 -0800877 }
878 }
879
Chong Zhang4d7369a2016-04-25 16:09:14 -0700880 void requestUpdateWallpaperIfNeeded() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700881 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700882 final WindowState w = mChildren.get(i);
Chong Zhang4d7369a2016-04-25 16:09:14 -0700883 w.requestUpdateWallpaperIfNeeded();
884 }
885 }
886
Chong Zhangd78ddb42016-03-02 17:01:14 -0800887 boolean isRelaunching() {
888 return mPendingRelaunchCount > 0;
889 }
890
891 void startRelaunching() {
892 if (canFreezeBounds()) {
893 freezeBounds();
894 }
Robert Carrd5c7dd62017-03-08 10:39:30 -0800895
896 // In the process of tearing down before relaunching, the app will
897 // try and clean up it's child surfaces. We need to prevent this from
898 // happening, so we sever the children, transfering their ownership
899 // from the client it-self to the parent surface (owned by us).
900 for (int i = mChildren.size() - 1; i >= 0; i--) {
901 final WindowState w = mChildren.get(i);
902 w.mWinAnimator.detachChildren();
903 }
904
Chong Zhangd78ddb42016-03-02 17:01:14 -0800905 mPendingRelaunchCount++;
906 }
907
908 void finishRelaunching() {
909 if (canFreezeBounds()) {
910 unfreezeBounds();
911 }
912 if (mPendingRelaunchCount > 0) {
913 mPendingRelaunchCount--;
914 }
Matthew Ng498c71d2017-04-18 13:55:45 -0700915 updateAllDrawn();
Chong Zhangd78ddb42016-03-02 17:01:14 -0800916 }
917
Wale Ogunwale8fd75422016-06-24 14:20:37 -0700918 void clearRelaunching() {
Wale Ogunwale37dbafc2016-06-27 10:15:20 -0700919 if (mPendingRelaunchCount == 0) {
920 return;
921 }
Wale Ogunwale8fd75422016-06-24 14:20:37 -0700922 if (canFreezeBounds()) {
923 unfreezeBounds();
924 }
925 mPendingRelaunchCount = 0;
926 }
927
Wale Ogunwale07bcab72016-10-14 15:30:09 -0700928 /**
929 * Returns true if the new child window we are adding to this token is considered greater than
930 * the existing child window in this token in terms of z-order.
931 */
932 @Override
933 protected boolean isFirstChildWindowGreaterThanSecond(WindowState newWindow,
934 WindowState existingWindow) {
935 final int type1 = newWindow.mAttrs.type;
936 final int type2 = existingWindow.mAttrs.type;
937
938 // Base application windows should be z-ordered BELOW all other windows in the app token.
939 if (type1 == TYPE_BASE_APPLICATION && type2 != TYPE_BASE_APPLICATION) {
940 return false;
941 } else if (type1 != TYPE_BASE_APPLICATION && type2 == TYPE_BASE_APPLICATION) {
942 return true;
943 }
944
945 // Starting windows should be z-ordered ABOVE all other windows in the app token.
946 if (type1 == TYPE_APPLICATION_STARTING && type2 != TYPE_APPLICATION_STARTING) {
947 return true;
948 } else if (type1 != TYPE_APPLICATION_STARTING && type2 == TYPE_APPLICATION_STARTING) {
949 return false;
950 }
951
952 // Otherwise the new window is greater than the existing window.
953 return true;
954 }
955
Wale Ogunwale92fc3722016-08-05 12:19:08 -0700956 @Override
Robert Carra1eb4392015-12-10 12:43:51 -0800957 void addWindow(WindowState w) {
Wale Ogunwale92fc3722016-08-05 12:19:08 -0700958 super.addWindow(w);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700959
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700960 boolean gotReplacementWindow = false;
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700961 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700962 final WindowState candidate = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700963 gotReplacementWindow |= candidate.setReplacementWindowIfNeeded(w);
964 }
Wale Ogunwale92fc3722016-08-05 12:19:08 -0700965
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700966 // if we got a replacement window, reset the timeout to give drawing more time
967 if (gotReplacementWindow) {
968 mService.scheduleWindowReplacementTimeouts(this);
Robert Carra1eb4392015-12-10 12:43:51 -0800969 }
Jorim Jaggife762342016-10-13 14:33:27 +0200970 checkKeyguardFlagsChanged();
971 }
972
973 @Override
974 void removeChild(WindowState child) {
975 super.removeChild(child);
976 checkKeyguardFlagsChanged();
Robert Carra1eb4392015-12-10 12:43:51 -0800977 }
978
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -0700979 private boolean waitingForReplacement() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700980 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700981 final WindowState candidate = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700982 if (candidate.waitingForReplacement()) {
Robert Carra1eb4392015-12-10 12:43:51 -0800983 return true;
984 }
985 }
986 return false;
987 }
988
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700989 void onWindowReplacementTimeout() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700990 for (int i = mChildren.size() - 1; i >= 0; --i) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700991 (mChildren.get(i)).onWindowReplacementTimeout();
Robert Carra1eb4392015-12-10 12:43:51 -0800992 }
993 }
994
Winson Chung30480042017-01-26 10:55:34 -0800995 void reparent(Task task, int position) {
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800996 final Task currentTask = getTask();
997 if (task == currentTask) {
Winson Chung30480042017-01-26 10:55:34 -0800998 throw new IllegalArgumentException(
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800999 "window token=" + this + " already child of task=" + currentTask);
Winson Chung30480042017-01-26 10:55:34 -08001000 }
Bryce Lee6d410262017-02-28 15:30:17 -08001001
Bryce Lee7fbeb8a2017-03-02 08:42:30 -08001002 if (currentTask.mStack != task.mStack) {
Bryce Lee6d410262017-02-28 15:30:17 -08001003 throw new IllegalArgumentException(
Bryce Lee7fbeb8a2017-03-02 08:42:30 -08001004 "window token=" + this + " current task=" + currentTask
Bryce Lee6d410262017-02-28 15:30:17 -08001005 + " belongs to a different stack than " + task);
1006 }
1007
Winson Chung30480042017-01-26 10:55:34 -08001008 if (DEBUG_ADD_REMOVE) Slog.i(TAG, "reParentWindowToken: removing window token=" + this
Bryce Lee7fbeb8a2017-03-02 08:42:30 -08001009 + " from task=" + currentTask);
Winson Chung30480042017-01-26 10:55:34 -08001010 final DisplayContent prevDisplayContent = getDisplayContent();
1011
Bryce Lee6d410262017-02-28 15:30:17 -08001012 mReparenting = true;
1013
Winson Chung30480042017-01-26 10:55:34 -08001014 getParent().removeChild(this);
1015 task.addChild(this, position);
1016
Bryce Lee6d410262017-02-28 15:30:17 -08001017 mReparenting = false;
1018
Winson Chung30480042017-01-26 10:55:34 -08001019 // Relayout display(s).
1020 final DisplayContent displayContent = task.getDisplayContent();
1021 displayContent.setLayoutNeeded();
1022 if (prevDisplayContent != displayContent) {
1023 onDisplayChanged(displayContent);
1024 prevDisplayContent.setLayoutNeeded();
1025 }
1026 }
1027
Chong Zhangd78ddb42016-03-02 17:01:14 -08001028 private boolean canFreezeBounds() {
Bryce Lee7fbeb8a2017-03-02 08:42:30 -08001029 final Task task = getTask();
1030
Chong Zhangd78ddb42016-03-02 17:01:14 -08001031 // For freeform windows, we can't freeze the bounds at the moment because this would make
1032 // the resizing unresponsive.
Bryce Lee7fbeb8a2017-03-02 08:42:30 -08001033 return task != null && !task.inFreeformWorkspace();
Chong Zhangd78ddb42016-03-02 17:01:14 -08001034 }
1035
Jorim Jaggi0429f352015-12-22 16:29:16 +01001036 /**
1037 * Freezes the task bounds. The size of this task reported the app will be fixed to the bounds
1038 * freezed by {@link Task#prepareFreezingBounds} until {@link #unfreezeBounds} gets called, even
1039 * if they change in the meantime. If the bounds are already frozen, the bounds will be frozen
1040 * with a queue.
1041 */
Chong Zhangd78ddb42016-03-02 17:01:14 -08001042 private void freezeBounds() {
Bryce Lee7fbeb8a2017-03-02 08:42:30 -08001043 final Task task = getTask();
1044 mFrozenBounds.offer(new Rect(task.mPreparedFrozenBounds));
Jorim Jaggi26c8c422016-05-09 19:57:25 -07001045
Bryce Lee7fbeb8a2017-03-02 08:42:30 -08001046 if (task.mPreparedFrozenMergedConfig.equals(Configuration.EMPTY)) {
Jorim Jaggi26c8c422016-05-09 19:57:25 -07001047 // We didn't call prepareFreezingBounds on the task, so use the current value.
Bryce Lee7fbeb8a2017-03-02 08:42:30 -08001048 mFrozenMergedConfig.offer(new Configuration(task.getConfiguration()));
Jorim Jaggi26c8c422016-05-09 19:57:25 -07001049 } else {
Bryce Lee7fbeb8a2017-03-02 08:42:30 -08001050 mFrozenMergedConfig.offer(new Configuration(task.mPreparedFrozenMergedConfig));
Jorim Jaggi26c8c422016-05-09 19:57:25 -07001051 }
Andrii Kulianb10330d2016-09-16 13:51:46 -07001052 // Calling unset() to make it equal to Configuration.EMPTY.
Bryce Lee7fbeb8a2017-03-02 08:42:30 -08001053 task.mPreparedFrozenMergedConfig.unset();
Jorim Jaggi0429f352015-12-22 16:29:16 +01001054 }
1055
1056 /**
1057 * Unfreezes the previously frozen bounds. See {@link #freezeBounds}.
1058 */
Chong Zhangd78ddb42016-03-02 17:01:14 -08001059 private void unfreezeBounds() {
Wale Ogunwale37dbafc2016-06-27 10:15:20 -07001060 if (!mFrozenBounds.isEmpty()) {
1061 mFrozenBounds.remove();
1062 }
1063 if (!mFrozenMergedConfig.isEmpty()) {
1064 mFrozenMergedConfig.remove();
1065 }
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001066 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07001067 final WindowState win = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001068 win.onUnfreezeBounds();
Jorim Jaggi4846ee32016-01-07 17:39:12 +01001069 }
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001070 mService.mWindowPlacerLocked.performSurfacePlacement();
Jorim Jaggi0429f352015-12-22 16:29:16 +01001071 }
1072
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -07001073 void setAppLayoutChanges(int changes, String reason) {
1074 if (!mChildren.isEmpty()) {
1075 final DisplayContent dc = getDisplayContent();
1076 dc.pendingLayoutChanges |= changes;
1077 if (DEBUG_LAYOUT_REPEATS) {
1078 mService.mWindowPlacerLocked.debugLayoutRepeats(reason, dc.pendingLayoutChanges);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001079 }
1080 }
1081 }
1082
1083 void removeReplacedWindowIfNeeded(WindowState replacement) {
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001084 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07001085 final WindowState win = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001086 if (win.removeReplacedWindowIfNeeded(replacement)) {
1087 return;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001088 }
1089 }
1090 }
1091
1092 void startFreezingScreen() {
1093 if (DEBUG_ORIENTATION) logWithStack(TAG, "Set freezing of " + appToken + ": hidden="
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001094 + hidden + " freezing=" + mAppAnimator.freezingScreen + " hiddenRequested="
1095 + hiddenRequested);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001096 if (!hiddenRequested) {
1097 if (!mAppAnimator.freezingScreen) {
1098 mAppAnimator.freezingScreen = true;
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001099 mService.registerAppFreezeListener(this);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001100 mAppAnimator.lastFreezeDuration = 0;
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001101 mService.mAppsFreezingScreen++;
1102 if (mService.mAppsFreezingScreen == 1) {
1103 mService.startFreezingDisplayLocked(false, 0, 0);
1104 mService.mH.removeMessages(H.APP_FREEZE_TIMEOUT);
1105 mService.mH.sendEmptyMessageDelayed(H.APP_FREEZE_TIMEOUT, 2000);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001106 }
1107 }
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001108 final int count = mChildren.size();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001109 for (int i = 0; i < count; i++) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07001110 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001111 w.onStartFreezingScreen();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001112 }
1113 }
1114 }
1115
1116 void stopFreezingScreen(boolean unfreezeSurfaceNow, boolean force) {
1117 if (!mAppAnimator.freezingScreen) {
1118 return;
1119 }
1120 if (DEBUG_ORIENTATION) Slog.v(TAG_WM, "Clear freezing of " + this + " force=" + force);
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001121 final int count = mChildren.size();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001122 boolean unfrozeWindows = false;
1123 for (int i = 0; i < count; i++) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07001124 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001125 unfrozeWindows |= w.onStopFreezingScreen();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001126 }
1127 if (force || unfrozeWindows) {
1128 if (DEBUG_ORIENTATION) Slog.v(TAG_WM, "No longer freezing: " + this);
1129 mAppAnimator.freezingScreen = false;
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001130 mService.unregisterAppFreezeListener(this);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001131 mAppAnimator.lastFreezeDuration =
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001132 (int)(SystemClock.elapsedRealtime() - mService.mDisplayFreezeTime);
1133 mService.mAppsFreezingScreen--;
1134 mService.mLastFinishedFreezeSource = this;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001135 }
1136 if (unfreezeSurfaceNow) {
1137 if (unfrozeWindows) {
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001138 mService.mWindowPlacerLocked.performSurfacePlacement();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001139 }
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001140 mService.stopFreezingDisplayLocked();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001141 }
1142 }
1143
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001144 @Override
1145 public void onAppFreezeTimeout() {
1146 Slog.w(TAG_WM, "Force clearing freeze: " + this);
1147 stopFreezingScreen(true, true);
1148 }
1149
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001150 boolean transferStartingWindow(IBinder transferFrom) {
Wale Ogunwale02319a62016-09-26 15:21:22 -07001151 final AppWindowToken fromToken = getDisplayContent().getAppWindowToken(transferFrom);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001152 if (fromToken == null) {
1153 return false;
1154 }
1155
1156 final WindowState tStartingWindow = fromToken.startingWindow;
Jorim Jaggiba41f4b2016-12-14 17:43:07 -08001157 if (tStartingWindow != null && fromToken.startingSurface != null) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001158 // In this case, the starting icon has already been displayed, so start
1159 // letting windows get shown immediately without any more transitions.
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001160 mService.mSkipAppTransitionAnimation = true;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001161
1162 if (DEBUG_STARTING_WINDOW) Slog.v(TAG_WM, "Moving existing starting " + tStartingWindow
1163 + " from " + fromToken + " to " + this);
1164
1165 final long origId = Binder.clearCallingIdentity();
1166
1167 // Transfer the starting window over to the new token.
1168 startingData = fromToken.startingData;
Jorim Jaggiba41f4b2016-12-14 17:43:07 -08001169 startingSurface = fromToken.startingSurface;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001170 startingDisplayed = fromToken.startingDisplayed;
1171 fromToken.startingDisplayed = false;
1172 startingWindow = tStartingWindow;
1173 reportedVisible = fromToken.reportedVisible;
1174 fromToken.startingData = null;
Jorim Jaggiba41f4b2016-12-14 17:43:07 -08001175 fromToken.startingSurface = null;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001176 fromToken.startingWindow = null;
1177 fromToken.startingMoved = true;
1178 tStartingWindow.mToken = this;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001179 tStartingWindow.mAppToken = this;
1180
Wale Ogunwale6213caa2016-12-02 16:47:15 +00001181 if (DEBUG_ADD_REMOVE || DEBUG_STARTING_WINDOW) Slog.v(TAG_WM,
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001182 "Removing starting " + tStartingWindow + " from " + fromToken);
Wale Ogunwalefa854eb2016-09-20 13:43:52 -07001183 fromToken.removeChild(tStartingWindow);
1184 fromToken.postWindowRemoveStartingWindowCleanup(tStartingWindow);
Wale Ogunwale6c459212017-05-17 08:56:03 -07001185 fromToken.mHiddenSetFromTransferredStartingWindow = false;
Wale Ogunwale92fc3722016-08-05 12:19:08 -07001186 addWindow(tStartingWindow);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001187
1188 // Propagate other interesting state between the tokens. If the old token is displayed,
1189 // we should immediately force the new one to be displayed. If it is animating, we need
1190 // to move that animation to the new one.
1191 if (fromToken.allDrawn) {
1192 allDrawn = true;
1193 deferClearAllDrawn = fromToken.deferClearAllDrawn;
1194 }
1195 if (fromToken.firstWindowDrawn) {
1196 firstWindowDrawn = true;
1197 }
1198 if (!fromToken.hidden) {
1199 hidden = false;
1200 hiddenRequested = false;
Wale Ogunwale6c459212017-05-17 08:56:03 -07001201 mHiddenSetFromTransferredStartingWindow = true;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001202 }
Wale Ogunwale89973222017-04-23 18:39:45 -07001203 setClientHidden(fromToken.mClientHidden);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001204 fromToken.mAppAnimator.transferCurrentAnimation(
1205 mAppAnimator, tStartingWindow.mWinAnimator);
1206
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001207 mService.updateFocusedWindowLocked(
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001208 UPDATE_FOCUS_WILL_PLACE_SURFACES, true /*updateInputWindows*/);
Andrii Kulian5406e7a2016-10-21 11:55:23 -07001209 getDisplayContent().setLayoutNeeded();
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001210 mService.mWindowPlacerLocked.performSurfacePlacement();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001211 Binder.restoreCallingIdentity(origId);
1212 return true;
1213 } else if (fromToken.startingData != null) {
1214 // The previous app was getting ready to show a
1215 // starting window, but hasn't yet done so. Steal it!
1216 if (DEBUG_STARTING_WINDOW) Slog.v(TAG_WM,
1217 "Moving pending starting from " + fromToken + " to " + this);
1218 startingData = fromToken.startingData;
1219 fromToken.startingData = null;
1220 fromToken.startingMoved = true;
Jorim Jaggiba41f4b2016-12-14 17:43:07 -08001221 if (getController() != null) {
1222 getController().scheduleAddStartingWindow();
1223 }
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001224 return true;
1225 }
1226
1227 final AppWindowAnimator tAppAnimator = fromToken.mAppAnimator;
1228 final AppWindowAnimator wAppAnimator = mAppAnimator;
1229 if (tAppAnimator.thumbnail != null) {
1230 // The old token is animating with a thumbnail, transfer that to the new token.
1231 if (wAppAnimator.thumbnail != null) {
1232 wAppAnimator.thumbnail.destroy();
1233 }
1234 wAppAnimator.thumbnail = tAppAnimator.thumbnail;
1235 wAppAnimator.thumbnailLayer = tAppAnimator.thumbnailLayer;
1236 wAppAnimator.thumbnailAnimation = tAppAnimator.thumbnailAnimation;
1237 tAppAnimator.thumbnail = null;
1238 }
1239 return false;
1240 }
1241
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001242 boolean isLastWindow(WindowState win) {
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001243 return mChildren.size() == 1 && mChildren.get(0) == win;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001244 }
1245
1246 void setAllAppWinAnimators() {
1247 final ArrayList<WindowStateAnimator> allAppWinAnimators = mAppAnimator.mAllAppWinAnimators;
1248 allAppWinAnimators.clear();
1249
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001250 final int windowsCount = mChildren.size();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001251 for (int j = 0; j < windowsCount; j++) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07001252 (mChildren.get(j)).addWinAnimatorToList(allAppWinAnimators);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001253 }
1254 }
1255
Wale Ogunwale9adfe572016-09-08 20:43:58 -07001256 @Override
1257 void onAppTransitionDone() {
1258 sendingToBottom = false;
1259 }
1260
Wale Ogunwale51362492016-09-08 17:49:17 -07001261 /**
1262 * We override because this class doesn't want its children affecting its reported orientation
1263 * in anyway.
1264 */
1265 @Override
Wale Ogunwale5e5a68d2017-03-24 17:36:38 -07001266 int getOrientation(int candidate) {
Bryce Leed1ac18c2017-05-11 07:59:41 -07001267 // We do not allow non-fullscreen apps to influence orientation beyond O. While we do
Bryce Lee39791592017-04-26 09:29:12 -07001268 // throw an exception in {@link Activity#onCreate} and
1269 // {@link Activity#setRequestedOrientation}, we also ignore the orientation here so that
1270 // other calculations aren't affected.
Bryce Leed1ac18c2017-05-11 07:59:41 -07001271 if (!fillsParent() && mTargetSdk > O) {
Wale Ogunwale5e5a68d2017-03-24 17:36:38 -07001272 // Can't specify orientation if app doesn't fill parent.
1273 return SCREEN_ORIENTATION_UNSET;
1274 }
1275
1276 if (candidate == SCREEN_ORIENTATION_BEHIND) {
1277 // Allow app to specify orientation regardless of its visibility state if the current
1278 // candidate want us to use orientation behind. I.e. the visible app on-top of this one
1279 // wants us to use the orientation of the app behind it.
1280 return mOrientation;
1281 }
1282
Bryce Lee61fbcbc2017-03-10 14:14:03 -08001283 // The {@link AppWindowToken} should only specify an orientation when it is not closing or
1284 // going to the bottom. Allowing closing {@link AppWindowToken} to participate can lead to
1285 // an Activity in another task being started in the wrong orientation during the transition.
Wale Ogunwale5e5a68d2017-03-24 17:36:38 -07001286 if (!(sendingToBottom || mService.mClosingApps.contains(this))
Bryce Lee61fbcbc2017-03-10 14:14:03 -08001287 && (isVisible() || mService.mOpeningApps.contains(this))) {
Bryce Leea163b762017-01-24 11:05:01 -08001288 return mOrientation;
Wale Ogunwale51362492016-09-08 17:49:17 -07001289 }
Bryce Leea163b762017-01-24 11:05:01 -08001290
1291 return SCREEN_ORIENTATION_UNSET;
Wale Ogunwale51362492016-09-08 17:49:17 -07001292 }
1293
Wale Ogunwaleb198b742016-12-01 08:44:09 -08001294 /** Returns the app's preferred orientation regardless of its currently visibility state. */
1295 int getOrientationIgnoreVisibility() {
1296 return mOrientation;
1297 }
1298
Craig Mautnerdbb79912012-03-01 18:59:14 -08001299 @Override
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -07001300 void checkAppWindowsReadyToShow() {
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001301 if (allDrawn == mAppAnimator.allDrawn) {
1302 return;
1303 }
1304
1305 mAppAnimator.allDrawn = allDrawn;
1306 if (!allDrawn) {
1307 return;
1308 }
1309
1310 // The token has now changed state to having all windows shown... what to do, what to do?
1311 if (mAppAnimator.freezingScreen) {
1312 mAppAnimator.showAllWindowsLocked();
1313 stopFreezingScreen(false, true);
1314 if (DEBUG_ORIENTATION) Slog.i(TAG,
1315 "Setting mOrientationChangeComplete=true because wtoken " + this
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001316 + " numInteresting=" + mNumInterestingWindows + " numDrawn=" + mNumDrawnWindows);
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001317 // This will set mOrientationChangeComplete and cause a pass through layout.
1318 setAppLayoutChanges(FINISH_LAYOUT_REDO_WALLPAPER,
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -07001319 "checkAppWindowsReadyToShow: freezingScreen");
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001320 } else {
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -07001321 setAppLayoutChanges(FINISH_LAYOUT_REDO_ANIM, "checkAppWindowsReadyToShow");
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001322
1323 // We can now show all of the drawn windows!
1324 if (!mService.mOpeningApps.contains(this)) {
1325 mService.mAnimator.orAnimating(mAppAnimator.showAllWindowsLocked());
1326 }
1327 }
1328 }
1329
Matthew Ng498c71d2017-04-18 13:55:45 -07001330 void updateAllDrawn() {
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001331 if (!allDrawn) {
Matthew Ng498c71d2017-04-18 13:55:45 -07001332 // Number of drawn windows can be less when a window is being relaunched, wait for
1333 // all windows to be launched and drawn for this token be considered all drawn
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001334 final int numInteresting = mNumInterestingWindows;
Matthew Ng498c71d2017-04-18 13:55:45 -07001335 if (numInteresting > 0 && mNumDrawnWindows >= numInteresting && !isRelaunching()) {
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001336 if (DEBUG_VISIBILITY) Slog.v(TAG, "allDrawn: " + this
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001337 + " interesting=" + numInteresting + " drawn=" + mNumDrawnWindows);
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001338 allDrawn = true;
1339 // Force an additional layout pass where
1340 // WindowStateAnimator#commitFinishDrawingLocked() will call performShowLocked().
Matthew Ng498c71d2017-04-18 13:55:45 -07001341 if (mDisplayContent != null) {
1342 mDisplayContent.setLayoutNeeded();
1343 }
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001344 mService.mH.obtainMessage(NOTIFY_ACTIVITY_DRAWN, token).sendToTarget();
Robert Carrecc06b32017-04-18 14:25:10 -07001345
1346 final TaskStack s = getStack();
1347 if (s != null) {
1348 s.onAllWindowsDrawn();
1349 }
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001350 }
1351 }
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001352
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001353 if (!allDrawnExcludingSaved) {
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001354 int numInteresting = mNumInterestingWindowsExcludingSaved;
1355 if (numInteresting > 0 && mNumDrawnWindowsExcludingSaved >= numInteresting) {
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001356 if (DEBUG_VISIBILITY) Slog.v(TAG, "allDrawnExcludingSaved: " + this
1357 + " interesting=" + numInteresting
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001358 + " drawn=" + mNumDrawnWindowsExcludingSaved);
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001359 allDrawnExcludingSaved = true;
Matthew Ng498c71d2017-04-18 13:55:45 -07001360 if (mDisplayContent != null) {
1361 mDisplayContent.setLayoutNeeded();
1362 }
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001363 if (isAnimatingInvisibleWithSavedSurface()
1364 && !mService.mFinishedEarlyAnim.contains(this)) {
1365 mService.mFinishedEarlyAnim.add(this);
1366 }
1367 }
1368 }
1369 }
1370
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001371 /**
1372 * Updated this app token tracking states for interesting and drawn windows based on the window.
1373 *
1374 * @return Returns true if the input window is considered interesting and drawn while all the
1375 * windows in this app token where not considered drawn as of the last pass.
1376 */
1377 boolean updateDrawnWindowStates(WindowState w) {
Jorim Jaggie4b0f282017-05-17 15:10:29 +02001378 if (DEBUG_STARTING_WINDOW_VERBOSE && w == startingWindow) {
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001379 Slog.d(TAG, "updateWindows: starting " + w + " isOnScreen=" + w.isOnScreen()
1380 + " allDrawn=" + allDrawn + " freezingScreen=" + mAppAnimator.freezingScreen);
1381 }
1382
1383 if (allDrawn && allDrawnExcludingSaved && !mAppAnimator.freezingScreen) {
1384 return false;
1385 }
1386
1387 if (mLastTransactionSequence != mService.mTransactionSequence) {
1388 mLastTransactionSequence = mService.mTransactionSequence;
1389 mNumInterestingWindows = mNumDrawnWindows = 0;
1390 mNumInterestingWindowsExcludingSaved = 0;
1391 mNumDrawnWindowsExcludingSaved = 0;
1392 startingDisplayed = false;
1393 }
1394
1395 final WindowStateAnimator winAnimator = w.mWinAnimator;
1396
1397 boolean isInterestingAndDrawn = false;
1398
1399 if (!allDrawn && w.mightAffectAllDrawn(false /* visibleOnly */)) {
1400 if (DEBUG_VISIBILITY || DEBUG_ORIENTATION) {
1401 Slog.v(TAG, "Eval win " + w + ": isDrawn=" + w.isDrawnLw()
1402 + ", isAnimationSet=" + winAnimator.isAnimationSet());
1403 if (!w.isDrawnLw()) {
1404 Slog.v(TAG, "Not displayed: s=" + winAnimator.mSurfaceController
1405 + " pv=" + w.mPolicyVisibility
1406 + " mDrawState=" + winAnimator.drawStateToString()
1407 + " ph=" + w.isParentWindowHidden() + " th=" + hiddenRequested
1408 + " a=" + winAnimator.mAnimating);
1409 }
1410 }
1411
1412 if (w != startingWindow) {
1413 if (w.isInteresting()) {
1414 mNumInterestingWindows++;
1415 if (w.isDrawnLw()) {
1416 mNumDrawnWindows++;
1417
1418 if (DEBUG_VISIBILITY || DEBUG_ORIENTATION) Slog.v(TAG, "tokenMayBeDrawn: "
1419 + this + " w=" + w + " numInteresting=" + mNumInterestingWindows
1420 + " freezingScreen=" + mAppAnimator.freezingScreen
1421 + " mAppFreezing=" + w.mAppFreezing);
1422
1423 isInterestingAndDrawn = true;
1424 }
1425 }
1426 } else if (w.isDrawnLw()) {
Jorim Jaggi3878ca32017-02-02 17:13:05 -08001427 if (getController() != null) {
1428 getController().reportStartingWindowDrawn();
1429 }
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001430 startingDisplayed = true;
1431 }
1432 }
1433
1434 if (!allDrawnExcludingSaved && w.mightAffectAllDrawn(true /* visibleOnly */)) {
1435 if (w != startingWindow && w.isInteresting()) {
1436 mNumInterestingWindowsExcludingSaved++;
1437 if (w.isDrawnLw() && !w.isAnimatingWithSavedSurface()) {
1438 mNumDrawnWindowsExcludingSaved++;
1439
1440 if (DEBUG_VISIBILITY || DEBUG_ORIENTATION) Slog.v(TAG,
1441 "tokenMayBeDrawnExcludingSaved: " + this + " w=" + w
1442 + " numInteresting=" + mNumInterestingWindowsExcludingSaved
1443 + " freezingScreen=" + mAppAnimator.freezingScreen
1444 + " mAppFreezing=" + w.mAppFreezing);
1445
1446 isInterestingAndDrawn = true;
1447 }
1448 }
1449 }
1450
1451 return isInterestingAndDrawn;
1452 }
1453
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001454 @Override
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -07001455 void stepAppWindowsAnimation(long currentTime) {
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001456 mAppAnimator.wasAnimating = mAppAnimator.animating;
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -07001457 if (mAppAnimator.stepAnimationLocked(currentTime)) {
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001458 mAppAnimator.animating = true;
1459 mService.mAnimator.setAnimating(true);
1460 mService.mAnimator.mAppWindowAnimating = true;
1461 } else if (mAppAnimator.wasAnimating) {
1462 // stopped animating, do one more pass through the layout
Wale Ogunwale1e129a42016-11-21 13:03:47 -08001463 setAppLayoutChanges(FINISH_LAYOUT_REDO_WALLPAPER,
1464 DEBUG_LAYOUT_REPEATS ? "appToken " + this + " done" : null);
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001465 if (DEBUG_ANIM) Slog.v(TAG, "updateWindowsApps...: done animating " + this);
1466 }
1467 }
1468
Wale Ogunwale9adfe572016-09-08 20:43:58 -07001469 @Override
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08001470 boolean forAllWindows(ToBooleanFunction<WindowState> callback, boolean traverseTopToBottom) {
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07001471 // For legacy reasons we process the TaskStack.mExitingAppTokens first in DisplayContent
1472 // before the non-exiting app tokens. So, we skip the exiting app tokens here.
1473 // TODO: Investigate if we need to continue to do this or if we can just process them
1474 // in-order.
1475 if (mIsExiting && !waitingForReplacement()) {
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08001476 return false;
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07001477 }
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08001478 return forAllWindowsUnchecked(callback, traverseTopToBottom);
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07001479 }
1480
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08001481 boolean forAllWindowsUnchecked(ToBooleanFunction<WindowState> callback,
1482 boolean traverseTopToBottom) {
1483 return super.forAllWindows(callback, traverseTopToBottom);
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07001484 }
1485
1486 @Override
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001487 AppWindowToken asAppWindowToken() {
1488 // I am an app window token!
1489 return this;
1490 }
1491
1492 @Override
Wale Ogunwale51362492016-09-08 17:49:17 -07001493 boolean fillsParent() {
1494 return mFillsParent;
1495 }
1496
1497 void setFillsParent(boolean fillsParent) {
1498 mFillsParent = fillsParent;
1499 }
1500
Jorim Jaggife762342016-10-13 14:33:27 +02001501 boolean containsDismissKeyguardWindow() {
1502 for (int i = mChildren.size() - 1; i >= 0; i--) {
1503 if ((mChildren.get(i).mAttrs.flags & FLAG_DISMISS_KEYGUARD) != 0) {
1504 return true;
1505 }
1506 }
1507 return false;
1508 }
1509
1510 boolean containsShowWhenLockedWindow() {
1511 for (int i = mChildren.size() - 1; i >= 0; i--) {
1512 if ((mChildren.get(i).mAttrs.flags & FLAG_SHOW_WHEN_LOCKED) != 0) {
1513 return true;
1514 }
1515 }
1516 return false;
1517 }
1518
1519 void checkKeyguardFlagsChanged() {
1520 final boolean containsDismissKeyguard = containsDismissKeyguardWindow();
1521 final boolean containsShowWhenLocked = containsShowWhenLockedWindow();
1522 if (containsDismissKeyguard != mLastContainsDismissKeyguardWindow
1523 || containsShowWhenLocked != mLastContainsShowWhenLockedWindow) {
1524 mService.notifyKeyguardFlagsChanged(null /* callback */);
1525 }
1526 mLastContainsDismissKeyguardWindow = containsDismissKeyguard;
1527 mLastContainsShowWhenLockedWindow = containsShowWhenLocked;
1528 }
1529
Wale Ogunwale6213caa2016-12-02 16:47:15 +00001530 WindowState getImeTargetBelowWindow(WindowState w) {
1531 final int index = mChildren.indexOf(w);
1532 if (index > 0) {
1533 final WindowState target = mChildren.get(index - 1);
1534 if (target.canBeImeTarget()) {
1535 return target;
1536 }
1537 }
1538 return null;
1539 }
1540
1541 WindowState getHighestAnimLayerWindow(WindowState currentTarget) {
1542 WindowState candidate = null;
1543 for (int i = mChildren.indexOf(currentTarget); i >= 0; i--) {
1544 final WindowState w = mChildren.get(i);
1545 if (w.mRemoved) {
1546 continue;
1547 }
1548 if (candidate == null || w.mWinAnimator.mAnimLayer >
1549 candidate.mWinAnimator.mAnimLayer) {
1550 candidate = w;
1551 }
1552 }
1553 return candidate;
1554 }
1555
Jorim Jaggid635a4a2017-05-03 15:21:26 +02001556 /**
1557 * See {@link Activity#setDisablePreviewScreenshots}.
1558 */
1559 void setDisablePreviewScreenshots(boolean disable) {
Wale Ogunwale6c459212017-05-17 08:56:03 -07001560 mDisablePreviewScreenshots = disable;
Jorim Jaggi0fe7ce962017-02-22 16:45:48 +01001561 }
1562
Jorim Jaggid635a4a2017-05-03 15:21:26 +02001563 /**
1564 * Retrieves whether we'd like to generate a snapshot that's based solely on the theme. This is
1565 * the case when preview screenshots are disabled {@link #setDisablePreviewScreenshots} or when
1566 * we can't take a snapshot for other reasons, for example, if we have a secure window.
1567 *
1568 * @return True if we need to generate an app theme snapshot, false if we'd like to take a real
1569 * screenshot.
1570 */
1571 boolean shouldUseAppThemeSnapshot() {
Wale Ogunwale6c459212017-05-17 08:56:03 -07001572 return mDisablePreviewScreenshots || forAllWindows(w -> (w.mAttrs.flags & FLAG_SECURE) != 0,
Jorim Jaggid635a4a2017-05-03 15:21:26 +02001573 true /* topToBottom */);
Jorim Jaggi0fe7ce962017-02-22 16:45:48 +01001574 }
1575
Wale Ogunwale51362492016-09-08 17:49:17 -07001576 @Override
Robert Carrdee1b3f2017-02-27 11:33:33 -08001577 int getAnimLayerAdjustment() {
1578 return mAppAnimator.animLayerAdjustment;
1579 }
1580
1581 @Override
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001582 void dump(PrintWriter pw, String prefix) {
1583 super.dump(pw, prefix);
1584 if (appToken != null) {
Wale Ogunwale72919d22016-12-08 18:58:50 -08001585 pw.println(prefix + "app=true mVoiceInteraction=" + mVoiceInteraction);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001586 }
Bryce Lee7fbeb8a2017-03-02 08:42:30 -08001587 pw.print(prefix); pw.print("task="); pw.println(getTask());
Wale Ogunwale51362492016-09-08 17:49:17 -07001588 pw.print(prefix); pw.print(" mFillsParent="); pw.print(mFillsParent);
1589 pw.print(" mOrientation="); pw.println(mOrientation);
Wale Ogunwale89973222017-04-23 18:39:45 -07001590 pw.println(prefix + "hiddenRequested=" + hiddenRequested + " mClientHidden=" + mClientHidden
1591 + ((mDeferHidingClient) ? " mDeferHidingClient=" + mDeferHidingClient : "")
1592 + " reportedDrawn=" + reportedDrawn + " reportedVisible=" + reportedVisible);
Craig Mautner59431632012-04-04 11:56:44 -07001593 if (paused) {
1594 pw.print(prefix); pw.print("paused="); pw.println(paused);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001595 }
Wale Ogunwale9017ec02016-02-25 08:55:25 -08001596 if (mAppStopped) {
1597 pw.print(prefix); pw.print("mAppStopped="); pw.println(mAppStopped);
1598 }
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001599 if (mNumInterestingWindows != 0 || mNumDrawnWindows != 0
Craig Mautner6fbda632012-07-03 09:26:39 -07001600 || allDrawn || mAppAnimator.allDrawn) {
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001601 pw.print(prefix); pw.print("mNumInterestingWindows=");
1602 pw.print(mNumInterestingWindows);
1603 pw.print(" mNumDrawnWindows="); pw.print(mNumDrawnWindows);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001604 pw.print(" inPendingTransaction="); pw.print(inPendingTransaction);
Craig Mautner6fbda632012-07-03 09:26:39 -07001605 pw.print(" allDrawn="); pw.print(allDrawn);
1606 pw.print(" (animator="); pw.print(mAppAnimator.allDrawn);
1607 pw.println(")");
1608 }
1609 if (inPendingTransaction) {
1610 pw.print(prefix); pw.print("inPendingTransaction=");
1611 pw.println(inPendingTransaction);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001612 }
Craig Mautner799bc1d2015-01-14 10:33:48 -08001613 if (startingData != null || removed || firstWindowDrawn || mIsExiting) {
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001614 pw.print(prefix); pw.print("startingData="); pw.print(startingData);
1615 pw.print(" removed="); pw.print(removed);
Craig Mautner3d7ca312015-01-08 10:56:00 -08001616 pw.print(" firstWindowDrawn="); pw.print(firstWindowDrawn);
Craig Mautner799bc1d2015-01-14 10:33:48 -08001617 pw.print(" mIsExiting="); pw.println(mIsExiting);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001618 }
Jorim Jaggiba41f4b2016-12-14 17:43:07 -08001619 if (startingWindow != null || startingSurface != null
Wale Ogunwale6c459212017-05-17 08:56:03 -07001620 || startingDisplayed || startingMoved || mHiddenSetFromTransferredStartingWindow) {
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001621 pw.print(prefix); pw.print("startingWindow="); pw.print(startingWindow);
Jorim Jaggiba41f4b2016-12-14 17:43:07 -08001622 pw.print(" startingSurface="); pw.print(startingSurface);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001623 pw.print(" startingDisplayed="); pw.print(startingDisplayed);
Wale Ogunwale6c459212017-05-17 08:56:03 -07001624 pw.print(" startingMoved="); pw.print(startingMoved);
1625 pw.println(" mHiddenSetFromTransferredStartingWindow="
1626 + mHiddenSetFromTransferredStartingWindow);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001627 }
Jorim Jaggi0429f352015-12-22 16:29:16 +01001628 if (!mFrozenBounds.isEmpty()) {
Chong Zhangd78ddb42016-03-02 17:01:14 -08001629 pw.print(prefix); pw.print("mFrozenBounds="); pw.println(mFrozenBounds);
Jorim Jaggi26c8c422016-05-09 19:57:25 -07001630 pw.print(prefix); pw.print("mFrozenMergedConfig="); pw.println(mFrozenMergedConfig);
Chong Zhangd78ddb42016-03-02 17:01:14 -08001631 }
1632 if (mPendingRelaunchCount != 0) {
1633 pw.print(prefix); pw.print("mPendingRelaunchCount="); pw.println(mPendingRelaunchCount);
Jorim Jaggi0429f352015-12-22 16:29:16 +01001634 }
Wale Ogunwale9c64cb62017-04-12 13:39:59 -07001635 if (getController() != null) {
1636 pw.print(prefix); pw.print("controller="); pw.println(getController());
1637 }
Wale Ogunwalee287e192017-04-21 09:30:12 -07001638 if (mRemovingFromDisplay) {
1639 pw.println(prefix + "mRemovingFromDisplay=" + mRemovingFromDisplay);
1640 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001641 }
1642
1643 @Override
1644 public String toString() {
1645 if (stringName == null) {
1646 StringBuilder sb = new StringBuilder();
1647 sb.append("AppWindowToken{");
1648 sb.append(Integer.toHexString(System.identityHashCode(this)));
1649 sb.append(" token="); sb.append(token); sb.append('}');
1650 stringName = sb.toString();
1651 }
Wale Ogunwaleba51ca22016-09-23 06:06:54 -07001652 return stringName + ((mIsExiting) ? " mIsExiting=" : "");
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001653 }
Jeff Browne9bdb312012-04-05 15:30:10 -07001654}