blob: 35494da34743b349c176c90483e41812ecea9ba9 [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 Ogunwale51362492016-09-08 17:49:17 -070020import static android.content.pm.ActivityInfo.SCREEN_ORIENTATION_UNSET;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -070021import static android.view.Display.DEFAULT_DISPLAY;
Wale Ogunwaled1c37912016-08-16 03:19:39 -070022import static android.view.WindowManager.LayoutParams.TYPE_APPLICATION;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080023import static android.view.WindowManager.LayoutParams.TYPE_APPLICATION_STARTING;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -070024import static android.view.WindowManager.LayoutParams.TYPE_BASE_APPLICATION;
Wale Ogunwale3f4433d2016-08-18 20:42:42 -070025import static android.view.WindowManagerPolicy.FINISH_LAYOUT_REDO_ANIM;
26import static android.view.WindowManagerPolicy.FINISH_LAYOUT_REDO_WALLPAPER;
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -080027import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_ANIM;
28import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_APP_TRANSITIONS;
Robert Carra1eb4392015-12-10 12:43:51 -080029import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_ADD_REMOVE;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -070030import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_LAYOUT_REPEATS;
31import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_ORIENTATION;
Wale Ogunwale9017ec02016-02-25 08:55:25 -080032import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_STARTING_WINDOW;
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -080033import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_VISIBILITY;
34import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_WINDOW_MOVEMENT;
35import static com.android.server.wm.WindowManagerDebugConfig.TAG_WITH_CLASS_NAME;
36import static com.android.server.wm.WindowManagerDebugConfig.TAG_WM;
Chong Zhang92147042016-05-09 12:47:11 -070037import static com.android.server.wm.WindowManagerService.H.NOTIFY_ACTIVITY_DRAWN;
Jorim Jaggi6626f542016-08-22 13:08:44 -070038import static com.android.server.wm.WindowStateAnimator.STACK_CLIP_NONE;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -070039import static com.android.server.wm.WindowManagerService.UPDATE_FOCUS_WILL_PLACE_SURFACES;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -070040import static com.android.server.wm.WindowManagerService.logWithStack;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080041
Jeff Brown4532e612012-04-05 14:27:12 -070042import com.android.server.input.InputApplicationHandle;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080043import com.android.server.wm.WindowManagerService.H;
44
Filip Gruszczynskia590c992015-11-25 16:45:26 -080045import android.annotation.NonNull;
Jorim Jaggi26c8c422016-05-09 19:57:25 -070046import android.content.res.Configuration;
Jorim Jaggi0429f352015-12-22 16:29:16 +010047import android.graphics.Rect;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -070048import android.os.Binder;
49import android.os.IBinder;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080050import android.os.Message;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -070051import android.os.SystemClock;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080052import android.util.Slog;
53import android.view.IApplicationToken;
54import android.view.View;
55import android.view.WindowManager;
Jorim Jaggi6626f542016-08-22 13:08:44 -070056import android.view.animation.Animation;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080057
58import java.io.PrintWriter;
Jorim Jaggi0429f352015-12-22 16:29:16 +010059import java.util.ArrayDeque;
Craig Mautnerb1fd65c02013-02-05 13:34:57 -080060import java.util.ArrayList;
61
62class AppTokenList extends ArrayList<AppWindowToken> {
63}
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080064
65/**
66 * Version of WindowToken that is specifically for a particular application (or
67 * really activity) that is displaying windows.
68 */
Wale Ogunwale3f4433d2016-08-18 20:42:42 -070069class AppWindowToken extends WindowToken implements WindowManagerService.AppFreezeListener {
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -080070 private static final String TAG = TAG_WITH_CLASS_NAME ? "AppWindowToken" : TAG_WM;
71
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080072 // Non-null only for application tokens.
73 final IApplicationToken appToken;
74
Filip Gruszczynskia590c992015-11-25 16:45:26 -080075 @NonNull final AppWindowAnimator mAppAnimator;
Craig Mautnerd09cc4b2012-04-04 10:23:31 -070076
Dianne Hackborne30e02f2014-05-27 18:24:45 -070077 final boolean voiceInteraction;
78
Craig Mautner83162a92015-01-26 14:43:30 -080079 Task mTask;
Wale Ogunwale51362492016-09-08 17:49:17 -070080 /** @see WindowContainer#fillsParent() */
81 private boolean mFillsParent;
Craig Mautner4c5eb222013-11-18 12:59:05 -080082 boolean layoutConfigChanges;
Wale Ogunwale6dfdfd62015-04-15 12:01:38 -070083 boolean showForAllUsers;
Yorke Lee0e852472016-06-15 10:03:18 -070084 int targetSdk;
Craig Mautnera2c77052012-03-26 12:14:43 -070085
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080086 // The input dispatching timeout for this application token in nanoseconds.
87 long inputDispatchingTimeoutNanos;
88
89 // These are used for determining when all windows associated with
90 // an activity have been drawn, so they can be made visible together
91 // at the same time.
Craig Mautner764983d2012-03-22 11:37:36 -070092 // initialize so that it doesn't match mTransactionSequence which is an int.
93 long lastTransactionSequence = Long.MIN_VALUE;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080094 int numInterestingWindows;
95 int numDrawnWindows;
96 boolean inPendingTransaction;
97 boolean allDrawn;
Craig Mautner7636dfb2012-11-16 15:24:11 -080098 // Set to true when this app creates a surface while in the middle of an animation. In that
99 // case do not clear allDrawn until the animation completes.
100 boolean deferClearAllDrawn;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800101
Chong Zhang8e4bda92016-05-04 15:08:18 -0700102 // These are to track the app's real drawing status if there were no saved surfaces.
103 boolean allDrawnExcludingSaved;
104 int numInterestingWindowsExcludingSaved;
Wale Ogunwale571771c2016-08-26 13:18:50 -0700105 int numDrawnWindowsExcludingSaved;
Chong Zhang8e4bda92016-05-04 15:08:18 -0700106
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800107 // Is this window's surface needed? This is almost like hidden, except
108 // it will sometimes be true a little earlier: when the token has
109 // been shown, but is still waiting for its app transition to execute
110 // before making its windows shown.
111 boolean hiddenRequested;
112
113 // Have we told the window clients to hide themselves?
114 boolean clientHidden;
115
116 // Last visibility state we reported to the app token.
117 boolean reportedVisible;
118
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700119 // Last drawn state we reported to the app token.
120 boolean reportedDrawn;
121
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800122 // Set to true when the token has been removed from the window mgr.
123 boolean removed;
124
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800125 // Information about an application starting window if displayed.
126 StartingData startingData;
127 WindowState startingWindow;
128 View startingView;
129 boolean startingDisplayed;
130 boolean startingMoved;
131 boolean firstWindowDrawn;
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700132 private final WindowState.UpdateReportedVisibilityResults mReportedVisibilityResults =
133 new WindowState.UpdateReportedVisibilityResults();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800134
135 // Input application handle used by the input dispatcher.
Jeff Brown9302c872011-07-13 22:51:29 -0700136 final InputApplicationHandle mInputApplicationHandle;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800137
Wale Ogunwale571771c2016-08-26 13:18:50 -0700138 // TODO: Have a WindowContainer state for tracking exiting/deferred removal.
Craig Mautner799bc1d2015-01-14 10:33:48 -0800139 boolean mIsExiting;
Craig Mautner9ef471f2014-02-07 13:11:47 -0800140
Craig Mautnerbb742462014-07-07 15:28:55 -0700141 boolean mLaunchTaskBehind;
Craig Mautner8746a472014-07-24 15:12:54 -0700142 boolean mEnteringAnimation;
Craig Mautnerbb742462014-07-07 15:28:55 -0700143
Wale Ogunwale6cae7652015-12-26 07:36:26 -0800144 boolean mAlwaysFocusable;
145
Robert Carre12aece2016-02-02 22:43:27 -0800146 boolean mAppStopped;
Robert Carrfd10cd12016-06-29 16:41:50 -0700147 int mRotationAnimationHint;
Chong Zhangd78ddb42016-03-02 17:01:14 -0800148 int mPendingRelaunchCount;
Robert Carre12aece2016-02-02 22:43:27 -0800149
Robert Carr91b228092016-06-28 17:32:37 -0700150 private ArrayList<WindowSurfaceController.SurfaceControlWithBackground> mSurfaceViewBackgrounds =
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700151 new ArrayList<>();
Robert Carr91b228092016-06-28 17:32:37 -0700152
Jorim Jaggi0429f352015-12-22 16:29:16 +0100153 ArrayDeque<Rect> mFrozenBounds = new ArrayDeque<>();
Jorim Jaggi26c8c422016-05-09 19:57:25 -0700154 ArrayDeque<Configuration> mFrozenMergedConfig = new ArrayDeque<>();
Jorim Jaggi0429f352015-12-22 16:29:16 +0100155
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700156 AppWindowToken(WindowManagerService service, IApplicationToken token, boolean _voiceInteraction) {
157 super(service, token != null ? token.asBinder() : null, TYPE_APPLICATION, true);
158 appToken = token;
Dianne Hackborne30e02f2014-05-27 18:24:45 -0700159 voiceInteraction = _voiceInteraction;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800160 mInputApplicationHandle = new InputApplicationHandle(this);
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700161 mAppAnimator = new AppWindowAnimator(this, service);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800162 }
163
Wale Ogunwale9017ec02016-02-25 08:55:25 -0800164 void onFirstWindowDrawn(WindowState win, WindowStateAnimator winAnimator) {
165 firstWindowDrawn = true;
166
167 // We now have a good window to show, remove dead placeholders
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700168 removeDeadWindows();
Wale Ogunwale9017ec02016-02-25 08:55:25 -0800169
170 if (startingData != null) {
171 if (DEBUG_STARTING_WINDOW || DEBUG_ANIM) Slog.v(TAG, "Finish starting "
172 + win.mToken + ": first real window is shown, no animation");
173 // If this initial window is animating, stop it -- we will do an animation to reveal
174 // it from behind the starting window, so there is no need for it to also be doing its
175 // own stuff.
176 winAnimator.clearAnimation();
177 winAnimator.mService.mFinishedStarting.add(this);
178 winAnimator.mService.mH.sendEmptyMessage(H.FINISHED_STARTING);
179 }
180 updateReportedVisibilityLocked();
181 }
182
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800183 void updateReportedVisibilityLocked() {
184 if (appToken == null) {
185 return;
186 }
187
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700188 if (DEBUG_VISIBILITY) Slog.v(TAG, "Update reported visibility: " + this);
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700189 final int count = mChildren.size();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800190
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700191 mReportedVisibilityResults.reset();
192
193 for (int i = 0; i < count; i++) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700194 final WindowState win = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700195 win.updateReportedVisibility(mReportedVisibilityResults);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800196 }
197
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700198 int numInteresting = mReportedVisibilityResults.numInteresting;
199 int numVisible = mReportedVisibilityResults.numVisible;
200 int numDrawn = mReportedVisibilityResults.numDrawn;
201 boolean nowGone = mReportedVisibilityResults.nowGone;
202
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700203 boolean nowDrawn = numInteresting > 0 && numDrawn >= numInteresting;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800204 boolean nowVisible = numInteresting > 0 && numVisible >= numInteresting;
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700205 if (!nowGone) {
206 // If the app is not yet gone, then it can only become visible/drawn.
207 if (!nowDrawn) {
208 nowDrawn = reportedDrawn;
209 }
210 if (!nowVisible) {
211 nowVisible = reportedVisible;
212 }
213 }
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800214 if (DEBUG_VISIBILITY) Slog.v(TAG, "VIS " + this + ": interesting="
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800215 + numInteresting + " visible=" + numVisible);
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700216 if (nowDrawn != reportedDrawn) {
217 if (nowDrawn) {
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700218 mService.mH.obtainMessage(H.REPORT_APPLICATION_TOKEN_DRAWN, this).sendToTarget();
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700219 }
220 reportedDrawn = nowDrawn;
221 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800222 if (nowVisible != reportedVisible) {
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700223 if (DEBUG_VISIBILITY) Slog.v(TAG,
224 "Visibility changed in " + this + ": vis=" + nowVisible);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800225 reportedVisible = nowVisible;
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700226 mService.mH.obtainMessage(H.REPORT_APPLICATION_TOKEN_WINDOWS,
227 nowVisible ? 1 : 0, nowGone ? 1 : 0, this).sendToTarget();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800228 }
229 }
230
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700231 boolean setVisibility(WindowManager.LayoutParams lp,
232 boolean visible, int transit, boolean performLayout, boolean isVoiceInteraction) {
233
234 boolean delayed = false;
235 inPendingTransaction = false;
236
237 if (clientHidden == visible) {
238 clientHidden = !visible;
239 sendAppVisibilityToClients();
240 }
241
242 // Allow for state changes and animation to be applied if:
243 // * token is transitioning visibility state
244 // * or the token was marked as hidden and is exiting before we had a chance to play the
245 // transition animation
246 // * or this is an opening app and windows are being replaced.
247 boolean visibilityChanged = false;
248 if (hidden == visible || (hidden && mIsExiting) || (visible && waitingForReplacement())) {
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700249 final AccessibilityController accessibilityController = mService.mAccessibilityController;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700250 boolean changed = false;
251 if (DEBUG_APP_TRANSITIONS) Slog.v(TAG_WM,
252 "Changing app " + this + " hidden=" + hidden + " performLayout=" + performLayout);
253
254 boolean runningAppAnimation = false;
255
256 if (transit != AppTransition.TRANSIT_UNSET) {
257 if (mAppAnimator.animation == AppWindowAnimator.sDummyAnimation) {
258 mAppAnimator.setNullAnimation();
259 }
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700260 if (mService.applyAnimationLocked(this, lp, transit, visible, isVoiceInteraction)) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700261 delayed = runningAppAnimation = true;
262 }
263 final WindowState window = findMainWindow();
264 //TODO (multidisplay): Magnification is supported only for the default display.
265 if (window != null && accessibilityController != null
266 && window.getDisplayId() == DEFAULT_DISPLAY) {
267 accessibilityController.onAppWindowTransitionLocked(window, transit);
268 }
269 changed = true;
270 }
271
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700272 final int windowsCount = mChildren.size();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700273 for (int i = 0; i < windowsCount; i++) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700274 final WindowState win = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700275 changed |= win.onAppVisibilityChanged(visible, runningAppAnimation);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700276 }
277
278 hidden = hiddenRequested = !visible;
279 visibilityChanged = true;
280 if (!visible) {
281 stopFreezingScreen(true, true);
282 } else {
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700283 // If we are being set visible, and the starting window is not yet displayed,
284 // then make sure it doesn't get displayed.
285 if (startingWindow != null && !startingWindow.isDrawnLw()) {
286 startingWindow.mPolicyVisibility = false;
287 startingWindow.mPolicyVisibilityAfterAnim = false;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700288 }
289 }
290
291 if (DEBUG_APP_TRANSITIONS) Slog.v(TAG_WM, "setVisibility: " + this
292 + ": hidden=" + hidden + " hiddenRequested=" + hiddenRequested);
293
294 if (changed) {
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700295 mService.mInputMonitor.setUpdateInputWindowsNeededLw();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700296 if (performLayout) {
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700297 mService.updateFocusedWindowLocked(UPDATE_FOCUS_WILL_PLACE_SURFACES,
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700298 false /*updateInputWindows*/);
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700299 mService.mWindowPlacerLocked.performSurfacePlacement();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700300 }
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700301 mService.mInputMonitor.updateInputWindowsLw(false /*force*/);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700302 }
303 }
304
305 if (mAppAnimator.animation != null) {
306 delayed = true;
307 }
308
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700309 for (int i = mChildren.size() - 1; i >= 0 && !delayed; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700310 if ((mChildren.get(i)).isWindowAnimationSet()) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700311 delayed = true;
312 }
313 }
314
315 if (visibilityChanged) {
316 if (visible && !delayed) {
317 // The token was made immediately visible, there will be no entrance animation.
318 // We need to inform the client the enter animation was finished.
319 mEnteringAnimation = true;
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700320 mService.mActivityManagerAppTransitionNotifier.onAppTransitionFinishedLocked(token);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700321 }
322
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700323 if (!mService.mClosingApps.contains(this) && !mService.mOpeningApps.contains(this)) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700324 // The token is not closing nor opening, so even if there is an animation set, that
325 // doesn't mean that it goes through the normal app transition cycle so we have
326 // to inform the docked controller about visibility change.
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700327 mService.getDefaultDisplayContentLocked().getDockedDividerController()
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700328 .notifyAppVisibilityChanged();
329 }
330 }
331
332 return delayed;
333 }
334
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800335 WindowState findMainWindow() {
Filip Gruszczynski55a309f2015-09-04 17:15:01 -0700336 WindowState candidate = null;
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700337 int j = mChildren.size();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800338 while (j > 0) {
339 j--;
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700340 final WindowState win = mChildren.get(j);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700341 final int type = win.mAttrs.type;
342 // No need to loop through child window as base application and starting types can't be
343 // child windows.
344 if (type == TYPE_BASE_APPLICATION || type == TYPE_APPLICATION_STARTING) {
Filip Gruszczynski55a309f2015-09-04 17:15:01 -0700345 // In cases where there are multiple windows, we prefer the non-exiting window. This
Sungsoo Lim0d3d1f82015-12-02 14:47:59 +0900346 // happens for example when replacing windows during an activity relaunch. When
Filip Gruszczynski55a309f2015-09-04 17:15:01 -0700347 // constructing the animation, we want the new window, not the exiting one.
Wale Ogunwalec48a3542016-02-19 15:18:45 -0800348 if (win.mAnimatingExit) {
Filip Gruszczynski55a309f2015-09-04 17:15:01 -0700349 candidate = win;
350 } else {
351 return win;
352 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800353 }
354 }
Filip Gruszczynski55a309f2015-09-04 17:15:01 -0700355 return candidate;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800356 }
357
Wale Ogunwale6cae7652015-12-26 07:36:26 -0800358 boolean windowsAreFocusable() {
359 return StackId.canReceiveKeys(mTask.mStack.mStackId) || mAlwaysFocusable;
Wale Ogunwaled045c822015-12-02 09:14:28 -0800360 }
361
Wale Ogunwale571771c2016-08-26 13:18:50 -0700362 @Override
Wale Ogunwale44f21802016-09-02 12:49:48 -0700363 boolean isVisible() {
364 if (hidden) {
365 // TODO: Should this be checking hiddenRequested instead of hidden?
366 return false;
367 }
368 return super.isVisible();
369 }
370
371 @Override
Wale Ogunwale571771c2016-08-26 13:18:50 -0700372 void removeIfPossible() {
Craig Mautnere3119b72015-01-20 15:02:36 -0800373 mIsExiting = false;
374 removeAllWindows();
Wale Ogunwale571771c2016-08-26 13:18:50 -0700375 if (mTask != null) {
376 mTask.detachChild(this);
Craig Mautnere3119b72015-01-20 15:02:36 -0800377 }
378 }
379
Wale Ogunwale3f4433d2016-08-18 20:42:42 -0700380 @Override
381 boolean checkCompleteDeferredRemoval() {
382 if (mIsExiting) {
383 removeIfPossible();
384 }
385 return super.checkCompleteDeferredRemoval();
386 }
387
Chong Zhange05bcb12016-07-26 17:47:29 -0700388 void clearAnimatingFlags() {
Chong Zhangb0d26702016-08-12 16:03:29 -0700389 boolean wallpaperMightChange = false;
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700390 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700391 final WindowState win = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700392 wallpaperMightChange |= win.clearAnimatingFlags();
Chong Zhange05bcb12016-07-26 17:47:29 -0700393 }
Chong Zhangb0d26702016-08-12 16:03:29 -0700394 if (wallpaperMightChange) {
395 requestUpdateWallpaperIfNeeded();
396 }
Chong Zhange05bcb12016-07-26 17:47:29 -0700397 }
398
Robert Carre12aece2016-02-02 22:43:27 -0800399 void destroySurfaces() {
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700400 destroySurfaces(false /*cleanupOnResume*/);
401 }
402
403 /**
404 * Destroy surfaces which have been marked as eligible by the animator, taking care to ensure
405 * the client has finished with them.
406 *
407 * @param cleanupOnResume whether this is done when app is resumed without fully stopped. If
408 * set to true, destroy only surfaces of removed windows, and clear relevant flags of the
409 * others so that they are ready to be reused. If set to false (common case), destroy all
410 * surfaces that's eligible, if the app is already stopped.
411 */
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700412 private void destroySurfaces(boolean cleanupOnResume) {
Robert Carre12aece2016-02-02 22:43:27 -0800413 final DisplayContentList displayList = new DisplayContentList();
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700414 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700415 final WindowState win = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700416 final boolean destroyed = win.destroySurface(cleanupOnResume, mAppStopped);
Chong Zhangeb665572016-05-09 18:28:27 -0700417
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700418 if (destroyed) {
419 final DisplayContent displayContent = win.getDisplayContent();
420 if (displayContent != null && !displayList.contains(displayContent)) {
421 displayList.add(displayContent);
422 }
Robert Carre12aece2016-02-02 22:43:27 -0800423 }
Robert Carre12aece2016-02-02 22:43:27 -0800424 }
425 for (int i = 0; i < displayList.size(); i++) {
426 final DisplayContent displayContent = displayList.get(i);
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700427 mService.mLayersController.assignLayersLocked(displayContent.getWindowList());
Robert Carre12aece2016-02-02 22:43:27 -0800428 displayContent.layoutNeeded = true;
429 }
430 }
431
Wale Ogunwale8d5a5422016-03-03 18:28:21 -0800432 /**
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700433 * Notify that the app is now resumed, and it was not stopped before, perform a clean
434 * up of the surfaces
Wale Ogunwale8d5a5422016-03-03 18:28:21 -0800435 */
Chong Zhangad24f962016-08-25 12:12:33 -0700436 void notifyAppResumed(boolean wasStopped, boolean allowSavedSurface) {
437 if (DEBUG_ADD_REMOVE) Slog.v(TAG, "notifyAppResumed: wasStopped=" + wasStopped
438 + " allowSavedSurface=" + allowSavedSurface + " " + this);
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700439 mAppStopped = false;
440 if (!wasStopped) {
441 destroySurfaces(true /*cleanupOnResume*/);
Wale Ogunwale8d5a5422016-03-03 18:28:21 -0800442 }
Chong Zhangad24f962016-08-25 12:12:33 -0700443 if (!allowSavedSurface) {
444 destroySavedSurfaces();
445 }
Robert Carre12aece2016-02-02 22:43:27 -0800446 }
447
Chong Zhangbef461f2015-10-27 11:38:24 -0700448 /**
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700449 * Notify that the app has stopped, and it is okay to destroy any surfaces which were
450 * keeping alive in case they were still being used.
451 */
452 void notifyAppStopped() {
453 if (DEBUG_ADD_REMOVE) Slog.v(TAG, "notifyAppStopped: " + this);
454 mAppStopped = true;
455 destroySurfaces();
456 // Remove any starting window that was added for this app if they are still around.
457 mTask.mService.scheduleRemoveStartingWindowLocked(this);
458 }
459
460 /**
Chong Zhangbef461f2015-10-27 11:38:24 -0700461 * Checks whether we should save surfaces for this app.
462 *
463 * @return true if the surfaces should be saved, false otherwise.
464 */
465 boolean shouldSaveSurface() {
Chong Zhangbfc2f8f2016-01-29 15:50:34 -0800466 // We want to save surface if the app's windows are "allDrawn".
467 // (If we started entering animation early with saved surfaces, allDrawn
468 // should have been restored to true. So we'll save again in that case
469 // even if app didn't actually finish drawing.)
470 return allDrawn;
Robert Carr13f7be9e2015-12-02 18:39:45 -0800471 }
472
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700473 private boolean canRestoreSurfaces() {
474 for (int i = mChildren.size() -1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700475 final WindowState w = mChildren.get(i);
Chong Zhang92147042016-05-09 12:47:11 -0700476 if (w.canRestoreSurface()) {
Robert Carr13f7be9e2015-12-02 18:39:45 -0800477 return true;
478 }
Chong Zhangbef461f2015-10-27 11:38:24 -0700479 }
480 return false;
481 }
482
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700483 private void clearWasVisibleBeforeClientHidden() {
484 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700485 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700486 w.clearWasVisibleBeforeClientHidden();
Chong Zhang92147042016-05-09 12:47:11 -0700487 }
488 }
489
Chong Zhang8e4bda92016-05-04 15:08:18 -0700490 /**
491 * Whether the app has some window that is invisible in layout, but
492 * animating with saved surface.
493 */
494 boolean isAnimatingInvisibleWithSavedSurface() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700495 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700496 final WindowState w = mChildren.get(i);
Chong Zhang8e4bda92016-05-04 15:08:18 -0700497 if (w.isAnimatingInvisibleWithSavedSurface()) {
498 return true;
499 }
500 }
501 return false;
502 }
503
504 /**
505 * Hide all window surfaces that's still invisible in layout but animating
506 * with a saved surface, and mark them destroying.
507 */
508 void stopUsingSavedSurfaceLocked() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700509 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700510 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700511 w.stopUsingSavedSurface();
Chong Zhang8e4bda92016-05-04 15:08:18 -0700512 }
513 destroySurfaces();
514 }
515
Chong Zhangf58631a2016-05-24 16:02:10 -0700516 void markSavedSurfaceExiting() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700517 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700518 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700519 w.markSavedSurfaceExiting();
Chong Zhangf58631a2016-05-24 16:02:10 -0700520 }
521 }
522
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700523 void restoreSavedSurfaceForInterestingWindows() {
Chong Zhang92147042016-05-09 12:47:11 -0700524 if (!canRestoreSurfaces()) {
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700525 clearWasVisibleBeforeClientHidden();
Chong Zhangbef461f2015-10-27 11:38:24 -0700526 return;
527 }
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700528
529 // Check if all interesting windows are drawn and we can mark allDrawn=true.
530 int interestingNotDrawn = -1;
531
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700532 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700533 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700534 interestingNotDrawn = w.restoreSavedSurfaceForInterestingWindow();
Chong Zhangbef461f2015-10-27 11:38:24 -0700535 }
Chong Zhangbfc2f8f2016-01-29 15:50:34 -0800536
Chong Zhang92147042016-05-09 12:47:11 -0700537 if (!allDrawn) {
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700538 allDrawn = (interestingNotDrawn == 0);
Chong Zhang92147042016-05-09 12:47:11 -0700539 if (allDrawn) {
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700540 mService.mH.obtainMessage(NOTIFY_ACTIVITY_DRAWN, token).sendToTarget();
Chong Zhang92147042016-05-09 12:47:11 -0700541 }
542 }
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700543 clearWasVisibleBeforeClientHidden();
Chong Zhangbfc2f8f2016-01-29 15:50:34 -0800544
545 if (DEBUG_APP_TRANSITIONS || DEBUG_ANIM) Slog.d(TAG,
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700546 "restoreSavedSurfaceForInterestingWindows: " + this + " allDrawn=" + allDrawn
547 + " interestingNotDrawn=" + interestingNotDrawn);
Chong Zhangbef461f2015-10-27 11:38:24 -0700548 }
549
550 void destroySavedSurfaces() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700551 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700552 final WindowState win = mChildren.get(i);
Robert Carr13f7be9e2015-12-02 18:39:45 -0800553 win.destroySavedSurface();
Chong Zhangbef461f2015-10-27 11:38:24 -0700554 }
Chong Zhang92147042016-05-09 12:47:11 -0700555 }
556
557 void clearAllDrawn() {
558 allDrawn = false;
559 deferClearAllDrawn = false;
Chong Zhang8e4bda92016-05-04 15:08:18 -0700560 allDrawnExcludingSaved = false;
Chong Zhangbef461f2015-10-27 11:38:24 -0700561 }
562
Wale Ogunwale98e70d02014-11-10 12:12:27 -0800563 @Override
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700564 void removeWindow(WindowState win) {
565 super.removeWindow(win);
566
Wale Ogunwale92fc3722016-08-05 12:19:08 -0700567 // TODO: Something smells about the code below...Is there a better way?
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700568 if (startingWindow == win) {
569 if (DEBUG_STARTING_WINDOW) Slog.v(TAG_WM, "Notify removed startingWindow " + win);
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700570 mService.scheduleRemoveStartingWindowLocked(this);
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700571 } else if (mChildren.size() == 0 && startingData != null) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700572 // If this is the last window and we had requested a starting transition window,
573 // well there is no point now.
574 if (DEBUG_STARTING_WINDOW) Slog.v(TAG_WM, "Nulling last startingWindow");
575 startingData = null;
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700576 } else if (mChildren.size() == 1 && startingView != null) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700577 // If this is the last window except for a starting transition window,
578 // we need to get rid of the starting transition.
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700579 mService.scheduleRemoveStartingWindowLocked(this);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700580 }
581 }
582
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700583 void removeDeadWindows() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700584 for (int winNdx = mChildren.size() - 1; winNdx >= 0; --winNdx) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700585 WindowState win = mChildren.get(winNdx);
Chong Zhang112eb8c2015-11-02 11:17:00 -0800586 if (win.mAppDied) {
Wale Ogunwale92fc3722016-08-05 12:19:08 -0700587 if (DEBUG_WINDOW_MOVEMENT || DEBUG_ADD_REMOVE) Slog.w(TAG,
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700588 "removeDeadWindows: " + win);
Chong Zhang112eb8c2015-11-02 11:17:00 -0800589 // Set mDestroying, we don't want any animation or delayed removal here.
590 win.mDestroying = true;
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700591 // Also removes child windows.
Wale Ogunwale92fc3722016-08-05 12:19:08 -0700592 win.removeIfPossible();
Chong Zhang112eb8c2015-11-02 11:17:00 -0800593 }
594 }
595 }
596
Wale Ogunwalee42d0e12016-05-02 16:40:59 -0700597 boolean hasWindowsAlive() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700598 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700599 // No need to loop through child windows as the answer should be the same as that of the
600 // parent window.
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700601 if (!(mChildren.get(i)).mAppDied) {
Wale Ogunwalee42d0e12016-05-02 16:40:59 -0700602 return true;
603 }
604 }
605 return false;
606 }
607
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700608 void setWillReplaceWindows(boolean animate) {
Wale Ogunwale455fac52016-07-21 07:24:49 -0700609 if (DEBUG_ADD_REMOVE) Slog.d(TAG_WM,
610 "Marking app token " + this + " with replacing windows.");
Robert Carra1eb4392015-12-10 12:43:51 -0800611
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700612 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700613 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700614 w.setWillReplaceWindow(animate);
Robert Carra1eb4392015-12-10 12:43:51 -0800615 }
616 if (animate) {
617 // Set-up dummy animation so we can start treating windows associated with this
618 // token like they are in transition before the new app window is ready for us to
619 // run the real transition animation.
620 if (DEBUG_APP_TRANSITIONS) Slog.v(TAG_WM,
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700621 "setWillReplaceWindow() Setting dummy animation on: " + this);
Robert Carra1eb4392015-12-10 12:43:51 -0800622 mAppAnimator.setDummyAnimation();
623 }
624 }
625
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700626 void setWillReplaceChildWindows() {
Wale Ogunwale455fac52016-07-21 07:24:49 -0700627 if (DEBUG_ADD_REMOVE) Slog.d(TAG_WM, "Marking app token " + this
Robert Carr23fa16b2016-01-13 13:19:58 -0800628 + " with replacing child windows.");
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700629 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700630 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700631 w.setWillReplaceChildWindows();
Robert Carr23fa16b2016-01-13 13:19:58 -0800632 }
633 }
634
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700635 void clearWillReplaceWindows() {
Wale Ogunwale455fac52016-07-21 07:24:49 -0700636 if (DEBUG_ADD_REMOVE) Slog.d(TAG_WM,
637 "Resetting app token " + this + " of replacing window marks.");
Chong Zhangf596cd52016-01-05 13:42:44 -0800638
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700639 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700640 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700641 w.clearWillReplaceWindow();
Chong Zhangf596cd52016-01-05 13:42:44 -0800642 }
643 }
644
Chong Zhang4d7369a2016-04-25 16:09:14 -0700645 void requestUpdateWallpaperIfNeeded() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700646 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700647 final WindowState w = mChildren.get(i);
Chong Zhang4d7369a2016-04-25 16:09:14 -0700648 w.requestUpdateWallpaperIfNeeded();
649 }
650 }
651
Chong Zhangd78ddb42016-03-02 17:01:14 -0800652 boolean isRelaunching() {
653 return mPendingRelaunchCount > 0;
654 }
655
656 void startRelaunching() {
657 if (canFreezeBounds()) {
658 freezeBounds();
659 }
660 mPendingRelaunchCount++;
661 }
662
663 void finishRelaunching() {
664 if (canFreezeBounds()) {
665 unfreezeBounds();
666 }
667 if (mPendingRelaunchCount > 0) {
668 mPendingRelaunchCount--;
669 }
670 }
671
Wale Ogunwale8fd75422016-06-24 14:20:37 -0700672 void clearRelaunching() {
Wale Ogunwale37dbafc2016-06-27 10:15:20 -0700673 if (mPendingRelaunchCount == 0) {
674 return;
675 }
Wale Ogunwale8fd75422016-06-24 14:20:37 -0700676 if (canFreezeBounds()) {
677 unfreezeBounds();
678 }
679 mPendingRelaunchCount = 0;
680 }
681
Wale Ogunwale92fc3722016-08-05 12:19:08 -0700682 @Override
Robert Carra1eb4392015-12-10 12:43:51 -0800683 void addWindow(WindowState w) {
Wale Ogunwale92fc3722016-08-05 12:19:08 -0700684 super.addWindow(w);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700685
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700686 boolean gotReplacementWindow = false;
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 candidate = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700689 gotReplacementWindow |= candidate.setReplacementWindowIfNeeded(w);
690 }
Wale Ogunwale92fc3722016-08-05 12:19:08 -0700691
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700692 // if we got a replacement window, reset the timeout to give drawing more time
693 if (gotReplacementWindow) {
694 mService.scheduleWindowReplacementTimeouts(this);
Robert Carra1eb4392015-12-10 12:43:51 -0800695 }
Robert Carra1eb4392015-12-10 12:43:51 -0800696 }
697
698 boolean waitingForReplacement() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700699 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700700 final WindowState candidate = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700701 if (candidate.waitingForReplacement()) {
Robert Carra1eb4392015-12-10 12:43:51 -0800702 return true;
703 }
704 }
705 return false;
706 }
707
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700708 void onWindowReplacementTimeout() {
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 (mChildren.get(i)).onWindowReplacementTimeout();
Robert Carra1eb4392015-12-10 12:43:51 -0800711 }
712 }
713
Chong Zhangd78ddb42016-03-02 17:01:14 -0800714 private boolean canFreezeBounds() {
715 // For freeform windows, we can't freeze the bounds at the moment because this would make
716 // the resizing unresponsive.
717 return mTask != null && !mTask.inFreeformWorkspace();
718 }
719
Jorim Jaggi0429f352015-12-22 16:29:16 +0100720 /**
721 * Freezes the task bounds. The size of this task reported the app will be fixed to the bounds
722 * freezed by {@link Task#prepareFreezingBounds} until {@link #unfreezeBounds} gets called, even
723 * if they change in the meantime. If the bounds are already frozen, the bounds will be frozen
724 * with a queue.
725 */
Chong Zhangd78ddb42016-03-02 17:01:14 -0800726 private void freezeBounds() {
Jorim Jaggi0429f352015-12-22 16:29:16 +0100727 mFrozenBounds.offer(new Rect(mTask.mPreparedFrozenBounds));
Jorim Jaggi26c8c422016-05-09 19:57:25 -0700728
729 if (mTask.mPreparedFrozenMergedConfig.equals(Configuration.EMPTY)) {
730 // We didn't call prepareFreezingBounds on the task, so use the current value.
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700731 final Configuration config = new Configuration(mService.mCurConfiguration);
Jorim Jaggi26c8c422016-05-09 19:57:25 -0700732 config.updateFrom(mTask.mOverrideConfig);
733 mFrozenMergedConfig.offer(config);
734 } else {
735 mFrozenMergedConfig.offer(new Configuration(mTask.mPreparedFrozenMergedConfig));
736 }
737 mTask.mPreparedFrozenMergedConfig.setToDefaults();
Jorim Jaggi0429f352015-12-22 16:29:16 +0100738 }
739
740 /**
741 * Unfreezes the previously frozen bounds. See {@link #freezeBounds}.
742 */
Chong Zhangd78ddb42016-03-02 17:01:14 -0800743 private void unfreezeBounds() {
Wale Ogunwale37dbafc2016-06-27 10:15:20 -0700744 if (!mFrozenBounds.isEmpty()) {
745 mFrozenBounds.remove();
746 }
747 if (!mFrozenMergedConfig.isEmpty()) {
748 mFrozenMergedConfig.remove();
749 }
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700750 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700751 final WindowState win = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700752 win.onUnfreezeBounds();
Jorim Jaggi4846ee32016-01-07 17:39:12 +0100753 }
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700754 mService.mWindowPlacerLocked.performSurfacePlacement();
Jorim Jaggi0429f352015-12-22 16:29:16 +0100755 }
756
Robert Carr91b228092016-06-28 17:32:37 -0700757 void addSurfaceViewBackground(WindowSurfaceController.SurfaceControlWithBackground background) {
758 mSurfaceViewBackgrounds.add(background);
759 }
760
761 void removeSurfaceViewBackground(WindowSurfaceController.SurfaceControlWithBackground background) {
762 mSurfaceViewBackgrounds.remove(background);
763 updateSurfaceViewBackgroundVisibilities();
764 }
765
766 // We use DimLayers behind SurfaceViews to prevent holes while resizing and creating.
767 // However, we need to ensure one SurfaceView doesn't cover another when they are both placed
768 // below the main app window (as traditionally a SurfaceView which is never drawn
769 // to is totally translucent). So we look at all our SurfaceView backgrounds and only enable
770 // the background for the SurfaceView with lowest Z order
771 void updateSurfaceViewBackgroundVisibilities() {
772 WindowSurfaceController.SurfaceControlWithBackground bottom = null;
773 int bottomLayer = Integer.MAX_VALUE;
774 for (int i = 0; i < mSurfaceViewBackgrounds.size(); i++) {
775 WindowSurfaceController.SurfaceControlWithBackground sc = mSurfaceViewBackgrounds.get(i);
776 if (sc.mVisible && sc.mLayer < bottomLayer) {
777 bottomLayer = sc.mLayer;
778 bottom = sc;
779 }
780 }
781 for (int i = 0; i < mSurfaceViewBackgrounds.size(); i++) {
782 WindowSurfaceController.SurfaceControlWithBackground sc = mSurfaceViewBackgrounds.get(i);
783 sc.updateBackgroundVisibility(sc != bottom);
784 }
785 }
786
Jorim Jaggi6626f542016-08-22 13:08:44 -0700787 /**
788 * See {@link WindowManagerService#overridePlayingAppAnimationsLw}
789 */
790 void overridePlayingAppAnimations(Animation a) {
791 if (mAppAnimator.isAnimating()) {
792 final WindowState win = findMainWindow();
793 final int width = win.mContainingFrame.width();
794 final int height = win.mContainingFrame.height();
795 mAppAnimator.setAnimation(a, width, height, false, STACK_CLIP_NONE);
796 }
797 }
798
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700799 void resetJustMovedInStack() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700800 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700801 (mChildren.get(i)).resetJustMovedInStack();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700802 }
803 }
804
805 void notifyMovedInStack() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700806 for (int winNdx = mChildren.size() - 1; winNdx >= 0; --winNdx) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700807 final WindowState win = mChildren.get(winNdx);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700808 win.notifyMovedInStack();
809 }
810 }
811
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700812 void setAppLayoutChanges(int changes, String reason, int displayId) {
813 final WindowAnimator windowAnimator = mAppAnimator.mAnimator;
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700814 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700815 // Child windows will be on the same display as their parents.
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700816 if (displayId == (mChildren.get(i)).getDisplayId()) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700817 windowAnimator.setPendingLayoutChanges(displayId, changes);
818 if (DEBUG_LAYOUT_REPEATS) {
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700819 mService.mWindowPlacerLocked.debugLayoutRepeats(
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700820 reason, windowAnimator.getPendingLayoutChanges(displayId));
821 }
822 break;
823 }
824 }
825 }
826
827 void removeReplacedWindowIfNeeded(WindowState replacement) {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700828 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700829 final WindowState win = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700830 if (win.removeReplacedWindowIfNeeded(replacement)) {
831 return;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700832 }
833 }
834 }
835
836 void startFreezingScreen() {
837 if (DEBUG_ORIENTATION) logWithStack(TAG, "Set freezing of " + appToken + ": hidden="
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700838 + hidden + " freezing=" + mAppAnimator.freezingScreen + " hiddenRequested="
839 + hiddenRequested);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700840 if (!hiddenRequested) {
841 if (!mAppAnimator.freezingScreen) {
842 mAppAnimator.freezingScreen = true;
Wale Ogunwale3f4433d2016-08-18 20:42:42 -0700843 mService.registerAppFreezeListener(this);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700844 mAppAnimator.lastFreezeDuration = 0;
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700845 mService.mAppsFreezingScreen++;
846 if (mService.mAppsFreezingScreen == 1) {
847 mService.startFreezingDisplayLocked(false, 0, 0);
848 mService.mH.removeMessages(H.APP_FREEZE_TIMEOUT);
849 mService.mH.sendEmptyMessageDelayed(H.APP_FREEZE_TIMEOUT, 2000);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700850 }
851 }
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700852 final int count = mChildren.size();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700853 for (int i = 0; i < count; i++) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700854 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700855 w.onStartFreezingScreen();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700856 }
857 }
858 }
859
860 void stopFreezingScreen(boolean unfreezeSurfaceNow, boolean force) {
861 if (!mAppAnimator.freezingScreen) {
862 return;
863 }
864 if (DEBUG_ORIENTATION) Slog.v(TAG_WM, "Clear freezing of " + this + " force=" + force);
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700865 final int count = mChildren.size();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700866 boolean unfrozeWindows = false;
867 for (int i = 0; i < count; i++) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700868 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700869 unfrozeWindows |= w.onStopFreezingScreen();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700870 }
871 if (force || unfrozeWindows) {
872 if (DEBUG_ORIENTATION) Slog.v(TAG_WM, "No longer freezing: " + this);
873 mAppAnimator.freezingScreen = false;
Wale Ogunwale3f4433d2016-08-18 20:42:42 -0700874 mService.unregisterAppFreezeListener(this);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700875 mAppAnimator.lastFreezeDuration =
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700876 (int)(SystemClock.elapsedRealtime() - mService.mDisplayFreezeTime);
877 mService.mAppsFreezingScreen--;
878 mService.mLastFinishedFreezeSource = this;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700879 }
880 if (unfreezeSurfaceNow) {
881 if (unfrozeWindows) {
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700882 mService.mWindowPlacerLocked.performSurfacePlacement();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700883 }
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700884 mService.stopFreezingDisplayLocked();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700885 }
886 }
887
Wale Ogunwale3f4433d2016-08-18 20:42:42 -0700888 @Override
889 public void onAppFreezeTimeout() {
890 Slog.w(TAG_WM, "Force clearing freeze: " + this);
891 stopFreezingScreen(true, true);
892 }
893
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700894 boolean transferStartingWindow(IBinder transferFrom) {
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700895 final AppWindowToken fromToken = mService.findAppWindowToken(transferFrom);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700896 if (fromToken == null) {
897 return false;
898 }
899
900 final WindowState tStartingWindow = fromToken.startingWindow;
901 if (tStartingWindow != null && fromToken.startingView != null) {
902 // In this case, the starting icon has already been displayed, so start
903 // letting windows get shown immediately without any more transitions.
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700904 mService.mSkipAppTransitionAnimation = true;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700905
906 if (DEBUG_STARTING_WINDOW) Slog.v(TAG_WM, "Moving existing starting " + tStartingWindow
907 + " from " + fromToken + " to " + this);
908
909 final long origId = Binder.clearCallingIdentity();
910
911 // Transfer the starting window over to the new token.
912 startingData = fromToken.startingData;
913 startingView = fromToken.startingView;
914 startingDisplayed = fromToken.startingDisplayed;
915 fromToken.startingDisplayed = false;
916 startingWindow = tStartingWindow;
917 reportedVisible = fromToken.reportedVisible;
918 fromToken.startingData = null;
919 fromToken.startingView = null;
920 fromToken.startingWindow = null;
921 fromToken.startingMoved = true;
922 tStartingWindow.mToken = this;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700923 tStartingWindow.mAppToken = this;
924
925 if (DEBUG_WINDOW_MOVEMENT || DEBUG_ADD_REMOVE || DEBUG_STARTING_WINDOW) Slog.v(TAG_WM,
926 "Removing starting window: " + tStartingWindow);
927 tStartingWindow.getWindowList().remove(tStartingWindow);
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700928 mService.mWindowsChanged = true;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700929 if (DEBUG_ADD_REMOVE) Slog.v(TAG_WM,
930 "Removing starting " + tStartingWindow + " from " + fromToken);
931 fromToken.removeWindow(tStartingWindow);
Wale Ogunwale92fc3722016-08-05 12:19:08 -0700932 addWindow(tStartingWindow);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700933
934 // Propagate other interesting state between the tokens. If the old token is displayed,
935 // we should immediately force the new one to be displayed. If it is animating, we need
936 // to move that animation to the new one.
937 if (fromToken.allDrawn) {
938 allDrawn = true;
939 deferClearAllDrawn = fromToken.deferClearAllDrawn;
940 }
941 if (fromToken.firstWindowDrawn) {
942 firstWindowDrawn = true;
943 }
944 if (!fromToken.hidden) {
945 hidden = false;
946 hiddenRequested = false;
947 }
948 if (clientHidden != fromToken.clientHidden) {
949 clientHidden = fromToken.clientHidden;
950 sendAppVisibilityToClients();
951 }
952 fromToken.mAppAnimator.transferCurrentAnimation(
953 mAppAnimator, tStartingWindow.mWinAnimator);
954
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700955 mService.updateFocusedWindowLocked(
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700956 UPDATE_FOCUS_WILL_PLACE_SURFACES, true /*updateInputWindows*/);
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700957 mService.getDefaultDisplayContentLocked().layoutNeeded = true;
958 mService.mWindowPlacerLocked.performSurfacePlacement();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700959 Binder.restoreCallingIdentity(origId);
960 return true;
961 } else if (fromToken.startingData != null) {
962 // The previous app was getting ready to show a
963 // starting window, but hasn't yet done so. Steal it!
964 if (DEBUG_STARTING_WINDOW) Slog.v(TAG_WM,
965 "Moving pending starting from " + fromToken + " to " + this);
966 startingData = fromToken.startingData;
967 fromToken.startingData = null;
968 fromToken.startingMoved = true;
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700969 final Message m = mService.mH.obtainMessage(H.ADD_STARTING, this);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700970 // Note: we really want to do sendMessageAtFrontOfQueue() because we want to process the
971 // message ASAP, before any other queued messages.
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700972 mService.mH.sendMessageAtFrontOfQueue(m);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700973 return true;
974 }
975
976 final AppWindowAnimator tAppAnimator = fromToken.mAppAnimator;
977 final AppWindowAnimator wAppAnimator = mAppAnimator;
978 if (tAppAnimator.thumbnail != null) {
979 // The old token is animating with a thumbnail, transfer that to the new token.
980 if (wAppAnimator.thumbnail != null) {
981 wAppAnimator.thumbnail.destroy();
982 }
983 wAppAnimator.thumbnail = tAppAnimator.thumbnail;
984 wAppAnimator.thumbnailLayer = tAppAnimator.thumbnailLayer;
985 wAppAnimator.thumbnailAnimation = tAppAnimator.thumbnailAnimation;
986 tAppAnimator.thumbnail = null;
987 }
988 return false;
989 }
990
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700991 boolean isLastWindow(WindowState win) {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700992 return mChildren.size() == 1 && mChildren.get(0) == win;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700993 }
994
995 void setAllAppWinAnimators() {
996 final ArrayList<WindowStateAnimator> allAppWinAnimators = mAppAnimator.mAllAppWinAnimators;
997 allAppWinAnimators.clear();
998
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700999 final int windowsCount = mChildren.size();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001000 for (int j = 0; j < windowsCount; j++) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07001001 (mChildren.get(j)).addWinAnimatorToList(allAppWinAnimators);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001002 }
1003 }
1004
Wale Ogunwale9adfe572016-09-08 20:43:58 -07001005 @Override
1006 void onAppTransitionDone() {
1007 sendingToBottom = false;
1008 }
1009
Wale Ogunwale51362492016-09-08 17:49:17 -07001010 /**
1011 * We override because this class doesn't want its children affecting its reported orientation
1012 * in anyway.
1013 */
1014 @Override
1015 int getOrientation() {
1016 if (hidden || hiddenRequested) {
1017 return SCREEN_ORIENTATION_UNSET;
1018 }
1019 return mOrientation;
1020 }
1021
Craig Mautnerdbb79912012-03-01 18:59:14 -08001022 @Override
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001023 void checkAppWindowsReadyToShow(int displayId) {
1024 if (allDrawn == mAppAnimator.allDrawn) {
1025 return;
1026 }
1027
1028 mAppAnimator.allDrawn = allDrawn;
1029 if (!allDrawn) {
1030 return;
1031 }
1032
1033 // The token has now changed state to having all windows shown... what to do, what to do?
1034 if (mAppAnimator.freezingScreen) {
1035 mAppAnimator.showAllWindowsLocked();
1036 stopFreezingScreen(false, true);
1037 if (DEBUG_ORIENTATION) Slog.i(TAG,
1038 "Setting mOrientationChangeComplete=true because wtoken " + this
1039 + " numInteresting=" + numInterestingWindows + " numDrawn=" + numDrawnWindows);
1040 // This will set mOrientationChangeComplete and cause a pass through layout.
1041 setAppLayoutChanges(FINISH_LAYOUT_REDO_WALLPAPER,
1042 "checkAppWindowsReadyToShow: freezingScreen", displayId);
1043 } else {
1044 setAppLayoutChanges(FINISH_LAYOUT_REDO_ANIM, "checkAppWindowsReadyToShow", displayId);
1045
1046 // We can now show all of the drawn windows!
1047 if (!mService.mOpeningApps.contains(this)) {
1048 mService.mAnimator.orAnimating(mAppAnimator.showAllWindowsLocked());
1049 }
1050 }
1051 }
1052
1053 @Override
1054 void updateAllDrawn(int displayId) {
1055 final DisplayContent displayContent = mService.getDisplayContentLocked(displayId);
1056
1057 if (!allDrawn) {
1058 final int numInteresting = numInterestingWindows;
1059 if (numInteresting > 0 && numDrawnWindows >= numInteresting) {
1060 if (DEBUG_VISIBILITY) Slog.v(TAG, "allDrawn: " + this
1061 + " interesting=" + numInteresting + " drawn=" + numDrawnWindows);
1062 allDrawn = true;
1063 // Force an additional layout pass where
1064 // WindowStateAnimator#commitFinishDrawingLocked() will call performShowLocked().
1065 displayContent.layoutNeeded = true;
1066 mService.mH.obtainMessage(NOTIFY_ACTIVITY_DRAWN, token).sendToTarget();
1067 }
1068 }
1069 if (!allDrawnExcludingSaved) {
1070 int numInteresting = numInterestingWindowsExcludingSaved;
1071 if (numInteresting > 0 && numDrawnWindowsExcludingSaved >= numInteresting) {
1072 if (DEBUG_VISIBILITY) Slog.v(TAG, "allDrawnExcludingSaved: " + this
1073 + " interesting=" + numInteresting
1074 + " drawn=" + numDrawnWindowsExcludingSaved);
1075 allDrawnExcludingSaved = true;
1076 displayContent.layoutNeeded = true;
1077 if (isAnimatingInvisibleWithSavedSurface()
1078 && !mService.mFinishedEarlyAnim.contains(this)) {
1079 mService.mFinishedEarlyAnim.add(this);
1080 }
1081 }
1082 }
1083 }
1084
1085 @Override
1086 void stepAppWindowsAnimation(long currentTime, int displayId) {
1087 mAppAnimator.wasAnimating = mAppAnimator.animating;
1088 if (mAppAnimator.stepAnimationLocked(currentTime, displayId)) {
1089 mAppAnimator.animating = true;
1090 mService.mAnimator.setAnimating(true);
1091 mService.mAnimator.mAppWindowAnimating = true;
1092 } else if (mAppAnimator.wasAnimating) {
1093 // stopped animating, do one more pass through the layout
1094 setAppLayoutChanges(
1095 FINISH_LAYOUT_REDO_WALLPAPER, "appToken " + this + " done", displayId);
1096 if (DEBUG_ANIM) Slog.v(TAG, "updateWindowsApps...: done animating " + this);
1097 }
1098 }
1099
1100 @Override
Wale Ogunwale9adfe572016-09-08 20:43:58 -07001101 int rebuildWindowList(DisplayContent dc, int addIndex) {
1102 if (mIsExiting && !waitingForReplacement()) {
1103 return addIndex;
1104 }
1105 return super.rebuildWindowList(dc, addIndex);
1106 }
1107
1108 @Override
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001109 AppWindowToken asAppWindowToken() {
1110 // I am an app window token!
1111 return this;
1112 }
1113
1114 @Override
Wale Ogunwale51362492016-09-08 17:49:17 -07001115 boolean fillsParent() {
1116 return mFillsParent;
1117 }
1118
1119 void setFillsParent(boolean fillsParent) {
1120 mFillsParent = fillsParent;
1121 }
1122
1123 @Override
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001124 void dump(PrintWriter pw, String prefix) {
1125 super.dump(pw, prefix);
1126 if (appToken != null) {
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001127 pw.print(prefix); pw.print("app=true voiceInteraction="); pw.println(voiceInteraction);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001128 }
Craig Mautner83162a92015-01-26 14:43:30 -08001129 pw.print(prefix); pw.print("task="); pw.println(mTask);
Wale Ogunwale51362492016-09-08 17:49:17 -07001130 pw.print(prefix); pw.print(" mFillsParent="); pw.print(mFillsParent);
1131 pw.print(" mOrientation="); pw.println(mOrientation);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001132 pw.print(prefix); pw.print("hiddenRequested="); pw.print(hiddenRequested);
1133 pw.print(" clientHidden="); pw.print(clientHidden);
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -07001134 pw.print(" reportedDrawn="); pw.print(reportedDrawn);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001135 pw.print(" reportedVisible="); pw.println(reportedVisible);
Craig Mautner59431632012-04-04 11:56:44 -07001136 if (paused) {
1137 pw.print(prefix); pw.print("paused="); pw.println(paused);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001138 }
Wale Ogunwale9017ec02016-02-25 08:55:25 -08001139 if (mAppStopped) {
1140 pw.print(prefix); pw.print("mAppStopped="); pw.println(mAppStopped);
1141 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001142 if (numInterestingWindows != 0 || numDrawnWindows != 0
Craig Mautner6fbda632012-07-03 09:26:39 -07001143 || allDrawn || mAppAnimator.allDrawn) {
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001144 pw.print(prefix); pw.print("numInterestingWindows=");
1145 pw.print(numInterestingWindows);
1146 pw.print(" numDrawnWindows="); pw.print(numDrawnWindows);
1147 pw.print(" inPendingTransaction="); pw.print(inPendingTransaction);
Craig Mautner6fbda632012-07-03 09:26:39 -07001148 pw.print(" allDrawn="); pw.print(allDrawn);
1149 pw.print(" (animator="); pw.print(mAppAnimator.allDrawn);
1150 pw.println(")");
1151 }
1152 if (inPendingTransaction) {
1153 pw.print(prefix); pw.print("inPendingTransaction=");
1154 pw.println(inPendingTransaction);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001155 }
Craig Mautner799bc1d2015-01-14 10:33:48 -08001156 if (startingData != null || removed || firstWindowDrawn || mIsExiting) {
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001157 pw.print(prefix); pw.print("startingData="); pw.print(startingData);
1158 pw.print(" removed="); pw.print(removed);
Craig Mautner3d7ca312015-01-08 10:56:00 -08001159 pw.print(" firstWindowDrawn="); pw.print(firstWindowDrawn);
Craig Mautner799bc1d2015-01-14 10:33:48 -08001160 pw.print(" mIsExiting="); pw.println(mIsExiting);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001161 }
1162 if (startingWindow != null || startingView != null
1163 || startingDisplayed || startingMoved) {
1164 pw.print(prefix); pw.print("startingWindow="); pw.print(startingWindow);
1165 pw.print(" startingView="); pw.print(startingView);
1166 pw.print(" startingDisplayed="); pw.print(startingDisplayed);
Wale Ogunwale9017ec02016-02-25 08:55:25 -08001167 pw.print(" startingMoved="); pw.println(startingMoved);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001168 }
Jorim Jaggi0429f352015-12-22 16:29:16 +01001169 if (!mFrozenBounds.isEmpty()) {
Chong Zhangd78ddb42016-03-02 17:01:14 -08001170 pw.print(prefix); pw.print("mFrozenBounds="); pw.println(mFrozenBounds);
Jorim Jaggi26c8c422016-05-09 19:57:25 -07001171 pw.print(prefix); pw.print("mFrozenMergedConfig="); pw.println(mFrozenMergedConfig);
Chong Zhangd78ddb42016-03-02 17:01:14 -08001172 }
1173 if (mPendingRelaunchCount != 0) {
1174 pw.print(prefix); pw.print("mPendingRelaunchCount="); pw.println(mPendingRelaunchCount);
Jorim Jaggi0429f352015-12-22 16:29:16 +01001175 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001176 }
1177
1178 @Override
1179 public String toString() {
1180 if (stringName == null) {
1181 StringBuilder sb = new StringBuilder();
1182 sb.append("AppWindowToken{");
1183 sb.append(Integer.toHexString(System.identityHashCode(this)));
1184 sb.append(" token="); sb.append(token); sb.append('}');
1185 stringName = sb.toString();
1186 }
1187 return stringName;
1188 }
Jeff Browne9bdb312012-04-05 15:30:10 -07001189}