blob: d646c07b1e82f48983bb027d5876d9418fef4d92 [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
Winson Chunge55c0192017-08-24 14:50:48 -070019import static android.app.WindowConfiguration.WINDOWING_MODE_PINNED;
20import static android.app.WindowConfiguration.WINDOWING_MODE_UNDEFINED;
Wale Ogunwale72919d22016-12-08 18:58:50 -080021import static android.content.pm.ActivityInfo.CONFIG_ORIENTATION;
22import static android.content.pm.ActivityInfo.CONFIG_SCREEN_SIZE;
Wale Ogunwale5e5a68d2017-03-24 17:36:38 -070023import static android.content.pm.ActivityInfo.SCREEN_ORIENTATION_BEHIND;
Wale Ogunwale51362492016-09-08 17:49:17 -070024import static android.content.pm.ActivityInfo.SCREEN_ORIENTATION_UNSET;
Jorim Jaggif5f9e122017-10-24 18:21:09 +020025import static android.os.Trace.TRACE_TAG_WINDOW_MANAGER;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -070026import static android.view.Display.DEFAULT_DISPLAY;
Adrian Roos4d18a2e2017-12-19 19:08:05 +010027import static android.view.SurfaceControl.HIDDEN;
Jorim Jaggife762342016-10-13 14:33:27 +020028import static android.view.WindowManager.LayoutParams.FLAG_DISMISS_KEYGUARD;
Jorim Jaggid635a4a2017-05-03 15:21:26 +020029import static android.view.WindowManager.LayoutParams.FLAG_SECURE;
Jorim Jaggife762342016-10-13 14:33:27 +020030import static android.view.WindowManager.LayoutParams.FLAG_SHOW_WHEN_LOCKED;
Wale Ogunwaled1c37912016-08-16 03:19:39 -070031import static android.view.WindowManager.LayoutParams.TYPE_APPLICATION;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080032import static android.view.WindowManager.LayoutParams.TYPE_APPLICATION_STARTING;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -070033import static android.view.WindowManager.LayoutParams.TYPE_BASE_APPLICATION;
Tony Mak64b8d562017-12-28 17:44:02 +000034
Adrian Roose99bc052017-11-20 17:55:31 +010035import static com.android.server.policy.WindowManagerPolicy.FINISH_LAYOUT_REDO_ANIM;
36import static com.android.server.policy.WindowManagerPolicy.FINISH_LAYOUT_REDO_WALLPAPER;
Jorim Jaggif84e2f62018-01-16 14:17:59 +010037import static android.view.WindowManager.TRANSIT_UNSET;
Jorim Jaggiba41f4b2016-12-14 17:43:07 -080038import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_ADD_REMOVE;
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -080039import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_ANIM;
40import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_APP_TRANSITIONS;
Wale Ogunwaleac2561e2016-11-01 15:43:46 -070041import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_FOCUS_LIGHT;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -070042import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_LAYOUT_REPEATS;
43import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_ORIENTATION;
Wale Ogunwale9017ec02016-02-25 08:55:25 -080044import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_STARTING_WINDOW;
Jorim Jaggie4b0f282017-05-17 15:10:29 +020045import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_STARTING_WINDOW_VERBOSE;
Wale Ogunwaleac2561e2016-11-01 15:43:46 -070046import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_TOKEN_MOVEMENT;
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -080047import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_VISIBILITY;
48import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_WINDOW_MOVEMENT;
49import static com.android.server.wm.WindowManagerDebugConfig.TAG_WITH_CLASS_NAME;
50import static com.android.server.wm.WindowManagerDebugConfig.TAG_WM;
Chong Zhang92147042016-05-09 12:47:11 -070051import static com.android.server.wm.WindowManagerService.H.NOTIFY_ACTIVITY_DRAWN;
Wale Ogunwaleac2561e2016-11-01 15:43:46 -070052import static com.android.server.wm.WindowManagerService.UPDATE_FOCUS_NORMAL;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -070053import static com.android.server.wm.WindowManagerService.UPDATE_FOCUS_WILL_PLACE_SURFACES;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -070054import static com.android.server.wm.WindowManagerService.logWithStack;
Vishnu Nair04ab4392018-01-10 11:00:06 -080055import static com.android.server.wm.proto.AppWindowTokenProto.ALL_DRAWN;
56import static com.android.server.wm.proto.AppWindowTokenProto.APP_STOPPED;
57import static com.android.server.wm.proto.AppWindowTokenProto.CLIENT_HIDDEN;
58import static com.android.server.wm.proto.AppWindowTokenProto.DEFER_HIDING_CLIENT;
59import static com.android.server.wm.proto.AppWindowTokenProto.FILLS_PARENT;
60import static com.android.server.wm.proto.AppWindowTokenProto.FROZEN_BOUNDS;
61import static com.android.server.wm.proto.AppWindowTokenProto.HIDDEN_REQUESTED;
62import static com.android.server.wm.proto.AppWindowTokenProto.HIDDEN_SET_FROM_TRANSFERRED_STARTING_WINDOW;
63import static com.android.server.wm.proto.AppWindowTokenProto.IS_REALLY_ANIMATING;
64import static com.android.server.wm.proto.AppWindowTokenProto.IS_WAITING_FOR_TRANSITION_START;
65import static com.android.server.wm.proto.AppWindowTokenProto.LAST_ALL_DRAWN;
66import static com.android.server.wm.proto.AppWindowTokenProto.LAST_SURFACE_SHOWING;
Steven Timotiusaf03df62017-07-18 16:56:43 -070067import static com.android.server.wm.proto.AppWindowTokenProto.NAME;
Vishnu Nair04ab4392018-01-10 11:00:06 -080068import static com.android.server.wm.proto.AppWindowTokenProto.NUM_DRAWN_WINDOWS;
69import static com.android.server.wm.proto.AppWindowTokenProto.NUM_INTERESTING_WINDOWS;
70import static com.android.server.wm.proto.AppWindowTokenProto.REMOVED;
71import static com.android.server.wm.proto.AppWindowTokenProto.REPORTED_DRAWN;
72import static com.android.server.wm.proto.AppWindowTokenProto.REPORTED_VISIBLE;
73import static com.android.server.wm.proto.AppWindowTokenProto.STARTING_DISPLAYED;
74import static com.android.server.wm.proto.AppWindowTokenProto.STARTING_MOVED;
75import static com.android.server.wm.proto.AppWindowTokenProto.STARTING_WINDOW;
76import static com.android.server.wm.proto.AppWindowTokenProto.THUMBNAIL;
Steven Timotiusaf03df62017-07-18 16:56:43 -070077import static com.android.server.wm.proto.AppWindowTokenProto.WINDOW_TOKEN;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080078
Wale Ogunwale0d5609b2017-09-13 05:55:07 -070079import android.annotation.CallSuper;
Jorim Jaggid635a4a2017-05-03 15:21:26 +020080import android.app.Activity;
Jorim Jaggi26c8c422016-05-09 19:57:25 -070081import android.content.res.Configuration;
Jorim Jaggi988f6682017-11-17 17:46:43 +010082import android.graphics.GraphicBuffer;
Jorim Jaggif5f9e122017-10-24 18:21:09 +020083import android.graphics.Point;
Jorim Jaggi0429f352015-12-22 16:29:16 +010084import android.graphics.Rect;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -070085import android.os.Binder;
Jorim Jaggiba41f4b2016-12-14 17:43:07 -080086import android.os.Debug;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -070087import android.os.IBinder;
Steven Timotiusaf03df62017-07-18 16:56:43 -070088import android.os.RemoteException;
Jorim Jaggif5f9e122017-10-24 18:21:09 +020089import android.os.Trace;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080090import android.util.Slog;
Steven Timotiusaf03df62017-07-18 16:56:43 -070091import android.util.proto.ProtoOutputStream;
Jorim Jaggif5f9e122017-10-24 18:21:09 +020092import android.view.DisplayInfo;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080093import android.view.IApplicationToken;
Jorim Jaggif84e2f62018-01-16 14:17:59 +010094import android.view.RemoteAnimationDefinition;
Robert Carr6914f082017-03-20 19:04:30 -070095import android.view.SurfaceControl;
Tony Mak64b8d562017-12-28 17:44:02 +000096import android.view.SurfaceControl.Transaction;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080097import android.view.WindowManager;
Jorim Jaggi87fdbcb2017-08-17 13:41:11 +020098import android.view.WindowManager.LayoutParams;
Tony Mak64b8d562017-12-28 17:44:02 +000099import android.view.animation.Animation;
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800100
Tony Mak64b8d562017-12-28 17:44:02 +0000101import com.android.internal.R;
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800102import com.android.internal.util.ToBooleanFunction;
103import com.android.server.input.InputApplicationHandle;
Adrian Roose99bc052017-11-20 17:55:31 +0100104import com.android.server.policy.WindowManagerPolicy.StartingSurface;
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800105import com.android.server.wm.WindowManagerService.H;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800106
107import java.io.PrintWriter;
Jorim Jaggi0429f352015-12-22 16:29:16 +0100108import java.util.ArrayDeque;
Craig Mautnerb1fd65c02013-02-05 13:34:57 -0800109import java.util.ArrayList;
110
111class AppTokenList extends ArrayList<AppWindowToken> {
112}
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800113
114/**
115 * Version of WindowToken that is specifically for a particular application (or
116 * really activity) that is displaying windows.
117 */
Wale Ogunwale3f4433d2016-08-18 20:42:42 -0700118class AppWindowToken extends WindowToken implements WindowManagerService.AppFreezeListener {
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800119 private static final String TAG = TAG_WITH_CLASS_NAME ? "AppWindowToken" : TAG_WM;
120
Jorim Jaggi619c9f72017-12-19 18:04:29 +0100121 /**
122 * Value to increment the z-layer when boosting a layer during animations. BOOST in l33tsp34k.
123 */
124 private static final int Z_BOOST_BASE = 800570000;
125
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800126 // Non-null only for application tokens.
127 final IApplicationToken appToken;
128
Wale Ogunwale72919d22016-12-08 18:58:50 -0800129 final boolean mVoiceInteraction;
Dianne Hackborne30e02f2014-05-27 18:24:45 -0700130
Wale Ogunwale51362492016-09-08 17:49:17 -0700131 /** @see WindowContainer#fillsParent() */
132 private boolean mFillsParent;
Craig Mautner4c5eb222013-11-18 12:59:05 -0800133 boolean layoutConfigChanges;
Wale Ogunwale72919d22016-12-08 18:58:50 -0800134 boolean mShowForAllUsers;
135 int mTargetSdk;
Craig Mautnera2c77052012-03-26 12:14:43 -0700136
Bryce Lee6d410262017-02-28 15:30:17 -0800137 // Flag set while reparenting to prevent actions normally triggered by an individual parent
138 // change.
139 private boolean mReparenting;
140
Wale Ogunwalee287e192017-04-21 09:30:12 -0700141 // True if we are current in the process of removing this app token from the display
142 private boolean mRemovingFromDisplay = false;
143
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800144 // The input dispatching timeout for this application token in nanoseconds.
Wale Ogunwale72919d22016-12-08 18:58:50 -0800145 long mInputDispatchingTimeoutNanos;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800146
147 // These are used for determining when all windows associated with
148 // an activity have been drawn, so they can be made visible together
149 // at the same time.
Craig Mautner764983d2012-03-22 11:37:36 -0700150 // initialize so that it doesn't match mTransactionSequence which is an int.
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -0700151 private long mLastTransactionSequence = Long.MIN_VALUE;
152 private int mNumInterestingWindows;
153 private int mNumDrawnWindows;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800154 boolean inPendingTransaction;
155 boolean allDrawn;
Jorim Jaggib0fc8172017-11-23 17:04:08 +0000156 private boolean mLastAllDrawn;
157
Craig Mautner7636dfb2012-11-16 15:24:11 -0800158 // Set to true when this app creates a surface while in the middle of an animation. In that
159 // case do not clear allDrawn until the animation completes.
160 boolean deferClearAllDrawn;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800161
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800162 // Is this window's surface needed? This is almost like hidden, except
163 // it will sometimes be true a little earlier: when the token has
164 // been shown, but is still waiting for its app transition to execute
165 // before making its windows shown.
166 boolean hiddenRequested;
167
168 // Have we told the window clients to hide themselves?
Wale Ogunwale89973222017-04-23 18:39:45 -0700169 private boolean mClientHidden;
170
171 // If true we will defer setting mClientHidden to true and reporting to the client that it is
172 // hidden.
173 boolean mDeferHidingClient;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800174
175 // Last visibility state we reported to the app token.
176 boolean reportedVisible;
177
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700178 // Last drawn state we reported to the app token.
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -0700179 private boolean reportedDrawn;
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700180
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800181 // Set to true when the token has been removed from the window mgr.
182 boolean removed;
183
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800184 // Information about an application starting window if displayed.
185 StartingData startingData;
186 WindowState startingWindow;
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800187 StartingSurface startingSurface;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800188 boolean startingDisplayed;
189 boolean startingMoved;
Wale Ogunwale6c459212017-05-17 08:56:03 -0700190 // True if the hidden state of this token was forced to false due to a transferred starting
191 // window.
192 private boolean mHiddenSetFromTransferredStartingWindow;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800193 boolean firstWindowDrawn;
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700194 private final WindowState.UpdateReportedVisibilityResults mReportedVisibilityResults =
195 new WindowState.UpdateReportedVisibilityResults();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800196
197 // Input application handle used by the input dispatcher.
Jeff Brown9302c872011-07-13 22:51:29 -0700198 final InputApplicationHandle mInputApplicationHandle;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800199
Wale Ogunwale571771c2016-08-26 13:18:50 -0700200 // TODO: Have a WindowContainer state for tracking exiting/deferred removal.
Craig Mautner799bc1d2015-01-14 10:33:48 -0800201 boolean mIsExiting;
Craig Mautner9ef471f2014-02-07 13:11:47 -0800202
Craig Mautnerbb742462014-07-07 15:28:55 -0700203 boolean mLaunchTaskBehind;
Craig Mautner8746a472014-07-24 15:12:54 -0700204 boolean mEnteringAnimation;
Craig Mautnerbb742462014-07-07 15:28:55 -0700205
Wale Ogunwale72919d22016-12-08 18:58:50 -0800206 private boolean mAlwaysFocusable;
Wale Ogunwale6cae7652015-12-26 07:36:26 -0800207
Robert Carre12aece2016-02-02 22:43:27 -0800208 boolean mAppStopped;
Robert Carrfd10cd12016-06-29 16:41:50 -0700209 int mRotationAnimationHint;
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -0700210 private int mPendingRelaunchCount;
Robert Carre12aece2016-02-02 22:43:27 -0800211
Jorim Jaggife762342016-10-13 14:33:27 +0200212 private boolean mLastContainsShowWhenLockedWindow;
213 private boolean mLastContainsDismissKeyguardWindow;
214
Jorim Jaggi0429f352015-12-22 16:29:16 +0100215 ArrayDeque<Rect> mFrozenBounds = new ArrayDeque<>();
Jorim Jaggi26c8c422016-05-09 19:57:25 -0700216 ArrayDeque<Configuration> mFrozenMergedConfig = new ArrayDeque<>();
Jorim Jaggi0429f352015-12-22 16:29:16 +0100217
Wale Ogunwale6c459212017-05-17 08:56:03 -0700218 private boolean mDisablePreviewScreenshots;
Jorim Jaggi0fe7ce962017-02-22 16:45:48 +0100219
Wale Ogunwale034a8ec2017-09-02 17:14:40 -0700220 private Task mLastParent;
Robert Carred3e83b2017-04-21 13:26:55 -0700221
chaviwd3bf08d2017-08-01 17:24:59 -0700222 /**
223 * See {@link #canTurnScreenOn()}
224 */
225 private boolean mCanTurnScreenOn = true;
226
Jorim Jaggif5f9e122017-10-24 18:21:09 +0200227 /**
228 * If we are running an animation, this determines the transition type. Must be one of
229 * AppTransition.TRANSIT_* constants.
230 */
231 private int mTransit;
232
233 /**
234 * If we are running an animation, this determines the flags during this animation. Must be a
235 * bitwise combination of AppTransition.TRANSIT_FLAG_* constants.
236 */
237 private int mTransitFlags;
238
239 /** Whether our surface was set to be showing in the last call to {@link #prepareSurfaces} */
Jorim Jaggifd1891462017-12-29 15:41:36 +0100240 private boolean mLastSurfaceShowing = true;
Jorim Jaggif5f9e122017-10-24 18:21:09 +0200241
Jorim Jaggi988f6682017-11-17 17:46:43 +0100242 private AppWindowThumbnail mThumbnail;
243
Jorim Jaggib0fc8172017-11-23 17:04:08 +0000244 /** Have we been asked to have this token keep the screen frozen? */
245 private boolean mFreezingScreen;
246
247 /** Whether this token should be boosted at the top of all app window tokens. */
248 private boolean mNeedsZBoost;
Adrian Roos4d18a2e2017-12-19 19:08:05 +0100249 private Letterbox mLetterbox;
Jorim Jaggib0fc8172017-11-23 17:04:08 +0000250
chaviw23ee71c2017-12-18 11:29:41 -0800251 private final Point mTmpPoint = new Point();
chaviw23012112017-12-20 15:29:04 -0800252 private final Rect mTmpRect = new Rect();
Jorim Jaggif84e2f62018-01-16 14:17:59 +0100253 private RemoteAnimationDefinition mRemoteAnimationDefinition;
chaviw23ee71c2017-12-18 11:29:41 -0800254
Wale Ogunwale72919d22016-12-08 18:58:50 -0800255 AppWindowToken(WindowManagerService service, IApplicationToken token, boolean voiceInteraction,
256 DisplayContent dc, long inputDispatchingTimeoutNanos, boolean fullscreen,
257 boolean showForAllUsers, int targetSdk, int orientation, int rotationAnimationHint,
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800258 int configChanges, boolean launchTaskBehind, boolean alwaysFocusable,
Bryce Leef3c6a472017-11-14 14:53:06 -0800259 AppWindowContainerController controller) {
260 this(service, token, voiceInteraction, dc, fullscreen);
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800261 setController(controller);
Wale Ogunwale72919d22016-12-08 18:58:50 -0800262 mInputDispatchingTimeoutNanos = inputDispatchingTimeoutNanos;
Wale Ogunwale72919d22016-12-08 18:58:50 -0800263 mShowForAllUsers = showForAllUsers;
264 mTargetSdk = targetSdk;
265 mOrientation = orientation;
266 layoutConfigChanges = (configChanges & (CONFIG_SCREEN_SIZE | CONFIG_ORIENTATION)) != 0;
267 mLaunchTaskBehind = launchTaskBehind;
268 mAlwaysFocusable = alwaysFocusable;
269 mRotationAnimationHint = rotationAnimationHint;
270
271 // Application tokens start out hidden.
Jorim Jaggif5f9e122017-10-24 18:21:09 +0200272 setHidden(true);
Wale Ogunwale72919d22016-12-08 18:58:50 -0800273 hiddenRequested = true;
274 }
275
276 AppWindowToken(WindowManagerService service, IApplicationToken token, boolean voiceInteraction,
Bryce Leef3c6a472017-11-14 14:53:06 -0800277 DisplayContent dc, boolean fillsParent) {
Wale Ogunwale5cd907d2017-01-26 14:14:08 -0800278 super(service, token != null ? token.asBinder() : null, TYPE_APPLICATION, true, dc,
279 false /* ownerCanManageAppTokens */);
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700280 appToken = token;
Wale Ogunwale72919d22016-12-08 18:58:50 -0800281 mVoiceInteraction = voiceInteraction;
Wale Ogunwale17f175c2017-02-07 16:54:10 -0800282 mFillsParent = fillsParent;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800283 mInputApplicationHandle = new InputApplicationHandle(this);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800284 }
285
Wale Ogunwale9017ec02016-02-25 08:55:25 -0800286 void onFirstWindowDrawn(WindowState win, WindowStateAnimator winAnimator) {
287 firstWindowDrawn = true;
288
289 // We now have a good window to show, remove dead placeholders
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700290 removeDeadWindows();
Wale Ogunwale9017ec02016-02-25 08:55:25 -0800291
Jorim Jaggi02886a82016-12-06 09:10:06 -0800292 if (startingWindow != null) {
Wale Ogunwale9017ec02016-02-25 08:55:25 -0800293 if (DEBUG_STARTING_WINDOW || DEBUG_ANIM) Slog.v(TAG, "Finish starting "
294 + win.mToken + ": first real window is shown, no animation");
295 // If this initial window is animating, stop it -- we will do an animation to reveal
296 // it from behind the starting window, so there is no need for it to also be doing its
297 // own stuff.
Jorim Jaggia5e10572017-11-15 14:36:26 +0100298 win.cancelAnimation();
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800299 if (getController() != null) {
300 getController().removeStartingWindow();
301 }
Wale Ogunwale9017ec02016-02-25 08:55:25 -0800302 }
303 updateReportedVisibilityLocked();
304 }
305
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800306 void updateReportedVisibilityLocked() {
307 if (appToken == null) {
308 return;
309 }
310
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700311 if (DEBUG_VISIBILITY) Slog.v(TAG, "Update reported visibility: " + this);
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700312 final int count = mChildren.size();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800313
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700314 mReportedVisibilityResults.reset();
315
316 for (int i = 0; i < count; i++) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700317 final WindowState win = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700318 win.updateReportedVisibility(mReportedVisibilityResults);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800319 }
320
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700321 int numInteresting = mReportedVisibilityResults.numInteresting;
322 int numVisible = mReportedVisibilityResults.numVisible;
323 int numDrawn = mReportedVisibilityResults.numDrawn;
324 boolean nowGone = mReportedVisibilityResults.nowGone;
325
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700326 boolean nowDrawn = numInteresting > 0 && numDrawn >= numInteresting;
Jorim Jaggif5f9e122017-10-24 18:21:09 +0200327 boolean nowVisible = numInteresting > 0 && numVisible >= numInteresting && !isHidden();
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700328 if (!nowGone) {
329 // If the app is not yet gone, then it can only become visible/drawn.
330 if (!nowDrawn) {
331 nowDrawn = reportedDrawn;
332 }
333 if (!nowVisible) {
334 nowVisible = reportedVisible;
335 }
336 }
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800337 if (DEBUG_VISIBILITY) Slog.v(TAG, "VIS " + this + ": interesting="
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800338 + numInteresting + " visible=" + numVisible);
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800339 final AppWindowContainerController controller = getController();
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700340 if (nowDrawn != reportedDrawn) {
341 if (nowDrawn) {
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800342 if (controller != null) {
343 controller.reportWindowsDrawn();
344 }
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700345 }
346 reportedDrawn = nowDrawn;
347 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800348 if (nowVisible != reportedVisible) {
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700349 if (DEBUG_VISIBILITY) Slog.v(TAG,
350 "Visibility changed in " + this + ": vis=" + nowVisible);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800351 reportedVisible = nowVisible;
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800352 if (controller != null) {
353 if (nowVisible) {
354 controller.reportWindowsVisible();
355 } else {
356 controller.reportWindowsGone();
357 }
358 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800359 }
360 }
361
Wale Ogunwale89973222017-04-23 18:39:45 -0700362 boolean isClientHidden() {
363 return mClientHidden;
364 }
365
366 void setClientHidden(boolean hideClient) {
367 if (mClientHidden == hideClient || (hideClient && mDeferHidingClient)) {
368 return;
369 }
370 mClientHidden = hideClient;
371 sendAppVisibilityToClients();
372 }
373
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700374 boolean setVisibility(WindowManager.LayoutParams lp,
375 boolean visible, int transit, boolean performLayout, boolean isVoiceInteraction) {
376
377 boolean delayed = false;
378 inPendingTransaction = false;
Wale Ogunwale9e4721f2017-05-23 19:37:30 -0700379 // Reset the state of mHiddenSetFromTransferredStartingWindow since visibility is actually
380 // been set by the app now.
381 mHiddenSetFromTransferredStartingWindow = false;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700382
383 // Allow for state changes and animation to be applied if:
384 // * token is transitioning visibility state
385 // * or the token was marked as hidden and is exiting before we had a chance to play the
386 // transition animation
387 // * or this is an opening app and windows are being replaced.
388 boolean visibilityChanged = false;
Jorim Jaggif5f9e122017-10-24 18:21:09 +0200389 if (isHidden() == visible || (isHidden() && mIsExiting) || (visible && waitingForReplacement())) {
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700390 final AccessibilityController accessibilityController = mService.mAccessibilityController;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700391 boolean changed = false;
392 if (DEBUG_APP_TRANSITIONS) Slog.v(TAG_WM,
Jorim Jaggif5f9e122017-10-24 18:21:09 +0200393 "Changing app " + this + " hidden=" + isHidden() + " performLayout=" + performLayout);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700394
395 boolean runningAppAnimation = false;
396
Jorim Jaggif84e2f62018-01-16 14:17:59 +0100397 if (transit != WindowManager.TRANSIT_UNSET) {
Jorim Jaggif5f9e122017-10-24 18:21:09 +0200398 if (applyAnimationLocked(lp, transit, visible, isVoiceInteraction)) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700399 delayed = runningAppAnimation = true;
400 }
401 final WindowState window = findMainWindow();
402 //TODO (multidisplay): Magnification is supported only for the default display.
403 if (window != null && accessibilityController != null
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -0700404 && getDisplayContent().getDisplayId() == DEFAULT_DISPLAY) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700405 accessibilityController.onAppWindowTransitionLocked(window, transit);
406 }
407 changed = true;
408 }
409
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700410 final int windowsCount = mChildren.size();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700411 for (int i = 0; i < windowsCount; i++) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700412 final WindowState win = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700413 changed |= win.onAppVisibilityChanged(visible, runningAppAnimation);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700414 }
415
Jorim Jaggif5f9e122017-10-24 18:21:09 +0200416 setHidden(!visible);
417 hiddenRequested = !visible;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700418 visibilityChanged = true;
419 if (!visible) {
420 stopFreezingScreen(true, true);
421 } else {
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700422 // If we are being set visible, and the starting window is not yet displayed,
423 // then make sure it doesn't get displayed.
424 if (startingWindow != null && !startingWindow.isDrawnLw()) {
425 startingWindow.mPolicyVisibility = false;
426 startingWindow.mPolicyVisibilityAfterAnim = false;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700427 }
Jorim Jaggi38d44ec2017-06-14 16:04:59 -0700428
429 // We are becoming visible, so better freeze the screen with the windows that are
430 // getting visible so we also wait for them.
431 forAllWindows(mService::makeWindowFreezingScreenIfNeededLocked, true);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700432 }
433
434 if (DEBUG_APP_TRANSITIONS) Slog.v(TAG_WM, "setVisibility: " + this
Jorim Jaggif5f9e122017-10-24 18:21:09 +0200435 + ": hidden=" + isHidden() + " hiddenRequested=" + hiddenRequested);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700436
437 if (changed) {
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700438 mService.mInputMonitor.setUpdateInputWindowsNeededLw();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700439 if (performLayout) {
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700440 mService.updateFocusedWindowLocked(UPDATE_FOCUS_WILL_PLACE_SURFACES,
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700441 false /*updateInputWindows*/);
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700442 mService.mWindowPlacerLocked.performSurfacePlacement();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700443 }
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700444 mService.mInputMonitor.updateInputWindowsLw(false /*force*/);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700445 }
446 }
447
Jorim Jaggif5f9e122017-10-24 18:21:09 +0200448 if (isReallyAnimating()) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700449 delayed = true;
450 }
451
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700452 for (int i = mChildren.size() - 1; i >= 0 && !delayed; i--) {
Jorim Jaggia5e10572017-11-15 14:36:26 +0100453 if ((mChildren.get(i)).isSelfOrChildAnimating()) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700454 delayed = true;
455 }
456 }
457
458 if (visibilityChanged) {
459 if (visible && !delayed) {
460 // The token was made immediately visible, there will be no entrance animation.
461 // We need to inform the client the enter animation was finished.
462 mEnteringAnimation = true;
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700463 mService.mActivityManagerAppTransitionNotifier.onAppTransitionFinishedLocked(token);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700464 }
Robert Carr61b81112017-07-17 18:08:15 -0700465
Jorim Jaggi110839b2018-01-22 12:49:04 +0100466 // If we're becoming visible, immediately change client visibility as well although it
467 // usually gets changed in AppWindowContainerController.setVisibility already. However,
468 // there seem to be some edge cases where we change our visibility but client visibility
469 // never gets updated.
470 // If we're becoming invisible, update the client visibility if we are not running an
471 // animation. Otherwise, we'll update client visibility in onAnimationFinished.
Jorim Jaggi3cad57f2018-02-20 18:32:01 +0100472 if (visible || !isReallyAnimating()) {
Jorim Jaggi110839b2018-01-22 12:49:04 +0100473 setClientHidden(!visible);
Jorim Jaggi4876b4a2018-01-11 15:43:49 +0100474 }
475
Robert Carre7cc44d2017-03-20 19:04:30 -0700476 // If we are hidden but there is no delay needed we immediately
477 // apply the Surface transaction so that the ActivityManager
Robert Carr61b81112017-07-17 18:08:15 -0700478 // can have some guarantee on the Surface state following
479 // setting the visibility. This captures cases like dismissing
480 // the docked or pinned stack where there is no app transition.
481 //
482 // In the case of a "Null" animation, there will be
483 // no animation but there will still be a transition set.
484 // We still need to delay hiding the surface such that it
485 // can be synchronized with showing the next surface in the transition.
Jorim Jaggif5f9e122017-10-24 18:21:09 +0200486 if (isHidden() && !delayed && !mService.mAppTransition.isTransitionSet()) {
Robert Carr6914f082017-03-20 19:04:30 -0700487 SurfaceControl.openTransaction();
488 for (int i = mChildren.size() - 1; i >= 0; i--) {
489 mChildren.get(i).mWinAnimator.hide("immediately hidden");
490 }
491 SurfaceControl.closeTransaction();
492 }
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700493
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700494 if (!mService.mClosingApps.contains(this) && !mService.mOpeningApps.contains(this)) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700495 // The token is not closing nor opening, so even if there is an animation set, that
496 // doesn't mean that it goes through the normal app transition cycle so we have
497 // to inform the docked controller about visibility change.
Andrii Kulian1e32e022016-09-16 15:29:34 -0700498 // TODO(multi-display): notify docked divider on all displays where visibility was
499 // affected.
Wale Ogunwale2049dbf2016-08-02 21:05:23 -0700500 mService.getDefaultDisplayContentLocked().getDockedDividerController()
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700501 .notifyAppVisibilityChanged();
Jorim Jaggi8b702ed2017-01-20 16:59:03 +0100502 mService.mTaskSnapshotController.notifyAppVisibilityChanged(this, visible);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700503 }
504 }
505
506 return delayed;
507 }
508
Jorim Jaggi87fdbcb2017-08-17 13:41:11 +0200509 /**
510 * @return The to top most child window for which {@link LayoutParams#isFullscreen()} returns
511 * true.
512 */
513 WindowState getTopFullscreenWindow() {
514 for (int i = mChildren.size() - 1; i >= 0; i--) {
515 final WindowState win = mChildren.get(i);
516 if (win != null && win.mAttrs.isFullscreen()) {
517 return win;
518 }
519 }
520 return null;
521 }
522
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800523 WindowState findMainWindow() {
Matthew Ng53e66b22018-01-12 17:13:13 -0800524 return findMainWindow(true);
525 }
526
527 /**
528 * Finds the main window that either has type base application or application starting if
529 * requested.
530 *
531 * @param includeStartingApp Allow to search application-starting windows to also be returned.
532 * @return The main window of type base application or application starting if requested.
533 */
534 WindowState findMainWindow(boolean includeStartingApp) {
Filip Gruszczynski55a309f2015-09-04 17:15:01 -0700535 WindowState candidate = null;
Matthew Ng53e66b22018-01-12 17:13:13 -0800536 for (int j = mChildren.size() - 1; j >= 0; --j) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700537 final WindowState win = mChildren.get(j);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700538 final int type = win.mAttrs.type;
539 // No need to loop through child window as base application and starting types can't be
540 // child windows.
Matthew Ng53e66b22018-01-12 17:13:13 -0800541 if (type == TYPE_BASE_APPLICATION
542 || (includeStartingApp && type == TYPE_APPLICATION_STARTING)) {
Filip Gruszczynski55a309f2015-09-04 17:15:01 -0700543 // In cases where there are multiple windows, we prefer the non-exiting window. This
Sungsoo Lim0d3d1f82015-12-02 14:47:59 +0900544 // happens for example when replacing windows during an activity relaunch. When
Filip Gruszczynski55a309f2015-09-04 17:15:01 -0700545 // constructing the animation, we want the new window, not the exiting one.
Wale Ogunwalec48a3542016-02-19 15:18:45 -0800546 if (win.mAnimatingExit) {
Filip Gruszczynski55a309f2015-09-04 17:15:01 -0700547 candidate = win;
548 } else {
549 return win;
550 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800551 }
552 }
Filip Gruszczynski55a309f2015-09-04 17:15:01 -0700553 return candidate;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800554 }
555
Wale Ogunwale6cae7652015-12-26 07:36:26 -0800556 boolean windowsAreFocusable() {
Wale Ogunwale3382ab12017-07-27 08:55:03 -0700557 return getWindowConfiguration().canReceiveKeys() || mAlwaysFocusable;
Wale Ogunwaled045c822015-12-02 09:14:28 -0800558 }
559
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800560 AppWindowContainerController getController() {
561 final WindowContainerController controller = super.getController();
562 return controller != null ? (AppWindowContainerController) controller : null;
563 }
564
Wale Ogunwale571771c2016-08-26 13:18:50 -0700565 @Override
Wale Ogunwale44f21802016-09-02 12:49:48 -0700566 boolean isVisible() {
Wale Ogunwalee471be62016-10-03 07:53:55 -0700567 // If the app token isn't hidden then it is considered visible and there is no need to check
568 // its children windows to see if they are visible.
Jorim Jaggif5f9e122017-10-24 18:21:09 +0200569 return !isHidden();
Wale Ogunwale44f21802016-09-02 12:49:48 -0700570 }
571
572 @Override
Wale Ogunwalee287e192017-04-21 09:30:12 -0700573 void removeImmediately() {
574 onRemovedFromDisplay();
575 super.removeImmediately();
576 }
577
578 @Override
Wale Ogunwale571771c2016-08-26 13:18:50 -0700579 void removeIfPossible() {
Craig Mautnere3119b72015-01-20 15:02:36 -0800580 mIsExiting = false;
Wale Ogunwale3d0bfd92016-12-05 11:38:02 -0800581 removeAllWindowsIfPossible();
Bryce Lee6d410262017-02-28 15:30:17 -0800582 removeImmediately();
Craig Mautnere3119b72015-01-20 15:02:36 -0800583 }
584
Wale Ogunwale3f4433d2016-08-18 20:42:42 -0700585 @Override
586 boolean checkCompleteDeferredRemoval() {
587 if (mIsExiting) {
588 removeIfPossible();
589 }
590 return super.checkCompleteDeferredRemoval();
591 }
592
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700593 void onRemovedFromDisplay() {
Wale Ogunwalee287e192017-04-21 09:30:12 -0700594 if (mRemovingFromDisplay) {
595 return;
596 }
597 mRemovingFromDisplay = true;
598
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700599 if (DEBUG_APP_TRANSITIONS) Slog.v(TAG_WM, "Removing app token: " + this);
600
Wale Ogunwale72919d22016-12-08 18:58:50 -0800601 boolean delayed = setVisibility(null, false, TRANSIT_UNSET, true, mVoiceInteraction);
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700602
603 mService.mOpeningApps.remove(this);
Jorim Jaggi45ca0542017-05-30 16:16:01 -0700604 mService.mUnknownAppVisibilityController.appRemovedOrHidden(this);
Jorim Jaggi10abe2f2017-01-03 16:44:46 +0100605 mService.mTaskSnapshotController.onAppRemoved(this);
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700606 waitingToShow = false;
607 if (mService.mClosingApps.contains(this)) {
608 delayed = true;
609 } else if (mService.mAppTransition.isTransitionSet()) {
610 mService.mClosingApps.add(this);
611 delayed = true;
612 }
613
614 if (DEBUG_APP_TRANSITIONS) Slog.v(TAG_WM, "Removing app " + this + " delayed=" + delayed
Jorim Jaggif5f9e122017-10-24 18:21:09 +0200615 + " animation=" + getAnimation() + " animating=" + isSelfAnimating());
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700616
617 if (DEBUG_ADD_REMOVE || DEBUG_TOKEN_MOVEMENT) Slog.v(TAG_WM, "removeAppToken: "
618 + this + " delayed=" + delayed + " Callers=" + Debug.getCallers(4));
619
Jorim Jaggi19be6052017-08-03 18:33:43 +0200620 if (startingData != null && getController() != null) {
621 getController().removeStartingWindow();
622 }
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800623
Winson Chung87e5d552017-04-05 11:49:38 -0700624 // If this window was animating, then we need to ensure that the app transition notifies
625 // that animations have completed in WMS.handleAnimatingStoppedAndTransitionLocked(), so
626 // add to that list now
Jorim Jaggif5f9e122017-10-24 18:21:09 +0200627 if (isSelfAnimating()) {
Winson Chung87e5d552017-04-05 11:49:38 -0700628 mService.mNoAnimationNotifyOnTransitionFinished.add(token);
629 }
630
Wale Ogunwalee287e192017-04-21 09:30:12 -0700631 final TaskStack stack = getStack();
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700632 if (delayed && !isEmpty()) {
633 // set the token aside because it has an active animation to be finished
634 if (DEBUG_ADD_REMOVE || DEBUG_TOKEN_MOVEMENT) Slog.v(TAG_WM,
635 "removeAppToken make exiting: " + this);
Wale Ogunwalee287e192017-04-21 09:30:12 -0700636 if (stack != null) {
637 stack.mExitingAppTokens.add(this);
638 }
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700639 mIsExiting = true;
640 } else {
641 // Make sure there is no animation running on this token, so any windows associated
642 // with it will be removed as soon as their animations are complete
Jorim Jaggif5f9e122017-10-24 18:21:09 +0200643 cancelAnimation();
Wale Ogunwale3106ae012017-05-16 08:56:37 -0700644 if (stack != null) {
645 stack.mExitingAppTokens.remove(this);
646 }
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700647 removeIfPossible();
648 }
649
650 removed = true;
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700651 stopFreezingScreen(true, true);
Bryce Lee6d410262017-02-28 15:30:17 -0800652
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700653 if (mService.mFocusedApp == this) {
654 if (DEBUG_FOCUS_LIGHT) Slog.v(TAG_WM, "Removing focused app token:" + this);
655 mService.mFocusedApp = null;
656 mService.updateFocusedWindowLocked(UPDATE_FOCUS_NORMAL, true /*updateInputWindows*/);
657 mService.mInputMonitor.setFocusedAppLw(null);
658 }
659
660 if (!delayed) {
661 updateReportedVisibilityLocked();
662 }
Wale Ogunwalee287e192017-04-21 09:30:12 -0700663
664 mRemovingFromDisplay = false;
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700665 }
666
Chong Zhange05bcb12016-07-26 17:47:29 -0700667 void clearAnimatingFlags() {
Chong Zhangb0d26702016-08-12 16:03:29 -0700668 boolean wallpaperMightChange = false;
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700669 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700670 final WindowState win = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700671 wallpaperMightChange |= win.clearAnimatingFlags();
Chong Zhange05bcb12016-07-26 17:47:29 -0700672 }
Chong Zhangb0d26702016-08-12 16:03:29 -0700673 if (wallpaperMightChange) {
674 requestUpdateWallpaperIfNeeded();
675 }
Chong Zhange05bcb12016-07-26 17:47:29 -0700676 }
677
Robert Carre12aece2016-02-02 22:43:27 -0800678 void destroySurfaces() {
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700679 destroySurfaces(false /*cleanupOnResume*/);
680 }
681
682 /**
683 * Destroy surfaces which have been marked as eligible by the animator, taking care to ensure
684 * the client has finished with them.
685 *
686 * @param cleanupOnResume whether this is done when app is resumed without fully stopped. If
687 * set to true, destroy only surfaces of removed windows, and clear relevant flags of the
688 * others so that they are ready to be reused. If set to false (common case), destroy all
689 * surfaces that's eligible, if the app is already stopped.
690 */
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700691 private void destroySurfaces(boolean cleanupOnResume) {
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -0700692 boolean destroyedSomething = false;
Jorim Jaggia5e10572017-11-15 14:36:26 +0100693
694 // Copying to a different list as multiple children can be removed.
Jorim Jaggi59f3e922018-01-05 15:40:32 +0100695 final ArrayList<WindowState> children = new ArrayList<>(mChildren);
Jorim Jaggia5e10572017-11-15 14:36:26 +0100696 for (int i = children.size() - 1; i >= 0; i--) {
697 final WindowState win = children.get(i);
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -0700698 destroyedSomething |= win.destroySurface(cleanupOnResume, mAppStopped);
Robert Carre12aece2016-02-02 22:43:27 -0800699 }
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -0700700 if (destroyedSomething) {
701 final DisplayContent dc = getDisplayContent();
Wale Ogunwalec69694a2016-10-18 13:51:15 -0700702 dc.assignWindowLayers(true /*setLayoutNeeded*/);
Adrian Roos4d18a2e2017-12-19 19:08:05 +0100703 updateLetterbox(null);
Robert Carre12aece2016-02-02 22:43:27 -0800704 }
705 }
706
Wale Ogunwale8d5a5422016-03-03 18:28:21 -0800707 /**
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700708 * Notify that the app is now resumed, and it was not stopped before, perform a clean
709 * up of the surfaces
Wale Ogunwale8d5a5422016-03-03 18:28:21 -0800710 */
Jorim Jaggibae01b12017-04-11 16:29:10 -0700711 void notifyAppResumed(boolean wasStopped) {
Chong Zhangad24f962016-08-25 12:12:33 -0700712 if (DEBUG_ADD_REMOVE) Slog.v(TAG, "notifyAppResumed: wasStopped=" + wasStopped
Jorim Jaggibae01b12017-04-11 16:29:10 -0700713 + " " + this);
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700714 mAppStopped = false;
chaviwd3bf08d2017-08-01 17:24:59 -0700715 // Allow the window to turn the screen on once the app is resumed again.
716 setCanTurnScreenOn(true);
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700717 if (!wasStopped) {
718 destroySurfaces(true /*cleanupOnResume*/);
Wale Ogunwale8d5a5422016-03-03 18:28:21 -0800719 }
Robert Carre12aece2016-02-02 22:43:27 -0800720 }
721
Chong Zhangbef461f2015-10-27 11:38:24 -0700722 /**
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700723 * Notify that the app has stopped, and it is okay to destroy any surfaces which were
724 * keeping alive in case they were still being used.
725 */
726 void notifyAppStopped() {
727 if (DEBUG_ADD_REMOVE) Slog.v(TAG, "notifyAppStopped: " + this);
728 mAppStopped = true;
729 destroySurfaces();
730 // Remove any starting window that was added for this app if they are still around.
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800731 if (getController() != null) {
732 getController().removeStartingWindow();
733 }
Chong Zhang45e6d2d2016-07-20 18:33:56 -0700734 }
735
Chong Zhang92147042016-05-09 12:47:11 -0700736 void clearAllDrawn() {
737 allDrawn = false;
738 deferClearAllDrawn = false;
Chong Zhangbef461f2015-10-27 11:38:24 -0700739 }
740
Bryce Lee6d410262017-02-28 15:30:17 -0800741 Task getTask() {
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800742 return (Task) getParent();
Bryce Lee6d410262017-02-28 15:30:17 -0800743 }
744
Jorim Jaggi3878ca32017-02-02 17:13:05 -0800745 TaskStack getStack() {
746 final Task task = getTask();
747 if (task != null) {
748 return task.mStack;
749 } else {
750 return null;
751 }
752 }
753
Bryce Lee6d410262017-02-28 15:30:17 -0800754 @Override
755 void onParentSet() {
756 super.onParentSet();
757
Robert Carred3e83b2017-04-21 13:26:55 -0700758 final Task task = getTask();
759
Bryce Lee6d410262017-02-28 15:30:17 -0800760 // When the associated task is {@code null}, the {@link AppWindowToken} can no longer
761 // access visual elements like the {@link DisplayContent}. We must remove any associations
762 // such as animations.
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800763 if (!mReparenting) {
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800764 if (task == null) {
765 // It is possible we have been marked as a closing app earlier. We must remove ourselves
766 // from this list so we do not participate in any future animations.
767 mService.mClosingApps.remove(this);
Robert Carred3e83b2017-04-21 13:26:55 -0700768 } else if (mLastParent != null && mLastParent.mStack != null) {
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800769 task.mStack.mExitingAppTokens.remove(this);
770 }
Bryce Lee6d410262017-02-28 15:30:17 -0800771 }
Robert Carred3e83b2017-04-21 13:26:55 -0700772 mLastParent = task;
Bryce Lee6d410262017-02-28 15:30:17 -0800773 }
774
Wale Ogunwalefa854eb2016-09-20 13:43:52 -0700775 void postWindowRemoveStartingWindowCleanup(WindowState win) {
Wale Ogunwale92fc3722016-08-05 12:19:08 -0700776 // TODO: Something smells about the code below...Is there a better way?
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700777 if (startingWindow == win) {
778 if (DEBUG_STARTING_WINDOW) Slog.v(TAG_WM, "Notify removed startingWindow " + win);
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800779 if (getController() != null) {
780 getController().removeStartingWindow();
781 }
Wale Ogunwale6c459212017-05-17 08:56:03 -0700782 } else if (mChildren.size() == 0) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700783 // If this is the last window and we had requested a starting transition window,
784 // well there is no point now.
Jorim Jaggi02886a82016-12-06 09:10:06 -0800785 if (DEBUG_STARTING_WINDOW) Slog.v(TAG_WM, "Nulling last startingData");
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700786 startingData = null;
Wale Ogunwale6c459212017-05-17 08:56:03 -0700787 if (mHiddenSetFromTransferredStartingWindow) {
788 // We set the hidden state to false for the token from a transferred starting window.
789 // We now reset it back to true since the starting window was the last window in the
790 // token.
Jorim Jaggif5f9e122017-10-24 18:21:09 +0200791 setHidden(true);
Wale Ogunwale6c459212017-05-17 08:56:03 -0700792 }
Jorim Jaggi829b9cd2017-01-23 16:20:53 +0100793 } else if (mChildren.size() == 1 && startingSurface != null && !isRelaunching()) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700794 // If this is the last window except for a starting transition window,
795 // we need to get rid of the starting transition.
Jorim Jaggie4b0f282017-05-17 15:10:29 +0200796 if (DEBUG_STARTING_WINDOW) Slog.v(TAG_WM, "Last window, removing starting window "
797 + win);
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800798 if (getController() != null) {
799 getController().removeStartingWindow();
800 }
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700801 }
802 }
803
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700804 void removeDeadWindows() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700805 for (int winNdx = mChildren.size() - 1; winNdx >= 0; --winNdx) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700806 WindowState win = mChildren.get(winNdx);
Chong Zhang112eb8c2015-11-02 11:17:00 -0800807 if (win.mAppDied) {
Wale Ogunwale92fc3722016-08-05 12:19:08 -0700808 if (DEBUG_WINDOW_MOVEMENT || DEBUG_ADD_REMOVE) Slog.w(TAG,
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700809 "removeDeadWindows: " + win);
Chong Zhang112eb8c2015-11-02 11:17:00 -0800810 // Set mDestroying, we don't want any animation or delayed removal here.
811 win.mDestroying = true;
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700812 // Also removes child windows.
Wale Ogunwale92fc3722016-08-05 12:19:08 -0700813 win.removeIfPossible();
Chong Zhang112eb8c2015-11-02 11:17:00 -0800814 }
815 }
816 }
817
Wale Ogunwalee42d0e12016-05-02 16:40:59 -0700818 boolean hasWindowsAlive() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700819 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700820 // No need to loop through child windows as the answer should be the same as that of the
821 // parent window.
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700822 if (!(mChildren.get(i)).mAppDied) {
Wale Ogunwalee42d0e12016-05-02 16:40:59 -0700823 return true;
824 }
825 }
826 return false;
827 }
828
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700829 void setWillReplaceWindows(boolean animate) {
Wale Ogunwale455fac52016-07-21 07:24:49 -0700830 if (DEBUG_ADD_REMOVE) Slog.d(TAG_WM,
831 "Marking app token " + this + " with replacing windows.");
Robert Carra1eb4392015-12-10 12:43:51 -0800832
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700833 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700834 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700835 w.setWillReplaceWindow(animate);
Robert Carra1eb4392015-12-10 12:43:51 -0800836 }
Robert Carra1eb4392015-12-10 12:43:51 -0800837 }
838
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700839 void setWillReplaceChildWindows() {
Wale Ogunwale455fac52016-07-21 07:24:49 -0700840 if (DEBUG_ADD_REMOVE) Slog.d(TAG_WM, "Marking app token " + this
Robert Carr23fa16b2016-01-13 13:19:58 -0800841 + " with replacing child windows.");
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700842 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700843 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700844 w.setWillReplaceChildWindows();
Robert Carr23fa16b2016-01-13 13:19:58 -0800845 }
846 }
847
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700848 void clearWillReplaceWindows() {
Wale Ogunwale455fac52016-07-21 07:24:49 -0700849 if (DEBUG_ADD_REMOVE) Slog.d(TAG_WM,
850 "Resetting app token " + this + " of replacing window marks.");
Chong Zhangf596cd52016-01-05 13:42:44 -0800851
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700852 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700853 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700854 w.clearWillReplaceWindow();
Chong Zhangf596cd52016-01-05 13:42:44 -0800855 }
856 }
857
Chong Zhang4d7369a2016-04-25 16:09:14 -0700858 void requestUpdateWallpaperIfNeeded() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700859 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700860 final WindowState w = mChildren.get(i);
Chong Zhang4d7369a2016-04-25 16:09:14 -0700861 w.requestUpdateWallpaperIfNeeded();
862 }
863 }
864
Chong Zhangd78ddb42016-03-02 17:01:14 -0800865 boolean isRelaunching() {
866 return mPendingRelaunchCount > 0;
867 }
868
Robert Carr68375192017-06-13 12:41:53 -0700869 boolean shouldFreezeBounds() {
870 final Task task = getTask();
871
872 // For freeform windows, we can't freeze the bounds at the moment because this would make
873 // the resizing unresponsive.
Wale Ogunwale44f036f2017-09-29 05:09:09 -0700874 if (task == null || task.inFreeformWindowingMode()) {
Robert Carr68375192017-06-13 12:41:53 -0700875 return false;
876 }
877
878 // We freeze the bounds while drag resizing to deal with the time between
879 // the divider/drag handle being released, and the handling it's new
880 // configuration. If we are relaunched outside of the drag resizing state,
881 // we need to be careful not to do this.
882 return getTask().isDragResizing();
883 }
884
Chong Zhangd78ddb42016-03-02 17:01:14 -0800885 void startRelaunching() {
Robert Carr68375192017-06-13 12:41:53 -0700886 if (shouldFreezeBounds()) {
Chong Zhangd78ddb42016-03-02 17:01:14 -0800887 freezeBounds();
888 }
Robert Carrd5c7dd62017-03-08 10:39:30 -0800889
890 // In the process of tearing down before relaunching, the app will
891 // try and clean up it's child surfaces. We need to prevent this from
892 // happening, so we sever the children, transfering their ownership
893 // from the client it-self to the parent surface (owned by us).
894 for (int i = mChildren.size() - 1; i >= 0; i--) {
895 final WindowState w = mChildren.get(i);
896 w.mWinAnimator.detachChildren();
897 }
898
Chong Zhangd78ddb42016-03-02 17:01:14 -0800899 mPendingRelaunchCount++;
900 }
901
902 void finishRelaunching() {
Robert Carr68375192017-06-13 12:41:53 -0700903 unfreezeBounds();
904
Chong Zhangd78ddb42016-03-02 17:01:14 -0800905 if (mPendingRelaunchCount > 0) {
906 mPendingRelaunchCount--;
Bryce Lee081554b2017-05-25 07:52:12 -0700907 } else {
908 // Update keyguard flags upon finishing relaunch.
909 checkKeyguardFlagsChanged();
Chong Zhangd78ddb42016-03-02 17:01:14 -0800910 }
911 }
912
Wale Ogunwale8fd75422016-06-24 14:20:37 -0700913 void clearRelaunching() {
Wale Ogunwale37dbafc2016-06-27 10:15:20 -0700914 if (mPendingRelaunchCount == 0) {
915 return;
916 }
Robert Carr68375192017-06-13 12:41:53 -0700917 unfreezeBounds();
Wale Ogunwale8fd75422016-06-24 14:20:37 -0700918 mPendingRelaunchCount = 0;
919 }
920
Wale Ogunwale07bcab72016-10-14 15:30:09 -0700921 /**
922 * Returns true if the new child window we are adding to this token is considered greater than
923 * the existing child window in this token in terms of z-order.
924 */
925 @Override
926 protected boolean isFirstChildWindowGreaterThanSecond(WindowState newWindow,
927 WindowState existingWindow) {
928 final int type1 = newWindow.mAttrs.type;
929 final int type2 = existingWindow.mAttrs.type;
930
931 // Base application windows should be z-ordered BELOW all other windows in the app token.
932 if (type1 == TYPE_BASE_APPLICATION && type2 != TYPE_BASE_APPLICATION) {
933 return false;
934 } else if (type1 != TYPE_BASE_APPLICATION && type2 == TYPE_BASE_APPLICATION) {
935 return true;
936 }
937
938 // Starting windows should be z-ordered ABOVE all other windows in the app token.
939 if (type1 == TYPE_APPLICATION_STARTING && type2 != TYPE_APPLICATION_STARTING) {
940 return true;
941 } else if (type1 != TYPE_APPLICATION_STARTING && type2 == TYPE_APPLICATION_STARTING) {
942 return false;
943 }
944
945 // Otherwise the new window is greater than the existing window.
946 return true;
947 }
948
Wale Ogunwale92fc3722016-08-05 12:19:08 -0700949 @Override
Robert Carra1eb4392015-12-10 12:43:51 -0800950 void addWindow(WindowState w) {
Wale Ogunwale92fc3722016-08-05 12:19:08 -0700951 super.addWindow(w);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700952
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700953 boolean gotReplacementWindow = false;
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700954 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700955 final WindowState candidate = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700956 gotReplacementWindow |= candidate.setReplacementWindowIfNeeded(w);
957 }
Wale Ogunwale92fc3722016-08-05 12:19:08 -0700958
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700959 // if we got a replacement window, reset the timeout to give drawing more time
960 if (gotReplacementWindow) {
961 mService.scheduleWindowReplacementTimeouts(this);
Robert Carra1eb4392015-12-10 12:43:51 -0800962 }
Jorim Jaggife762342016-10-13 14:33:27 +0200963 checkKeyguardFlagsChanged();
964 }
965
966 @Override
967 void removeChild(WindowState child) {
968 super.removeChild(child);
969 checkKeyguardFlagsChanged();
Adrian Roos4d18a2e2017-12-19 19:08:05 +0100970 updateLetterbox(child);
Robert Carra1eb4392015-12-10 12:43:51 -0800971 }
972
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -0700973 private boolean waitingForReplacement() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700974 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700975 final WindowState candidate = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700976 if (candidate.waitingForReplacement()) {
Robert Carra1eb4392015-12-10 12:43:51 -0800977 return true;
978 }
979 }
980 return false;
981 }
982
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700983 void onWindowReplacementTimeout() {
Wale Ogunwaled1c37912016-08-16 03:19:39 -0700984 for (int i = mChildren.size() - 1; i >= 0; --i) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700985 (mChildren.get(i)).onWindowReplacementTimeout();
Robert Carra1eb4392015-12-10 12:43:51 -0800986 }
987 }
988
Winson Chung30480042017-01-26 10:55:34 -0800989 void reparent(Task task, int position) {
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800990 final Task currentTask = getTask();
991 if (task == currentTask) {
Winson Chung30480042017-01-26 10:55:34 -0800992 throw new IllegalArgumentException(
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800993 "window token=" + this + " already child of task=" + currentTask);
Winson Chung30480042017-01-26 10:55:34 -0800994 }
Bryce Lee6d410262017-02-28 15:30:17 -0800995
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800996 if (currentTask.mStack != task.mStack) {
Bryce Lee6d410262017-02-28 15:30:17 -0800997 throw new IllegalArgumentException(
Bryce Lee7fbeb8a2017-03-02 08:42:30 -0800998 "window token=" + this + " current task=" + currentTask
Bryce Lee6d410262017-02-28 15:30:17 -0800999 + " belongs to a different stack than " + task);
1000 }
1001
Winson Chung30480042017-01-26 10:55:34 -08001002 if (DEBUG_ADD_REMOVE) Slog.i(TAG, "reParentWindowToken: removing window token=" + this
Bryce Lee7fbeb8a2017-03-02 08:42:30 -08001003 + " from task=" + currentTask);
Winson Chung30480042017-01-26 10:55:34 -08001004 final DisplayContent prevDisplayContent = getDisplayContent();
1005
Bryce Lee6d410262017-02-28 15:30:17 -08001006 mReparenting = true;
1007
Winson Chung30480042017-01-26 10:55:34 -08001008 getParent().removeChild(this);
1009 task.addChild(this, position);
1010
Bryce Lee6d410262017-02-28 15:30:17 -08001011 mReparenting = false;
1012
Winson Chung30480042017-01-26 10:55:34 -08001013 // Relayout display(s).
1014 final DisplayContent displayContent = task.getDisplayContent();
1015 displayContent.setLayoutNeeded();
1016 if (prevDisplayContent != displayContent) {
1017 onDisplayChanged(displayContent);
1018 prevDisplayContent.setLayoutNeeded();
1019 }
1020 }
1021
Jorim Jaggi0429f352015-12-22 16:29:16 +01001022 /**
1023 * Freezes the task bounds. The size of this task reported the app will be fixed to the bounds
1024 * freezed by {@link Task#prepareFreezingBounds} until {@link #unfreezeBounds} gets called, even
1025 * if they change in the meantime. If the bounds are already frozen, the bounds will be frozen
1026 * with a queue.
1027 */
Chong Zhangd78ddb42016-03-02 17:01:14 -08001028 private void freezeBounds() {
Bryce Lee7fbeb8a2017-03-02 08:42:30 -08001029 final Task task = getTask();
1030 mFrozenBounds.offer(new Rect(task.mPreparedFrozenBounds));
Jorim Jaggi26c8c422016-05-09 19:57:25 -07001031
Bryce Lee7fbeb8a2017-03-02 08:42:30 -08001032 if (task.mPreparedFrozenMergedConfig.equals(Configuration.EMPTY)) {
Jorim Jaggi26c8c422016-05-09 19:57:25 -07001033 // We didn't call prepareFreezingBounds on the task, so use the current value.
Bryce Lee7fbeb8a2017-03-02 08:42:30 -08001034 mFrozenMergedConfig.offer(new Configuration(task.getConfiguration()));
Jorim Jaggi26c8c422016-05-09 19:57:25 -07001035 } else {
Bryce Lee7fbeb8a2017-03-02 08:42:30 -08001036 mFrozenMergedConfig.offer(new Configuration(task.mPreparedFrozenMergedConfig));
Jorim Jaggi26c8c422016-05-09 19:57:25 -07001037 }
Andrii Kulianb10330d2016-09-16 13:51:46 -07001038 // Calling unset() to make it equal to Configuration.EMPTY.
Bryce Lee7fbeb8a2017-03-02 08:42:30 -08001039 task.mPreparedFrozenMergedConfig.unset();
Jorim Jaggi0429f352015-12-22 16:29:16 +01001040 }
1041
1042 /**
1043 * Unfreezes the previously frozen bounds. See {@link #freezeBounds}.
1044 */
Chong Zhangd78ddb42016-03-02 17:01:14 -08001045 private void unfreezeBounds() {
Robert Carr68375192017-06-13 12:41:53 -07001046 if (mFrozenBounds.isEmpty()) {
1047 return;
Wale Ogunwale37dbafc2016-06-27 10:15:20 -07001048 }
Robert Carr68375192017-06-13 12:41:53 -07001049 mFrozenBounds.remove();
Wale Ogunwale37dbafc2016-06-27 10:15:20 -07001050 if (!mFrozenMergedConfig.isEmpty()) {
1051 mFrozenMergedConfig.remove();
1052 }
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001053 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07001054 final WindowState win = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001055 win.onUnfreezeBounds();
Jorim Jaggi4846ee32016-01-07 17:39:12 +01001056 }
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001057 mService.mWindowPlacerLocked.performSurfacePlacement();
Jorim Jaggi0429f352015-12-22 16:29:16 +01001058 }
1059
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -07001060 void setAppLayoutChanges(int changes, String reason) {
1061 if (!mChildren.isEmpty()) {
1062 final DisplayContent dc = getDisplayContent();
1063 dc.pendingLayoutChanges |= changes;
1064 if (DEBUG_LAYOUT_REPEATS) {
1065 mService.mWindowPlacerLocked.debugLayoutRepeats(reason, dc.pendingLayoutChanges);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001066 }
1067 }
1068 }
1069
1070 void removeReplacedWindowIfNeeded(WindowState replacement) {
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001071 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07001072 final WindowState win = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001073 if (win.removeReplacedWindowIfNeeded(replacement)) {
1074 return;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001075 }
1076 }
1077 }
1078
1079 void startFreezingScreen() {
1080 if (DEBUG_ORIENTATION) logWithStack(TAG, "Set freezing of " + appToken + ": hidden="
Jorim Jaggib0fc8172017-11-23 17:04:08 +00001081 + isHidden() + " freezing=" + mFreezingScreen + " hiddenRequested="
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001082 + hiddenRequested);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001083 if (!hiddenRequested) {
Jorim Jaggib0fc8172017-11-23 17:04:08 +00001084 if (!mFreezingScreen) {
1085 mFreezingScreen = true;
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001086 mService.registerAppFreezeListener(this);
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001087 mService.mAppsFreezingScreen++;
1088 if (mService.mAppsFreezingScreen == 1) {
Bryce Lee8f853582017-06-05 17:25:59 -07001089 mService.startFreezingDisplayLocked(false, 0, 0, getDisplayContent());
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001090 mService.mH.removeMessages(H.APP_FREEZE_TIMEOUT);
1091 mService.mH.sendEmptyMessageDelayed(H.APP_FREEZE_TIMEOUT, 2000);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001092 }
1093 }
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001094 final int count = mChildren.size();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001095 for (int i = 0; i < count; i++) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07001096 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001097 w.onStartFreezingScreen();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001098 }
1099 }
1100 }
1101
1102 void stopFreezingScreen(boolean unfreezeSurfaceNow, boolean force) {
Jorim Jaggib0fc8172017-11-23 17:04:08 +00001103 if (!mFreezingScreen) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001104 return;
1105 }
1106 if (DEBUG_ORIENTATION) Slog.v(TAG_WM, "Clear freezing of " + this + " force=" + force);
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001107 final int count = mChildren.size();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001108 boolean unfrozeWindows = false;
1109 for (int i = 0; i < count; i++) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07001110 final WindowState w = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001111 unfrozeWindows |= w.onStopFreezingScreen();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001112 }
1113 if (force || unfrozeWindows) {
1114 if (DEBUG_ORIENTATION) Slog.v(TAG_WM, "No longer freezing: " + this);
Jorim Jaggib0fc8172017-11-23 17:04:08 +00001115 mFreezingScreen = false;
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001116 mService.unregisterAppFreezeListener(this);
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001117 mService.mAppsFreezingScreen--;
1118 mService.mLastFinishedFreezeSource = this;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001119 }
1120 if (unfreezeSurfaceNow) {
1121 if (unfrozeWindows) {
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001122 mService.mWindowPlacerLocked.performSurfacePlacement();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001123 }
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001124 mService.stopFreezingDisplayLocked();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001125 }
1126 }
1127
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001128 @Override
1129 public void onAppFreezeTimeout() {
1130 Slog.w(TAG_WM, "Force clearing freeze: " + this);
1131 stopFreezingScreen(true, true);
1132 }
1133
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001134 boolean transferStartingWindow(IBinder transferFrom) {
Wale Ogunwale02319a62016-09-26 15:21:22 -07001135 final AppWindowToken fromToken = getDisplayContent().getAppWindowToken(transferFrom);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001136 if (fromToken == null) {
1137 return false;
1138 }
1139
1140 final WindowState tStartingWindow = fromToken.startingWindow;
Jorim Jaggiba41f4b2016-12-14 17:43:07 -08001141 if (tStartingWindow != null && fromToken.startingSurface != null) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001142 // In this case, the starting icon has already been displayed, so start
1143 // letting windows get shown immediately without any more transitions.
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001144 mService.mSkipAppTransitionAnimation = true;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001145
1146 if (DEBUG_STARTING_WINDOW) Slog.v(TAG_WM, "Moving existing starting " + tStartingWindow
1147 + " from " + fromToken + " to " + this);
1148
1149 final long origId = Binder.clearCallingIdentity();
Peter Visontay3556a3b2017-11-01 17:23:17 +00001150 try {
1151 // Transfer the starting window over to the new token.
1152 startingData = fromToken.startingData;
1153 startingSurface = fromToken.startingSurface;
1154 startingDisplayed = fromToken.startingDisplayed;
1155 fromToken.startingDisplayed = false;
1156 startingWindow = tStartingWindow;
1157 reportedVisible = fromToken.reportedVisible;
1158 fromToken.startingData = null;
1159 fromToken.startingSurface = null;
1160 fromToken.startingWindow = null;
1161 fromToken.startingMoved = true;
1162 tStartingWindow.mToken = this;
1163 tStartingWindow.mAppToken = this;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001164
Peter Visontay3556a3b2017-11-01 17:23:17 +00001165 if (DEBUG_ADD_REMOVE || DEBUG_STARTING_WINDOW) Slog.v(TAG_WM,
1166 "Removing starting " + tStartingWindow + " from " + fromToken);
1167 fromToken.removeChild(tStartingWindow);
1168 fromToken.postWindowRemoveStartingWindowCleanup(tStartingWindow);
1169 fromToken.mHiddenSetFromTransferredStartingWindow = false;
1170 addWindow(tStartingWindow);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001171
Peter Visontay3556a3b2017-11-01 17:23:17 +00001172 // Propagate other interesting state between the tokens. If the old token is displayed,
1173 // we should immediately force the new one to be displayed. If it is animating, we need
1174 // to move that animation to the new one.
1175 if (fromToken.allDrawn) {
1176 allDrawn = true;
1177 deferClearAllDrawn = fromToken.deferClearAllDrawn;
1178 }
1179 if (fromToken.firstWindowDrawn) {
1180 firstWindowDrawn = true;
1181 }
Jorim Jaggif5f9e122017-10-24 18:21:09 +02001182 if (!fromToken.isHidden()) {
1183 setHidden(false);
Peter Visontay3556a3b2017-11-01 17:23:17 +00001184 hiddenRequested = false;
1185 mHiddenSetFromTransferredStartingWindow = true;
1186 }
1187 setClientHidden(fromToken.mClientHidden);
Jorim Jaggif5f9e122017-10-24 18:21:09 +02001188
Jorim Jaggi980c9de2017-11-17 01:41:37 +01001189 transferAnimation(fromToken);
1190
1191 // When transferring an animation, we no longer need to apply an animation to the
1192 // the token we transfer the animation over. Thus, remove the animation from
1193 // pending opening apps.
1194 mService.mOpeningApps.remove(this);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001195
Peter Visontay3556a3b2017-11-01 17:23:17 +00001196 mService.updateFocusedWindowLocked(
1197 UPDATE_FOCUS_WILL_PLACE_SURFACES, true /*updateInputWindows*/);
1198 getDisplayContent().setLayoutNeeded();
1199 mService.mWindowPlacerLocked.performSurfacePlacement();
1200 } finally {
1201 Binder.restoreCallingIdentity(origId);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001202 }
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001203 return true;
1204 } else if (fromToken.startingData != null) {
1205 // The previous app was getting ready to show a
1206 // starting window, but hasn't yet done so. Steal it!
1207 if (DEBUG_STARTING_WINDOW) Slog.v(TAG_WM,
1208 "Moving pending starting from " + fromToken + " to " + this);
1209 startingData = fromToken.startingData;
1210 fromToken.startingData = null;
1211 fromToken.startingMoved = true;
Jorim Jaggiba41f4b2016-12-14 17:43:07 -08001212 if (getController() != null) {
1213 getController().scheduleAddStartingWindow();
1214 }
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001215 return true;
1216 }
1217
Jorim Jaggif5f9e122017-10-24 18:21:09 +02001218 // TODO: Transfer thumbnail
1219
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001220 return false;
1221 }
1222
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001223 boolean isLastWindow(WindowState win) {
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001224 return mChildren.size() == 1 && mChildren.get(0) == win;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001225 }
1226
Wale Ogunwale9adfe572016-09-08 20:43:58 -07001227 @Override
1228 void onAppTransitionDone() {
1229 sendingToBottom = false;
1230 }
1231
Wale Ogunwale51362492016-09-08 17:49:17 -07001232 /**
1233 * We override because this class doesn't want its children affecting its reported orientation
1234 * in anyway.
1235 */
1236 @Override
Wale Ogunwale5e5a68d2017-03-24 17:36:38 -07001237 int getOrientation(int candidate) {
Wale Ogunwale5e5a68d2017-03-24 17:36:38 -07001238 if (candidate == SCREEN_ORIENTATION_BEHIND) {
1239 // Allow app to specify orientation regardless of its visibility state if the current
1240 // candidate want us to use orientation behind. I.e. the visible app on-top of this one
1241 // wants us to use the orientation of the app behind it.
1242 return mOrientation;
1243 }
1244
Bryce Lee61fbcbc2017-03-10 14:14:03 -08001245 // The {@link AppWindowToken} should only specify an orientation when it is not closing or
1246 // going to the bottom. Allowing closing {@link AppWindowToken} to participate can lead to
1247 // an Activity in another task being started in the wrong orientation during the transition.
Wale Ogunwale5e5a68d2017-03-24 17:36:38 -07001248 if (!(sendingToBottom || mService.mClosingApps.contains(this))
Bryce Lee00d586d2017-07-28 20:48:43 -07001249 && (isVisible() || mService.mOpeningApps.contains(this) || isOnTop())) {
Bryce Leea163b762017-01-24 11:05:01 -08001250 return mOrientation;
Wale Ogunwale51362492016-09-08 17:49:17 -07001251 }
Bryce Leea163b762017-01-24 11:05:01 -08001252
1253 return SCREEN_ORIENTATION_UNSET;
Wale Ogunwale51362492016-09-08 17:49:17 -07001254 }
1255
Wale Ogunwaleb198b742016-12-01 08:44:09 -08001256 /** Returns the app's preferred orientation regardless of its currently visibility state. */
1257 int getOrientationIgnoreVisibility() {
1258 return mOrientation;
1259 }
1260
Craig Mautnerdbb79912012-03-01 18:59:14 -08001261 @Override
Winson Chunge55c0192017-08-24 14:50:48 -07001262 public void onConfigurationChanged(Configuration newParentConfig) {
1263 final int prevWinMode = getWindowingMode();
1264 super.onConfigurationChanged(newParentConfig);
1265 final int winMode = getWindowingMode();
1266
1267 if (prevWinMode == winMode) {
1268 return;
1269 }
1270
1271 if (prevWinMode != WINDOWING_MODE_UNDEFINED && winMode == WINDOWING_MODE_PINNED) {
1272 // Entering PiP from fullscreen, reset the snap fraction
1273 mDisplayContent.mPinnedStackControllerLocked.resetReentrySnapFraction(this);
1274 } else if (prevWinMode == WINDOWING_MODE_PINNED && winMode != WINDOWING_MODE_UNDEFINED) {
1275 // Leaving PiP to fullscreen, save the snap fraction based on the pre-animation bounds
1276 // for the next re-entry into PiP (assuming the activity is not hidden or destroyed)
1277 final TaskStack pinnedStack = mDisplayContent.getPinnedStack();
1278 if (pinnedStack != null) {
1279 mDisplayContent.mPinnedStackControllerLocked.saveReentrySnapFraction(this,
1280 pinnedStack.mPreAnimationBounds);
1281 }
1282 }
1283 }
1284
1285 @Override
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -07001286 void checkAppWindowsReadyToShow() {
Jorim Jaggib0fc8172017-11-23 17:04:08 +00001287 if (allDrawn == mLastAllDrawn) {
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001288 return;
1289 }
1290
Jorim Jaggib0fc8172017-11-23 17:04:08 +00001291 mLastAllDrawn = allDrawn;
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001292 if (!allDrawn) {
1293 return;
1294 }
1295
1296 // The token has now changed state to having all windows shown... what to do, what to do?
Jorim Jaggib0fc8172017-11-23 17:04:08 +00001297 if (mFreezingScreen) {
Jorim Jaggif5f9e122017-10-24 18:21:09 +02001298 showAllWindowsLocked();
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001299 stopFreezingScreen(false, true);
1300 if (DEBUG_ORIENTATION) Slog.i(TAG,
1301 "Setting mOrientationChangeComplete=true because wtoken " + this
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001302 + " numInteresting=" + mNumInterestingWindows + " numDrawn=" + mNumDrawnWindows);
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001303 // This will set mOrientationChangeComplete and cause a pass through layout.
1304 setAppLayoutChanges(FINISH_LAYOUT_REDO_WALLPAPER,
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -07001305 "checkAppWindowsReadyToShow: freezingScreen");
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001306 } else {
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -07001307 setAppLayoutChanges(FINISH_LAYOUT_REDO_ANIM, "checkAppWindowsReadyToShow");
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001308
1309 // We can now show all of the drawn windows!
1310 if (!mService.mOpeningApps.contains(this)) {
Jorim Jaggif5f9e122017-10-24 18:21:09 +02001311 showAllWindowsLocked();
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001312 }
1313 }
1314 }
1315
Matthew Ng5d23afa2017-06-21 16:16:24 -07001316 /**
Bryce Leed390deb2017-06-22 13:14:28 -07001317 * Returns whether the drawn window states of this {@link AppWindowToken} has considered every
1318 * child {@link WindowState}. A child is considered if it has been passed into
1319 * {@link #updateDrawnWindowStates(WindowState)} after being added. This is used to determine
1320 * whether states, such as {@code allDrawn}, can be set, which relies on state variables such as
1321 * {@code mNumInterestingWindows}, which depend on all {@link WindowState}s being considered.
1322 *
1323 * @return {@code true} If all children have been considered, {@code false}.
1324 */
1325 private boolean allDrawnStatesConsidered() {
Bryce Lee6311c4b2017-07-06 14:09:29 -07001326 for (int i = mChildren.size() - 1; i >= 0; --i) {
1327 final WindowState child = mChildren.get(i);
Jorim Jaggie7d2b852017-08-28 17:55:15 +02001328 if (child.mightAffectAllDrawn() && !child.getDrawnStateEvaluated()) {
Bryce Leed390deb2017-06-22 13:14:28 -07001329 return false;
1330 }
1331 }
1332 return true;
1333 }
1334
1335 /**
Matthew Ng5d23afa2017-06-21 16:16:24 -07001336 * Determines if the token has finished drawing. This should only be called from
1337 * {@link DisplayContent#applySurfaceChangesTransaction}
1338 */
Matthew Ng498c71d2017-04-18 13:55:45 -07001339 void updateAllDrawn() {
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001340 if (!allDrawn) {
Matthew Ng498c71d2017-04-18 13:55:45 -07001341 // Number of drawn windows can be less when a window is being relaunched, wait for
Bryce Leed390deb2017-06-22 13:14:28 -07001342 // all windows to be launched and drawn for this token be considered all drawn.
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001343 final int numInteresting = mNumInterestingWindows;
Bryce Leed390deb2017-06-22 13:14:28 -07001344
1345 // We must make sure that all present children have been considered (determined by
1346 // {@link #allDrawnStatesConsidered}) before evaluating whether everything has been
1347 // drawn.
1348 if (numInteresting > 0 && allDrawnStatesConsidered()
1349 && mNumDrawnWindows >= numInteresting && !isRelaunching()) {
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001350 if (DEBUG_VISIBILITY) Slog.v(TAG, "allDrawn: " + this
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001351 + " interesting=" + numInteresting + " drawn=" + mNumDrawnWindows);
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001352 allDrawn = true;
1353 // Force an additional layout pass where
1354 // WindowStateAnimator#commitFinishDrawingLocked() will call performShowLocked().
Matthew Ng498c71d2017-04-18 13:55:45 -07001355 if (mDisplayContent != null) {
1356 mDisplayContent.setLayoutNeeded();
1357 }
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001358 mService.mH.obtainMessage(NOTIFY_ACTIVITY_DRAWN, token).sendToTarget();
Robert Carrecc06b32017-04-18 14:25:10 -07001359
Winson Chunge7ba6862017-05-24 12:13:33 -07001360 // Notify the pinned stack upon all windows drawn. If there was an animation in
1361 // progress then this signal will resume that animation.
Wale Ogunwale61911492017-10-11 08:50:50 -07001362 final TaskStack pinnedStack = mDisplayContent.getPinnedStack();
Winson Chunge7ba6862017-05-24 12:13:33 -07001363 if (pinnedStack != null) {
1364 pinnedStack.onAllWindowsDrawn();
Robert Carrecc06b32017-04-18 14:25:10 -07001365 }
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001366 }
1367 }
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001368 }
1369
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001370 /**
1371 * Updated this app token tracking states for interesting and drawn windows based on the window.
1372 *
1373 * @return Returns true if the input window is considered interesting and drawn while all the
1374 * windows in this app token where not considered drawn as of the last pass.
1375 */
1376 boolean updateDrawnWindowStates(WindowState w) {
Bryce Leed390deb2017-06-22 13:14:28 -07001377 w.setDrawnStateEvaluated(true /*evaluated*/);
1378
Jorim Jaggie4b0f282017-05-17 15:10:29 +02001379 if (DEBUG_STARTING_WINDOW_VERBOSE && w == startingWindow) {
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001380 Slog.d(TAG, "updateWindows: starting " + w + " isOnScreen=" + w.isOnScreen()
Jorim Jaggib0fc8172017-11-23 17:04:08 +00001381 + " allDrawn=" + allDrawn + " freezingScreen=" + mFreezingScreen);
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001382 }
1383
Jorim Jaggib0fc8172017-11-23 17:04:08 +00001384 if (allDrawn && !mFreezingScreen) {
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001385 return false;
1386 }
1387
1388 if (mLastTransactionSequence != mService.mTransactionSequence) {
1389 mLastTransactionSequence = mService.mTransactionSequence;
Matthew Ng53e66b22018-01-12 17:13:13 -08001390 mNumDrawnWindows = 0;
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001391 startingDisplayed = false;
Matthew Ng53e66b22018-01-12 17:13:13 -08001392
1393 // There is the main base application window, even if it is exiting, wait for it
1394 mNumInterestingWindows = findMainWindow(false /* includeStartingApp */) != null ? 1 : 0;
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001395 }
1396
1397 final WindowStateAnimator winAnimator = w.mWinAnimator;
1398
1399 boolean isInterestingAndDrawn = false;
1400
Jorim Jaggie7d2b852017-08-28 17:55:15 +02001401 if (!allDrawn && w.mightAffectAllDrawn()) {
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001402 if (DEBUG_VISIBILITY || DEBUG_ORIENTATION) {
1403 Slog.v(TAG, "Eval win " + w + ": isDrawn=" + w.isDrawnLw()
Jorim Jaggif5f9e122017-10-24 18:21:09 +02001404 + ", isAnimationSet=" + isSelfAnimating());
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001405 if (!w.isDrawnLw()) {
1406 Slog.v(TAG, "Not displayed: s=" + winAnimator.mSurfaceController
1407 + " pv=" + w.mPolicyVisibility
1408 + " mDrawState=" + winAnimator.drawStateToString()
1409 + " ph=" + w.isParentWindowHidden() + " th=" + hiddenRequested
Jorim Jaggif5f9e122017-10-24 18:21:09 +02001410 + " a=" + isSelfAnimating());
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001411 }
1412 }
1413
1414 if (w != startingWindow) {
1415 if (w.isInteresting()) {
Matthew Ng53e66b22018-01-12 17:13:13 -08001416 // Add non-main window as interesting since the main app has already been added
1417 if (findMainWindow(false /* includeStartingApp */) != w) {
1418 mNumInterestingWindows++;
1419 }
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001420 if (w.isDrawnLw()) {
1421 mNumDrawnWindows++;
1422
1423 if (DEBUG_VISIBILITY || DEBUG_ORIENTATION) Slog.v(TAG, "tokenMayBeDrawn: "
1424 + this + " w=" + w + " numInteresting=" + mNumInterestingWindows
Jorim Jaggib0fc8172017-11-23 17:04:08 +00001425 + " freezingScreen=" + mFreezingScreen
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001426 + " mAppFreezing=" + w.mAppFreezing);
1427
1428 isInterestingAndDrawn = true;
1429 }
1430 }
1431 } else if (w.isDrawnLw()) {
Jorim Jaggi3878ca32017-02-02 17:13:05 -08001432 if (getController() != null) {
1433 getController().reportStartingWindowDrawn();
1434 }
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001435 startingDisplayed = true;
1436 }
1437 }
1438
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001439 return isInterestingAndDrawn;
1440 }
1441
Adrian Roos4d18a2e2017-12-19 19:08:05 +01001442 void updateLetterbox(WindowState winHint) {
1443 final WindowState w = findMainWindow();
1444 if (w != winHint && winHint != null && w != null) {
1445 return;
1446 }
1447 final boolean needsLetterbox = w != null && w.isLetterboxedAppWindow()
1448 && fillsParent() && w.hasDrawnLw();
1449 if (needsLetterbox) {
1450 if (mLetterbox == null) {
1451 mLetterbox = new Letterbox(() -> makeChildSurface(null));
1452 }
1453 mLetterbox.setDimensions(mPendingTransaction, getParent().getBounds(), w.mFrame);
1454 } else if (mLetterbox != null) {
1455 final SurfaceControl.Transaction t = new SurfaceControl.Transaction();
Adrian Roos2dfb7852018-01-15 13:41:37 +01001456 // Make sure we have a transaction here, in case we're called outside of a transaction.
1457 // This does not use mPendingTransaction, because SurfaceAnimator uses a
1458 // global transaction in onAnimationEnd.
Adrian Roos4d18a2e2017-12-19 19:08:05 +01001459 SurfaceControl.openTransaction();
1460 try {
1461 mLetterbox.hide(t);
1462 } finally {
Adrian Roos4d18a2e2017-12-19 19:08:05 +01001463 SurfaceControl.mergeToGlobalTransaction(t);
1464 SurfaceControl.closeTransaction();
1465 }
1466 }
1467 }
1468
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001469 @Override
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08001470 boolean forAllWindows(ToBooleanFunction<WindowState> callback, boolean traverseTopToBottom) {
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07001471 // For legacy reasons we process the TaskStack.mExitingAppTokens first in DisplayContent
1472 // before the non-exiting app tokens. So, we skip the exiting app tokens here.
1473 // TODO: Investigate if we need to continue to do this or if we can just process them
1474 // in-order.
1475 if (mIsExiting && !waitingForReplacement()) {
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08001476 return false;
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07001477 }
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08001478 return forAllWindowsUnchecked(callback, traverseTopToBottom);
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07001479 }
1480
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08001481 boolean forAllWindowsUnchecked(ToBooleanFunction<WindowState> callback,
1482 boolean traverseTopToBottom) {
1483 return super.forAllWindows(callback, traverseTopToBottom);
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07001484 }
1485
1486 @Override
Wale Ogunwale2049dbf2016-08-02 21:05:23 -07001487 AppWindowToken asAppWindowToken() {
1488 // I am an app window token!
1489 return this;
1490 }
1491
1492 @Override
Wale Ogunwale51362492016-09-08 17:49:17 -07001493 boolean fillsParent() {
1494 return mFillsParent;
1495 }
1496
1497 void setFillsParent(boolean fillsParent) {
1498 mFillsParent = fillsParent;
1499 }
1500
Jorim Jaggife762342016-10-13 14:33:27 +02001501 boolean containsDismissKeyguardWindow() {
Bryce Lee081554b2017-05-25 07:52:12 -07001502 // Window state is transient during relaunch. We are not guaranteed to be frozen during the
1503 // entirety of the relaunch.
1504 if (isRelaunching()) {
1505 return mLastContainsDismissKeyguardWindow;
1506 }
1507
Jorim Jaggife762342016-10-13 14:33:27 +02001508 for (int i = mChildren.size() - 1; i >= 0; i--) {
1509 if ((mChildren.get(i).mAttrs.flags & FLAG_DISMISS_KEYGUARD) != 0) {
1510 return true;
1511 }
1512 }
1513 return false;
1514 }
1515
1516 boolean containsShowWhenLockedWindow() {
Bryce Lee081554b2017-05-25 07:52:12 -07001517 // When we are relaunching, it is possible for us to be unfrozen before our previous
1518 // windows have been added back. Using the cached value ensures that our previous
1519 // showWhenLocked preference is honored until relaunching is complete.
1520 if (isRelaunching()) {
1521 return mLastContainsShowWhenLockedWindow;
1522 }
1523
Jorim Jaggife762342016-10-13 14:33:27 +02001524 for (int i = mChildren.size() - 1; i >= 0; i--) {
1525 if ((mChildren.get(i).mAttrs.flags & FLAG_SHOW_WHEN_LOCKED) != 0) {
1526 return true;
1527 }
1528 }
Bryce Lee081554b2017-05-25 07:52:12 -07001529
Jorim Jaggife762342016-10-13 14:33:27 +02001530 return false;
1531 }
1532
1533 void checkKeyguardFlagsChanged() {
1534 final boolean containsDismissKeyguard = containsDismissKeyguardWindow();
1535 final boolean containsShowWhenLocked = containsShowWhenLockedWindow();
1536 if (containsDismissKeyguard != mLastContainsDismissKeyguardWindow
1537 || containsShowWhenLocked != mLastContainsShowWhenLockedWindow) {
1538 mService.notifyKeyguardFlagsChanged(null /* callback */);
1539 }
1540 mLastContainsDismissKeyguardWindow = containsDismissKeyguard;
1541 mLastContainsShowWhenLockedWindow = containsShowWhenLocked;
1542 }
1543
Wale Ogunwale6213caa2016-12-02 16:47:15 +00001544 WindowState getImeTargetBelowWindow(WindowState w) {
1545 final int index = mChildren.indexOf(w);
1546 if (index > 0) {
1547 final WindowState target = mChildren.get(index - 1);
1548 if (target.canBeImeTarget()) {
1549 return target;
1550 }
1551 }
1552 return null;
1553 }
1554
Winson Chungbe9be7f2017-06-28 10:55:22 -07001555 int getLowestAnimLayer() {
1556 for (int i = 0; i < mChildren.size(); i++) {
1557 final WindowState w = mChildren.get(i);
1558 if (w.mRemoved) {
1559 continue;
1560 }
1561 return w.mWinAnimator.mAnimLayer;
1562 }
1563 return Integer.MAX_VALUE;
1564 }
1565
Wale Ogunwale6213caa2016-12-02 16:47:15 +00001566 WindowState getHighestAnimLayerWindow(WindowState currentTarget) {
1567 WindowState candidate = null;
1568 for (int i = mChildren.indexOf(currentTarget); i >= 0; i--) {
1569 final WindowState w = mChildren.get(i);
1570 if (w.mRemoved) {
1571 continue;
1572 }
1573 if (candidate == null || w.mWinAnimator.mAnimLayer >
1574 candidate.mWinAnimator.mAnimLayer) {
1575 candidate = w;
1576 }
1577 }
1578 return candidate;
1579 }
1580
Jorim Jaggid635a4a2017-05-03 15:21:26 +02001581 /**
1582 * See {@link Activity#setDisablePreviewScreenshots}.
1583 */
1584 void setDisablePreviewScreenshots(boolean disable) {
Wale Ogunwale6c459212017-05-17 08:56:03 -07001585 mDisablePreviewScreenshots = disable;
Jorim Jaggi0fe7ce962017-02-22 16:45:48 +01001586 }
1587
Jorim Jaggid635a4a2017-05-03 15:21:26 +02001588 /**
chaviwd3bf08d2017-08-01 17:24:59 -07001589 * Sets whether the current launch can turn the screen on. See {@link #canTurnScreenOn()}
1590 */
1591 void setCanTurnScreenOn(boolean canTurnScreenOn) {
1592 mCanTurnScreenOn = canTurnScreenOn;
1593 }
1594
1595 /**
1596 * Indicates whether the current launch can turn the screen on. This is to prevent multiple
1597 * relayouts from turning the screen back on. The screen should only turn on at most
1598 * once per activity resume.
1599 *
1600 * @return true if the screen can be turned on.
1601 */
1602 boolean canTurnScreenOn() {
1603 return mCanTurnScreenOn;
1604 }
1605
1606 /**
Jorim Jaggid635a4a2017-05-03 15:21:26 +02001607 * Retrieves whether we'd like to generate a snapshot that's based solely on the theme. This is
1608 * the case when preview screenshots are disabled {@link #setDisablePreviewScreenshots} or when
1609 * we can't take a snapshot for other reasons, for example, if we have a secure window.
1610 *
1611 * @return True if we need to generate an app theme snapshot, false if we'd like to take a real
1612 * screenshot.
1613 */
1614 boolean shouldUseAppThemeSnapshot() {
Wale Ogunwale6c459212017-05-17 08:56:03 -07001615 return mDisablePreviewScreenshots || forAllWindows(w -> (w.mAttrs.flags & FLAG_SECURE) != 0,
Jorim Jaggid635a4a2017-05-03 15:21:26 +02001616 true /* topToBottom */);
Jorim Jaggi0fe7ce962017-02-22 16:45:48 +01001617 }
1618
chaviw23ee71c2017-12-18 11:29:41 -08001619 @Override
Jorim Jaggi596a1992017-12-29 14:48:02 +01001620 public SurfaceControl getAnimationLeashParent() {
1621 return getAppAnimationLayer();
chaviw23ee71c2017-12-18 11:29:41 -08001622 }
1623
Jorim Jaggif5f9e122017-10-24 18:21:09 +02001624 boolean applyAnimationLocked(WindowManager.LayoutParams lp, int transit, boolean enter,
1625 boolean isVoiceInteraction) {
1626
1627 if (mService.mDisableTransitionAnimation) {
1628 if (DEBUG_APP_TRANSITIONS || DEBUG_ANIM) {
1629 Slog.v(TAG_WM, "applyAnimation: transition animation is disabled. atoken=" + this);
1630 }
1631 cancelAnimation();
1632 return false;
1633 }
1634
1635 // Only apply an animation if the display isn't frozen. If it is frozen, there is no reason
1636 // to animate and it can cause strange artifacts when we unfreeze the display if some
1637 // different animation is running.
1638 Trace.traceBegin(TRACE_TAG_WINDOW_MANAGER, "AWT#applyAnimationLocked");
1639 if (okToAnimate()) {
Jorim Jaggi33a701a2017-12-01 14:58:18 +01001640 final AnimationAdapter adapter;
1641 final TaskStack stack = getStack();
1642 mTmpPoint.set(0, 0);
1643 mTmpRect.setEmpty();
1644 if (stack != null) {
1645 stack.getRelativePosition(mTmpPoint);
1646 stack.getBounds(mTmpRect);
1647 mTmpRect.offsetTo(0, 0);
1648 }
1649 if (mService.mAppTransition.getRemoteAnimationController() != null) {
1650 adapter = mService.mAppTransition.getRemoteAnimationController()
1651 .createAnimationAdapter(this, mTmpPoint, mTmpRect);
1652 } else {
1653 final Animation a = loadAnimation(lp, transit, enter, isVoiceInteraction);
1654 if (a != null) {
1655 adapter = new LocalAnimationAdapter(
1656 new WindowAnimationSpec(a, mTmpPoint, mTmpRect,
1657 mService.mAppTransition.canSkipFirstFrame(),
1658 mService.mAppTransition.getAppStackClipMode()),
1659 mService.mSurfaceAnimationRunner);
1660 if (a.getZAdjustment() == Animation.ZORDER_TOP) {
1661 mNeedsZBoost = true;
1662 }
1663 mTransit = transit;
1664 mTransitFlags = mService.mAppTransition.getTransitFlags();
1665 } else {
1666 adapter = null;
chaviw23ee71c2017-12-18 11:29:41 -08001667 }
Jorim Jaggi33a701a2017-12-01 14:58:18 +01001668 }
1669 if (adapter != null) {
Jorim Jaggi619c9f72017-12-19 18:04:29 +01001670 startAnimation(getPendingTransaction(), adapter, !isVisible());
Jorim Jaggif5f9e122017-10-24 18:21:09 +02001671 }
1672 } else {
1673 cancelAnimation();
1674 }
1675 Trace.traceEnd(TRACE_TAG_WINDOW_MANAGER);
1676
1677 return isReallyAnimating();
1678 }
1679
1680 private Animation loadAnimation(WindowManager.LayoutParams lp, int transit, boolean enter,
1681 boolean isVoiceInteraction) {
1682 final DisplayContent displayContent = getTask().getDisplayContent();
1683 final DisplayInfo displayInfo = displayContent.getDisplayInfo();
1684 final int width = displayInfo.appWidth;
1685 final int height = displayInfo.appHeight;
1686 if (DEBUG_APP_TRANSITIONS || DEBUG_ANIM) Slog.v(TAG_WM,
1687 "applyAnimation: atoken=" + this);
1688
1689 // Determine the visible rect to calculate the thumbnail clip
1690 final WindowState win = findMainWindow();
1691 final Rect frame = new Rect(0, 0, width, height);
1692 final Rect displayFrame = new Rect(0, 0,
1693 displayInfo.logicalWidth, displayInfo.logicalHeight);
1694 final Rect insets = new Rect();
1695 final Rect stableInsets = new Rect();
1696 Rect surfaceInsets = null;
1697 final boolean freeform = win != null && win.inFreeformWindowingMode();
1698 if (win != null) {
1699 // Containing frame will usually cover the whole screen, including dialog windows.
1700 // For freeform workspace windows it will not cover the whole screen and it also
1701 // won't exactly match the final freeform window frame (e.g. when overlapping with
1702 // the status bar). In that case we need to use the final frame.
1703 if (freeform) {
1704 frame.set(win.mFrame);
Adrian Roos4d18a2e2017-12-19 19:08:05 +01001705 } else if (win.isLetterboxedAppWindow()) {
1706 frame.set(getTask().getBounds());
Jorim Jaggif5f9e122017-10-24 18:21:09 +02001707 } else {
1708 frame.set(win.mContainingFrame);
1709 }
1710 surfaceInsets = win.getAttrs().surfaceInsets;
1711 insets.set(win.mContentInsets);
1712 stableInsets.set(win.mStableInsets);
1713 }
1714
1715 if (mLaunchTaskBehind) {
1716 // Differentiate the two animations. This one which is briefly on the screen
1717 // gets the !enter animation, and the other activity which remains on the
1718 // screen gets the enter animation. Both appear in the mOpeningApps set.
1719 enter = false;
1720 }
1721 if (DEBUG_APP_TRANSITIONS) Slog.d(TAG_WM, "Loading animation for app transition."
1722 + " transit=" + AppTransition.appTransitionToString(transit) + " enter=" + enter
1723 + " frame=" + frame + " insets=" + insets + " surfaceInsets=" + surfaceInsets);
1724 final Configuration displayConfig = displayContent.getConfiguration();
1725 final Animation a = mService.mAppTransition.loadAnimation(lp, transit, enter,
1726 displayConfig.uiMode, displayConfig.orientation, frame, displayFrame, insets,
1727 surfaceInsets, stableInsets, isVoiceInteraction, freeform, getTask().mTaskId);
1728 if (a != null) {
1729 if (DEBUG_ANIM) logWithStack(TAG, "Loaded animation " + a + " for " + this);
1730 final int containingWidth = frame.width();
1731 final int containingHeight = frame.height();
1732 a.initialize(containingWidth, containingHeight, width, height);
1733 a.scaleCurrentDuration(mService.getTransitionAnimationScaleLocked());
1734 }
1735 return a;
1736 }
1737
Jorim Jaggi619c9f72017-12-19 18:04:29 +01001738 @Override
1739 protected void setLayer(Transaction t, int layer) {
1740 if (!mSurfaceAnimator.hasLeash()) {
1741 t.setLayer(mSurfaceControl, layer);
1742 }
1743 }
1744
1745 @Override
1746 protected void setRelativeLayer(Transaction t, SurfaceControl relativeTo, int layer) {
1747 if (!mSurfaceAnimator.hasLeash()) {
1748 t.setRelativeLayer(mSurfaceControl, relativeTo, layer);
1749 }
1750 }
1751
1752 @Override
1753 protected void reparentSurfaceControl(Transaction t, SurfaceControl newParent) {
1754 if (!mSurfaceAnimator.hasLeash()) {
1755 t.reparent(mSurfaceControl, newParent.getHandle());
1756 }
1757 }
1758
1759 @Override
1760 public void onAnimationLeashCreated(Transaction t, SurfaceControl leash) {
1761
1762 // The leash is parented to the animation layer. We need to preserve the z-order by using
1763 // the prefix order index, but we boost if necessary.
1764 int layer = getPrefixOrderIndex();
1765 if (mNeedsZBoost) {
1766 layer += Z_BOOST_BASE;
1767 }
1768 leash.setLayer(layer);
Robert Carr2f8aa392018-01-31 14:46:51 -08001769
1770 final DisplayContent dc = getDisplayContent();
1771 dc.assignStackOrdering(t);
Jorim Jaggi619c9f72017-12-19 18:04:29 +01001772 }
1773
Jorim Jaggif5f9e122017-10-24 18:21:09 +02001774 /**
1775 * This must be called while inside a transaction.
1776 */
1777 void showAllWindowsLocked() {
1778 forAllWindows(windowState -> {
1779 if (DEBUG_VISIBILITY) Slog.v(TAG, "performing show on: " + windowState);
1780 windowState.performShowLocked();
1781 }, false /* traverseTopToBottom */);
Jorim Jaggia5e10572017-11-15 14:36:26 +01001782 }
1783
1784 @Override
Jorim Jaggif5f9e122017-10-24 18:21:09 +02001785 protected void onAnimationFinished() {
1786 super.onAnimationFinished();
1787
1788 mTransit = TRANSIT_UNSET;
1789 mTransitFlags = 0;
Jorim Jaggib0fc8172017-11-23 17:04:08 +00001790 mNeedsZBoost = false;
Jorim Jaggif5f9e122017-10-24 18:21:09 +02001791
1792 setAppLayoutChanges(FINISH_LAYOUT_REDO_ANIM | FINISH_LAYOUT_REDO_WALLPAPER,
1793 "AppWindowToken");
1794
Jorim Jaggi988f6682017-11-17 17:46:43 +01001795 clearThumbnail();
Jorim Jaggi3cad57f2018-02-20 18:32:01 +01001796 setClientHidden(hiddenRequested);
Jorim Jaggi988f6682017-11-17 17:46:43 +01001797
Jorim Jaggif5f9e122017-10-24 18:21:09 +02001798 if (mService.mInputMethodTarget != null && mService.mInputMethodTarget.mAppToken == this) {
1799 getDisplayContent().computeImeTarget(true /* updateImeTarget */);
1800 }
1801
1802 if (DEBUG_ANIM) Slog.v(TAG, "Animation done in " + this
1803 + ": reportedVisible=" + reportedVisible
1804 + " okToDisplay=" + okToDisplay()
1805 + " okToAnimate=" + okToAnimate()
1806 + " startingDisplayed=" + startingDisplayed);
1807
1808 // WindowState.onExitAnimationDone might modify the children list, so make a copy and then
1809 // traverse the copy.
1810 final ArrayList<WindowState> children = new ArrayList<>(mChildren);
1811 children.forEach(WindowState::onExitAnimationDone);
1812
1813 mService.mAppTransition.notifyAppTransitionFinishedLocked(token);
1814 scheduleAnimation();
1815 }
1816
1817 @Override
1818 boolean isAppAnimating() {
1819 return isSelfAnimating();
1820 }
1821
1822 @Override
1823 boolean isSelfAnimating() {
1824 // If we are about to start a transition, we also need to be considered animating.
1825 return isWaitingForTransitionStart() || isReallyAnimating();
1826 }
1827
1828 /**
1829 * @return True if and only if we are actually running an animation. Note that
1830 * {@link #isSelfAnimating} also returns true if we are waiting for an animation to
1831 * start.
1832 */
1833 private boolean isReallyAnimating() {
1834 return super.isSelfAnimating();
1835 }
1836
Jorim Jaggi988f6682017-11-17 17:46:43 +01001837 @Override
1838 void cancelAnimation() {
1839 super.cancelAnimation();
1840 clearThumbnail();
1841 }
1842
Jorim Jaggif5f9e122017-10-24 18:21:09 +02001843 boolean isWaitingForTransitionStart() {
1844 return mService.mAppTransition.isTransitionSet()
1845 && (mService.mOpeningApps.contains(this) || mService.mClosingApps.contains(this));
1846 }
1847
1848 public int getTransit() {
1849 return mTransit;
1850 }
1851
1852 int getTransitFlags() {
1853 return mTransitFlags;
1854 }
1855
Jorim Jaggi988f6682017-11-17 17:46:43 +01001856 void attachThumbnailAnimation() {
1857 if (!isReallyAnimating()) {
1858 return;
1859 }
1860 final int taskId = getTask().mTaskId;
1861 final GraphicBuffer thumbnailHeader =
1862 mService.mAppTransition.getAppTransitionThumbnailHeader(taskId);
1863 if (thumbnailHeader == null) {
1864 if (DEBUG_APP_TRANSITIONS) Slog.d(TAG, "No thumbnail header bitmap for: " + taskId);
1865 return;
1866 }
1867 clearThumbnail();
1868 mThumbnail = new AppWindowThumbnail(getPendingTransaction(), this, thumbnailHeader);
1869 mThumbnail.startAnimation(getPendingTransaction(), loadThumbnailAnimation(thumbnailHeader));
1870 }
1871
Tony Mak64b8d562017-12-28 17:44:02 +00001872 /**
1873 * Attaches a surface with a thumbnail for the
1874 * {@link android.app.ActivityOptions#ANIM_OPEN_CROSS_PROFILE_APPS} animation.
1875 */
1876 void attachCrossProfileAppsThumbnailAnimation() {
1877 if (!isReallyAnimating()) {
1878 return;
1879 }
1880 clearThumbnail();
1881
1882 final WindowState win = findMainWindow();
1883 if (win == null) {
1884 return;
1885 }
1886 final Rect frame = win.mFrame;
1887 final int thumbnailDrawableRes = getTask().mUserId == mService.mCurrentUserId
1888 ? R.drawable.ic_account_circle
1889 : R.drawable.ic_corp_badge_no_background;
1890 final GraphicBuffer thumbnail =
1891 mService.mAppTransition
1892 .createCrossProfileAppsThumbnail(thumbnailDrawableRes, frame);
1893 if (thumbnail == null) {
1894 return;
1895 }
1896 mThumbnail = new AppWindowThumbnail(getPendingTransaction(), this, thumbnail);
1897 final Animation animation =
1898 mService.mAppTransition.createCrossProfileAppsThumbnailAnimationLocked(win.mFrame);
1899 mThumbnail.startAnimation(getPendingTransaction(), animation, new Point(frame.left,
1900 frame.top));
1901 }
1902
Jorim Jaggi988f6682017-11-17 17:46:43 +01001903 private Animation loadThumbnailAnimation(GraphicBuffer thumbnailHeader) {
1904 final DisplayInfo displayInfo = mDisplayContent.getDisplayInfo();
1905
1906 // If this is a multi-window scenario, we use the windows frame as
1907 // destination of the thumbnail header animation. If this is a full screen
1908 // window scenario, we use the whole display as the target.
1909 WindowState win = findMainWindow();
1910 Rect appRect = win != null ? win.getContentFrameLw() :
1911 new Rect(0, 0, displayInfo.appWidth, displayInfo.appHeight);
1912 Rect insets = win != null ? win.mContentInsets : null;
1913 final Configuration displayConfig = mDisplayContent.getConfiguration();
1914 return mService.mAppTransition.createThumbnailAspectScaleAnimationLocked(
1915 appRect, insets, thumbnailHeader, getTask().mTaskId, displayConfig.uiMode,
1916 displayConfig.orientation);
1917 }
1918
1919 private void clearThumbnail() {
1920 if (mThumbnail == null) {
1921 return;
1922 }
1923 mThumbnail.destroy();
1924 mThumbnail = null;
Jorim Jaggif5f9e122017-10-24 18:21:09 +02001925 }
1926
Jorim Jaggif84e2f62018-01-16 14:17:59 +01001927 void registerRemoteAnimations(RemoteAnimationDefinition definition) {
1928 mRemoteAnimationDefinition = definition;
1929 }
1930
1931 RemoteAnimationDefinition getRemoteAnimationDefinition() {
1932 return mRemoteAnimationDefinition;
1933 }
1934
Jorim Jaggif5f9e122017-10-24 18:21:09 +02001935 @Override
1936 void dump(PrintWriter pw, String prefix, boolean dumpAll) {
1937 super.dump(pw, prefix, dumpAll);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001938 if (appToken != null) {
Wale Ogunwale72919d22016-12-08 18:58:50 -08001939 pw.println(prefix + "app=true mVoiceInteraction=" + mVoiceInteraction);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001940 }
Bryce Lee7fbeb8a2017-03-02 08:42:30 -08001941 pw.print(prefix); pw.print("task="); pw.println(getTask());
Wale Ogunwale51362492016-09-08 17:49:17 -07001942 pw.print(prefix); pw.print(" mFillsParent="); pw.print(mFillsParent);
1943 pw.print(" mOrientation="); pw.println(mOrientation);
Wale Ogunwale89973222017-04-23 18:39:45 -07001944 pw.println(prefix + "hiddenRequested=" + hiddenRequested + " mClientHidden=" + mClientHidden
1945 + ((mDeferHidingClient) ? " mDeferHidingClient=" + mDeferHidingClient : "")
1946 + " reportedDrawn=" + reportedDrawn + " reportedVisible=" + reportedVisible);
Craig Mautner59431632012-04-04 11:56:44 -07001947 if (paused) {
1948 pw.print(prefix); pw.print("paused="); pw.println(paused);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001949 }
Wale Ogunwale9017ec02016-02-25 08:55:25 -08001950 if (mAppStopped) {
1951 pw.print(prefix); pw.print("mAppStopped="); pw.println(mAppStopped);
1952 }
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001953 if (mNumInterestingWindows != 0 || mNumDrawnWindows != 0
Jorim Jaggib0fc8172017-11-23 17:04:08 +00001954 || allDrawn || mLastAllDrawn) {
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001955 pw.print(prefix); pw.print("mNumInterestingWindows=");
1956 pw.print(mNumInterestingWindows);
1957 pw.print(" mNumDrawnWindows="); pw.print(mNumDrawnWindows);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001958 pw.print(" inPendingTransaction="); pw.print(inPendingTransaction);
Craig Mautner6fbda632012-07-03 09:26:39 -07001959 pw.print(" allDrawn="); pw.print(allDrawn);
Jorim Jaggib0fc8172017-11-23 17:04:08 +00001960 pw.print(" lastAllDrawn="); pw.print(mLastAllDrawn);
Craig Mautner6fbda632012-07-03 09:26:39 -07001961 pw.println(")");
1962 }
1963 if (inPendingTransaction) {
1964 pw.print(prefix); pw.print("inPendingTransaction=");
1965 pw.println(inPendingTransaction);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001966 }
Craig Mautner799bc1d2015-01-14 10:33:48 -08001967 if (startingData != null || removed || firstWindowDrawn || mIsExiting) {
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001968 pw.print(prefix); pw.print("startingData="); pw.print(startingData);
1969 pw.print(" removed="); pw.print(removed);
Craig Mautner3d7ca312015-01-08 10:56:00 -08001970 pw.print(" firstWindowDrawn="); pw.print(firstWindowDrawn);
Craig Mautner799bc1d2015-01-14 10:33:48 -08001971 pw.print(" mIsExiting="); pw.println(mIsExiting);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001972 }
Jorim Jaggiba41f4b2016-12-14 17:43:07 -08001973 if (startingWindow != null || startingSurface != null
Wale Ogunwale6c459212017-05-17 08:56:03 -07001974 || startingDisplayed || startingMoved || mHiddenSetFromTransferredStartingWindow) {
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001975 pw.print(prefix); pw.print("startingWindow="); pw.print(startingWindow);
Jorim Jaggiba41f4b2016-12-14 17:43:07 -08001976 pw.print(" startingSurface="); pw.print(startingSurface);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001977 pw.print(" startingDisplayed="); pw.print(startingDisplayed);
Wale Ogunwale6c459212017-05-17 08:56:03 -07001978 pw.print(" startingMoved="); pw.print(startingMoved);
1979 pw.println(" mHiddenSetFromTransferredStartingWindow="
1980 + mHiddenSetFromTransferredStartingWindow);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001981 }
Jorim Jaggi0429f352015-12-22 16:29:16 +01001982 if (!mFrozenBounds.isEmpty()) {
Chong Zhangd78ddb42016-03-02 17:01:14 -08001983 pw.print(prefix); pw.print("mFrozenBounds="); pw.println(mFrozenBounds);
Jorim Jaggi26c8c422016-05-09 19:57:25 -07001984 pw.print(prefix); pw.print("mFrozenMergedConfig="); pw.println(mFrozenMergedConfig);
Chong Zhangd78ddb42016-03-02 17:01:14 -08001985 }
1986 if (mPendingRelaunchCount != 0) {
1987 pw.print(prefix); pw.print("mPendingRelaunchCount="); pw.println(mPendingRelaunchCount);
Jorim Jaggi0429f352015-12-22 16:29:16 +01001988 }
Wale Ogunwale9c64cb62017-04-12 13:39:59 -07001989 if (getController() != null) {
1990 pw.print(prefix); pw.print("controller="); pw.println(getController());
1991 }
Wale Ogunwalee287e192017-04-21 09:30:12 -07001992 if (mRemovingFromDisplay) {
1993 pw.println(prefix + "mRemovingFromDisplay=" + mRemovingFromDisplay);
1994 }
Jorim Jaggif5f9e122017-10-24 18:21:09 +02001995 }
1996
1997 @Override
1998 void setHidden(boolean hidden) {
1999 super.setHidden(hidden);
Winson Chunge55c0192017-08-24 14:50:48 -07002000
2001 if (hidden) {
2002 // Once the app window is hidden, reset the last saved PiP snap fraction
2003 mDisplayContent.mPinnedStackControllerLocked.resetReentrySnapFraction(this);
2004 }
Jorim Jaggif5f9e122017-10-24 18:21:09 +02002005 scheduleAnimation();
2006 }
2007
2008 @Override
2009 void prepareSurfaces() {
2010 // isSelfAnimating also returns true when we are about to start a transition, so we need
2011 // to check super here.
2012 final boolean reallyAnimating = super.isSelfAnimating();
2013 final boolean show = !isHidden() || reallyAnimating;
2014 if (show && !mLastSurfaceShowing) {
2015 mPendingTransaction.show(mSurfaceControl);
2016 } else if (!show && mLastSurfaceShowing) {
2017 mPendingTransaction.hide(mSurfaceControl);
Jorim Jaggi4d1835d2017-08-31 17:28:27 +02002018 }
Jorim Jaggi988f6682017-11-17 17:46:43 +01002019 if (mThumbnail != null) {
2020 mThumbnail.setShowing(mPendingTransaction, show);
2021 }
Jorim Jaggif5f9e122017-10-24 18:21:09 +02002022 mLastSurfaceShowing = show;
2023 super.prepareSurfaces();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002024 }
2025
Jorim Jaggib0fc8172017-11-23 17:04:08 +00002026 boolean isFreezingScreen() {
2027 return mFreezingScreen;
2028 }
2029
2030 @Override
2031 boolean needsZBoost() {
2032 return mNeedsZBoost || super.needsZBoost();
2033 }
2034
Wale Ogunwale0d5609b2017-09-13 05:55:07 -07002035 @CallSuper
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002036 @Override
Adrian Roos4921ccf2017-09-28 16:54:06 +02002037 public void writeToProto(ProtoOutputStream proto, long fieldId, boolean trim) {
Steven Timotiusaf03df62017-07-18 16:56:43 -07002038 final long token = proto.start(fieldId);
2039 writeNameToProto(proto, NAME);
Adrian Roos4921ccf2017-09-28 16:54:06 +02002040 super.writeToProto(proto, WINDOW_TOKEN, trim);
Vishnu Nair04ab4392018-01-10 11:00:06 -08002041 proto.write(LAST_SURFACE_SHOWING, mLastSurfaceShowing);
2042 proto.write(IS_WAITING_FOR_TRANSITION_START, isWaitingForTransitionStart());
2043 proto.write(IS_REALLY_ANIMATING, isReallyAnimating());
2044 if (mThumbnail != null){
2045 mThumbnail.writeToProto(proto, THUMBNAIL);
2046 }
2047 proto.write(FILLS_PARENT, mFillsParent);
2048 proto.write(APP_STOPPED, mAppStopped);
2049 proto.write(HIDDEN_REQUESTED, hiddenRequested);
2050 proto.write(CLIENT_HIDDEN, mClientHidden);
2051 proto.write(DEFER_HIDING_CLIENT, mDeferHidingClient);
2052 proto.write(REPORTED_DRAWN, reportedDrawn);
2053 proto.write(REPORTED_VISIBLE, reportedVisible);
2054 proto.write(NUM_INTERESTING_WINDOWS, mNumInterestingWindows);
2055 proto.write(NUM_DRAWN_WINDOWS, mNumDrawnWindows);
2056 proto.write(ALL_DRAWN, allDrawn);
2057 proto.write(LAST_ALL_DRAWN, mLastAllDrawn);
2058 proto.write(REMOVED, removed);
2059 if (startingWindow != null){
2060 startingWindow.writeIdentifierToProto(proto, STARTING_WINDOW);
2061 }
2062 proto.write(STARTING_DISPLAYED, startingDisplayed);
2063 proto.write(STARTING_MOVED, startingMoved);
2064 proto.write(HIDDEN_SET_FROM_TRANSFERRED_STARTING_WINDOW,
2065 mHiddenSetFromTransferredStartingWindow);
2066 for (Rect bounds : mFrozenBounds) {
2067 bounds.writeToProto(proto, FROZEN_BOUNDS);
2068 }
Steven Timotiusaf03df62017-07-18 16:56:43 -07002069 proto.end(token);
2070 }
2071
2072 void writeNameToProto(ProtoOutputStream proto, long fieldId) {
2073 if (appToken == null) {
2074 return;
2075 }
2076 try {
2077 proto.write(fieldId, appToken.getName());
2078 } catch (RemoteException e) {
2079 // This shouldn't happen, but in this case fall back to outputting nothing
2080 Slog.e(TAG, e.toString());
2081 }
2082 }
2083
2084 @Override
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002085 public String toString() {
2086 if (stringName == null) {
2087 StringBuilder sb = new StringBuilder();
2088 sb.append("AppWindowToken{");
2089 sb.append(Integer.toHexString(System.identityHashCode(this)));
2090 sb.append(" token="); sb.append(token); sb.append('}');
2091 stringName = sb.toString();
2092 }
Wale Ogunwaleba51ca22016-09-23 06:06:54 -07002093 return stringName + ((mIsExiting) ? " mIsExiting=" : "");
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002094 }
Jeff Browne9bdb312012-04-05 15:30:10 -07002095}