blob: ac9859d42fcceac07692ac10d291f46e92dc053d [file] [log] [blame]
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001/*
2 * Copyright (C) 2011 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package com.android.server.wm;
18
Wale Ogunwale6cae7652015-12-26 07:36:26 -080019import static android.app.ActivityManager.StackId;
Wale Ogunwale72919d22016-12-08 18:58:50 -080020import static android.content.pm.ActivityInfo.CONFIG_ORIENTATION;
21import static android.content.pm.ActivityInfo.CONFIG_SCREEN_SIZE;
Wale Ogunwale51362492016-09-08 17:49:17 -070022import static android.content.pm.ActivityInfo.SCREEN_ORIENTATION_UNSET;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -070023import static android.view.Display.DEFAULT_DISPLAY;
Jorim Jaggife762342016-10-13 14:33:27 +020024import static android.view.WindowManager.LayoutParams.FLAG_DISMISS_KEYGUARD;
25import static android.view.WindowManager.LayoutParams.FLAG_SHOW_WHEN_LOCKED;
Wale Ogunwaled1c37912016-08-16 03:19:39 -070026import static android.view.WindowManager.LayoutParams.TYPE_APPLICATION;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080027import static android.view.WindowManager.LayoutParams.TYPE_APPLICATION_STARTING;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -070028import static android.view.WindowManager.LayoutParams.TYPE_BASE_APPLICATION;
Wale Ogunwale3f4433d2016-08-18 20:42:42 -070029import static android.view.WindowManagerPolicy.FINISH_LAYOUT_REDO_ANIM;
30import static android.view.WindowManagerPolicy.FINISH_LAYOUT_REDO_WALLPAPER;
Wale Ogunwaleac2561e2016-11-01 15:43:46 -070031import static com.android.server.wm.AppTransition.TRANSIT_UNSET;
Jorim Jaggiba41f4b2016-12-14 17:43:07 -080032import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_ADD_REMOVE;
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -080033import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_ANIM;
34import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_APP_TRANSITIONS;
Wale Ogunwaleac2561e2016-11-01 15:43:46 -070035import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_FOCUS_LIGHT;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -070036import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_LAYOUT_REPEATS;
37import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_ORIENTATION;
Wale Ogunwale9017ec02016-02-25 08:55:25 -080038import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_STARTING_WINDOW;
Wale Ogunwaleac2561e2016-11-01 15:43:46 -070039import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_TOKEN_MOVEMENT;
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -080040import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_VISIBILITY;
41import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_WINDOW_MOVEMENT;
42import static com.android.server.wm.WindowManagerDebugConfig.TAG_WITH_CLASS_NAME;
43import static com.android.server.wm.WindowManagerDebugConfig.TAG_WM;
Chong Zhang92147042016-05-09 12:47:11 -070044import static com.android.server.wm.WindowManagerService.H.NOTIFY_ACTIVITY_DRAWN;
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -070045import static com.android.server.wm.WindowManagerService.H.NOTIFY_STARTING_WINDOW_DRAWN;
Wale Ogunwaleac2561e2016-11-01 15:43:46 -070046import static com.android.server.wm.WindowManagerService.UPDATE_FOCUS_NORMAL;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -070047import static com.android.server.wm.WindowManagerService.UPDATE_FOCUS_WILL_PLACE_SURFACES;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -070048import static com.android.server.wm.WindowManagerService.logWithStack;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080049
Filip Gruszczynskia590c992015-11-25 16:45:26 -080050import android.annotation.NonNull;
Jorim Jaggi26c8c422016-05-09 19:57:25 -070051import android.content.res.Configuration;
Jorim Jaggi0429f352015-12-22 16:29:16 +010052import android.graphics.Rect;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -070053import android.os.Binder;
Jorim Jaggiba41f4b2016-12-14 17:43:07 -080054import android.os.Debug;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -070055import android.os.IBinder;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -070056import android.os.SystemClock;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080057import android.util.Slog;
58import android.view.IApplicationToken;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080059import android.view.WindowManager;
Jorim Jaggiba41f4b2016-12-14 17:43:07 -080060import android.view.WindowManagerPolicy.StartingSurface;
61
62import com.android.internal.util.ToBooleanFunction;
63import com.android.server.input.InputApplicationHandle;
64import com.android.server.wm.WindowManagerService.H;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080065
66import java.io.PrintWriter;
Jorim Jaggi0429f352015-12-22 16:29:16 +010067import java.util.ArrayDeque;
Craig Mautnerb1fd65c02013-02-05 13:34:57 -080068import java.util.ArrayList;
69
70class AppTokenList extends ArrayList<AppWindowToken> {
71}
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080072
73/**
74 * Version of WindowToken that is specifically for a particular application (or
75 * really activity) that is displaying windows.
76 */
Wale Ogunwale3f4433d2016-08-18 20:42:42 -070077class AppWindowToken extends WindowToken implements WindowManagerService.AppFreezeListener {
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -080078 private static final String TAG = TAG_WITH_CLASS_NAME ? "AppWindowToken" : TAG_WM;
79
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080080 // Non-null only for application tokens.
81 final IApplicationToken appToken;
82
Filip Gruszczynskia590c992015-11-25 16:45:26 -080083 @NonNull final AppWindowAnimator mAppAnimator;
Craig Mautnerd09cc4b2012-04-04 10:23:31 -070084
Wale Ogunwale72919d22016-12-08 18:58:50 -080085 final boolean mVoiceInteraction;
Dianne Hackborne30e02f2014-05-27 18:24:45 -070086
Wale Ogunwalef6192862016-09-10 13:42:30 -070087 // TODO: Use getParent instead?
Craig Mautner83162a92015-01-26 14:43:30 -080088 Task mTask;
Wale Ogunwale51362492016-09-08 17:49:17 -070089 /** @see WindowContainer#fillsParent() */
90 private boolean mFillsParent;
Craig Mautner4c5eb222013-11-18 12:59:05 -080091 boolean layoutConfigChanges;
Wale Ogunwale72919d22016-12-08 18:58:50 -080092 boolean mShowForAllUsers;
93 int mTargetSdk;
Craig Mautnera2c77052012-03-26 12:14:43 -070094
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080095 // The input dispatching timeout for this application token in nanoseconds.
Wale Ogunwale72919d22016-12-08 18:58:50 -080096 long mInputDispatchingTimeoutNanos;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080097
98 // These are used for determining when all windows associated with
99 // an activity have been drawn, so they can be made visible together
100 // at the same time.
Craig Mautner764983d2012-03-22 11:37:36 -0700101 // initialize so that it doesn't match mTransactionSequence which is an int.
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -0700102 private long mLastTransactionSequence = Long.MIN_VALUE;
103 private int mNumInterestingWindows;
104 private int mNumDrawnWindows;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800105 boolean inPendingTransaction;
106 boolean allDrawn;
Craig Mautner7636dfb2012-11-16 15:24:11 -0800107 // Set to true when this app creates a surface while in the middle of an animation. In that
108 // case do not clear allDrawn until the animation completes.
109 boolean deferClearAllDrawn;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800110
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -0700111 /**
112 * These are to track the app's real drawing status if there were no saved surfaces.
113 * @see #updateDrawnWindowStates
114 */
Chong Zhang8e4bda92016-05-04 15:08:18 -0700115 boolean allDrawnExcludingSaved;
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -0700116 private int mNumInterestingWindowsExcludingSaved;
117 private int mNumDrawnWindowsExcludingSaved;
Chong Zhang8e4bda92016-05-04 15:08:18 -0700118
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800119 // Is this window's surface needed? This is almost like hidden, except
120 // it will sometimes be true a little earlier: when the token has
121 // been shown, but is still waiting for its app transition to execute
122 // before making its windows shown.
123 boolean hiddenRequested;
124
125 // Have we told the window clients to hide themselves?
126 boolean clientHidden;
127
128 // Last visibility state we reported to the app token.
129 boolean reportedVisible;
130
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700131 // Last drawn state we reported to the app token.
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -0700132 private boolean reportedDrawn;
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700133
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800134 // Set to true when the token has been removed from the window mgr.
135 boolean removed;
136
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800137 // Information about an application starting window if displayed.
138 StartingData startingData;
139 WindowState startingWindow;
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800140 StartingSurface startingSurface;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800141 boolean startingDisplayed;
142 boolean startingMoved;
143 boolean firstWindowDrawn;
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700144 private final WindowState.UpdateReportedVisibilityResults mReportedVisibilityResults =
145 new WindowState.UpdateReportedVisibilityResults();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800146
147 // Input application handle used by the input dispatcher.
Jeff Brown9302c872011-07-13 22:51:29 -0700148 final InputApplicationHandle mInputApplicationHandle;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800149
Wale Ogunwale571771c2016-08-26 13:18:50 -0700150 // TODO: Have a WindowContainer state for tracking exiting/deferred removal.
Craig Mautner799bc1d2015-01-14 10:33:48 -0800151 boolean mIsExiting;
Craig Mautner9ef471f2014-02-07 13:11:47 -0800152
Craig Mautnerbb742462014-07-07 15:28:55 -0700153 boolean mLaunchTaskBehind;
Craig Mautner8746a472014-07-24 15:12:54 -0700154 boolean mEnteringAnimation;
Craig Mautnerbb742462014-07-07 15:28:55 -0700155
Wale Ogunwale72919d22016-12-08 18:58:50 -0800156 private boolean mAlwaysFocusable;
Wale Ogunwale6cae7652015-12-26 07:36:26 -0800157
Robert Carre12aece2016-02-02 22:43:27 -0800158 boolean mAppStopped;
Robert Carrfd10cd12016-06-29 16:41:50 -0700159 int mRotationAnimationHint;
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -0700160 private int mPendingRelaunchCount;
Robert Carre12aece2016-02-02 22:43:27 -0800161
Jorim Jaggife762342016-10-13 14:33:27 +0200162 private boolean mLastContainsShowWhenLockedWindow;
163 private boolean mLastContainsDismissKeyguardWindow;
164
Robert Carr91b228092016-06-28 17:32:37 -0700165 private ArrayList<WindowSurfaceController.SurfaceControlWithBackground> mSurfaceViewBackgrounds =
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700166 new ArrayList<>();
Robert Carr91b228092016-06-28 17:32:37 -0700167
Jorim Jaggi0429f352015-12-22 16:29:16 +0100168 ArrayDeque<Rect> mFrozenBounds = new ArrayDeque<>();
Jorim Jaggi26c8c422016-05-09 19:57:25 -0700169 ArrayDeque<Configuration> mFrozenMergedConfig = new ArrayDeque<>();
Jorim Jaggi0429f352015-12-22 16:29:16 +0100170
Wale Ogunwale72919d22016-12-08 18:58:50 -0800171 AppWindowToken(WindowManagerService service, IApplicationToken token, boolean voiceInteraction,
172 DisplayContent dc, long inputDispatchingTimeoutNanos, boolean fullscreen,
173 boolean showForAllUsers, int targetSdk, int orientation, int rotationAnimationHint,
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800174 int configChanges, boolean launchTaskBehind, boolean alwaysFocusable,
175 AppWindowContainerController controller) {
Wale Ogunwale72919d22016-12-08 18:58:50 -0800176 this(service, token, voiceInteraction, dc);
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800177 setController(controller);
Wale Ogunwale72919d22016-12-08 18:58:50 -0800178 mInputDispatchingTimeoutNanos = inputDispatchingTimeoutNanos;
179 mFillsParent = fullscreen;
180 mShowForAllUsers = showForAllUsers;
181 mTargetSdk = targetSdk;
182 mOrientation = orientation;
183 layoutConfigChanges = (configChanges & (CONFIG_SCREEN_SIZE | CONFIG_ORIENTATION)) != 0;
184 mLaunchTaskBehind = launchTaskBehind;
185 mAlwaysFocusable = alwaysFocusable;
186 mRotationAnimationHint = rotationAnimationHint;
187
188 // Application tokens start out hidden.
189 hidden = true;
190 hiddenRequested = true;
191 }
192
193 AppWindowToken(WindowManagerService service, IApplicationToken token, boolean voiceInteraction,
194 DisplayContent dc) {
195 super(service, token != null ? token.asBinder() : null, TYPE_APPLICATION, true, dc);
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700196 appToken = token;
Wale Ogunwale72919d22016-12-08 18:58:50 -0800197 mVoiceInteraction = voiceInteraction;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800198 mInputApplicationHandle = new InputApplicationHandle(this);
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700199 mAppAnimator = new AppWindowAnimator(this, service);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800200 }
201
Wale Ogunwale9017ec02016-02-25 08:55:25 -0800202 void onFirstWindowDrawn(WindowState win, WindowStateAnimator winAnimator) {
203 firstWindowDrawn = true;
204
205 // We now have a good window to show, remove dead placeholders
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700206 removeDeadWindows();
Wale Ogunwale9017ec02016-02-25 08:55:25 -0800207
Jorim Jaggi02886a82016-12-06 09:10:06 -0800208 if (startingWindow != null) {
Wale Ogunwale9017ec02016-02-25 08:55:25 -0800209 if (DEBUG_STARTING_WINDOW || DEBUG_ANIM) Slog.v(TAG, "Finish starting "
210 + win.mToken + ": first real window is shown, no animation");
211 // If this initial window is animating, stop it -- we will do an animation to reveal
212 // it from behind the starting window, so there is no need for it to also be doing its
213 // own stuff.
214 winAnimator.clearAnimation();
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800215 if (getController() != null) {
216 getController().removeStartingWindow();
217 }
Wale Ogunwale9017ec02016-02-25 08:55:25 -0800218 }
219 updateReportedVisibilityLocked();
220 }
221
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800222 void updateReportedVisibilityLocked() {
223 if (appToken == null) {
224 return;
225 }
226
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700227 if (DEBUG_VISIBILITY) Slog.v(TAG, "Update reported visibility: " + this);
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700228 final int count = mChildren.size();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800229
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700230 mReportedVisibilityResults.reset();
231
232 for (int i = 0; i < count; i++) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700233 final WindowState win = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700234 win.updateReportedVisibility(mReportedVisibilityResults);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800235 }
236
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700237 int numInteresting = mReportedVisibilityResults.numInteresting;
238 int numVisible = mReportedVisibilityResults.numVisible;
239 int numDrawn = mReportedVisibilityResults.numDrawn;
240 boolean nowGone = mReportedVisibilityResults.nowGone;
241
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700242 boolean nowDrawn = numInteresting > 0 && numDrawn >= numInteresting;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800243 boolean nowVisible = numInteresting > 0 && numVisible >= numInteresting;
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700244 if (!nowGone) {
245 // If the app is not yet gone, then it can only become visible/drawn.
246 if (!nowDrawn) {
247 nowDrawn = reportedDrawn;
248 }
249 if (!nowVisible) {
250 nowVisible = reportedVisible;
251 }
252 }
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800253 if (DEBUG_VISIBILITY) Slog.v(TAG, "VIS " + this + ": interesting="
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800254 + numInteresting + " visible=" + numVisible);
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800255 final AppWindowContainerController controller = getController();
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700256 if (nowDrawn != reportedDrawn) {
257 if (nowDrawn) {
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800258 if (controller != null) {
259 controller.reportWindowsDrawn();
260 }
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700261 }
262 reportedDrawn = nowDrawn;
263 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800264 if (nowVisible != reportedVisible) {
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700265 if (DEBUG_VISIBILITY) Slog.v(TAG,
266 "Visibility changed in " + this + ": vis=" + nowVisible);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800267 reportedVisible = nowVisible;
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800268 if (controller != null) {
269 if (nowVisible) {
270 controller.reportWindowsVisible();
271 } else {
272 controller.reportWindowsGone();
273 }
274 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800275 }
276 }
277
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700278 boolean setVisibility(WindowManager.LayoutParams lp,
279 boolean visible, int transit, boolean performLayout, boolean isVoiceInteraction) {
280
281 boolean delayed = false;
282 inPendingTransaction = false;
283
284 if (clientHidden == visible) {
285 clientHidden = !visible;
286 sendAppVisibilityToClients();
287 }
288
289 // Allow for state changes and animation to be applied if:
290 // * token is transitioning visibility state
291 // * or the token was marked as hidden and is exiting before we had a chance to play the
292 // transition animation
293 // * or this is an opening app and windows are being replaced.
294 boolean visibilityChanged = false;
295 if (hidden == visible || (hidden && mIsExiting) || (visible && waitingForReplacement())) {
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700296 final AccessibilityController accessibilityController = mService.mAccessibilityController;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700297 boolean changed = false;
298 if (DEBUG_APP_TRANSITIONS) Slog.v(TAG_WM,
299 "Changing app " + this + " hidden=" + hidden + " performLayout=" + performLayout);
300
301 boolean runningAppAnimation = false;
302
303 if (transit != AppTransition.TRANSIT_UNSET) {
304 if (mAppAnimator.animation == AppWindowAnimator.sDummyAnimation) {
305 mAppAnimator.setNullAnimation();
306 }
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700307 if (mService.applyAnimationLocked(this, lp, transit, visible, isVoiceInteraction)) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700308 delayed = runningAppAnimation = true;
309 }
310 final WindowState window = findMainWindow();
311 //TODO (multidisplay): Magnification is supported only for the default display.
312 if (window != null && accessibilityController != null
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -0700313 && getDisplayContent().getDisplayId() == DEFAULT_DISPLAY) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700314 accessibilityController.onAppWindowTransitionLocked(window, transit);
315 }
316 changed = true;
317 }
318
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700319 final int windowsCount = mChildren.size();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700320 for (int i = 0; i < windowsCount; i++) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700321 final WindowState win = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700322 changed |= win.onAppVisibilityChanged(visible, runningAppAnimation);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700323 }
324
325 hidden = hiddenRequested = !visible;
326 visibilityChanged = true;
327 if (!visible) {
328 stopFreezingScreen(true, true);
329 } else {
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700330 // If we are being set visible, and the starting window is not yet displayed,
331 // then make sure it doesn't get displayed.
332 if (startingWindow != null && !startingWindow.isDrawnLw()) {
333 startingWindow.mPolicyVisibility = false;
334 startingWindow.mPolicyVisibilityAfterAnim = false;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700335 }
336 }
337
338 if (DEBUG_APP_TRANSITIONS) Slog.v(TAG_WM, "setVisibility: " + this
339 + ": hidden=" + hidden + " hiddenRequested=" + hiddenRequested);
340
341 if (changed) {
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700342 mService.mInputMonitor.setUpdateInputWindowsNeededLw();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700343 if (performLayout) {
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700344 mService.updateFocusedWindowLocked(UPDATE_FOCUS_WILL_PLACE_SURFACES,
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700345 false /*updateInputWindows*/);
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700346 mService.mWindowPlacerLocked.performSurfacePlacement();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700347 }
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700348 mService.mInputMonitor.updateInputWindowsLw(false /*force*/);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700349 }
350 }
351
352 if (mAppAnimator.animation != null) {
353 delayed = true;
354 }
355
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700356 for (int i = mChildren.size() - 1; i >= 0 && !delayed; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700357 if ((mChildren.get(i)).isWindowAnimationSet()) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700358 delayed = true;
359 }
360 }
361
362 if (visibilityChanged) {
363 if (visible && !delayed) {
364 // The token was made immediately visible, there will be no entrance animation.
365 // We need to inform the client the enter animation was finished.
366 mEnteringAnimation = true;
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700367 mService.mActivityManagerAppTransitionNotifier.onAppTransitionFinishedLocked(token);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700368 }
369
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700370 if (!mService.mClosingApps.contains(this) && !mService.mOpeningApps.contains(this)) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700371 // The token is not closing nor opening, so even if there is an animation set, that
372 // doesn't mean that it goes through the normal app transition cycle so we have
373 // to inform the docked controller about visibility change.
Andrii Kulian1e32e022016-09-16 15:29:34 -0700374 // TODO(multi-display): notify docked divider on all displays where visibility was
375 // affected.
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700376 mService.getDefaultDisplayContentLocked().getDockedDividerController()
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700377 .notifyAppVisibilityChanged();
378 }
379 }
380
381 return delayed;
382 }
383
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800384 WindowState findMainWindow() {
Filip Gruszczynski55a309f2015-09-04 17:15:01 -0700385 WindowState candidate = null;
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700386 int j = mChildren.size();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800387 while (j > 0) {
388 j--;
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700389 final WindowState win = mChildren.get(j);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700390 final int type = win.mAttrs.type;
391 // No need to loop through child window as base application and starting types can't be
392 // child windows.
393 if (type == TYPE_BASE_APPLICATION || type == TYPE_APPLICATION_STARTING) {
Filip Gruszczynski55a309f2015-09-04 17:15:01 -0700394 // In cases where there are multiple windows, we prefer the non-exiting window. This
Sungsoo Lim0d3d1f82015-12-02 14:47:59 +0900395 // happens for example when replacing windows during an activity relaunch. When
Filip Gruszczynski55a309f2015-09-04 17:15:01 -0700396 // constructing the animation, we want the new window, not the exiting one.
Wale Ogunwalec48a3542016-02-19 15:18:45 -0800397 if (win.mAnimatingExit) {
Filip Gruszczynski55a309f2015-09-04 17:15:01 -0700398 candidate = win;
399 } else {
400 return win;
401 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800402 }
403 }
Filip Gruszczynski55a309f2015-09-04 17:15:01 -0700404 return candidate;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800405 }
406
Wale Ogunwale6cae7652015-12-26 07:36:26 -0800407 boolean windowsAreFocusable() {
408 return StackId.canReceiveKeys(mTask.mStack.mStackId) || mAlwaysFocusable;
Wale Ogunwaled045c822015-12-02 09:14:28 -0800409 }
410
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800411 AppWindowContainerController getController() {
412 final WindowContainerController controller = super.getController();
413 return controller != null ? (AppWindowContainerController) controller : null;
414 }
415
Wale Ogunwale571771c2016-08-26 13:18:50 -0700416 @Override
Wale Ogunwale44f21802016-09-02 12:49:48 -0700417 boolean isVisible() {
Wale Ogunwalee471be62016-10-03 07:53:55 -0700418 // If the app token isn't hidden then it is considered visible and there is no need to check
419 // its children windows to see if they are visible.
420 return !hidden;
Wale Ogunwale44f21802016-09-02 12:49:48 -0700421 }
422
423 @Override
Wale Ogunwale571771c2016-08-26 13:18:50 -0700424 void removeIfPossible() {
Craig Mautnere3119b72015-01-20 15:02:36 -0800425 mIsExiting = false;
Wale Ogunwale3d0bfd92016-12-05 11:38:02 -0800426 removeAllWindowsIfPossible();
Wale Ogunwale571771c2016-08-26 13:18:50 -0700427 if (mTask != null) {
Wale Ogunwalef6192862016-09-10 13:42:30 -0700428 mTask.mStack.mExitingAppTokens.remove(this);
Wale Ogunwale3d0bfd92016-12-05 11:38:02 -0800429 removeImmediately();
Craig Mautnere3119b72015-01-20 15:02:36 -0800430 }
431 }
432
Wale Ogunwale3f4433d2016-08-18 20:42:42 -0700433 @Override
434 boolean checkCompleteDeferredRemoval() {
435 if (mIsExiting) {
436 removeIfPossible();
437 }
438 return super.checkCompleteDeferredRemoval();
439 }
440
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700441 void onRemovedFromDisplay() {
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700442 if (DEBUG_APP_TRANSITIONS) Slog.v(TAG_WM, "Removing app token: " + this);
443
Wale Ogunwale72919d22016-12-08 18:58:50 -0800444 boolean delayed = setVisibility(null, false, TRANSIT_UNSET, true, mVoiceInteraction);
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700445
446 mService.mOpeningApps.remove(this);
Jorim Jaggi1b4b23e2016-11-15 16:30:12 -0800447 mService.mUnknownAppVisibilityController.appRemoved(this);
Jorim Jaggi10abe2f2017-01-03 16:44:46 +0100448 mService.mTaskSnapshotController.onAppRemoved(this);
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700449 waitingToShow = false;
450 if (mService.mClosingApps.contains(this)) {
451 delayed = true;
452 } else if (mService.mAppTransition.isTransitionSet()) {
453 mService.mClosingApps.add(this);
454 delayed = true;
455 }
456
457 if (DEBUG_APP_TRANSITIONS) Slog.v(TAG_WM, "Removing app " + this + " delayed=" + delayed
458 + " animation=" + mAppAnimator.animation + " animating=" + mAppAnimator.animating);
459
460 if (DEBUG_ADD_REMOVE || DEBUG_TOKEN_MOVEMENT) Slog.v(TAG_WM, "removeAppToken: "
461 + this + " delayed=" + delayed + " Callers=" + Debug.getCallers(4));
462
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800463 if (startingData != null && getController() != null) {
464 getController().removeStartingWindow();
465 }
466
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700467 final TaskStack stack = mTask.mStack;
468 if (delayed && !isEmpty()) {
469 // set the token aside because it has an active animation to be finished
470 if (DEBUG_ADD_REMOVE || DEBUG_TOKEN_MOVEMENT) Slog.v(TAG_WM,
471 "removeAppToken make exiting: " + this);
472 stack.mExitingAppTokens.add(this);
473 mIsExiting = true;
474 } else {
475 // Make sure there is no animation running on this token, so any windows associated
476 // with it will be removed as soon as their animations are complete
477 mAppAnimator.clearAnimation();
478 mAppAnimator.animating = false;
479 removeIfPossible();
480 }
481
482 removed = true;
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700483 stopFreezingScreen(true, true);
484 if (mService.mFocusedApp == this) {
485 if (DEBUG_FOCUS_LIGHT) Slog.v(TAG_WM, "Removing focused app token:" + this);
486 mService.mFocusedApp = null;
487 mService.updateFocusedWindowLocked(UPDATE_FOCUS_NORMAL, true /*updateInputWindows*/);
488 mService.mInputMonitor.setFocusedAppLw(null);
489 }
490
491 if (!delayed) {
492 updateReportedVisibilityLocked();
493 }
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700494 }
495
Chong Zhange05bcb12016-07-26 17:47:29 -0700496 void clearAnimatingFlags() {
Chong Zhangb0d26702016-08-12 16:03:29 -0700497 boolean wallpaperMightChange = false;
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700498 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700499 final WindowState win = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700500 wallpaperMightChange |= win.clearAnimatingFlags();
Chong Zhange05bcb12016-07-26 17:47:29 -0700501 }
Chong Zhangb0d26702016-08-12 16:03:29 -0700502 if (wallpaperMightChange) {
503 requestUpdateWallpaperIfNeeded();
504 }
Chong Zhange05bcb12016-07-26 17:47:29 -0700505 }
506
Robert Carre12aece2016-02-02 22:43:27 -0800507 void destroySurfaces() {
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700508 destroySurfaces(false /*cleanupOnResume*/);
509 }
510
511 /**
512 * Destroy surfaces which have been marked as eligible by the animator, taking care to ensure
513 * the client has finished with them.
514 *
515 * @param cleanupOnResume whether this is done when app is resumed without fully stopped. If
516 * set to true, destroy only surfaces of removed windows, and clear relevant flags of the
517 * others so that they are ready to be reused. If set to false (common case), destroy all
518 * surfaces that's eligible, if the app is already stopped.
519 */
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700520 private void destroySurfaces(boolean cleanupOnResume) {
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -0700521 boolean destroyedSomething = false;
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700522 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700523 final WindowState win = mChildren.get(i);
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -0700524 destroyedSomething |= win.destroySurface(cleanupOnResume, mAppStopped);
Robert Carre12aece2016-02-02 22:43:27 -0800525 }
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -0700526 if (destroyedSomething) {
527 final DisplayContent dc = getDisplayContent();
Wale Ogunwalec69694a2016-10-18 13:51:15 -0700528 dc.assignWindowLayers(true /*setLayoutNeeded*/);
Robert Carre12aece2016-02-02 22:43:27 -0800529 }
530 }
531
Wale Ogunwale8d5a5422016-03-03 18:28:21 -0800532 /**
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700533 * Notify that the app is now resumed, and it was not stopped before, perform a clean
534 * up of the surfaces
Wale Ogunwale8d5a5422016-03-03 18:28:21 -0800535 */
Chong Zhangad24f962016-08-25 12:12:33 -0700536 void notifyAppResumed(boolean wasStopped, boolean allowSavedSurface) {
537 if (DEBUG_ADD_REMOVE) Slog.v(TAG, "notifyAppResumed: wasStopped=" + wasStopped
538 + " allowSavedSurface=" + allowSavedSurface + " " + this);
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700539 mAppStopped = false;
540 if (!wasStopped) {
541 destroySurfaces(true /*cleanupOnResume*/);
Wale Ogunwale8d5a5422016-03-03 18:28:21 -0800542 }
Chong Zhangad24f962016-08-25 12:12:33 -0700543 if (!allowSavedSurface) {
544 destroySavedSurfaces();
545 }
Robert Carre12aece2016-02-02 22:43:27 -0800546 }
547
Chong Zhangbef461f2015-10-27 11:38:24 -0700548 /**
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700549 * Notify that the app has stopped, and it is okay to destroy any surfaces which were
550 * keeping alive in case they were still being used.
551 */
552 void notifyAppStopped() {
553 if (DEBUG_ADD_REMOVE) Slog.v(TAG, "notifyAppStopped: " + this);
554 mAppStopped = true;
555 destroySurfaces();
556 // Remove any starting window that was added for this app if they are still around.
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800557 if (getController() != null) {
558 getController().removeStartingWindow();
559 }
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700560 }
561
562 /**
Chong Zhangbef461f2015-10-27 11:38:24 -0700563 * Checks whether we should save surfaces for this app.
564 *
565 * @return true if the surfaces should be saved, false otherwise.
566 */
567 boolean shouldSaveSurface() {
Chong Zhangbfc2f8f2016-01-29 15:50:34 -0800568 // We want to save surface if the app's windows are "allDrawn".
569 // (If we started entering animation early with saved surfaces, allDrawn
570 // should have been restored to true. So we'll save again in that case
571 // even if app didn't actually finish drawing.)
572 return allDrawn;
Robert Carr13f7be9e2015-12-02 18:39:45 -0800573 }
574
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700575 private boolean canRestoreSurfaces() {
576 for (int i = mChildren.size() -1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700577 final WindowState w = mChildren.get(i);
Chong Zhang92147042016-05-09 12:47:11 -0700578 if (w.canRestoreSurface()) {
Robert Carr13f7be9e2015-12-02 18:39:45 -0800579 return true;
580 }
Chong Zhangbef461f2015-10-27 11:38:24 -0700581 }
582 return false;
583 }
584
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700585 private void clearWasVisibleBeforeClientHidden() {
586 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700587 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700588 w.clearWasVisibleBeforeClientHidden();
Chong Zhang92147042016-05-09 12:47:11 -0700589 }
590 }
591
Chong Zhang8e4bda92016-05-04 15:08:18 -0700592 /**
593 * Whether the app has some window that is invisible in layout, but
594 * animating with saved surface.
595 */
596 boolean isAnimatingInvisibleWithSavedSurface() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700597 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700598 final WindowState w = mChildren.get(i);
Chong Zhang8e4bda92016-05-04 15:08:18 -0700599 if (w.isAnimatingInvisibleWithSavedSurface()) {
600 return true;
601 }
602 }
603 return false;
604 }
605
606 /**
607 * Hide all window surfaces that's still invisible in layout but animating
608 * with a saved surface, and mark them destroying.
609 */
610 void stopUsingSavedSurfaceLocked() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700611 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700612 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700613 w.stopUsingSavedSurface();
Chong Zhang8e4bda92016-05-04 15:08:18 -0700614 }
615 destroySurfaces();
616 }
617
Chong Zhangf58631a2016-05-24 16:02:10 -0700618 void markSavedSurfaceExiting() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700619 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700620 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700621 w.markSavedSurfaceExiting();
Chong Zhangf58631a2016-05-24 16:02:10 -0700622 }
623 }
624
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700625 void restoreSavedSurfaceForInterestingWindows() {
Chong Zhang92147042016-05-09 12:47:11 -0700626 if (!canRestoreSurfaces()) {
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700627 clearWasVisibleBeforeClientHidden();
Chong Zhangbef461f2015-10-27 11:38:24 -0700628 return;
629 }
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700630
631 // Check if all interesting windows are drawn and we can mark allDrawn=true.
632 int interestingNotDrawn = -1;
633
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700634 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700635 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700636 interestingNotDrawn = w.restoreSavedSurfaceForInterestingWindow();
Chong Zhangbef461f2015-10-27 11:38:24 -0700637 }
Chong Zhangbfc2f8f2016-01-29 15:50:34 -0800638
Chong Zhang92147042016-05-09 12:47:11 -0700639 if (!allDrawn) {
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700640 allDrawn = (interestingNotDrawn == 0);
Chong Zhang92147042016-05-09 12:47:11 -0700641 if (allDrawn) {
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700642 mService.mH.obtainMessage(NOTIFY_ACTIVITY_DRAWN, token).sendToTarget();
Chong Zhang92147042016-05-09 12:47:11 -0700643 }
644 }
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700645 clearWasVisibleBeforeClientHidden();
Chong Zhangbfc2f8f2016-01-29 15:50:34 -0800646
647 if (DEBUG_APP_TRANSITIONS || DEBUG_ANIM) Slog.d(TAG,
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700648 "restoreSavedSurfaceForInterestingWindows: " + this + " allDrawn=" + allDrawn
649 + " interestingNotDrawn=" + interestingNotDrawn);
Chong Zhangbef461f2015-10-27 11:38:24 -0700650 }
651
652 void destroySavedSurfaces() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700653 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700654 final WindowState win = mChildren.get(i);
Robert Carr13f7be9e2015-12-02 18:39:45 -0800655 win.destroySavedSurface();
Chong Zhangbef461f2015-10-27 11:38:24 -0700656 }
Chong Zhang92147042016-05-09 12:47:11 -0700657 }
658
659 void clearAllDrawn() {
660 allDrawn = false;
661 deferClearAllDrawn = false;
Chong Zhang8e4bda92016-05-04 15:08:18 -0700662 allDrawnExcludingSaved = false;
Chong Zhangbef461f2015-10-27 11:38:24 -0700663 }
664
Wale Ogunwalefa854eb2016-09-20 13:43:52 -0700665 void postWindowRemoveStartingWindowCleanup(WindowState win) {
Wale Ogunwale92fc3722016-08-05 12:19:08 -0700666 // TODO: Something smells about the code below...Is there a better way?
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700667 if (startingWindow == win) {
668 if (DEBUG_STARTING_WINDOW) Slog.v(TAG_WM, "Notify removed startingWindow " + win);
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800669 if (getController() != null) {
670 getController().removeStartingWindow();
671 }
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700672 } else if (mChildren.size() == 0 && startingData != null) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700673 // If this is the last window and we had requested a starting transition window,
674 // well there is no point now.
Jorim Jaggi02886a82016-12-06 09:10:06 -0800675 if (DEBUG_STARTING_WINDOW) Slog.v(TAG_WM, "Nulling last startingData");
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700676 startingData = null;
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800677 } else if (mChildren.size() == 1 && startingSurface != null) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700678 // If this is the last window except for a starting transition window,
679 // we need to get rid of the starting transition.
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800680 if (getController() != null) {
681 getController().removeStartingWindow();
682 }
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700683 }
684 }
685
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700686 void removeDeadWindows() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700687 for (int winNdx = mChildren.size() - 1; winNdx >= 0; --winNdx) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700688 WindowState win = mChildren.get(winNdx);
Chong Zhang112eb8c2015-11-02 11:17:00 -0800689 if (win.mAppDied) {
Wale Ogunwale92fc3722016-08-05 12:19:08 -0700690 if (DEBUG_WINDOW_MOVEMENT || DEBUG_ADD_REMOVE) Slog.w(TAG,
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700691 "removeDeadWindows: " + win);
Chong Zhang112eb8c2015-11-02 11:17:00 -0800692 // Set mDestroying, we don't want any animation or delayed removal here.
693 win.mDestroying = true;
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700694 // Also removes child windows.
Wale Ogunwale92fc3722016-08-05 12:19:08 -0700695 win.removeIfPossible();
Chong Zhang112eb8c2015-11-02 11:17:00 -0800696 }
697 }
698 }
699
Wale Ogunwalee42d0e12016-05-02 16:40:59 -0700700 boolean hasWindowsAlive() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700701 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700702 // No need to loop through child windows as the answer should be the same as that of the
703 // parent window.
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700704 if (!(mChildren.get(i)).mAppDied) {
Wale Ogunwalee42d0e12016-05-02 16:40:59 -0700705 return true;
706 }
707 }
708 return false;
709 }
710
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700711 void setWillReplaceWindows(boolean animate) {
Wale Ogunwale455fac52016-07-21 07:24:49 -0700712 if (DEBUG_ADD_REMOVE) Slog.d(TAG_WM,
713 "Marking app token " + this + " with replacing windows.");
Robert Carra1eb4392015-12-10 12:43:51 -0800714
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700715 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700716 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700717 w.setWillReplaceWindow(animate);
Robert Carra1eb4392015-12-10 12:43:51 -0800718 }
719 if (animate) {
720 // Set-up dummy animation so we can start treating windows associated with this
721 // token like they are in transition before the new app window is ready for us to
722 // run the real transition animation.
723 if (DEBUG_APP_TRANSITIONS) Slog.v(TAG_WM,
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700724 "setWillReplaceWindow() Setting dummy animation on: " + this);
Robert Carra1eb4392015-12-10 12:43:51 -0800725 mAppAnimator.setDummyAnimation();
726 }
727 }
728
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700729 void setWillReplaceChildWindows() {
Wale Ogunwale455fac52016-07-21 07:24:49 -0700730 if (DEBUG_ADD_REMOVE) Slog.d(TAG_WM, "Marking app token " + this
Robert Carr23fa16b2016-01-13 13:19:58 -0800731 + " with replacing child windows.");
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700732 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700733 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700734 w.setWillReplaceChildWindows();
Robert Carr23fa16b2016-01-13 13:19:58 -0800735 }
736 }
737
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700738 void clearWillReplaceWindows() {
Wale Ogunwale455fac52016-07-21 07:24:49 -0700739 if (DEBUG_ADD_REMOVE) Slog.d(TAG_WM,
740 "Resetting app token " + this + " of replacing window marks.");
Chong Zhangf596cd52016-01-05 13:42:44 -0800741
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700742 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700743 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700744 w.clearWillReplaceWindow();
Chong Zhangf596cd52016-01-05 13:42:44 -0800745 }
746 }
747
Chong Zhang4d7369a2016-04-25 16:09:14 -0700748 void requestUpdateWallpaperIfNeeded() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700749 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700750 final WindowState w = mChildren.get(i);
Chong Zhang4d7369a2016-04-25 16:09:14 -0700751 w.requestUpdateWallpaperIfNeeded();
752 }
753 }
754
Chong Zhangd78ddb42016-03-02 17:01:14 -0800755 boolean isRelaunching() {
756 return mPendingRelaunchCount > 0;
757 }
758
759 void startRelaunching() {
760 if (canFreezeBounds()) {
761 freezeBounds();
762 }
763 mPendingRelaunchCount++;
764 }
765
766 void finishRelaunching() {
767 if (canFreezeBounds()) {
768 unfreezeBounds();
769 }
770 if (mPendingRelaunchCount > 0) {
771 mPendingRelaunchCount--;
772 }
773 }
774
Wale Ogunwale8fd75422016-06-24 14:20:37 -0700775 void clearRelaunching() {
Wale Ogunwale37dbafc2016-06-27 10:15:20 -0700776 if (mPendingRelaunchCount == 0) {
777 return;
778 }
Wale Ogunwale8fd75422016-06-24 14:20:37 -0700779 if (canFreezeBounds()) {
780 unfreezeBounds();
781 }
782 mPendingRelaunchCount = 0;
783 }
784
Wale Ogunwale07bcab72016-10-14 15:30:09 -0700785 /**
786 * Returns true if the new child window we are adding to this token is considered greater than
787 * the existing child window in this token in terms of z-order.
788 */
789 @Override
790 protected boolean isFirstChildWindowGreaterThanSecond(WindowState newWindow,
791 WindowState existingWindow) {
792 final int type1 = newWindow.mAttrs.type;
793 final int type2 = existingWindow.mAttrs.type;
794
795 // Base application windows should be z-ordered BELOW all other windows in the app token.
796 if (type1 == TYPE_BASE_APPLICATION && type2 != TYPE_BASE_APPLICATION) {
797 return false;
798 } else if (type1 != TYPE_BASE_APPLICATION && type2 == TYPE_BASE_APPLICATION) {
799 return true;
800 }
801
802 // Starting windows should be z-ordered ABOVE all other windows in the app token.
803 if (type1 == TYPE_APPLICATION_STARTING && type2 != TYPE_APPLICATION_STARTING) {
804 return true;
805 } else if (type1 != TYPE_APPLICATION_STARTING && type2 == TYPE_APPLICATION_STARTING) {
806 return false;
807 }
808
809 // Otherwise the new window is greater than the existing window.
810 return true;
811 }
812
Wale Ogunwale92fc3722016-08-05 12:19:08 -0700813 @Override
Robert Carra1eb4392015-12-10 12:43:51 -0800814 void addWindow(WindowState w) {
Wale Ogunwale92fc3722016-08-05 12:19:08 -0700815 super.addWindow(w);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700816
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700817 boolean gotReplacementWindow = false;
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700818 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700819 final WindowState candidate = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700820 gotReplacementWindow |= candidate.setReplacementWindowIfNeeded(w);
821 }
Wale Ogunwale92fc3722016-08-05 12:19:08 -0700822
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700823 // if we got a replacement window, reset the timeout to give drawing more time
824 if (gotReplacementWindow) {
825 mService.scheduleWindowReplacementTimeouts(this);
Robert Carra1eb4392015-12-10 12:43:51 -0800826 }
Jorim Jaggife762342016-10-13 14:33:27 +0200827 checkKeyguardFlagsChanged();
828 }
829
830 @Override
831 void removeChild(WindowState child) {
832 super.removeChild(child);
833 checkKeyguardFlagsChanged();
Robert Carra1eb4392015-12-10 12:43:51 -0800834 }
835
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -0700836 private boolean waitingForReplacement() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700837 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700838 final WindowState candidate = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700839 if (candidate.waitingForReplacement()) {
Robert Carra1eb4392015-12-10 12:43:51 -0800840 return true;
841 }
842 }
843 return false;
844 }
845
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700846 void onWindowReplacementTimeout() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700847 for (int i = mChildren.size() - 1; i >= 0; --i) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700848 (mChildren.get(i)).onWindowReplacementTimeout();
Robert Carra1eb4392015-12-10 12:43:51 -0800849 }
850 }
851
Chong Zhangd78ddb42016-03-02 17:01:14 -0800852 private boolean canFreezeBounds() {
853 // For freeform windows, we can't freeze the bounds at the moment because this would make
854 // the resizing unresponsive.
855 return mTask != null && !mTask.inFreeformWorkspace();
856 }
857
Jorim Jaggi0429f352015-12-22 16:29:16 +0100858 /**
859 * Freezes the task bounds. The size of this task reported the app will be fixed to the bounds
860 * freezed by {@link Task#prepareFreezingBounds} until {@link #unfreezeBounds} gets called, even
861 * if they change in the meantime. If the bounds are already frozen, the bounds will be frozen
862 * with a queue.
863 */
Chong Zhangd78ddb42016-03-02 17:01:14 -0800864 private void freezeBounds() {
Jorim Jaggi0429f352015-12-22 16:29:16 +0100865 mFrozenBounds.offer(new Rect(mTask.mPreparedFrozenBounds));
Jorim Jaggi26c8c422016-05-09 19:57:25 -0700866
867 if (mTask.mPreparedFrozenMergedConfig.equals(Configuration.EMPTY)) {
868 // We didn't call prepareFreezingBounds on the task, so use the current value.
Andrii Kulian441e4492016-09-29 15:25:00 -0700869 mFrozenMergedConfig.offer(new Configuration(mTask.getConfiguration()));
Jorim Jaggi26c8c422016-05-09 19:57:25 -0700870 } else {
871 mFrozenMergedConfig.offer(new Configuration(mTask.mPreparedFrozenMergedConfig));
872 }
Andrii Kulianb10330d2016-09-16 13:51:46 -0700873 // Calling unset() to make it equal to Configuration.EMPTY.
874 mTask.mPreparedFrozenMergedConfig.unset();
Jorim Jaggi0429f352015-12-22 16:29:16 +0100875 }
876
877 /**
878 * Unfreezes the previously frozen bounds. See {@link #freezeBounds}.
879 */
Chong Zhangd78ddb42016-03-02 17:01:14 -0800880 private void unfreezeBounds() {
Wale Ogunwale37dbafc2016-06-27 10:15:20 -0700881 if (!mFrozenBounds.isEmpty()) {
882 mFrozenBounds.remove();
883 }
884 if (!mFrozenMergedConfig.isEmpty()) {
885 mFrozenMergedConfig.remove();
886 }
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700887 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700888 final WindowState win = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700889 win.onUnfreezeBounds();
Jorim Jaggi4846ee32016-01-07 17:39:12 +0100890 }
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700891 mService.mWindowPlacerLocked.performSurfacePlacement();
Jorim Jaggi0429f352015-12-22 16:29:16 +0100892 }
893
Robert Carr91b228092016-06-28 17:32:37 -0700894 void addSurfaceViewBackground(WindowSurfaceController.SurfaceControlWithBackground background) {
895 mSurfaceViewBackgrounds.add(background);
896 }
897
898 void removeSurfaceViewBackground(WindowSurfaceController.SurfaceControlWithBackground background) {
899 mSurfaceViewBackgrounds.remove(background);
900 updateSurfaceViewBackgroundVisibilities();
901 }
902
903 // We use DimLayers behind SurfaceViews to prevent holes while resizing and creating.
904 // However, we need to ensure one SurfaceView doesn't cover another when they are both placed
905 // below the main app window (as traditionally a SurfaceView which is never drawn
906 // to is totally translucent). So we look at all our SurfaceView backgrounds and only enable
907 // the background for the SurfaceView with lowest Z order
908 void updateSurfaceViewBackgroundVisibilities() {
909 WindowSurfaceController.SurfaceControlWithBackground bottom = null;
910 int bottomLayer = Integer.MAX_VALUE;
911 for (int i = 0; i < mSurfaceViewBackgrounds.size(); i++) {
912 WindowSurfaceController.SurfaceControlWithBackground sc = mSurfaceViewBackgrounds.get(i);
913 if (sc.mVisible && sc.mLayer < bottomLayer) {
914 bottomLayer = sc.mLayer;
915 bottom = sc;
916 }
917 }
918 for (int i = 0; i < mSurfaceViewBackgrounds.size(); i++) {
919 WindowSurfaceController.SurfaceControlWithBackground sc = mSurfaceViewBackgrounds.get(i);
920 sc.updateBackgroundVisibility(sc != bottom);
921 }
922 }
923
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700924 void resetJustMovedInStack() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700925 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700926 (mChildren.get(i)).resetJustMovedInStack();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700927 }
928 }
929
930 void notifyMovedInStack() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700931 for (int winNdx = mChildren.size() - 1; winNdx >= 0; --winNdx) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700932 final WindowState win = mChildren.get(winNdx);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700933 win.notifyMovedInStack();
934 }
935 }
936
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -0700937 void setAppLayoutChanges(int changes, String reason) {
938 if (!mChildren.isEmpty()) {
939 final DisplayContent dc = getDisplayContent();
940 dc.pendingLayoutChanges |= changes;
941 if (DEBUG_LAYOUT_REPEATS) {
942 mService.mWindowPlacerLocked.debugLayoutRepeats(reason, dc.pendingLayoutChanges);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700943 }
944 }
945 }
946
947 void removeReplacedWindowIfNeeded(WindowState replacement) {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700948 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700949 final WindowState win = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700950 if (win.removeReplacedWindowIfNeeded(replacement)) {
951 return;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700952 }
953 }
954 }
955
956 void startFreezingScreen() {
957 if (DEBUG_ORIENTATION) logWithStack(TAG, "Set freezing of " + appToken + ": hidden="
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700958 + hidden + " freezing=" + mAppAnimator.freezingScreen + " hiddenRequested="
959 + hiddenRequested);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700960 if (!hiddenRequested) {
961 if (!mAppAnimator.freezingScreen) {
962 mAppAnimator.freezingScreen = true;
Wale Ogunwale3f4433d2016-08-18 20:42:42 -0700963 mService.registerAppFreezeListener(this);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700964 mAppAnimator.lastFreezeDuration = 0;
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700965 mService.mAppsFreezingScreen++;
966 if (mService.mAppsFreezingScreen == 1) {
967 mService.startFreezingDisplayLocked(false, 0, 0);
968 mService.mH.removeMessages(H.APP_FREEZE_TIMEOUT);
969 mService.mH.sendEmptyMessageDelayed(H.APP_FREEZE_TIMEOUT, 2000);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700970 }
971 }
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700972 final int count = mChildren.size();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700973 for (int i = 0; i < count; i++) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700974 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700975 w.onStartFreezingScreen();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700976 }
977 }
978 }
979
980 void stopFreezingScreen(boolean unfreezeSurfaceNow, boolean force) {
981 if (!mAppAnimator.freezingScreen) {
982 return;
983 }
984 if (DEBUG_ORIENTATION) Slog.v(TAG_WM, "Clear freezing of " + this + " force=" + force);
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700985 final int count = mChildren.size();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700986 boolean unfrozeWindows = false;
987 for (int i = 0; i < count; i++) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700988 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700989 unfrozeWindows |= w.onStopFreezingScreen();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700990 }
991 if (force || unfrozeWindows) {
992 if (DEBUG_ORIENTATION) Slog.v(TAG_WM, "No longer freezing: " + this);
993 mAppAnimator.freezingScreen = false;
Wale Ogunwale3f4433d2016-08-18 20:42:42 -0700994 mService.unregisterAppFreezeListener(this);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700995 mAppAnimator.lastFreezeDuration =
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700996 (int)(SystemClock.elapsedRealtime() - mService.mDisplayFreezeTime);
997 mService.mAppsFreezingScreen--;
998 mService.mLastFinishedFreezeSource = this;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700999 }
1000 if (unfreezeSurfaceNow) {
1001 if (unfrozeWindows) {
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001002 mService.mWindowPlacerLocked.performSurfacePlacement();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001003 }
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001004 mService.stopFreezingDisplayLocked();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001005 }
1006 }
1007
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001008 @Override
1009 public void onAppFreezeTimeout() {
1010 Slog.w(TAG_WM, "Force clearing freeze: " + this);
1011 stopFreezingScreen(true, true);
1012 }
1013
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001014 boolean transferStartingWindow(IBinder transferFrom) {
Wale Ogunwale02319a62016-09-26 15:21:22 -07001015 final AppWindowToken fromToken = getDisplayContent().getAppWindowToken(transferFrom);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001016 if (fromToken == null) {
1017 return false;
1018 }
1019
1020 final WindowState tStartingWindow = fromToken.startingWindow;
Jorim Jaggiba41f4b2016-12-14 17:43:07 -08001021 if (tStartingWindow != null && fromToken.startingSurface != null) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001022 // In this case, the starting icon has already been displayed, so start
1023 // letting windows get shown immediately without any more transitions.
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001024 mService.mSkipAppTransitionAnimation = true;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001025
1026 if (DEBUG_STARTING_WINDOW) Slog.v(TAG_WM, "Moving existing starting " + tStartingWindow
1027 + " from " + fromToken + " to " + this);
1028
1029 final long origId = Binder.clearCallingIdentity();
1030
1031 // Transfer the starting window over to the new token.
1032 startingData = fromToken.startingData;
Jorim Jaggiba41f4b2016-12-14 17:43:07 -08001033 startingSurface = fromToken.startingSurface;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001034 startingDisplayed = fromToken.startingDisplayed;
1035 fromToken.startingDisplayed = false;
1036 startingWindow = tStartingWindow;
1037 reportedVisible = fromToken.reportedVisible;
1038 fromToken.startingData = null;
Jorim Jaggiba41f4b2016-12-14 17:43:07 -08001039 fromToken.startingSurface = null;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001040 fromToken.startingWindow = null;
1041 fromToken.startingMoved = true;
1042 tStartingWindow.mToken = this;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001043 tStartingWindow.mAppToken = this;
1044
Wale Ogunwale6213caa2016-12-02 16:47:15 +00001045 if (DEBUG_ADD_REMOVE || DEBUG_STARTING_WINDOW) Slog.v(TAG_WM,
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001046 "Removing starting " + tStartingWindow + " from " + fromToken);
Wale Ogunwalefa854eb2016-09-20 13:43:52 -07001047 fromToken.removeChild(tStartingWindow);
1048 fromToken.postWindowRemoveStartingWindowCleanup(tStartingWindow);
Wale Ogunwale92fc3722016-08-05 12:19:08 -07001049 addWindow(tStartingWindow);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001050
1051 // Propagate other interesting state between the tokens. If the old token is displayed,
1052 // we should immediately force the new one to be displayed. If it is animating, we need
1053 // to move that animation to the new one.
1054 if (fromToken.allDrawn) {
1055 allDrawn = true;
1056 deferClearAllDrawn = fromToken.deferClearAllDrawn;
1057 }
1058 if (fromToken.firstWindowDrawn) {
1059 firstWindowDrawn = true;
1060 }
1061 if (!fromToken.hidden) {
1062 hidden = false;
1063 hiddenRequested = false;
1064 }
1065 if (clientHidden != fromToken.clientHidden) {
1066 clientHidden = fromToken.clientHidden;
1067 sendAppVisibilityToClients();
1068 }
1069 fromToken.mAppAnimator.transferCurrentAnimation(
1070 mAppAnimator, tStartingWindow.mWinAnimator);
1071
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001072 mService.updateFocusedWindowLocked(
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001073 UPDATE_FOCUS_WILL_PLACE_SURFACES, true /*updateInputWindows*/);
Andrii Kulian5406e7a2016-10-21 11:55:23 -07001074 getDisplayContent().setLayoutNeeded();
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001075 mService.mWindowPlacerLocked.performSurfacePlacement();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001076 Binder.restoreCallingIdentity(origId);
1077 return true;
1078 } else if (fromToken.startingData != null) {
1079 // The previous app was getting ready to show a
1080 // starting window, but hasn't yet done so. Steal it!
1081 if (DEBUG_STARTING_WINDOW) Slog.v(TAG_WM,
1082 "Moving pending starting from " + fromToken + " to " + this);
1083 startingData = fromToken.startingData;
1084 fromToken.startingData = null;
1085 fromToken.startingMoved = true;
Jorim Jaggiba41f4b2016-12-14 17:43:07 -08001086 if (getController() != null) {
1087 getController().scheduleAddStartingWindow();
1088 }
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001089 return true;
1090 }
1091
1092 final AppWindowAnimator tAppAnimator = fromToken.mAppAnimator;
1093 final AppWindowAnimator wAppAnimator = mAppAnimator;
1094 if (tAppAnimator.thumbnail != null) {
1095 // The old token is animating with a thumbnail, transfer that to the new token.
1096 if (wAppAnimator.thumbnail != null) {
1097 wAppAnimator.thumbnail.destroy();
1098 }
1099 wAppAnimator.thumbnail = tAppAnimator.thumbnail;
1100 wAppAnimator.thumbnailLayer = tAppAnimator.thumbnailLayer;
1101 wAppAnimator.thumbnailAnimation = tAppAnimator.thumbnailAnimation;
1102 tAppAnimator.thumbnail = null;
1103 }
1104 return false;
1105 }
1106
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001107 boolean isLastWindow(WindowState win) {
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001108 return mChildren.size() == 1 && mChildren.get(0) == win;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001109 }
1110
1111 void setAllAppWinAnimators() {
1112 final ArrayList<WindowStateAnimator> allAppWinAnimators = mAppAnimator.mAllAppWinAnimators;
1113 allAppWinAnimators.clear();
1114
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001115 final int windowsCount = mChildren.size();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001116 for (int j = 0; j < windowsCount; j++) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07001117 (mChildren.get(j)).addWinAnimatorToList(allAppWinAnimators);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001118 }
1119 }
1120
Wale Ogunwale9adfe572016-09-08 20:43:58 -07001121 @Override
1122 void onAppTransitionDone() {
1123 sendingToBottom = false;
1124 }
1125
Wale Ogunwale51362492016-09-08 17:49:17 -07001126 /**
1127 * We override because this class doesn't want its children affecting its reported orientation
1128 * in anyway.
1129 */
1130 @Override
1131 int getOrientation() {
1132 if (hidden || hiddenRequested) {
1133 return SCREEN_ORIENTATION_UNSET;
1134 }
1135 return mOrientation;
1136 }
1137
Wale Ogunwaleb198b742016-12-01 08:44:09 -08001138 /** Returns the app's preferred orientation regardless of its currently visibility state. */
1139 int getOrientationIgnoreVisibility() {
1140 return mOrientation;
1141 }
1142
Craig Mautnerdbb79912012-03-01 18:59:14 -08001143 @Override
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -07001144 void checkAppWindowsReadyToShow() {
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001145 if (allDrawn == mAppAnimator.allDrawn) {
1146 return;
1147 }
1148
1149 mAppAnimator.allDrawn = allDrawn;
1150 if (!allDrawn) {
1151 return;
1152 }
1153
1154 // The token has now changed state to having all windows shown... what to do, what to do?
1155 if (mAppAnimator.freezingScreen) {
1156 mAppAnimator.showAllWindowsLocked();
1157 stopFreezingScreen(false, true);
1158 if (DEBUG_ORIENTATION) Slog.i(TAG,
1159 "Setting mOrientationChangeComplete=true because wtoken " + this
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001160 + " numInteresting=" + mNumInterestingWindows + " numDrawn=" + mNumDrawnWindows);
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001161 // This will set mOrientationChangeComplete and cause a pass through layout.
1162 setAppLayoutChanges(FINISH_LAYOUT_REDO_WALLPAPER,
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -07001163 "checkAppWindowsReadyToShow: freezingScreen");
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001164 } else {
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -07001165 setAppLayoutChanges(FINISH_LAYOUT_REDO_ANIM, "checkAppWindowsReadyToShow");
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001166
1167 // We can now show all of the drawn windows!
1168 if (!mService.mOpeningApps.contains(this)) {
1169 mService.mAnimator.orAnimating(mAppAnimator.showAllWindowsLocked());
1170 }
1171 }
1172 }
1173
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001174 void updateAllDrawn(DisplayContent dc) {
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001175 if (!allDrawn) {
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001176 final int numInteresting = mNumInterestingWindows;
1177 if (numInteresting > 0 && mNumDrawnWindows >= numInteresting) {
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001178 if (DEBUG_VISIBILITY) Slog.v(TAG, "allDrawn: " + this
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001179 + " interesting=" + numInteresting + " drawn=" + mNumDrawnWindows);
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001180 allDrawn = true;
1181 // Force an additional layout pass where
1182 // WindowStateAnimator#commitFinishDrawingLocked() will call performShowLocked().
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001183 dc.setLayoutNeeded();
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001184 mService.mH.obtainMessage(NOTIFY_ACTIVITY_DRAWN, token).sendToTarget();
1185 }
1186 }
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001187
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001188 if (!allDrawnExcludingSaved) {
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001189 int numInteresting = mNumInterestingWindowsExcludingSaved;
1190 if (numInteresting > 0 && mNumDrawnWindowsExcludingSaved >= numInteresting) {
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001191 if (DEBUG_VISIBILITY) Slog.v(TAG, "allDrawnExcludingSaved: " + this
1192 + " interesting=" + numInteresting
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001193 + " drawn=" + mNumDrawnWindowsExcludingSaved);
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001194 allDrawnExcludingSaved = true;
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001195 dc.setLayoutNeeded();
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001196 if (isAnimatingInvisibleWithSavedSurface()
1197 && !mService.mFinishedEarlyAnim.contains(this)) {
1198 mService.mFinishedEarlyAnim.add(this);
1199 }
1200 }
1201 }
1202 }
1203
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001204 /**
1205 * Updated this app token tracking states for interesting and drawn windows based on the window.
1206 *
1207 * @return Returns true if the input window is considered interesting and drawn while all the
1208 * windows in this app token where not considered drawn as of the last pass.
1209 */
1210 boolean updateDrawnWindowStates(WindowState w) {
1211 if (DEBUG_STARTING_WINDOW && w == startingWindow) {
1212 Slog.d(TAG, "updateWindows: starting " + w + " isOnScreen=" + w.isOnScreen()
1213 + " allDrawn=" + allDrawn + " freezingScreen=" + mAppAnimator.freezingScreen);
1214 }
1215
1216 if (allDrawn && allDrawnExcludingSaved && !mAppAnimator.freezingScreen) {
1217 return false;
1218 }
1219
1220 if (mLastTransactionSequence != mService.mTransactionSequence) {
1221 mLastTransactionSequence = mService.mTransactionSequence;
1222 mNumInterestingWindows = mNumDrawnWindows = 0;
1223 mNumInterestingWindowsExcludingSaved = 0;
1224 mNumDrawnWindowsExcludingSaved = 0;
1225 startingDisplayed = false;
1226 }
1227
1228 final WindowStateAnimator winAnimator = w.mWinAnimator;
1229
1230 boolean isInterestingAndDrawn = false;
1231
1232 if (!allDrawn && w.mightAffectAllDrawn(false /* visibleOnly */)) {
1233 if (DEBUG_VISIBILITY || DEBUG_ORIENTATION) {
1234 Slog.v(TAG, "Eval win " + w + ": isDrawn=" + w.isDrawnLw()
1235 + ", isAnimationSet=" + winAnimator.isAnimationSet());
1236 if (!w.isDrawnLw()) {
1237 Slog.v(TAG, "Not displayed: s=" + winAnimator.mSurfaceController
1238 + " pv=" + w.mPolicyVisibility
1239 + " mDrawState=" + winAnimator.drawStateToString()
1240 + " ph=" + w.isParentWindowHidden() + " th=" + hiddenRequested
1241 + " a=" + winAnimator.mAnimating);
1242 }
1243 }
1244
1245 if (w != startingWindow) {
1246 if (w.isInteresting()) {
1247 mNumInterestingWindows++;
1248 if (w.isDrawnLw()) {
1249 mNumDrawnWindows++;
1250
1251 if (DEBUG_VISIBILITY || DEBUG_ORIENTATION) Slog.v(TAG, "tokenMayBeDrawn: "
1252 + this + " w=" + w + " numInteresting=" + mNumInterestingWindows
1253 + " freezingScreen=" + mAppAnimator.freezingScreen
1254 + " mAppFreezing=" + w.mAppFreezing);
1255
1256 isInterestingAndDrawn = true;
1257 }
1258 }
1259 } else if (w.isDrawnLw()) {
1260 mService.mH.sendEmptyMessage(NOTIFY_STARTING_WINDOW_DRAWN);
1261 startingDisplayed = true;
1262 }
1263 }
1264
1265 if (!allDrawnExcludingSaved && w.mightAffectAllDrawn(true /* visibleOnly */)) {
1266 if (w != startingWindow && w.isInteresting()) {
1267 mNumInterestingWindowsExcludingSaved++;
1268 if (w.isDrawnLw() && !w.isAnimatingWithSavedSurface()) {
1269 mNumDrawnWindowsExcludingSaved++;
1270
1271 if (DEBUG_VISIBILITY || DEBUG_ORIENTATION) Slog.v(TAG,
1272 "tokenMayBeDrawnExcludingSaved: " + this + " w=" + w
1273 + " numInteresting=" + mNumInterestingWindowsExcludingSaved
1274 + " freezingScreen=" + mAppAnimator.freezingScreen
1275 + " mAppFreezing=" + w.mAppFreezing);
1276
1277 isInterestingAndDrawn = true;
1278 }
1279 }
1280 }
1281
1282 return isInterestingAndDrawn;
1283 }
1284
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001285 @Override
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -07001286 void stepAppWindowsAnimation(long currentTime) {
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001287 mAppAnimator.wasAnimating = mAppAnimator.animating;
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -07001288 if (mAppAnimator.stepAnimationLocked(currentTime)) {
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001289 mAppAnimator.animating = true;
1290 mService.mAnimator.setAnimating(true);
1291 mService.mAnimator.mAppWindowAnimating = true;
1292 } else if (mAppAnimator.wasAnimating) {
1293 // stopped animating, do one more pass through the layout
Wale Ogunwale1e129a42016-11-21 13:03:47 -08001294 setAppLayoutChanges(FINISH_LAYOUT_REDO_WALLPAPER,
1295 DEBUG_LAYOUT_REPEATS ? "appToken " + this + " done" : null);
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001296 if (DEBUG_ANIM) Slog.v(TAG, "updateWindowsApps...: done animating " + this);
1297 }
1298 }
1299
Wale Ogunwale9adfe572016-09-08 20:43:58 -07001300 @Override
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08001301 boolean forAllWindows(ToBooleanFunction<WindowState> callback, boolean traverseTopToBottom) {
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07001302 // For legacy reasons we process the TaskStack.mExitingAppTokens first in DisplayContent
1303 // before the non-exiting app tokens. So, we skip the exiting app tokens here.
1304 // TODO: Investigate if we need to continue to do this or if we can just process them
1305 // in-order.
1306 if (mIsExiting && !waitingForReplacement()) {
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08001307 return false;
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07001308 }
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08001309 return forAllWindowsUnchecked(callback, traverseTopToBottom);
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07001310 }
1311
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08001312 boolean forAllWindowsUnchecked(ToBooleanFunction<WindowState> callback,
1313 boolean traverseTopToBottom) {
1314 return super.forAllWindows(callback, traverseTopToBottom);
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07001315 }
1316
1317 @Override
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001318 AppWindowToken asAppWindowToken() {
1319 // I am an app window token!
1320 return this;
1321 }
1322
1323 @Override
Wale Ogunwale51362492016-09-08 17:49:17 -07001324 boolean fillsParent() {
1325 return mFillsParent;
1326 }
1327
1328 void setFillsParent(boolean fillsParent) {
1329 mFillsParent = fillsParent;
1330 }
1331
Jorim Jaggife762342016-10-13 14:33:27 +02001332 boolean containsDismissKeyguardWindow() {
1333 for (int i = mChildren.size() - 1; i >= 0; i--) {
1334 if ((mChildren.get(i).mAttrs.flags & FLAG_DISMISS_KEYGUARD) != 0) {
1335 return true;
1336 }
1337 }
1338 return false;
1339 }
1340
1341 boolean containsShowWhenLockedWindow() {
1342 for (int i = mChildren.size() - 1; i >= 0; i--) {
1343 if ((mChildren.get(i).mAttrs.flags & FLAG_SHOW_WHEN_LOCKED) != 0) {
1344 return true;
1345 }
1346 }
1347 return false;
1348 }
1349
1350 void checkKeyguardFlagsChanged() {
1351 final boolean containsDismissKeyguard = containsDismissKeyguardWindow();
1352 final boolean containsShowWhenLocked = containsShowWhenLockedWindow();
1353 if (containsDismissKeyguard != mLastContainsDismissKeyguardWindow
1354 || containsShowWhenLocked != mLastContainsShowWhenLockedWindow) {
1355 mService.notifyKeyguardFlagsChanged(null /* callback */);
1356 }
1357 mLastContainsDismissKeyguardWindow = containsDismissKeyguard;
1358 mLastContainsShowWhenLockedWindow = containsShowWhenLocked;
1359 }
1360
Wale Ogunwale6213caa2016-12-02 16:47:15 +00001361 WindowState getImeTargetBelowWindow(WindowState w) {
1362 final int index = mChildren.indexOf(w);
1363 if (index > 0) {
1364 final WindowState target = mChildren.get(index - 1);
1365 if (target.canBeImeTarget()) {
1366 return target;
1367 }
1368 }
1369 return null;
1370 }
1371
1372 WindowState getHighestAnimLayerWindow(WindowState currentTarget) {
1373 WindowState candidate = null;
1374 for (int i = mChildren.indexOf(currentTarget); i >= 0; i--) {
1375 final WindowState w = mChildren.get(i);
1376 if (w.mRemoved) {
1377 continue;
1378 }
1379 if (candidate == null || w.mWinAnimator.mAnimLayer >
1380 candidate.mWinAnimator.mAnimLayer) {
1381 candidate = w;
1382 }
1383 }
1384 return candidate;
1385 }
1386
Wale Ogunwale51362492016-09-08 17:49:17 -07001387 @Override
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001388 void dump(PrintWriter pw, String prefix) {
1389 super.dump(pw, prefix);
1390 if (appToken != null) {
Wale Ogunwale72919d22016-12-08 18:58:50 -08001391 pw.println(prefix + "app=true mVoiceInteraction=" + mVoiceInteraction);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001392 }
Craig Mautner83162a92015-01-26 14:43:30 -08001393 pw.print(prefix); pw.print("task="); pw.println(mTask);
Wale Ogunwale51362492016-09-08 17:49:17 -07001394 pw.print(prefix); pw.print(" mFillsParent="); pw.print(mFillsParent);
1395 pw.print(" mOrientation="); pw.println(mOrientation);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001396 pw.print(prefix); pw.print("hiddenRequested="); pw.print(hiddenRequested);
1397 pw.print(" clientHidden="); pw.print(clientHidden);
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -07001398 pw.print(" reportedDrawn="); pw.print(reportedDrawn);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001399 pw.print(" reportedVisible="); pw.println(reportedVisible);
Craig Mautner59431632012-04-04 11:56:44 -07001400 if (paused) {
1401 pw.print(prefix); pw.print("paused="); pw.println(paused);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001402 }
Wale Ogunwale9017ec02016-02-25 08:55:25 -08001403 if (mAppStopped) {
1404 pw.print(prefix); pw.print("mAppStopped="); pw.println(mAppStopped);
1405 }
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001406 if (mNumInterestingWindows != 0 || mNumDrawnWindows != 0
Craig Mautner6fbda632012-07-03 09:26:39 -07001407 || allDrawn || mAppAnimator.allDrawn) {
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001408 pw.print(prefix); pw.print("mNumInterestingWindows=");
1409 pw.print(mNumInterestingWindows);
1410 pw.print(" mNumDrawnWindows="); pw.print(mNumDrawnWindows);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001411 pw.print(" inPendingTransaction="); pw.print(inPendingTransaction);
Craig Mautner6fbda632012-07-03 09:26:39 -07001412 pw.print(" allDrawn="); pw.print(allDrawn);
1413 pw.print(" (animator="); pw.print(mAppAnimator.allDrawn);
1414 pw.println(")");
1415 }
1416 if (inPendingTransaction) {
1417 pw.print(prefix); pw.print("inPendingTransaction=");
1418 pw.println(inPendingTransaction);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001419 }
Craig Mautner799bc1d2015-01-14 10:33:48 -08001420 if (startingData != null || removed || firstWindowDrawn || mIsExiting) {
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001421 pw.print(prefix); pw.print("startingData="); pw.print(startingData);
1422 pw.print(" removed="); pw.print(removed);
Craig Mautner3d7ca312015-01-08 10:56:00 -08001423 pw.print(" firstWindowDrawn="); pw.print(firstWindowDrawn);
Craig Mautner799bc1d2015-01-14 10:33:48 -08001424 pw.print(" mIsExiting="); pw.println(mIsExiting);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001425 }
Jorim Jaggiba41f4b2016-12-14 17:43:07 -08001426 if (startingWindow != null || startingSurface != null
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001427 || startingDisplayed || startingMoved) {
1428 pw.print(prefix); pw.print("startingWindow="); pw.print(startingWindow);
Jorim Jaggiba41f4b2016-12-14 17:43:07 -08001429 pw.print(" startingSurface="); pw.print(startingSurface);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001430 pw.print(" startingDisplayed="); pw.print(startingDisplayed);
Wale Ogunwale9017ec02016-02-25 08:55:25 -08001431 pw.print(" startingMoved="); pw.println(startingMoved);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001432 }
Jorim Jaggi0429f352015-12-22 16:29:16 +01001433 if (!mFrozenBounds.isEmpty()) {
Chong Zhangd78ddb42016-03-02 17:01:14 -08001434 pw.print(prefix); pw.print("mFrozenBounds="); pw.println(mFrozenBounds);
Jorim Jaggi26c8c422016-05-09 19:57:25 -07001435 pw.print(prefix); pw.print("mFrozenMergedConfig="); pw.println(mFrozenMergedConfig);
Chong Zhangd78ddb42016-03-02 17:01:14 -08001436 }
1437 if (mPendingRelaunchCount != 0) {
1438 pw.print(prefix); pw.print("mPendingRelaunchCount="); pw.println(mPendingRelaunchCount);
Jorim Jaggi0429f352015-12-22 16:29:16 +01001439 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001440 }
1441
1442 @Override
1443 public String toString() {
1444 if (stringName == null) {
1445 StringBuilder sb = new StringBuilder();
1446 sb.append("AppWindowToken{");
1447 sb.append(Integer.toHexString(System.identityHashCode(this)));
1448 sb.append(" token="); sb.append(token); sb.append('}');
1449 stringName = sb.toString();
1450 }
Wale Ogunwaleba51ca22016-09-23 06:06:54 -07001451 return stringName + ((mIsExiting) ? " mIsExiting=" : "");
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001452 }
Jeff Browne9bdb312012-04-05 15:30:10 -07001453}