blob: 4d12ba946a9656748c7f58f249455e96d6913808 [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.
Andrii Kulian1e32e022016-09-16 15:29:34 -0700328 // TODO(multi-display): notify docked divider on all displays where visibility was
329 // affected.
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700330 mService.getDefaultDisplayContentLocked().getDockedDividerController()
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700331 .notifyAppVisibilityChanged();
332 }
333 }
334
335 return delayed;
336 }
337
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800338 WindowState findMainWindow() {
Filip Gruszczynski55a309f2015-09-04 17:15:01 -0700339 WindowState candidate = null;
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700340 int j = mChildren.size();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800341 while (j > 0) {
342 j--;
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700343 final WindowState win = mChildren.get(j);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700344 final int type = win.mAttrs.type;
345 // No need to loop through child window as base application and starting types can't be
346 // child windows.
347 if (type == TYPE_BASE_APPLICATION || type == TYPE_APPLICATION_STARTING) {
Filip Gruszczynski55a309f2015-09-04 17:15:01 -0700348 // In cases where there are multiple windows, we prefer the non-exiting window. This
Sungsoo Lim0d3d1f82015-12-02 14:47:59 +0900349 // happens for example when replacing windows during an activity relaunch. When
Filip Gruszczynski55a309f2015-09-04 17:15:01 -0700350 // constructing the animation, we want the new window, not the exiting one.
Wale Ogunwalec48a3542016-02-19 15:18:45 -0800351 if (win.mAnimatingExit) {
Filip Gruszczynski55a309f2015-09-04 17:15:01 -0700352 candidate = win;
353 } else {
354 return win;
355 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800356 }
357 }
Filip Gruszczynski55a309f2015-09-04 17:15:01 -0700358 return candidate;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800359 }
360
Wale Ogunwale6cae7652015-12-26 07:36:26 -0800361 boolean windowsAreFocusable() {
362 return StackId.canReceiveKeys(mTask.mStack.mStackId) || mAlwaysFocusable;
Wale Ogunwaled045c822015-12-02 09:14:28 -0800363 }
364
Wale Ogunwale571771c2016-08-26 13:18:50 -0700365 @Override
Wale Ogunwale44f21802016-09-02 12:49:48 -0700366 boolean isVisible() {
367 if (hidden) {
368 // TODO: Should this be checking hiddenRequested instead of hidden?
369 return false;
370 }
371 return super.isVisible();
372 }
373
374 @Override
Wale Ogunwale571771c2016-08-26 13:18:50 -0700375 void removeIfPossible() {
Craig Mautnere3119b72015-01-20 15:02:36 -0800376 mIsExiting = false;
377 removeAllWindows();
Wale Ogunwale571771c2016-08-26 13:18:50 -0700378 if (mTask != null) {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700379 mTask.mStack.mExitingAppTokens.remove(this);
380 mTask.removeChild(this);
Craig Mautnere3119b72015-01-20 15:02:36 -0800381 }
382 }
383
Wale Ogunwale3f4433d2016-08-18 20:42:42 -0700384 @Override
385 boolean checkCompleteDeferredRemoval() {
386 if (mIsExiting) {
387 removeIfPossible();
388 }
389 return super.checkCompleteDeferredRemoval();
390 }
391
Chong Zhange05bcb12016-07-26 17:47:29 -0700392 void clearAnimatingFlags() {
Chong Zhangb0d26702016-08-12 16:03:29 -0700393 boolean wallpaperMightChange = false;
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700394 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700395 final WindowState win = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700396 wallpaperMightChange |= win.clearAnimatingFlags();
Chong Zhange05bcb12016-07-26 17:47:29 -0700397 }
Chong Zhangb0d26702016-08-12 16:03:29 -0700398 if (wallpaperMightChange) {
399 requestUpdateWallpaperIfNeeded();
400 }
Chong Zhange05bcb12016-07-26 17:47:29 -0700401 }
402
Robert Carre12aece2016-02-02 22:43:27 -0800403 void destroySurfaces() {
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700404 destroySurfaces(false /*cleanupOnResume*/);
405 }
406
407 /**
408 * Destroy surfaces which have been marked as eligible by the animator, taking care to ensure
409 * the client has finished with them.
410 *
411 * @param cleanupOnResume whether this is done when app is resumed without fully stopped. If
412 * set to true, destroy only surfaces of removed windows, and clear relevant flags of the
413 * others so that they are ready to be reused. If set to false (common case), destroy all
414 * surfaces that's eligible, if the app is already stopped.
415 */
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700416 private void destroySurfaces(boolean cleanupOnResume) {
Robert Carre12aece2016-02-02 22:43:27 -0800417 final DisplayContentList displayList = new DisplayContentList();
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700418 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700419 final WindowState win = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700420 final boolean destroyed = win.destroySurface(cleanupOnResume, mAppStopped);
Chong Zhangeb665572016-05-09 18:28:27 -0700421
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700422 if (destroyed) {
423 final DisplayContent displayContent = win.getDisplayContent();
424 if (displayContent != null && !displayList.contains(displayContent)) {
425 displayList.add(displayContent);
426 }
Robert Carre12aece2016-02-02 22:43:27 -0800427 }
Robert Carre12aece2016-02-02 22:43:27 -0800428 }
429 for (int i = 0; i < displayList.size(); i++) {
430 final DisplayContent displayContent = displayList.get(i);
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700431 mService.mLayersController.assignLayersLocked(displayContent.getWindowList());
Robert Carre12aece2016-02-02 22:43:27 -0800432 displayContent.layoutNeeded = true;
433 }
434 }
435
Wale Ogunwale8d5a5422016-03-03 18:28:21 -0800436 /**
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700437 * Notify that the app is now resumed, and it was not stopped before, perform a clean
438 * up of the surfaces
Wale Ogunwale8d5a5422016-03-03 18:28:21 -0800439 */
Chong Zhangad24f962016-08-25 12:12:33 -0700440 void notifyAppResumed(boolean wasStopped, boolean allowSavedSurface) {
441 if (DEBUG_ADD_REMOVE) Slog.v(TAG, "notifyAppResumed: wasStopped=" + wasStopped
442 + " allowSavedSurface=" + allowSavedSurface + " " + this);
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700443 mAppStopped = false;
444 if (!wasStopped) {
445 destroySurfaces(true /*cleanupOnResume*/);
Wale Ogunwale8d5a5422016-03-03 18:28:21 -0800446 }
Chong Zhangad24f962016-08-25 12:12:33 -0700447 if (!allowSavedSurface) {
448 destroySavedSurfaces();
449 }
Robert Carre12aece2016-02-02 22:43:27 -0800450 }
451
Chong Zhangbef461f2015-10-27 11:38:24 -0700452 /**
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700453 * Notify that the app has stopped, and it is okay to destroy any surfaces which were
454 * keeping alive in case they were still being used.
455 */
456 void notifyAppStopped() {
457 if (DEBUG_ADD_REMOVE) Slog.v(TAG, "notifyAppStopped: " + this);
458 mAppStopped = true;
459 destroySurfaces();
460 // Remove any starting window that was added for this app if they are still around.
461 mTask.mService.scheduleRemoveStartingWindowLocked(this);
462 }
463
464 /**
Chong Zhangbef461f2015-10-27 11:38:24 -0700465 * Checks whether we should save surfaces for this app.
466 *
467 * @return true if the surfaces should be saved, false otherwise.
468 */
469 boolean shouldSaveSurface() {
Chong Zhangbfc2f8f2016-01-29 15:50:34 -0800470 // We want to save surface if the app's windows are "allDrawn".
471 // (If we started entering animation early with saved surfaces, allDrawn
472 // should have been restored to true. So we'll save again in that case
473 // even if app didn't actually finish drawing.)
474 return allDrawn;
Robert Carr13f7be9e2015-12-02 18:39:45 -0800475 }
476
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700477 private boolean canRestoreSurfaces() {
478 for (int i = mChildren.size() -1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700479 final WindowState w = mChildren.get(i);
Chong Zhang92147042016-05-09 12:47:11 -0700480 if (w.canRestoreSurface()) {
Robert Carr13f7be9e2015-12-02 18:39:45 -0800481 return true;
482 }
Chong Zhangbef461f2015-10-27 11:38:24 -0700483 }
484 return false;
485 }
486
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700487 private void clearWasVisibleBeforeClientHidden() {
488 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700489 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700490 w.clearWasVisibleBeforeClientHidden();
Chong Zhang92147042016-05-09 12:47:11 -0700491 }
492 }
493
Chong Zhang8e4bda92016-05-04 15:08:18 -0700494 /**
495 * Whether the app has some window that is invisible in layout, but
496 * animating with saved surface.
497 */
498 boolean isAnimatingInvisibleWithSavedSurface() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700499 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700500 final WindowState w = mChildren.get(i);
Chong Zhang8e4bda92016-05-04 15:08:18 -0700501 if (w.isAnimatingInvisibleWithSavedSurface()) {
502 return true;
503 }
504 }
505 return false;
506 }
507
508 /**
509 * Hide all window surfaces that's still invisible in layout but animating
510 * with a saved surface, and mark them destroying.
511 */
512 void stopUsingSavedSurfaceLocked() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700513 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700514 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700515 w.stopUsingSavedSurface();
Chong Zhang8e4bda92016-05-04 15:08:18 -0700516 }
517 destroySurfaces();
518 }
519
Chong Zhangf58631a2016-05-24 16:02:10 -0700520 void markSavedSurfaceExiting() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700521 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700522 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700523 w.markSavedSurfaceExiting();
Chong Zhangf58631a2016-05-24 16:02:10 -0700524 }
525 }
526
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700527 void restoreSavedSurfaceForInterestingWindows() {
Chong Zhang92147042016-05-09 12:47:11 -0700528 if (!canRestoreSurfaces()) {
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700529 clearWasVisibleBeforeClientHidden();
Chong Zhangbef461f2015-10-27 11:38:24 -0700530 return;
531 }
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700532
533 // Check if all interesting windows are drawn and we can mark allDrawn=true.
534 int interestingNotDrawn = -1;
535
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700536 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700537 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700538 interestingNotDrawn = w.restoreSavedSurfaceForInterestingWindow();
Chong Zhangbef461f2015-10-27 11:38:24 -0700539 }
Chong Zhangbfc2f8f2016-01-29 15:50:34 -0800540
Chong Zhang92147042016-05-09 12:47:11 -0700541 if (!allDrawn) {
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700542 allDrawn = (interestingNotDrawn == 0);
Chong Zhang92147042016-05-09 12:47:11 -0700543 if (allDrawn) {
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700544 mService.mH.obtainMessage(NOTIFY_ACTIVITY_DRAWN, token).sendToTarget();
Chong Zhang92147042016-05-09 12:47:11 -0700545 }
546 }
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700547 clearWasVisibleBeforeClientHidden();
Chong Zhangbfc2f8f2016-01-29 15:50:34 -0800548
549 if (DEBUG_APP_TRANSITIONS || DEBUG_ANIM) Slog.d(TAG,
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700550 "restoreSavedSurfaceForInterestingWindows: " + this + " allDrawn=" + allDrawn
551 + " interestingNotDrawn=" + interestingNotDrawn);
Chong Zhangbef461f2015-10-27 11:38:24 -0700552 }
553
554 void destroySavedSurfaces() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700555 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700556 final WindowState win = mChildren.get(i);
Robert Carr13f7be9e2015-12-02 18:39:45 -0800557 win.destroySavedSurface();
Chong Zhangbef461f2015-10-27 11:38:24 -0700558 }
Chong Zhang92147042016-05-09 12:47:11 -0700559 }
560
561 void clearAllDrawn() {
562 allDrawn = false;
563 deferClearAllDrawn = false;
Chong Zhang8e4bda92016-05-04 15:08:18 -0700564 allDrawnExcludingSaved = false;
Chong Zhangbef461f2015-10-27 11:38:24 -0700565 }
566
Wale Ogunwalefa854eb2016-09-20 13:43:52 -0700567 void postWindowRemoveStartingWindowCleanup(WindowState win) {
Wale Ogunwale92fc3722016-08-05 12:19:08 -0700568 // TODO: Something smells about the code below...Is there a better way?
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700569 if (startingWindow == win) {
570 if (DEBUG_STARTING_WINDOW) Slog.v(TAG_WM, "Notify removed startingWindow " + win);
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700571 mService.scheduleRemoveStartingWindowLocked(this);
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700572 } else if (mChildren.size() == 0 && startingData != null) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700573 // If this is the last window and we had requested a starting transition window,
574 // well there is no point now.
575 if (DEBUG_STARTING_WINDOW) Slog.v(TAG_WM, "Nulling last startingWindow");
576 startingData = null;
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700577 } else if (mChildren.size() == 1 && startingView != null) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700578 // If this is the last window except for a starting transition window,
579 // we need to get rid of the starting transition.
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700580 mService.scheduleRemoveStartingWindowLocked(this);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700581 }
582 }
583
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700584 void removeDeadWindows() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700585 for (int winNdx = mChildren.size() - 1; winNdx >= 0; --winNdx) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700586 WindowState win = mChildren.get(winNdx);
Chong Zhang112eb8c2015-11-02 11:17:00 -0800587 if (win.mAppDied) {
Wale Ogunwale92fc3722016-08-05 12:19:08 -0700588 if (DEBUG_WINDOW_MOVEMENT || DEBUG_ADD_REMOVE) Slog.w(TAG,
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700589 "removeDeadWindows: " + win);
Chong Zhang112eb8c2015-11-02 11:17:00 -0800590 // Set mDestroying, we don't want any animation or delayed removal here.
591 win.mDestroying = true;
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700592 // Also removes child windows.
Wale Ogunwale92fc3722016-08-05 12:19:08 -0700593 win.removeIfPossible();
Chong Zhang112eb8c2015-11-02 11:17:00 -0800594 }
595 }
596 }
597
Wale Ogunwalee42d0e12016-05-02 16:40:59 -0700598 boolean hasWindowsAlive() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700599 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700600 // No need to loop through child windows as the answer should be the same as that of the
601 // parent window.
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700602 if (!(mChildren.get(i)).mAppDied) {
Wale Ogunwalee42d0e12016-05-02 16:40:59 -0700603 return true;
604 }
605 }
606 return false;
607 }
608
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700609 void setWillReplaceWindows(boolean animate) {
Wale Ogunwale455fac52016-07-21 07:24:49 -0700610 if (DEBUG_ADD_REMOVE) Slog.d(TAG_WM,
611 "Marking app token " + this + " with replacing windows.");
Robert Carra1eb4392015-12-10 12:43:51 -0800612
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700613 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700614 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700615 w.setWillReplaceWindow(animate);
Robert Carra1eb4392015-12-10 12:43:51 -0800616 }
617 if (animate) {
618 // Set-up dummy animation so we can start treating windows associated with this
619 // token like they are in transition before the new app window is ready for us to
620 // run the real transition animation.
621 if (DEBUG_APP_TRANSITIONS) Slog.v(TAG_WM,
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700622 "setWillReplaceWindow() Setting dummy animation on: " + this);
Robert Carra1eb4392015-12-10 12:43:51 -0800623 mAppAnimator.setDummyAnimation();
624 }
625 }
626
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700627 void setWillReplaceChildWindows() {
Wale Ogunwale455fac52016-07-21 07:24:49 -0700628 if (DEBUG_ADD_REMOVE) Slog.d(TAG_WM, "Marking app token " + this
Robert Carr23fa16b2016-01-13 13:19:58 -0800629 + " with replacing child windows.");
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700630 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700631 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700632 w.setWillReplaceChildWindows();
Robert Carr23fa16b2016-01-13 13:19:58 -0800633 }
634 }
635
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700636 void clearWillReplaceWindows() {
Wale Ogunwale455fac52016-07-21 07:24:49 -0700637 if (DEBUG_ADD_REMOVE) Slog.d(TAG_WM,
638 "Resetting app token " + this + " of replacing window marks.");
Chong Zhangf596cd52016-01-05 13:42:44 -0800639
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700640 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700641 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700642 w.clearWillReplaceWindow();
Chong Zhangf596cd52016-01-05 13:42:44 -0800643 }
644 }
645
Chong Zhang4d7369a2016-04-25 16:09:14 -0700646 void requestUpdateWallpaperIfNeeded() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700647 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700648 final WindowState w = mChildren.get(i);
Chong Zhang4d7369a2016-04-25 16:09:14 -0700649 w.requestUpdateWallpaperIfNeeded();
650 }
651 }
652
Chong Zhangd78ddb42016-03-02 17:01:14 -0800653 boolean isRelaunching() {
654 return mPendingRelaunchCount > 0;
655 }
656
657 void startRelaunching() {
658 if (canFreezeBounds()) {
659 freezeBounds();
660 }
661 mPendingRelaunchCount++;
662 }
663
664 void finishRelaunching() {
665 if (canFreezeBounds()) {
666 unfreezeBounds();
667 }
668 if (mPendingRelaunchCount > 0) {
669 mPendingRelaunchCount--;
670 }
671 }
672
Wale Ogunwale8fd75422016-06-24 14:20:37 -0700673 void clearRelaunching() {
Wale Ogunwale37dbafc2016-06-27 10:15:20 -0700674 if (mPendingRelaunchCount == 0) {
675 return;
676 }
Wale Ogunwale8fd75422016-06-24 14:20:37 -0700677 if (canFreezeBounds()) {
678 unfreezeBounds();
679 }
680 mPendingRelaunchCount = 0;
681 }
682
Wale Ogunwale92fc3722016-08-05 12:19:08 -0700683 @Override
Robert Carra1eb4392015-12-10 12:43:51 -0800684 void addWindow(WindowState w) {
Wale Ogunwale92fc3722016-08-05 12:19:08 -0700685 super.addWindow(w);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700686
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700687 boolean gotReplacementWindow = false;
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700688 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700689 final WindowState candidate = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700690 gotReplacementWindow |= candidate.setReplacementWindowIfNeeded(w);
691 }
Wale Ogunwale92fc3722016-08-05 12:19:08 -0700692
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700693 // if we got a replacement window, reset the timeout to give drawing more time
694 if (gotReplacementWindow) {
695 mService.scheduleWindowReplacementTimeouts(this);
Robert Carra1eb4392015-12-10 12:43:51 -0800696 }
Robert Carra1eb4392015-12-10 12:43:51 -0800697 }
698
699 boolean waitingForReplacement() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700700 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700701 final WindowState candidate = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700702 if (candidate.waitingForReplacement()) {
Robert Carra1eb4392015-12-10 12:43:51 -0800703 return true;
704 }
705 }
706 return false;
707 }
708
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700709 void onWindowReplacementTimeout() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700710 for (int i = mChildren.size() - 1; i >= 0; --i) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700711 (mChildren.get(i)).onWindowReplacementTimeout();
Robert Carra1eb4392015-12-10 12:43:51 -0800712 }
713 }
714
Chong Zhangd78ddb42016-03-02 17:01:14 -0800715 private boolean canFreezeBounds() {
716 // For freeform windows, we can't freeze the bounds at the moment because this would make
717 // the resizing unresponsive.
718 return mTask != null && !mTask.inFreeformWorkspace();
719 }
720
Jorim Jaggi0429f352015-12-22 16:29:16 +0100721 /**
722 * Freezes the task bounds. The size of this task reported the app will be fixed to the bounds
723 * freezed by {@link Task#prepareFreezingBounds} until {@link #unfreezeBounds} gets called, even
724 * if they change in the meantime. If the bounds are already frozen, the bounds will be frozen
725 * with a queue.
726 */
Chong Zhangd78ddb42016-03-02 17:01:14 -0800727 private void freezeBounds() {
Jorim Jaggi0429f352015-12-22 16:29:16 +0100728 mFrozenBounds.offer(new Rect(mTask.mPreparedFrozenBounds));
Jorim Jaggi26c8c422016-05-09 19:57:25 -0700729
730 if (mTask.mPreparedFrozenMergedConfig.equals(Configuration.EMPTY)) {
731 // We didn't call prepareFreezingBounds on the task, so use the current value.
Andrii Kulian8072d112016-09-16 11:11:01 -0700732 final Configuration config = new Configuration(mService.mGlobalConfiguration);
Jorim Jaggi26c8c422016-05-09 19:57:25 -0700733 config.updateFrom(mTask.mOverrideConfig);
734 mFrozenMergedConfig.offer(config);
735 } else {
736 mFrozenMergedConfig.offer(new Configuration(mTask.mPreparedFrozenMergedConfig));
737 }
Andrii Kulianb10330d2016-09-16 13:51:46 -0700738 // Calling unset() to make it equal to Configuration.EMPTY.
739 mTask.mPreparedFrozenMergedConfig.unset();
Jorim Jaggi0429f352015-12-22 16:29:16 +0100740 }
741
742 /**
743 * Unfreezes the previously frozen bounds. See {@link #freezeBounds}.
744 */
Chong Zhangd78ddb42016-03-02 17:01:14 -0800745 private void unfreezeBounds() {
Wale Ogunwale37dbafc2016-06-27 10:15:20 -0700746 if (!mFrozenBounds.isEmpty()) {
747 mFrozenBounds.remove();
748 }
749 if (!mFrozenMergedConfig.isEmpty()) {
750 mFrozenMergedConfig.remove();
751 }
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700752 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700753 final WindowState win = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700754 win.onUnfreezeBounds();
Jorim Jaggi4846ee32016-01-07 17:39:12 +0100755 }
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700756 mService.mWindowPlacerLocked.performSurfacePlacement();
Jorim Jaggi0429f352015-12-22 16:29:16 +0100757 }
758
Robert Carr91b228092016-06-28 17:32:37 -0700759 void addSurfaceViewBackground(WindowSurfaceController.SurfaceControlWithBackground background) {
760 mSurfaceViewBackgrounds.add(background);
761 }
762
763 void removeSurfaceViewBackground(WindowSurfaceController.SurfaceControlWithBackground background) {
764 mSurfaceViewBackgrounds.remove(background);
765 updateSurfaceViewBackgroundVisibilities();
766 }
767
768 // We use DimLayers behind SurfaceViews to prevent holes while resizing and creating.
769 // However, we need to ensure one SurfaceView doesn't cover another when they are both placed
770 // below the main app window (as traditionally a SurfaceView which is never drawn
771 // to is totally translucent). So we look at all our SurfaceView backgrounds and only enable
772 // the background for the SurfaceView with lowest Z order
773 void updateSurfaceViewBackgroundVisibilities() {
774 WindowSurfaceController.SurfaceControlWithBackground bottom = null;
775 int bottomLayer = Integer.MAX_VALUE;
776 for (int i = 0; i < mSurfaceViewBackgrounds.size(); i++) {
777 WindowSurfaceController.SurfaceControlWithBackground sc = mSurfaceViewBackgrounds.get(i);
778 if (sc.mVisible && sc.mLayer < bottomLayer) {
779 bottomLayer = sc.mLayer;
780 bottom = sc;
781 }
782 }
783 for (int i = 0; i < mSurfaceViewBackgrounds.size(); i++) {
784 WindowSurfaceController.SurfaceControlWithBackground sc = mSurfaceViewBackgrounds.get(i);
785 sc.updateBackgroundVisibility(sc != bottom);
786 }
787 }
788
Jorim Jaggi6626f542016-08-22 13:08:44 -0700789 /**
790 * See {@link WindowManagerService#overridePlayingAppAnimationsLw}
791 */
792 void overridePlayingAppAnimations(Animation a) {
793 if (mAppAnimator.isAnimating()) {
794 final WindowState win = findMainWindow();
795 final int width = win.mContainingFrame.width();
796 final int height = win.mContainingFrame.height();
797 mAppAnimator.setAnimation(a, width, height, false, STACK_CLIP_NONE);
798 }
799 }
800
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700801 void resetJustMovedInStack() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700802 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700803 (mChildren.get(i)).resetJustMovedInStack();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700804 }
805 }
806
807 void notifyMovedInStack() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700808 for (int winNdx = mChildren.size() - 1; winNdx >= 0; --winNdx) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700809 final WindowState win = mChildren.get(winNdx);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700810 win.notifyMovedInStack();
811 }
812 }
813
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700814 void setAppLayoutChanges(int changes, String reason, int displayId) {
815 final WindowAnimator windowAnimator = mAppAnimator.mAnimator;
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700816 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700817 // Child windows will be on the same display as their parents.
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700818 if (displayId == (mChildren.get(i)).getDisplayId()) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700819 windowAnimator.setPendingLayoutChanges(displayId, changes);
820 if (DEBUG_LAYOUT_REPEATS) {
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700821 mService.mWindowPlacerLocked.debugLayoutRepeats(
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700822 reason, windowAnimator.getPendingLayoutChanges(displayId));
823 }
824 break;
825 }
826 }
827 }
828
829 void removeReplacedWindowIfNeeded(WindowState replacement) {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700830 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700831 final WindowState win = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700832 if (win.removeReplacedWindowIfNeeded(replacement)) {
833 return;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700834 }
835 }
836 }
837
838 void startFreezingScreen() {
839 if (DEBUG_ORIENTATION) logWithStack(TAG, "Set freezing of " + appToken + ": hidden="
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700840 + hidden + " freezing=" + mAppAnimator.freezingScreen + " hiddenRequested="
841 + hiddenRequested);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700842 if (!hiddenRequested) {
843 if (!mAppAnimator.freezingScreen) {
844 mAppAnimator.freezingScreen = true;
Wale Ogunwale3f4433d2016-08-18 20:42:42 -0700845 mService.registerAppFreezeListener(this);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700846 mAppAnimator.lastFreezeDuration = 0;
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700847 mService.mAppsFreezingScreen++;
848 if (mService.mAppsFreezingScreen == 1) {
849 mService.startFreezingDisplayLocked(false, 0, 0);
850 mService.mH.removeMessages(H.APP_FREEZE_TIMEOUT);
851 mService.mH.sendEmptyMessageDelayed(H.APP_FREEZE_TIMEOUT, 2000);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700852 }
853 }
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700854 final int count = mChildren.size();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700855 for (int i = 0; i < count; i++) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700856 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700857 w.onStartFreezingScreen();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700858 }
859 }
860 }
861
862 void stopFreezingScreen(boolean unfreezeSurfaceNow, boolean force) {
863 if (!mAppAnimator.freezingScreen) {
864 return;
865 }
866 if (DEBUG_ORIENTATION) Slog.v(TAG_WM, "Clear freezing of " + this + " force=" + force);
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700867 final int count = mChildren.size();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700868 boolean unfrozeWindows = false;
869 for (int i = 0; i < count; i++) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700870 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700871 unfrozeWindows |= w.onStopFreezingScreen();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700872 }
873 if (force || unfrozeWindows) {
874 if (DEBUG_ORIENTATION) Slog.v(TAG_WM, "No longer freezing: " + this);
875 mAppAnimator.freezingScreen = false;
Wale Ogunwale3f4433d2016-08-18 20:42:42 -0700876 mService.unregisterAppFreezeListener(this);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700877 mAppAnimator.lastFreezeDuration =
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700878 (int)(SystemClock.elapsedRealtime() - mService.mDisplayFreezeTime);
879 mService.mAppsFreezingScreen--;
880 mService.mLastFinishedFreezeSource = this;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700881 }
882 if (unfreezeSurfaceNow) {
883 if (unfrozeWindows) {
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700884 mService.mWindowPlacerLocked.performSurfacePlacement();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700885 }
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700886 mService.stopFreezingDisplayLocked();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700887 }
888 }
889
Wale Ogunwale3f4433d2016-08-18 20:42:42 -0700890 @Override
891 public void onAppFreezeTimeout() {
892 Slog.w(TAG_WM, "Force clearing freeze: " + this);
893 stopFreezingScreen(true, true);
894 }
895
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700896 boolean transferStartingWindow(IBinder transferFrom) {
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700897 final AppWindowToken fromToken = mService.findAppWindowToken(transferFrom);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700898 if (fromToken == null) {
899 return false;
900 }
901
902 final WindowState tStartingWindow = fromToken.startingWindow;
903 if (tStartingWindow != null && fromToken.startingView != null) {
904 // In this case, the starting icon has already been displayed, so start
905 // letting windows get shown immediately without any more transitions.
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700906 mService.mSkipAppTransitionAnimation = true;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700907
908 if (DEBUG_STARTING_WINDOW) Slog.v(TAG_WM, "Moving existing starting " + tStartingWindow
909 + " from " + fromToken + " to " + this);
910
911 final long origId = Binder.clearCallingIdentity();
912
913 // Transfer the starting window over to the new token.
914 startingData = fromToken.startingData;
915 startingView = fromToken.startingView;
916 startingDisplayed = fromToken.startingDisplayed;
917 fromToken.startingDisplayed = false;
918 startingWindow = tStartingWindow;
919 reportedVisible = fromToken.reportedVisible;
920 fromToken.startingData = null;
921 fromToken.startingView = null;
922 fromToken.startingWindow = null;
923 fromToken.startingMoved = true;
924 tStartingWindow.mToken = this;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700925 tStartingWindow.mAppToken = this;
926
927 if (DEBUG_WINDOW_MOVEMENT || DEBUG_ADD_REMOVE || DEBUG_STARTING_WINDOW) Slog.v(TAG_WM,
928 "Removing starting window: " + tStartingWindow);
929 tStartingWindow.getWindowList().remove(tStartingWindow);
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700930 mService.mWindowsChanged = true;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700931 if (DEBUG_ADD_REMOVE) Slog.v(TAG_WM,
932 "Removing starting " + tStartingWindow + " from " + fromToken);
Wale Ogunwalefa854eb2016-09-20 13:43:52 -0700933 fromToken.removeChild(tStartingWindow);
934 fromToken.postWindowRemoveStartingWindowCleanup(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}