blob: 2828b96ae0d5e76a56bc655bcb1faf2fe6aa394c [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
Wale Ogunwalef6192862016-09-10 13:42:30 -070079 // TODO: Use getParent instead?
Craig Mautner83162a92015-01-26 14:43:30 -080080 Task mTask;
Wale Ogunwale51362492016-09-08 17:49:17 -070081 /** @see WindowContainer#fillsParent() */
82 private boolean mFillsParent;
Craig Mautner4c5eb222013-11-18 12:59:05 -080083 boolean layoutConfigChanges;
Wale Ogunwale6dfdfd62015-04-15 12:01:38 -070084 boolean showForAllUsers;
Yorke Lee0e852472016-06-15 10:03:18 -070085 int targetSdk;
Craig Mautnera2c77052012-03-26 12:14:43 -070086
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080087 // The input dispatching timeout for this application token in nanoseconds.
88 long inputDispatchingTimeoutNanos;
89
90 // These are used for determining when all windows associated with
91 // an activity have been drawn, so they can be made visible together
92 // at the same time.
Craig Mautner764983d2012-03-22 11:37:36 -070093 // initialize so that it doesn't match mTransactionSequence which is an int.
94 long lastTransactionSequence = Long.MIN_VALUE;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080095 int numInterestingWindows;
96 int numDrawnWindows;
97 boolean inPendingTransaction;
98 boolean allDrawn;
Craig Mautner7636dfb2012-11-16 15:24:11 -080099 // Set to true when this app creates a surface while in the middle of an animation. In that
100 // case do not clear allDrawn until the animation completes.
101 boolean deferClearAllDrawn;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800102
Chong Zhang8e4bda92016-05-04 15:08:18 -0700103 // These are to track the app's real drawing status if there were no saved surfaces.
104 boolean allDrawnExcludingSaved;
105 int numInterestingWindowsExcludingSaved;
Wale Ogunwale571771c2016-08-26 13:18:50 -0700106 int numDrawnWindowsExcludingSaved;
Chong Zhang8e4bda92016-05-04 15:08:18 -0700107
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800108 // Is this window's surface needed? This is almost like hidden, except
109 // it will sometimes be true a little earlier: when the token has
110 // been shown, but is still waiting for its app transition to execute
111 // before making its windows shown.
112 boolean hiddenRequested;
113
114 // Have we told the window clients to hide themselves?
115 boolean clientHidden;
116
117 // Last visibility state we reported to the app token.
118 boolean reportedVisible;
119
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700120 // Last drawn state we reported to the app token.
121 boolean reportedDrawn;
122
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800123 // Set to true when the token has been removed from the window mgr.
124 boolean removed;
125
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800126 // Information about an application starting window if displayed.
127 StartingData startingData;
128 WindowState startingWindow;
129 View startingView;
130 boolean startingDisplayed;
131 boolean startingMoved;
132 boolean firstWindowDrawn;
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700133 private final WindowState.UpdateReportedVisibilityResults mReportedVisibilityResults =
134 new WindowState.UpdateReportedVisibilityResults();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800135
136 // Input application handle used by the input dispatcher.
Jeff Brown9302c872011-07-13 22:51:29 -0700137 final InputApplicationHandle mInputApplicationHandle;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800138
Wale Ogunwale571771c2016-08-26 13:18:50 -0700139 // TODO: Have a WindowContainer state for tracking exiting/deferred removal.
Craig Mautner799bc1d2015-01-14 10:33:48 -0800140 boolean mIsExiting;
Craig Mautner9ef471f2014-02-07 13:11:47 -0800141
Craig Mautnerbb742462014-07-07 15:28:55 -0700142 boolean mLaunchTaskBehind;
Craig Mautner8746a472014-07-24 15:12:54 -0700143 boolean mEnteringAnimation;
Craig Mautnerbb742462014-07-07 15:28:55 -0700144
Wale Ogunwale6cae7652015-12-26 07:36:26 -0800145 boolean mAlwaysFocusable;
146
Robert Carre12aece2016-02-02 22:43:27 -0800147 boolean mAppStopped;
Robert Carrfd10cd12016-06-29 16:41:50 -0700148 int mRotationAnimationHint;
Chong Zhangd78ddb42016-03-02 17:01:14 -0800149 int mPendingRelaunchCount;
Robert Carre12aece2016-02-02 22:43:27 -0800150
Robert Carr91b228092016-06-28 17:32:37 -0700151 private ArrayList<WindowSurfaceController.SurfaceControlWithBackground> mSurfaceViewBackgrounds =
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700152 new ArrayList<>();
Robert Carr91b228092016-06-28 17:32:37 -0700153
Jorim Jaggi0429f352015-12-22 16:29:16 +0100154 ArrayDeque<Rect> mFrozenBounds = new ArrayDeque<>();
Jorim Jaggi26c8c422016-05-09 19:57:25 -0700155 ArrayDeque<Configuration> mFrozenMergedConfig = new ArrayDeque<>();
Jorim Jaggi0429f352015-12-22 16:29:16 +0100156
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700157 AppWindowToken(WindowManagerService service, IApplicationToken token, boolean _voiceInteraction) {
158 super(service, token != null ? token.asBinder() : null, TYPE_APPLICATION, true);
159 appToken = token;
Dianne Hackborne30e02f2014-05-27 18:24:45 -0700160 voiceInteraction = _voiceInteraction;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800161 mInputApplicationHandle = new InputApplicationHandle(this);
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700162 mAppAnimator = new AppWindowAnimator(this, service);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800163 }
164
Wale Ogunwale9017ec02016-02-25 08:55:25 -0800165 void onFirstWindowDrawn(WindowState win, WindowStateAnimator winAnimator) {
166 firstWindowDrawn = true;
167
168 // We now have a good window to show, remove dead placeholders
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700169 removeDeadWindows();
Wale Ogunwale9017ec02016-02-25 08:55:25 -0800170
171 if (startingData != null) {
172 if (DEBUG_STARTING_WINDOW || DEBUG_ANIM) Slog.v(TAG, "Finish starting "
173 + win.mToken + ": first real window is shown, no animation");
174 // If this initial window is animating, stop it -- we will do an animation to reveal
175 // it from behind the starting window, so there is no need for it to also be doing its
176 // own stuff.
177 winAnimator.clearAnimation();
178 winAnimator.mService.mFinishedStarting.add(this);
179 winAnimator.mService.mH.sendEmptyMessage(H.FINISHED_STARTING);
180 }
181 updateReportedVisibilityLocked();
182 }
183
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800184 void updateReportedVisibilityLocked() {
185 if (appToken == null) {
186 return;
187 }
188
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700189 if (DEBUG_VISIBILITY) Slog.v(TAG, "Update reported visibility: " + this);
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700190 final int count = mChildren.size();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800191
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700192 mReportedVisibilityResults.reset();
193
194 for (int i = 0; i < count; i++) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700195 final WindowState win = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700196 win.updateReportedVisibility(mReportedVisibilityResults);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800197 }
198
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700199 int numInteresting = mReportedVisibilityResults.numInteresting;
200 int numVisible = mReportedVisibilityResults.numVisible;
201 int numDrawn = mReportedVisibilityResults.numDrawn;
202 boolean nowGone = mReportedVisibilityResults.nowGone;
203
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700204 boolean nowDrawn = numInteresting > 0 && numDrawn >= numInteresting;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800205 boolean nowVisible = numInteresting > 0 && numVisible >= numInteresting;
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700206 if (!nowGone) {
207 // If the app is not yet gone, then it can only become visible/drawn.
208 if (!nowDrawn) {
209 nowDrawn = reportedDrawn;
210 }
211 if (!nowVisible) {
212 nowVisible = reportedVisible;
213 }
214 }
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800215 if (DEBUG_VISIBILITY) Slog.v(TAG, "VIS " + this + ": interesting="
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800216 + numInteresting + " visible=" + numVisible);
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700217 if (nowDrawn != reportedDrawn) {
218 if (nowDrawn) {
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700219 mService.mH.obtainMessage(H.REPORT_APPLICATION_TOKEN_DRAWN, this).sendToTarget();
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700220 }
221 reportedDrawn = nowDrawn;
222 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800223 if (nowVisible != reportedVisible) {
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700224 if (DEBUG_VISIBILITY) Slog.v(TAG,
225 "Visibility changed in " + this + ": vis=" + nowVisible);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800226 reportedVisible = nowVisible;
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700227 mService.mH.obtainMessage(H.REPORT_APPLICATION_TOKEN_WINDOWS,
228 nowVisible ? 1 : 0, nowGone ? 1 : 0, this).sendToTarget();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800229 }
230 }
231
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700232 boolean setVisibility(WindowManager.LayoutParams lp,
233 boolean visible, int transit, boolean performLayout, boolean isVoiceInteraction) {
234
235 boolean delayed = false;
236 inPendingTransaction = false;
237
238 if (clientHidden == visible) {
239 clientHidden = !visible;
240 sendAppVisibilityToClients();
241 }
242
243 // Allow for state changes and animation to be applied if:
244 // * token is transitioning visibility state
245 // * or the token was marked as hidden and is exiting before we had a chance to play the
246 // transition animation
247 // * or this is an opening app and windows are being replaced.
248 boolean visibilityChanged = false;
249 if (hidden == visible || (hidden && mIsExiting) || (visible && waitingForReplacement())) {
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700250 final AccessibilityController accessibilityController = mService.mAccessibilityController;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700251 boolean changed = false;
252 if (DEBUG_APP_TRANSITIONS) Slog.v(TAG_WM,
253 "Changing app " + this + " hidden=" + hidden + " performLayout=" + performLayout);
254
255 boolean runningAppAnimation = false;
256
257 if (transit != AppTransition.TRANSIT_UNSET) {
258 if (mAppAnimator.animation == AppWindowAnimator.sDummyAnimation) {
259 mAppAnimator.setNullAnimation();
260 }
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700261 if (mService.applyAnimationLocked(this, lp, transit, visible, isVoiceInteraction)) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700262 delayed = runningAppAnimation = true;
263 }
264 final WindowState window = findMainWindow();
265 //TODO (multidisplay): Magnification is supported only for the default display.
266 if (window != null && accessibilityController != null
267 && window.getDisplayId() == DEFAULT_DISPLAY) {
268 accessibilityController.onAppWindowTransitionLocked(window, transit);
269 }
270 changed = true;
271 }
272
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700273 final int windowsCount = mChildren.size();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700274 for (int i = 0; i < windowsCount; i++) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700275 final WindowState win = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700276 changed |= win.onAppVisibilityChanged(visible, runningAppAnimation);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700277 }
278
279 hidden = hiddenRequested = !visible;
280 visibilityChanged = true;
281 if (!visible) {
282 stopFreezingScreen(true, true);
283 } else {
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700284 // If we are being set visible, and the starting window is not yet displayed,
285 // then make sure it doesn't get displayed.
286 if (startingWindow != null && !startingWindow.isDrawnLw()) {
287 startingWindow.mPolicyVisibility = false;
288 startingWindow.mPolicyVisibilityAfterAnim = false;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700289 }
290 }
291
292 if (DEBUG_APP_TRANSITIONS) Slog.v(TAG_WM, "setVisibility: " + this
293 + ": hidden=" + hidden + " hiddenRequested=" + hiddenRequested);
294
295 if (changed) {
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700296 mService.mInputMonitor.setUpdateInputWindowsNeededLw();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700297 if (performLayout) {
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700298 mService.updateFocusedWindowLocked(UPDATE_FOCUS_WILL_PLACE_SURFACES,
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700299 false /*updateInputWindows*/);
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700300 mService.mWindowPlacerLocked.performSurfacePlacement();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700301 }
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700302 mService.mInputMonitor.updateInputWindowsLw(false /*force*/);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700303 }
304 }
305
306 if (mAppAnimator.animation != null) {
307 delayed = true;
308 }
309
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700310 for (int i = mChildren.size() - 1; i >= 0 && !delayed; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700311 if ((mChildren.get(i)).isWindowAnimationSet()) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700312 delayed = true;
313 }
314 }
315
316 if (visibilityChanged) {
317 if (visible && !delayed) {
318 // The token was made immediately visible, there will be no entrance animation.
319 // We need to inform the client the enter animation was finished.
320 mEnteringAnimation = true;
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700321 mService.mActivityManagerAppTransitionNotifier.onAppTransitionFinishedLocked(token);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700322 }
323
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700324 if (!mService.mClosingApps.contains(this) && !mService.mOpeningApps.contains(this)) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700325 // The token is not closing nor opening, so even if there is an animation set, that
326 // doesn't mean that it goes through the normal app transition cycle so we have
327 // to inform the docked controller about visibility change.
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700328 mService.getDefaultDisplayContentLocked().getDockedDividerController()
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700329 .notifyAppVisibilityChanged();
330 }
331 }
332
333 return delayed;
334 }
335
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800336 WindowState findMainWindow() {
Filip Gruszczynski55a309f2015-09-04 17:15:01 -0700337 WindowState candidate = null;
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700338 int j = mChildren.size();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800339 while (j > 0) {
340 j--;
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700341 final WindowState win = mChildren.get(j);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700342 final int type = win.mAttrs.type;
343 // No need to loop through child window as base application and starting types can't be
344 // child windows.
345 if (type == TYPE_BASE_APPLICATION || type == TYPE_APPLICATION_STARTING) {
Filip Gruszczynski55a309f2015-09-04 17:15:01 -0700346 // In cases where there are multiple windows, we prefer the non-exiting window. This
Sungsoo Lim0d3d1f82015-12-02 14:47:59 +0900347 // happens for example when replacing windows during an activity relaunch. When
Filip Gruszczynski55a309f2015-09-04 17:15:01 -0700348 // constructing the animation, we want the new window, not the exiting one.
Wale Ogunwalec48a3542016-02-19 15:18:45 -0800349 if (win.mAnimatingExit) {
Filip Gruszczynski55a309f2015-09-04 17:15:01 -0700350 candidate = win;
351 } else {
352 return win;
353 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800354 }
355 }
Filip Gruszczynski55a309f2015-09-04 17:15:01 -0700356 return candidate;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800357 }
358
Wale Ogunwale6cae7652015-12-26 07:36:26 -0800359 boolean windowsAreFocusable() {
360 return StackId.canReceiveKeys(mTask.mStack.mStackId) || mAlwaysFocusable;
Wale Ogunwaled045c822015-12-02 09:14:28 -0800361 }
362
Wale Ogunwale571771c2016-08-26 13:18:50 -0700363 @Override
Wale Ogunwale44f21802016-09-02 12:49:48 -0700364 boolean isVisible() {
365 if (hidden) {
366 // TODO: Should this be checking hiddenRequested instead of hidden?
367 return false;
368 }
369 return super.isVisible();
370 }
371
372 @Override
Wale Ogunwale571771c2016-08-26 13:18:50 -0700373 void removeIfPossible() {
Craig Mautnere3119b72015-01-20 15:02:36 -0800374 mIsExiting = false;
375 removeAllWindows();
Wale Ogunwale571771c2016-08-26 13:18:50 -0700376 if (mTask != null) {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700377 mTask.mStack.mExitingAppTokens.remove(this);
378 mTask.removeChild(this);
Craig Mautnere3119b72015-01-20 15:02:36 -0800379 }
380 }
381
Wale Ogunwale3f4433d2016-08-18 20:42:42 -0700382 @Override
383 boolean checkCompleteDeferredRemoval() {
384 if (mIsExiting) {
385 removeIfPossible();
386 }
387 return super.checkCompleteDeferredRemoval();
388 }
389
Chong Zhange05bcb12016-07-26 17:47:29 -0700390 void clearAnimatingFlags() {
Chong Zhangb0d26702016-08-12 16:03:29 -0700391 boolean wallpaperMightChange = false;
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700392 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700393 final WindowState win = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700394 wallpaperMightChange |= win.clearAnimatingFlags();
Chong Zhange05bcb12016-07-26 17:47:29 -0700395 }
Chong Zhangb0d26702016-08-12 16:03:29 -0700396 if (wallpaperMightChange) {
397 requestUpdateWallpaperIfNeeded();
398 }
Chong Zhange05bcb12016-07-26 17:47:29 -0700399 }
400
Robert Carre12aece2016-02-02 22:43:27 -0800401 void destroySurfaces() {
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700402 destroySurfaces(false /*cleanupOnResume*/);
403 }
404
405 /**
406 * Destroy surfaces which have been marked as eligible by the animator, taking care to ensure
407 * the client has finished with them.
408 *
409 * @param cleanupOnResume whether this is done when app is resumed without fully stopped. If
410 * set to true, destroy only surfaces of removed windows, and clear relevant flags of the
411 * others so that they are ready to be reused. If set to false (common case), destroy all
412 * surfaces that's eligible, if the app is already stopped.
413 */
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700414 private void destroySurfaces(boolean cleanupOnResume) {
Robert Carre12aece2016-02-02 22:43:27 -0800415 final DisplayContentList displayList = new DisplayContentList();
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700416 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700417 final WindowState win = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700418 final boolean destroyed = win.destroySurface(cleanupOnResume, mAppStopped);
Chong Zhangeb665572016-05-09 18:28:27 -0700419
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700420 if (destroyed) {
421 final DisplayContent displayContent = win.getDisplayContent();
422 if (displayContent != null && !displayList.contains(displayContent)) {
423 displayList.add(displayContent);
424 }
Robert Carre12aece2016-02-02 22:43:27 -0800425 }
Robert Carre12aece2016-02-02 22:43:27 -0800426 }
427 for (int i = 0; i < displayList.size(); i++) {
428 final DisplayContent displayContent = displayList.get(i);
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700429 mService.mLayersController.assignLayersLocked(displayContent.getWindowList());
Robert Carre12aece2016-02-02 22:43:27 -0800430 displayContent.layoutNeeded = true;
431 }
432 }
433
Wale Ogunwale8d5a5422016-03-03 18:28:21 -0800434 /**
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700435 * Notify that the app is now resumed, and it was not stopped before, perform a clean
436 * up of the surfaces
Wale Ogunwale8d5a5422016-03-03 18:28:21 -0800437 */
Chong Zhangad24f962016-08-25 12:12:33 -0700438 void notifyAppResumed(boolean wasStopped, boolean allowSavedSurface) {
439 if (DEBUG_ADD_REMOVE) Slog.v(TAG, "notifyAppResumed: wasStopped=" + wasStopped
440 + " allowSavedSurface=" + allowSavedSurface + " " + this);
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700441 mAppStopped = false;
442 if (!wasStopped) {
443 destroySurfaces(true /*cleanupOnResume*/);
Wale Ogunwale8d5a5422016-03-03 18:28:21 -0800444 }
Chong Zhangad24f962016-08-25 12:12:33 -0700445 if (!allowSavedSurface) {
446 destroySavedSurfaces();
447 }
Robert Carre12aece2016-02-02 22:43:27 -0800448 }
449
Chong Zhangbef461f2015-10-27 11:38:24 -0700450 /**
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700451 * Notify that the app has stopped, and it is okay to destroy any surfaces which were
452 * keeping alive in case they were still being used.
453 */
454 void notifyAppStopped() {
455 if (DEBUG_ADD_REMOVE) Slog.v(TAG, "notifyAppStopped: " + this);
456 mAppStopped = true;
457 destroySurfaces();
458 // Remove any starting window that was added for this app if they are still around.
459 mTask.mService.scheduleRemoveStartingWindowLocked(this);
460 }
461
462 /**
Chong Zhangbef461f2015-10-27 11:38:24 -0700463 * Checks whether we should save surfaces for this app.
464 *
465 * @return true if the surfaces should be saved, false otherwise.
466 */
467 boolean shouldSaveSurface() {
Chong Zhangbfc2f8f2016-01-29 15:50:34 -0800468 // We want to save surface if the app's windows are "allDrawn".
469 // (If we started entering animation early with saved surfaces, allDrawn
470 // should have been restored to true. So we'll save again in that case
471 // even if app didn't actually finish drawing.)
472 return allDrawn;
Robert Carr13f7be9e2015-12-02 18:39:45 -0800473 }
474
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700475 private boolean canRestoreSurfaces() {
476 for (int i = mChildren.size() -1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700477 final WindowState w = mChildren.get(i);
Chong Zhang92147042016-05-09 12:47:11 -0700478 if (w.canRestoreSurface()) {
Robert Carr13f7be9e2015-12-02 18:39:45 -0800479 return true;
480 }
Chong Zhangbef461f2015-10-27 11:38:24 -0700481 }
482 return false;
483 }
484
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700485 private void clearWasVisibleBeforeClientHidden() {
486 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700487 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700488 w.clearWasVisibleBeforeClientHidden();
Chong Zhang92147042016-05-09 12:47:11 -0700489 }
490 }
491
Chong Zhang8e4bda92016-05-04 15:08:18 -0700492 /**
493 * Whether the app has some window that is invisible in layout, but
494 * animating with saved surface.
495 */
496 boolean isAnimatingInvisibleWithSavedSurface() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700497 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700498 final WindowState w = mChildren.get(i);
Chong Zhang8e4bda92016-05-04 15:08:18 -0700499 if (w.isAnimatingInvisibleWithSavedSurface()) {
500 return true;
501 }
502 }
503 return false;
504 }
505
506 /**
507 * Hide all window surfaces that's still invisible in layout but animating
508 * with a saved surface, and mark them destroying.
509 */
510 void stopUsingSavedSurfaceLocked() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700511 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700512 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700513 w.stopUsingSavedSurface();
Chong Zhang8e4bda92016-05-04 15:08:18 -0700514 }
515 destroySurfaces();
516 }
517
Chong Zhangf58631a2016-05-24 16:02:10 -0700518 void markSavedSurfaceExiting() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700519 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700520 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700521 w.markSavedSurfaceExiting();
Chong Zhangf58631a2016-05-24 16:02:10 -0700522 }
523 }
524
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700525 void restoreSavedSurfaceForInterestingWindows() {
Chong Zhang92147042016-05-09 12:47:11 -0700526 if (!canRestoreSurfaces()) {
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700527 clearWasVisibleBeforeClientHidden();
Chong Zhangbef461f2015-10-27 11:38:24 -0700528 return;
529 }
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700530
531 // Check if all interesting windows are drawn and we can mark allDrawn=true.
532 int interestingNotDrawn = -1;
533
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700534 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700535 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700536 interestingNotDrawn = w.restoreSavedSurfaceForInterestingWindow();
Chong Zhangbef461f2015-10-27 11:38:24 -0700537 }
Chong Zhangbfc2f8f2016-01-29 15:50:34 -0800538
Chong Zhang92147042016-05-09 12:47:11 -0700539 if (!allDrawn) {
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700540 allDrawn = (interestingNotDrawn == 0);
Chong Zhang92147042016-05-09 12:47:11 -0700541 if (allDrawn) {
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700542 mService.mH.obtainMessage(NOTIFY_ACTIVITY_DRAWN, token).sendToTarget();
Chong Zhang92147042016-05-09 12:47:11 -0700543 }
544 }
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700545 clearWasVisibleBeforeClientHidden();
Chong Zhangbfc2f8f2016-01-29 15:50:34 -0800546
547 if (DEBUG_APP_TRANSITIONS || DEBUG_ANIM) Slog.d(TAG,
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700548 "restoreSavedSurfaceForInterestingWindows: " + this + " allDrawn=" + allDrawn
549 + " interestingNotDrawn=" + interestingNotDrawn);
Chong Zhangbef461f2015-10-27 11:38:24 -0700550 }
551
552 void destroySavedSurfaces() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700553 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700554 final WindowState win = mChildren.get(i);
Robert Carr13f7be9e2015-12-02 18:39:45 -0800555 win.destroySavedSurface();
Chong Zhangbef461f2015-10-27 11:38:24 -0700556 }
Chong Zhang92147042016-05-09 12:47:11 -0700557 }
558
559 void clearAllDrawn() {
560 allDrawn = false;
561 deferClearAllDrawn = false;
Chong Zhang8e4bda92016-05-04 15:08:18 -0700562 allDrawnExcludingSaved = false;
Chong Zhangbef461f2015-10-27 11:38:24 -0700563 }
564
Wale Ogunwale98e70d02014-11-10 12:12:27 -0800565 @Override
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700566 void removeWindow(WindowState win) {
567 super.removeWindow(win);
568
Wale Ogunwale92fc3722016-08-05 12:19:08 -0700569 // TODO: Something smells about the code below...Is there a better way?
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700570 if (startingWindow == win) {
571 if (DEBUG_STARTING_WINDOW) Slog.v(TAG_WM, "Notify removed startingWindow " + win);
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700572 mService.scheduleRemoveStartingWindowLocked(this);
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700573 } else if (mChildren.size() == 0 && startingData != null) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700574 // If this is the last window and we had requested a starting transition window,
575 // well there is no point now.
576 if (DEBUG_STARTING_WINDOW) Slog.v(TAG_WM, "Nulling last startingWindow");
577 startingData = null;
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700578 } else if (mChildren.size() == 1 && startingView != null) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700579 // If this is the last window except for a starting transition window,
580 // we need to get rid of the starting transition.
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700581 mService.scheduleRemoveStartingWindowLocked(this);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700582 }
583 }
584
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700585 void removeDeadWindows() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700586 for (int winNdx = mChildren.size() - 1; winNdx >= 0; --winNdx) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700587 WindowState win = mChildren.get(winNdx);
Chong Zhang112eb8c2015-11-02 11:17:00 -0800588 if (win.mAppDied) {
Wale Ogunwale92fc3722016-08-05 12:19:08 -0700589 if (DEBUG_WINDOW_MOVEMENT || DEBUG_ADD_REMOVE) Slog.w(TAG,
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700590 "removeDeadWindows: " + win);
Chong Zhang112eb8c2015-11-02 11:17:00 -0800591 // Set mDestroying, we don't want any animation or delayed removal here.
592 win.mDestroying = true;
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700593 // Also removes child windows.
Wale Ogunwale92fc3722016-08-05 12:19:08 -0700594 win.removeIfPossible();
Chong Zhang112eb8c2015-11-02 11:17:00 -0800595 }
596 }
597 }
598
Wale Ogunwalee42d0e12016-05-02 16:40:59 -0700599 boolean hasWindowsAlive() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700600 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700601 // No need to loop through child windows as the answer should be the same as that of the
602 // parent window.
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700603 if (!(mChildren.get(i)).mAppDied) {
Wale Ogunwalee42d0e12016-05-02 16:40:59 -0700604 return true;
605 }
606 }
607 return false;
608 }
609
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700610 void setWillReplaceWindows(boolean animate) {
Wale Ogunwale455fac52016-07-21 07:24:49 -0700611 if (DEBUG_ADD_REMOVE) Slog.d(TAG_WM,
612 "Marking app token " + this + " with replacing windows.");
Robert Carra1eb4392015-12-10 12:43:51 -0800613
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700614 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700615 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700616 w.setWillReplaceWindow(animate);
Robert Carra1eb4392015-12-10 12:43:51 -0800617 }
618 if (animate) {
619 // Set-up dummy animation so we can start treating windows associated with this
620 // token like they are in transition before the new app window is ready for us to
621 // run the real transition animation.
622 if (DEBUG_APP_TRANSITIONS) Slog.v(TAG_WM,
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700623 "setWillReplaceWindow() Setting dummy animation on: " + this);
Robert Carra1eb4392015-12-10 12:43:51 -0800624 mAppAnimator.setDummyAnimation();
625 }
626 }
627
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700628 void setWillReplaceChildWindows() {
Wale Ogunwale455fac52016-07-21 07:24:49 -0700629 if (DEBUG_ADD_REMOVE) Slog.d(TAG_WM, "Marking app token " + this
Robert Carr23fa16b2016-01-13 13:19:58 -0800630 + " with replacing child windows.");
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700631 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700632 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700633 w.setWillReplaceChildWindows();
Robert Carr23fa16b2016-01-13 13:19:58 -0800634 }
635 }
636
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700637 void clearWillReplaceWindows() {
Wale Ogunwale455fac52016-07-21 07:24:49 -0700638 if (DEBUG_ADD_REMOVE) Slog.d(TAG_WM,
639 "Resetting app token " + this + " of replacing window marks.");
Chong Zhangf596cd52016-01-05 13:42:44 -0800640
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700641 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700642 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700643 w.clearWillReplaceWindow();
Chong Zhangf596cd52016-01-05 13:42:44 -0800644 }
645 }
646
Chong Zhang4d7369a2016-04-25 16:09:14 -0700647 void requestUpdateWallpaperIfNeeded() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700648 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700649 final WindowState w = mChildren.get(i);
Chong Zhang4d7369a2016-04-25 16:09:14 -0700650 w.requestUpdateWallpaperIfNeeded();
651 }
652 }
653
Chong Zhangd78ddb42016-03-02 17:01:14 -0800654 boolean isRelaunching() {
655 return mPendingRelaunchCount > 0;
656 }
657
658 void startRelaunching() {
659 if (canFreezeBounds()) {
660 freezeBounds();
661 }
662 mPendingRelaunchCount++;
663 }
664
665 void finishRelaunching() {
666 if (canFreezeBounds()) {
667 unfreezeBounds();
668 }
669 if (mPendingRelaunchCount > 0) {
670 mPendingRelaunchCount--;
671 }
672 }
673
Wale Ogunwale8fd75422016-06-24 14:20:37 -0700674 void clearRelaunching() {
Wale Ogunwale37dbafc2016-06-27 10:15:20 -0700675 if (mPendingRelaunchCount == 0) {
676 return;
677 }
Wale Ogunwale8fd75422016-06-24 14:20:37 -0700678 if (canFreezeBounds()) {
679 unfreezeBounds();
680 }
681 mPendingRelaunchCount = 0;
682 }
683
Wale Ogunwale92fc3722016-08-05 12:19:08 -0700684 @Override
Robert Carra1eb4392015-12-10 12:43:51 -0800685 void addWindow(WindowState w) {
Wale Ogunwale92fc3722016-08-05 12:19:08 -0700686 super.addWindow(w);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700687
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700688 boolean gotReplacementWindow = false;
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700689 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700690 final WindowState candidate = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700691 gotReplacementWindow |= candidate.setReplacementWindowIfNeeded(w);
692 }
Wale Ogunwale92fc3722016-08-05 12:19:08 -0700693
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700694 // if we got a replacement window, reset the timeout to give drawing more time
695 if (gotReplacementWindow) {
696 mService.scheduleWindowReplacementTimeouts(this);
Robert Carra1eb4392015-12-10 12:43:51 -0800697 }
Robert Carra1eb4392015-12-10 12:43:51 -0800698 }
699
700 boolean waitingForReplacement() {
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 candidate = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700703 if (candidate.waitingForReplacement()) {
Robert Carra1eb4392015-12-10 12:43:51 -0800704 return true;
705 }
706 }
707 return false;
708 }
709
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700710 void onWindowReplacementTimeout() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700711 for (int i = mChildren.size() - 1; i >= 0; --i) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700712 (mChildren.get(i)).onWindowReplacementTimeout();
Robert Carra1eb4392015-12-10 12:43:51 -0800713 }
714 }
715
Chong Zhangd78ddb42016-03-02 17:01:14 -0800716 private boolean canFreezeBounds() {
717 // For freeform windows, we can't freeze the bounds at the moment because this would make
718 // the resizing unresponsive.
719 return mTask != null && !mTask.inFreeformWorkspace();
720 }
721
Jorim Jaggi0429f352015-12-22 16:29:16 +0100722 /**
723 * Freezes the task bounds. The size of this task reported the app will be fixed to the bounds
724 * freezed by {@link Task#prepareFreezingBounds} until {@link #unfreezeBounds} gets called, even
725 * if they change in the meantime. If the bounds are already frozen, the bounds will be frozen
726 * with a queue.
727 */
Chong Zhangd78ddb42016-03-02 17:01:14 -0800728 private void freezeBounds() {
Jorim Jaggi0429f352015-12-22 16:29:16 +0100729 mFrozenBounds.offer(new Rect(mTask.mPreparedFrozenBounds));
Jorim Jaggi26c8c422016-05-09 19:57:25 -0700730
731 if (mTask.mPreparedFrozenMergedConfig.equals(Configuration.EMPTY)) {
732 // We didn't call prepareFreezingBounds on the task, so use the current value.
Andrii Kulian8072d112016-09-16 11:11:01 -0700733 final Configuration config = new Configuration(mService.mGlobalConfiguration);
Jorim Jaggi26c8c422016-05-09 19:57:25 -0700734 config.updateFrom(mTask.mOverrideConfig);
735 mFrozenMergedConfig.offer(config);
736 } else {
737 mFrozenMergedConfig.offer(new Configuration(mTask.mPreparedFrozenMergedConfig));
738 }
Andrii Kulianb10330d2016-09-16 13:51:46 -0700739 // Calling unset() to make it equal to Configuration.EMPTY.
740 mTask.mPreparedFrozenMergedConfig.unset();
Jorim Jaggi0429f352015-12-22 16:29:16 +0100741 }
742
743 /**
744 * Unfreezes the previously frozen bounds. See {@link #freezeBounds}.
745 */
Chong Zhangd78ddb42016-03-02 17:01:14 -0800746 private void unfreezeBounds() {
Wale Ogunwale37dbafc2016-06-27 10:15:20 -0700747 if (!mFrozenBounds.isEmpty()) {
748 mFrozenBounds.remove();
749 }
750 if (!mFrozenMergedConfig.isEmpty()) {
751 mFrozenMergedConfig.remove();
752 }
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700753 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700754 final WindowState win = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700755 win.onUnfreezeBounds();
Jorim Jaggi4846ee32016-01-07 17:39:12 +0100756 }
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700757 mService.mWindowPlacerLocked.performSurfacePlacement();
Jorim Jaggi0429f352015-12-22 16:29:16 +0100758 }
759
Robert Carr91b228092016-06-28 17:32:37 -0700760 void addSurfaceViewBackground(WindowSurfaceController.SurfaceControlWithBackground background) {
761 mSurfaceViewBackgrounds.add(background);
762 }
763
764 void removeSurfaceViewBackground(WindowSurfaceController.SurfaceControlWithBackground background) {
765 mSurfaceViewBackgrounds.remove(background);
766 updateSurfaceViewBackgroundVisibilities();
767 }
768
769 // We use DimLayers behind SurfaceViews to prevent holes while resizing and creating.
770 // However, we need to ensure one SurfaceView doesn't cover another when they are both placed
771 // below the main app window (as traditionally a SurfaceView which is never drawn
772 // to is totally translucent). So we look at all our SurfaceView backgrounds and only enable
773 // the background for the SurfaceView with lowest Z order
774 void updateSurfaceViewBackgroundVisibilities() {
775 WindowSurfaceController.SurfaceControlWithBackground bottom = null;
776 int bottomLayer = Integer.MAX_VALUE;
777 for (int i = 0; i < mSurfaceViewBackgrounds.size(); i++) {
778 WindowSurfaceController.SurfaceControlWithBackground sc = mSurfaceViewBackgrounds.get(i);
779 if (sc.mVisible && sc.mLayer < bottomLayer) {
780 bottomLayer = sc.mLayer;
781 bottom = sc;
782 }
783 }
784 for (int i = 0; i < mSurfaceViewBackgrounds.size(); i++) {
785 WindowSurfaceController.SurfaceControlWithBackground sc = mSurfaceViewBackgrounds.get(i);
786 sc.updateBackgroundVisibility(sc != bottom);
787 }
788 }
789
Jorim Jaggi6626f542016-08-22 13:08:44 -0700790 /**
791 * See {@link WindowManagerService#overridePlayingAppAnimationsLw}
792 */
793 void overridePlayingAppAnimations(Animation a) {
794 if (mAppAnimator.isAnimating()) {
795 final WindowState win = findMainWindow();
796 final int width = win.mContainingFrame.width();
797 final int height = win.mContainingFrame.height();
798 mAppAnimator.setAnimation(a, width, height, false, STACK_CLIP_NONE);
799 }
800 }
801
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700802 void resetJustMovedInStack() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700803 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700804 (mChildren.get(i)).resetJustMovedInStack();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700805 }
806 }
807
808 void notifyMovedInStack() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700809 for (int winNdx = mChildren.size() - 1; winNdx >= 0; --winNdx) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700810 final WindowState win = mChildren.get(winNdx);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700811 win.notifyMovedInStack();
812 }
813 }
814
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700815 void setAppLayoutChanges(int changes, String reason, int displayId) {
816 final WindowAnimator windowAnimator = mAppAnimator.mAnimator;
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700817 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700818 // Child windows will be on the same display as their parents.
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700819 if (displayId == (mChildren.get(i)).getDisplayId()) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700820 windowAnimator.setPendingLayoutChanges(displayId, changes);
821 if (DEBUG_LAYOUT_REPEATS) {
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700822 mService.mWindowPlacerLocked.debugLayoutRepeats(
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700823 reason, windowAnimator.getPendingLayoutChanges(displayId));
824 }
825 break;
826 }
827 }
828 }
829
830 void removeReplacedWindowIfNeeded(WindowState replacement) {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700831 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700832 final WindowState win = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700833 if (win.removeReplacedWindowIfNeeded(replacement)) {
834 return;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700835 }
836 }
837 }
838
839 void startFreezingScreen() {
840 if (DEBUG_ORIENTATION) logWithStack(TAG, "Set freezing of " + appToken + ": hidden="
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700841 + hidden + " freezing=" + mAppAnimator.freezingScreen + " hiddenRequested="
842 + hiddenRequested);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700843 if (!hiddenRequested) {
844 if (!mAppAnimator.freezingScreen) {
845 mAppAnimator.freezingScreen = true;
Wale Ogunwale3f4433d2016-08-18 20:42:42 -0700846 mService.registerAppFreezeListener(this);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700847 mAppAnimator.lastFreezeDuration = 0;
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700848 mService.mAppsFreezingScreen++;
849 if (mService.mAppsFreezingScreen == 1) {
850 mService.startFreezingDisplayLocked(false, 0, 0);
851 mService.mH.removeMessages(H.APP_FREEZE_TIMEOUT);
852 mService.mH.sendEmptyMessageDelayed(H.APP_FREEZE_TIMEOUT, 2000);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700853 }
854 }
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700855 final int count = mChildren.size();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700856 for (int i = 0; i < count; i++) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700857 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700858 w.onStartFreezingScreen();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700859 }
860 }
861 }
862
863 void stopFreezingScreen(boolean unfreezeSurfaceNow, boolean force) {
864 if (!mAppAnimator.freezingScreen) {
865 return;
866 }
867 if (DEBUG_ORIENTATION) Slog.v(TAG_WM, "Clear freezing of " + this + " force=" + force);
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700868 final int count = mChildren.size();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700869 boolean unfrozeWindows = false;
870 for (int i = 0; i < count; i++) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700871 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700872 unfrozeWindows |= w.onStopFreezingScreen();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700873 }
874 if (force || unfrozeWindows) {
875 if (DEBUG_ORIENTATION) Slog.v(TAG_WM, "No longer freezing: " + this);
876 mAppAnimator.freezingScreen = false;
Wale Ogunwale3f4433d2016-08-18 20:42:42 -0700877 mService.unregisterAppFreezeListener(this);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700878 mAppAnimator.lastFreezeDuration =
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700879 (int)(SystemClock.elapsedRealtime() - mService.mDisplayFreezeTime);
880 mService.mAppsFreezingScreen--;
881 mService.mLastFinishedFreezeSource = this;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700882 }
883 if (unfreezeSurfaceNow) {
884 if (unfrozeWindows) {
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700885 mService.mWindowPlacerLocked.performSurfacePlacement();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700886 }
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700887 mService.stopFreezingDisplayLocked();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700888 }
889 }
890
Wale Ogunwale3f4433d2016-08-18 20:42:42 -0700891 @Override
892 public void onAppFreezeTimeout() {
893 Slog.w(TAG_WM, "Force clearing freeze: " + this);
894 stopFreezingScreen(true, true);
895 }
896
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700897 boolean transferStartingWindow(IBinder transferFrom) {
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700898 final AppWindowToken fromToken = mService.findAppWindowToken(transferFrom);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700899 if (fromToken == null) {
900 return false;
901 }
902
903 final WindowState tStartingWindow = fromToken.startingWindow;
904 if (tStartingWindow != null && fromToken.startingView != null) {
905 // In this case, the starting icon has already been displayed, so start
906 // letting windows get shown immediately without any more transitions.
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700907 mService.mSkipAppTransitionAnimation = true;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700908
909 if (DEBUG_STARTING_WINDOW) Slog.v(TAG_WM, "Moving existing starting " + tStartingWindow
910 + " from " + fromToken + " to " + this);
911
912 final long origId = Binder.clearCallingIdentity();
913
914 // Transfer the starting window over to the new token.
915 startingData = fromToken.startingData;
916 startingView = fromToken.startingView;
917 startingDisplayed = fromToken.startingDisplayed;
918 fromToken.startingDisplayed = false;
919 startingWindow = tStartingWindow;
920 reportedVisible = fromToken.reportedVisible;
921 fromToken.startingData = null;
922 fromToken.startingView = null;
923 fromToken.startingWindow = null;
924 fromToken.startingMoved = true;
925 tStartingWindow.mToken = this;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700926 tStartingWindow.mAppToken = this;
927
928 if (DEBUG_WINDOW_MOVEMENT || DEBUG_ADD_REMOVE || DEBUG_STARTING_WINDOW) Slog.v(TAG_WM,
929 "Removing starting window: " + tStartingWindow);
930 tStartingWindow.getWindowList().remove(tStartingWindow);
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700931 mService.mWindowsChanged = true;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700932 if (DEBUG_ADD_REMOVE) Slog.v(TAG_WM,
933 "Removing starting " + tStartingWindow + " from " + fromToken);
934 fromToken.removeWindow(tStartingWindow);
Wale Ogunwale92fc3722016-08-05 12:19:08 -0700935 addWindow(tStartingWindow);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700936
937 // Propagate other interesting state between the tokens. If the old token is displayed,
938 // we should immediately force the new one to be displayed. If it is animating, we need
939 // to move that animation to the new one.
940 if (fromToken.allDrawn) {
941 allDrawn = true;
942 deferClearAllDrawn = fromToken.deferClearAllDrawn;
943 }
944 if (fromToken.firstWindowDrawn) {
945 firstWindowDrawn = true;
946 }
947 if (!fromToken.hidden) {
948 hidden = false;
949 hiddenRequested = false;
950 }
951 if (clientHidden != fromToken.clientHidden) {
952 clientHidden = fromToken.clientHidden;
953 sendAppVisibilityToClients();
954 }
955 fromToken.mAppAnimator.transferCurrentAnimation(
956 mAppAnimator, tStartingWindow.mWinAnimator);
957
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700958 mService.updateFocusedWindowLocked(
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700959 UPDATE_FOCUS_WILL_PLACE_SURFACES, true /*updateInputWindows*/);
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700960 mService.getDefaultDisplayContentLocked().layoutNeeded = true;
961 mService.mWindowPlacerLocked.performSurfacePlacement();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700962 Binder.restoreCallingIdentity(origId);
963 return true;
964 } else if (fromToken.startingData != null) {
965 // The previous app was getting ready to show a
966 // starting window, but hasn't yet done so. Steal it!
967 if (DEBUG_STARTING_WINDOW) Slog.v(TAG_WM,
968 "Moving pending starting from " + fromToken + " to " + this);
969 startingData = fromToken.startingData;
970 fromToken.startingData = null;
971 fromToken.startingMoved = true;
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700972 final Message m = mService.mH.obtainMessage(H.ADD_STARTING, this);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700973 // Note: we really want to do sendMessageAtFrontOfQueue() because we want to process the
974 // message ASAP, before any other queued messages.
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700975 mService.mH.sendMessageAtFrontOfQueue(m);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700976 return true;
977 }
978
979 final AppWindowAnimator tAppAnimator = fromToken.mAppAnimator;
980 final AppWindowAnimator wAppAnimator = mAppAnimator;
981 if (tAppAnimator.thumbnail != null) {
982 // The old token is animating with a thumbnail, transfer that to the new token.
983 if (wAppAnimator.thumbnail != null) {
984 wAppAnimator.thumbnail.destroy();
985 }
986 wAppAnimator.thumbnail = tAppAnimator.thumbnail;
987 wAppAnimator.thumbnailLayer = tAppAnimator.thumbnailLayer;
988 wAppAnimator.thumbnailAnimation = tAppAnimator.thumbnailAnimation;
989 tAppAnimator.thumbnail = null;
990 }
991 return false;
992 }
993
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700994 boolean isLastWindow(WindowState win) {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700995 return mChildren.size() == 1 && mChildren.get(0) == win;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700996 }
997
998 void setAllAppWinAnimators() {
999 final ArrayList<WindowStateAnimator> allAppWinAnimators = mAppAnimator.mAllAppWinAnimators;
1000 allAppWinAnimators.clear();
1001
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001002 final int windowsCount = mChildren.size();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001003 for (int j = 0; j < windowsCount; j++) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07001004 (mChildren.get(j)).addWinAnimatorToList(allAppWinAnimators);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001005 }
1006 }
1007
Wale Ogunwale9adfe572016-09-08 20:43:58 -07001008 @Override
1009 void onAppTransitionDone() {
1010 sendingToBottom = false;
1011 }
1012
Wale Ogunwale51362492016-09-08 17:49:17 -07001013 /**
1014 * We override because this class doesn't want its children affecting its reported orientation
1015 * in anyway.
1016 */
1017 @Override
1018 int getOrientation() {
1019 if (hidden || hiddenRequested) {
1020 return SCREEN_ORIENTATION_UNSET;
1021 }
1022 return mOrientation;
1023 }
1024
Craig Mautnerdbb79912012-03-01 18:59:14 -08001025 @Override
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001026 void checkAppWindowsReadyToShow(int displayId) {
1027 if (allDrawn == mAppAnimator.allDrawn) {
1028 return;
1029 }
1030
1031 mAppAnimator.allDrawn = allDrawn;
1032 if (!allDrawn) {
1033 return;
1034 }
1035
1036 // The token has now changed state to having all windows shown... what to do, what to do?
1037 if (mAppAnimator.freezingScreen) {
1038 mAppAnimator.showAllWindowsLocked();
1039 stopFreezingScreen(false, true);
1040 if (DEBUG_ORIENTATION) Slog.i(TAG,
1041 "Setting mOrientationChangeComplete=true because wtoken " + this
1042 + " numInteresting=" + numInterestingWindows + " numDrawn=" + numDrawnWindows);
1043 // This will set mOrientationChangeComplete and cause a pass through layout.
1044 setAppLayoutChanges(FINISH_LAYOUT_REDO_WALLPAPER,
1045 "checkAppWindowsReadyToShow: freezingScreen", displayId);
1046 } else {
1047 setAppLayoutChanges(FINISH_LAYOUT_REDO_ANIM, "checkAppWindowsReadyToShow", displayId);
1048
1049 // We can now show all of the drawn windows!
1050 if (!mService.mOpeningApps.contains(this)) {
1051 mService.mAnimator.orAnimating(mAppAnimator.showAllWindowsLocked());
1052 }
1053 }
1054 }
1055
1056 @Override
1057 void updateAllDrawn(int displayId) {
1058 final DisplayContent displayContent = mService.getDisplayContentLocked(displayId);
1059
1060 if (!allDrawn) {
1061 final int numInteresting = numInterestingWindows;
1062 if (numInteresting > 0 && numDrawnWindows >= numInteresting) {
1063 if (DEBUG_VISIBILITY) Slog.v(TAG, "allDrawn: " + this
1064 + " interesting=" + numInteresting + " drawn=" + numDrawnWindows);
1065 allDrawn = true;
1066 // Force an additional layout pass where
1067 // WindowStateAnimator#commitFinishDrawingLocked() will call performShowLocked().
1068 displayContent.layoutNeeded = true;
1069 mService.mH.obtainMessage(NOTIFY_ACTIVITY_DRAWN, token).sendToTarget();
1070 }
1071 }
1072 if (!allDrawnExcludingSaved) {
1073 int numInteresting = numInterestingWindowsExcludingSaved;
1074 if (numInteresting > 0 && numDrawnWindowsExcludingSaved >= numInteresting) {
1075 if (DEBUG_VISIBILITY) Slog.v(TAG, "allDrawnExcludingSaved: " + this
1076 + " interesting=" + numInteresting
1077 + " drawn=" + numDrawnWindowsExcludingSaved);
1078 allDrawnExcludingSaved = true;
1079 displayContent.layoutNeeded = true;
1080 if (isAnimatingInvisibleWithSavedSurface()
1081 && !mService.mFinishedEarlyAnim.contains(this)) {
1082 mService.mFinishedEarlyAnim.add(this);
1083 }
1084 }
1085 }
1086 }
1087
1088 @Override
1089 void stepAppWindowsAnimation(long currentTime, int displayId) {
1090 mAppAnimator.wasAnimating = mAppAnimator.animating;
1091 if (mAppAnimator.stepAnimationLocked(currentTime, displayId)) {
1092 mAppAnimator.animating = true;
1093 mService.mAnimator.setAnimating(true);
1094 mService.mAnimator.mAppWindowAnimating = true;
1095 } else if (mAppAnimator.wasAnimating) {
1096 // stopped animating, do one more pass through the layout
1097 setAppLayoutChanges(
1098 FINISH_LAYOUT_REDO_WALLPAPER, "appToken " + this + " done", displayId);
1099 if (DEBUG_ANIM) Slog.v(TAG, "updateWindowsApps...: done animating " + this);
1100 }
1101 }
1102
1103 @Override
Wale Ogunwale9adfe572016-09-08 20:43:58 -07001104 int rebuildWindowList(DisplayContent dc, int addIndex) {
1105 if (mIsExiting && !waitingForReplacement()) {
1106 return addIndex;
1107 }
1108 return super.rebuildWindowList(dc, addIndex);
1109 }
1110
1111 @Override
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001112 AppWindowToken asAppWindowToken() {
1113 // I am an app window token!
1114 return this;
1115 }
1116
1117 @Override
Wale Ogunwale51362492016-09-08 17:49:17 -07001118 boolean fillsParent() {
1119 return mFillsParent;
1120 }
1121
1122 void setFillsParent(boolean fillsParent) {
1123 mFillsParent = fillsParent;
1124 }
1125
1126 @Override
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001127 void dump(PrintWriter pw, String prefix) {
1128 super.dump(pw, prefix);
1129 if (appToken != null) {
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001130 pw.print(prefix); pw.print("app=true voiceInteraction="); pw.println(voiceInteraction);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001131 }
Craig Mautner83162a92015-01-26 14:43:30 -08001132 pw.print(prefix); pw.print("task="); pw.println(mTask);
Wale Ogunwale51362492016-09-08 17:49:17 -07001133 pw.print(prefix); pw.print(" mFillsParent="); pw.print(mFillsParent);
1134 pw.print(" mOrientation="); pw.println(mOrientation);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001135 pw.print(prefix); pw.print("hiddenRequested="); pw.print(hiddenRequested);
1136 pw.print(" clientHidden="); pw.print(clientHidden);
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -07001137 pw.print(" reportedDrawn="); pw.print(reportedDrawn);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001138 pw.print(" reportedVisible="); pw.println(reportedVisible);
Craig Mautner59431632012-04-04 11:56:44 -07001139 if (paused) {
1140 pw.print(prefix); pw.print("paused="); pw.println(paused);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001141 }
Wale Ogunwale9017ec02016-02-25 08:55:25 -08001142 if (mAppStopped) {
1143 pw.print(prefix); pw.print("mAppStopped="); pw.println(mAppStopped);
1144 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001145 if (numInterestingWindows != 0 || numDrawnWindows != 0
Craig Mautner6fbda632012-07-03 09:26:39 -07001146 || allDrawn || mAppAnimator.allDrawn) {
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001147 pw.print(prefix); pw.print("numInterestingWindows=");
1148 pw.print(numInterestingWindows);
1149 pw.print(" numDrawnWindows="); pw.print(numDrawnWindows);
1150 pw.print(" inPendingTransaction="); pw.print(inPendingTransaction);
Craig Mautner6fbda632012-07-03 09:26:39 -07001151 pw.print(" allDrawn="); pw.print(allDrawn);
1152 pw.print(" (animator="); pw.print(mAppAnimator.allDrawn);
1153 pw.println(")");
1154 }
1155 if (inPendingTransaction) {
1156 pw.print(prefix); pw.print("inPendingTransaction=");
1157 pw.println(inPendingTransaction);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001158 }
Craig Mautner799bc1d2015-01-14 10:33:48 -08001159 if (startingData != null || removed || firstWindowDrawn || mIsExiting) {
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001160 pw.print(prefix); pw.print("startingData="); pw.print(startingData);
1161 pw.print(" removed="); pw.print(removed);
Craig Mautner3d7ca312015-01-08 10:56:00 -08001162 pw.print(" firstWindowDrawn="); pw.print(firstWindowDrawn);
Craig Mautner799bc1d2015-01-14 10:33:48 -08001163 pw.print(" mIsExiting="); pw.println(mIsExiting);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001164 }
1165 if (startingWindow != null || startingView != null
1166 || startingDisplayed || startingMoved) {
1167 pw.print(prefix); pw.print("startingWindow="); pw.print(startingWindow);
1168 pw.print(" startingView="); pw.print(startingView);
1169 pw.print(" startingDisplayed="); pw.print(startingDisplayed);
Wale Ogunwale9017ec02016-02-25 08:55:25 -08001170 pw.print(" startingMoved="); pw.println(startingMoved);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001171 }
Jorim Jaggi0429f352015-12-22 16:29:16 +01001172 if (!mFrozenBounds.isEmpty()) {
Chong Zhangd78ddb42016-03-02 17:01:14 -08001173 pw.print(prefix); pw.print("mFrozenBounds="); pw.println(mFrozenBounds);
Jorim Jaggi26c8c422016-05-09 19:57:25 -07001174 pw.print(prefix); pw.print("mFrozenMergedConfig="); pw.println(mFrozenMergedConfig);
Chong Zhangd78ddb42016-03-02 17:01:14 -08001175 }
1176 if (mPendingRelaunchCount != 0) {
1177 pw.print(prefix); pw.print("mPendingRelaunchCount="); pw.println(mPendingRelaunchCount);
Jorim Jaggi0429f352015-12-22 16:29:16 +01001178 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001179 }
1180
1181 @Override
1182 public String toString() {
1183 if (stringName == null) {
1184 StringBuilder sb = new StringBuilder();
1185 sb.append("AppWindowToken{");
1186 sb.append(Integer.toHexString(System.identityHashCode(this)));
1187 sb.append(" token="); sb.append(token); sb.append('}');
1188 stringName = sb.toString();
1189 }
1190 return stringName;
1191 }
Jeff Browne9bdb312012-04-05 15:30:10 -07001192}