blob: bd01219f0eb5d04bd00bc70f3097ced62fe4fffe [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
Jorim Jaggi02886a82016-12-06 09:10:06 -080019import static android.app.ActivityManager.ENABLE_TASK_SNAPSHOTS;
20import static android.app.ActivityManager.StackId;
Winson Chungd73e94b2017-05-31 16:25:30 -070021import static android.app.ActivityManager.StackId.FREEFORM_WORKSPACE_STACK_ID;
Jorim Jaggi02886a82016-12-06 09:10:06 -080022import static android.app.ActivityManager.StackId.INVALID_STACK_ID;
Winson Chungd73e94b2017-05-31 16:25:30 -070023import static android.app.ActivityManager.StackId.PINNED_STACK_ID;
Jorim Jaggi02886a82016-12-06 09:10:06 -080024import static android.app.ActivityManager.isLowRamDeviceStatic;
25import static android.os.Trace.TRACE_TAG_WINDOW_MANAGER;
26import static android.view.Display.DEFAULT_DISPLAY;
27import static android.view.ViewTreeObserver.InternalInsetsInfo.TOUCHABLE_INSETS_CONTENT;
28import static android.view.ViewTreeObserver.InternalInsetsInfo.TOUCHABLE_INSETS_FRAME;
29import static android.view.ViewTreeObserver.InternalInsetsInfo.TOUCHABLE_INSETS_REGION;
30import static android.view.ViewTreeObserver.InternalInsetsInfo.TOUCHABLE_INSETS_VISIBLE;
31import static android.view.WindowManager.LayoutParams.FIRST_SUB_WINDOW;
32import static android.view.WindowManager.LayoutParams.FIRST_SYSTEM_WINDOW;
33import static android.view.WindowManager.LayoutParams.FLAG_ALLOW_LOCK_WHILE_SCREEN_ON;
34import static android.view.WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM;
35import static android.view.WindowManager.LayoutParams.FLAG_DIM_BEHIND;
36import static android.view.WindowManager.LayoutParams.FLAG_DISMISS_KEYGUARD;
37import static android.view.WindowManager.LayoutParams.FLAG_LAYOUT_NO_LIMITS;
38import static android.view.WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE;
39import static android.view.WindowManager.LayoutParams.FLAG_NOT_TOUCH_MODAL;
40import static android.view.WindowManager.LayoutParams.FLAG_SCALED;
41import static android.view.WindowManager.LayoutParams.FLAG_SECURE;
42import static android.view.WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER;
43import static android.view.WindowManager.LayoutParams.FLAG_SHOW_WHEN_LOCKED;
44import static android.view.WindowManager.LayoutParams.FLAG_TURN_SCREEN_ON;
Robert Carrc91d1c32017-02-15 19:37:46 -080045import static android.view.WindowManager.LayoutParams.FORMAT_CHANGED;
Jorim Jaggi02886a82016-12-06 09:10:06 -080046import static android.view.WindowManager.LayoutParams.LAST_SUB_WINDOW;
47import static android.view.WindowManager.LayoutParams.MATCH_PARENT;
48import static android.view.WindowManager.LayoutParams.PRIVATE_FLAG_COMPATIBLE_WINDOW;
49import static android.view.WindowManager.LayoutParams.PRIVATE_FLAG_LAYOUT_CHILD_WINDOW_IN_PARENT_FRAME;
50import static android.view.WindowManager.LayoutParams.PRIVATE_FLAG_NO_MOVE_ANIMATION;
51import static android.view.WindowManager.LayoutParams.PRIVATE_FLAG_WILL_NOT_REPLACE_ON_RELAUNCH;
52import static android.view.WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE;
53import static android.view.WindowManager.LayoutParams.SOFT_INPUT_MASK_ADJUST;
54import static android.view.WindowManager.LayoutParams.TYPE_APPLICATION;
Robert Carraf422a82017-04-10 18:34:33 -070055import static android.view.WindowManager.LayoutParams.TYPE_APPLICATION_MEDIA_OVERLAY;
Jorim Jaggi02886a82016-12-06 09:10:06 -080056import static android.view.WindowManager.LayoutParams.TYPE_APPLICATION_STARTING;
57import static android.view.WindowManager.LayoutParams.TYPE_BASE_APPLICATION;
58import static android.view.WindowManager.LayoutParams.TYPE_DOCK_DIVIDER;
59import static android.view.WindowManager.LayoutParams.TYPE_DRAWN_APPLICATION;
60import static android.view.WindowManager.LayoutParams.TYPE_INPUT_METHOD;
61import static android.view.WindowManager.LayoutParams.TYPE_INPUT_METHOD_DIALOG;
62import static android.view.WindowManager.LayoutParams.TYPE_WALLPAPER;
Robert Carrc91d1c32017-02-15 19:37:46 -080063import static android.view.WindowManagerGlobal.RELAYOUT_RES_DRAG_RESIZING_DOCKED;
64import static android.view.WindowManagerGlobal.RELAYOUT_RES_DRAG_RESIZING_FREEFORM;
65import static android.view.WindowManagerGlobal.RELAYOUT_RES_FIRST_TIME;
66import static android.view.WindowManagerGlobal.RELAYOUT_RES_SURFACE_CHANGED;
Jorim Jaggi02886a82016-12-06 09:10:06 -080067import static android.view.WindowManagerPolicy.FINISH_LAYOUT_REDO_WALLPAPER;
68import static android.view.WindowManagerPolicy.TRANSIT_ENTER;
69import static android.view.WindowManagerPolicy.TRANSIT_EXIT;
70import static android.view.WindowManagerPolicy.TRANSIT_PREVIEW_DONE;
71import static com.android.server.wm.DragResizeMode.DRAG_RESIZE_MODE_DOCKED_DIVIDER;
72import static com.android.server.wm.DragResizeMode.DRAG_RESIZE_MODE_FREEFORM;
73import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_ADD_REMOVE;
74import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_ANIM;
75import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_APP_TRANSITIONS;
76import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_CONFIGURATION;
77import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_FOCUS;
78import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_FOCUS_LIGHT;
79import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_INPUT_METHOD;
Jorim Jaggi02886a82016-12-06 09:10:06 -080080import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_LAYOUT;
81import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_ORIENTATION;
82import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_POWER;
83import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_RESIZE;
84import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_STARTING_WINDOW;
Jorim Jaggie4b0f282017-05-17 15:10:29 +020085import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_STARTING_WINDOW_VERBOSE;
Jorim Jaggi02886a82016-12-06 09:10:06 -080086import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_SURFACE_TRACE;
87import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_VISIBILITY;
Jorim Jaggi02886a82016-12-06 09:10:06 -080088import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_WALLPAPER_LIGHT;
89import static com.android.server.wm.WindowManagerDebugConfig.TAG_WITH_CLASS_NAME;
90import static com.android.server.wm.WindowManagerDebugConfig.TAG_WM;
91import static com.android.server.wm.WindowManagerService.H.SEND_NEW_CONFIGURATION;
92import static com.android.server.wm.WindowManagerService.TYPE_LAYER_MULTIPLIER;
93import static com.android.server.wm.WindowManagerService.TYPE_LAYER_OFFSET;
94import static com.android.server.wm.WindowManagerService.UPDATE_FOCUS_NORMAL;
95import static com.android.server.wm.WindowManagerService.UPDATE_FOCUS_WILL_PLACE_SURFACES;
96import static com.android.server.wm.WindowManagerService.WINDOWS_FREEZING_SCREENS_TIMEOUT;
97import static com.android.server.wm.WindowManagerService.localLOGV;
98import static com.android.server.wm.WindowStateAnimator.COMMIT_DRAW_PENDING;
99import static com.android.server.wm.WindowStateAnimator.DRAW_PENDING;
100import static com.android.server.wm.WindowStateAnimator.HAS_DRAWN;
101import static com.android.server.wm.WindowStateAnimator.READY_TO_SHOW;
102
Wale Ogunwale053c8e42015-11-16 14:27:21 -0800103import android.app.AppOpsManager;
104import android.content.Context;
105import android.content.res.Configuration;
106import android.graphics.Matrix;
107import android.graphics.PixelFormat;
108import android.graphics.Point;
109import android.graphics.Rect;
110import android.graphics.Region;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700111import android.os.Binder;
Wale Ogunwale9d147902016-07-16 11:58:55 -0700112import android.os.Debug;
Wale Ogunwale053c8e42015-11-16 14:27:21 -0800113import android.os.IBinder;
114import android.os.PowerManager;
115import android.os.RemoteCallbackList;
116import android.os.RemoteException;
117import android.os.SystemClock;
118import android.os.Trace;
119import android.os.UserHandle;
120import android.os.WorkSource;
Andrii Kulian44607962017-03-16 11:06:24 -0700121import android.util.MergedConfiguration;
Wale Ogunwale053c8e42015-11-16 14:27:21 -0800122import android.util.DisplayMetrics;
123import android.util.Slog;
124import android.util.TimeUtils;
Wale Ogunwale053c8e42015-11-16 14:27:21 -0800125import android.view.DisplayInfo;
126import android.view.Gravity;
127import android.view.IApplicationToken;
128import android.view.IWindow;
129import android.view.IWindowFocusObserver;
130import android.view.IWindowId;
131import android.view.InputChannel;
132import android.view.InputEvent;
133import android.view.InputEventReceiver;
134import android.view.View;
135import android.view.ViewTreeObserver;
Wale Ogunwaleadde52e2016-07-16 13:11:55 -0700136import android.view.WindowInfo;
Wale Ogunwale053c8e42015-11-16 14:27:21 -0800137import android.view.WindowManager;
138import android.view.WindowManagerPolicy;
139
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -0800140import com.android.internal.util.ToBooleanFunction;
Jorim Jaggi9511b0f2016-01-29 19:12:44 -0800141import com.android.server.input.InputWindowHandle;
142
Wale Ogunwale053c8e42015-11-16 14:27:21 -0800143import java.io.PrintWriter;
Jorim Jaggi4448e1e2017-05-16 22:26:02 +0200144import java.lang.ref.WeakReference;
Wale Ogunwale053c8e42015-11-16 14:27:21 -0800145import java.util.ArrayList;
Wale Ogunwalee4343ef2016-07-19 08:00:46 -0700146import java.util.Comparator;
147import java.util.LinkedList;
Wale Ogunwaled1880962016-11-08 10:31:59 -0800148import java.util.function.Predicate;
Wale Ogunwale053c8e42015-11-16 14:27:21 -0800149
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700150/** A window in the window manager. */
151class WindowState extends WindowContainer<WindowState> implements WindowManagerPolicy.WindowState {
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800152 static final String TAG = TAG_WITH_CLASS_NAME ? "WindowState" : TAG_WM;
Craig Mautner164d4bb2012-11-26 13:51:23 -0800153
Skuhne81c524a2015-08-12 13:34:14 -0700154 // The minimal size of a window within the usable area of the freeform stack.
Wale Ogunwale231b06e2015-09-16 12:03:09 -0700155 // TODO(multi-window): fix the min sizes when we have mininum width/height support,
156 // use hard-coded min sizes for now.
157 static final int MINIMUM_VISIBLE_WIDTH_IN_DP = 48;
158 static final int MINIMUM_VISIBLE_HEIGHT_IN_DP = 32;
Skuhnef932e562015-08-20 12:07:30 -0700159
160 // The thickness of a window resize handle outside the window bounds on the free form workspace
161 // to capture touch events in that area.
Wale Ogunwale231b06e2015-09-16 12:03:09 -0700162 static final int RESIZE_HANDLE_WIDTH_IN_DP = 30;
Skuhnef932e562015-08-20 12:07:30 -0700163
Jorim Jaggi02886a82016-12-06 09:10:06 -0800164 private static final boolean DEBUG_DISABLE_SAVING_SURFACES = false ||
165 ENABLE_TASK_SNAPSHOTS;
Robert Carr7098dbd2016-02-01 12:31:01 -0800166
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800167 final WindowManagerService mService;
Craig Mautnere7ae2502012-03-26 17:11:19 -0700168 final WindowManagerPolicy mPolicy;
169 final Context mContext;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800170 final Session mSession;
171 final IWindow mClient;
Dianne Hackbornc2293022013-02-06 23:14:49 -0800172 final int mAppOp;
173 // UserId and appId of the owner. Don't display windows of non-current user.
174 final int mOwnerUid;
Wale Ogunwale5cd907d2017-01-26 14:14:08 -0800175 /** The owner has {@link android.Manifest.permission#INTERNAL_SYSTEM_WINDOW} */
176 final boolean mOwnerCanAddInternalSystemWindow;
Jorim Jaggi4448e1e2017-05-16 22:26:02 +0200177 final WindowId mWindowId;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800178 WindowToken mToken;
Wale Ogunwalea6cc3612016-08-04 07:25:33 -0700179 // The same object as mToken if this is an app window and null for non-app windows.
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800180 AppWindowToken mAppToken;
Craig Mautnerd09cc4b2012-04-04 10:23:31 -0700181
182 // mAttrs.flags is tested in animation without being locked. If the bits tested are ever
183 // modified they will need to be locked.
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800184 final WindowManager.LayoutParams mAttrs = new WindowManager.LayoutParams();
185 final DeathRecipient mDeathRecipient;
Wale Ogunwalee4343ef2016-07-19 08:00:46 -0700186 private boolean mIsChildWindow;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800187 final int mBaseLayer;
188 final int mSubLayer;
189 final boolean mLayoutAttached;
190 final boolean mIsImWindow;
191 final boolean mIsWallpaper;
Wale Ogunwaled4a00a02016-10-10 11:29:17 -0700192 private final boolean mIsFloatingLayer;
Dianne Hackborn9a230e02011-10-06 11:51:27 -0700193 int mSeq;
Dianne Hackborn5fd21692011-06-07 14:09:47 -0700194 boolean mEnforceSizeCompat;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800195 int mViewVisibility;
Dianne Hackborn9a230e02011-10-06 11:51:27 -0700196 int mSystemUiVisibility;
Wale Ogunwale571771c2016-08-26 13:18:50 -0700197 /**
198 * The visibility of the window based on policy like {@link WindowManagerPolicy}.
199 * Normally set by calling {@link #showLw} and {@link #hideLw}.
200 */
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800201 boolean mPolicyVisibility = true;
Wale Ogunwale571771c2016-08-26 13:18:50 -0700202 /**
203 * What {@link #mPolicyVisibility} should be set to after a transition animation.
204 * For example, {@link #mPolicyVisibility} might true during an exit animation to hide it and
205 * then set to the value of {@link #mPolicyVisibilityAfterAnim} which is false after the exit
206 * animation is done.
207 */
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800208 boolean mPolicyVisibilityAfterAnim = true;
Wale Ogunwaled4a00a02016-10-10 11:29:17 -0700209 private boolean mAppOpVisibility = true;
Svetoslav Ganovaa076532016-08-01 19:16:43 -0700210 boolean mPermanentlyHidden; // the window should never be shown again
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800211 boolean mAppFreezing;
Wale Ogunwale9d147902016-07-16 11:58:55 -0700212 boolean mHidden; // Used to determine if to show child windows.
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800213 boolean mWallpaperVisible; // for wallpaper, what was last vis report?
Wale Ogunwaled4a00a02016-10-10 11:29:17 -0700214 private boolean mDragResizing;
Jorim Jaggidc9385a2017-05-13 02:00:31 +0200215 private boolean mDragResizingChangeReported = true;
Wale Ogunwaled4a00a02016-10-10 11:29:17 -0700216 private int mResizeMode;
Dianne Hackbornffb3d932011-05-17 17:44:51 -0700217
Wale Ogunwaled4a00a02016-10-10 11:29:17 -0700218 private RemoteCallbackList<IWindowFocusObserver> mFocusCallbacks;
Dianne Hackborne3f23a32013-03-01 13:25:35 -0800219
Dianne Hackbornffb3d932011-05-17 17:44:51 -0700220 /**
221 * The window size that was requested by the application. These are in
222 * the application's coordinate space (without compatibility scale applied).
223 */
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800224 int mRequestedWidth;
225 int mRequestedHeight;
Wale Ogunwaled4a00a02016-10-10 11:29:17 -0700226 private int mLastRequestedWidth;
227 private int mLastRequestedHeight;
Dianne Hackbornffb3d932011-05-17 17:44:51 -0700228
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800229 int mLayer;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800230 boolean mHaveFrame;
231 boolean mObscured;
232 boolean mTurnOnScreen;
233
234 int mLayoutSeq = -1;
Craig Mautnera2c77052012-03-26 12:14:43 -0700235
Andrii Kulian9d91ca62016-09-29 22:28:09 -0700236 /**
237 * Used to store last reported to client configuration and check if we have newer available.
238 * We'll send configuration to client only if it is different from the last applied one and
239 * client won't perform unnecessary updates.
240 */
241 private final Configuration mLastReportedConfiguration = new Configuration();
Craig Mautnera2c77052012-03-26 12:14:43 -0700242
Dianne Hackbornffb3d932011-05-17 17:44:51 -0700243 /**
Filip Gruszczynski2a6a2c22015-10-14 12:00:53 -0700244 * Actual position of the surface shown on-screen (may be modified by animation). These are
245 * in the screen's coordinate space (WITH the compatibility scale applied).
Dianne Hackbornffb3d932011-05-17 17:44:51 -0700246 */
Filip Gruszczynski2a6a2c22015-10-14 12:00:53 -0700247 final Point mShownPosition = new Point();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800248
249 /**
Dianne Hackbornffb3d932011-05-17 17:44:51 -0700250 * Insets that determine the actually visible area. These are in the application's
251 * coordinate space (without compatibility scale applied).
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800252 */
253 final Rect mVisibleInsets = new Rect();
Wale Ogunwaled4a00a02016-10-10 11:29:17 -0700254 private final Rect mLastVisibleInsets = new Rect();
255 private boolean mVisibleInsetsChanged;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800256
257 /**
Dianne Hackborn5c58de32012-04-28 19:52:37 -0700258 * Insets that are covered by system windows (such as the status bar) and
259 * transient docking windows (such as the IME). These are in the application's
Dianne Hackbornffb3d932011-05-17 17:44:51 -0700260 * coordinate space (without compatibility scale applied).
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800261 */
262 final Rect mContentInsets = new Rect();
263 final Rect mLastContentInsets = new Rect();
Robert Carr18f622f2017-05-08 11:20:43 -0700264
265 /**
266 * The last content insets returned to the client in relayout. We use
267 * these in the bounds animation to ensure we only observe inset changes
268 * at the same time that a client resizes it's surface so that we may use
269 * the geometryAppliesWithResize synchronization mechanism to keep
270 * the contents in place.
271 */
272 final Rect mLastRelayoutContentInsets = new Rect();
273
Wale Ogunwaled4a00a02016-10-10 11:29:17 -0700274 private boolean mContentInsetsChanged;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800275
276 /**
Dianne Hackbornc4aad012013-02-22 15:05:25 -0800277 * Insets that determine the area covered by the display overscan region. These are in the
278 * application's coordinate space (without compatibility scale applied).
279 */
280 final Rect mOverscanInsets = new Rect();
Wale Ogunwaled4a00a02016-10-10 11:29:17 -0700281 private final Rect mLastOverscanInsets = new Rect();
282 private boolean mOverscanInsetsChanged;
Dianne Hackbornc4aad012013-02-22 15:05:25 -0800283
284 /**
Adrian Roosfa104232014-06-20 16:10:14 -0700285 * Insets that determine the area covered by the stable system windows. These are in the
286 * application's coordinate space (without compatibility scale applied).
287 */
288 final Rect mStableInsets = new Rect();
Wale Ogunwaled4a00a02016-10-10 11:29:17 -0700289 private final Rect mLastStableInsets = new Rect();
290 private boolean mStableInsetsChanged;
Adrian Roosfa104232014-06-20 16:10:14 -0700291
292 /**
Filip Gruszczynski2217f612015-05-26 11:32:08 -0700293 * Outsets determine the area outside of the surface where we want to pretend that it's possible
294 * to draw anyway.
295 */
296 final Rect mOutsets = new Rect();
Wale Ogunwaled4a00a02016-10-10 11:29:17 -0700297 private final Rect mLastOutsets = new Rect();
298 private boolean mOutsetsChanged = false;
Filip Gruszczynski2217f612015-05-26 11:32:08 -0700299
300 /**
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800301 * Set to true if we are waiting for this window to receive its
302 * given internal insets before laying out other windows based on it.
303 */
304 boolean mGivenInsetsPending;
305
306 /**
307 * These are the content insets that were given during layout for
308 * this window, to be applied to windows behind it.
309 */
310 final Rect mGivenContentInsets = new Rect();
311
312 /**
313 * These are the visible insets that were given during layout for
314 * this window, to be applied to windows behind it.
315 */
316 final Rect mGivenVisibleInsets = new Rect();
317
318 /**
319 * This is the given touchable area relative to the window frame, or null if none.
320 */
321 final Region mGivenTouchableRegion = new Region();
322
323 /**
324 * Flag indicating whether the touchable region should be adjusted by
325 * the visible insets; if false the area outside the visible insets is
326 * NOT touchable, so we must use those to adjust the frame during hit
327 * tests.
328 */
329 int mTouchableInsets = ViewTreeObserver.InternalInsetsInfo.TOUCHABLE_INSETS_FRAME;
330
331 // Current transformation being applied.
Dianne Hackborne2515ee2011-04-27 18:52:56 -0400332 float mGlobalScale=1;
Dianne Hackbornffb3d932011-05-17 17:44:51 -0700333 float mInvGlobalScale=1;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800334 float mHScale=1, mVScale=1;
335 float mLastHScale=1, mLastVScale=1;
336 final Matrix mTmpMatrix = new Matrix();
337
Dianne Hackbornffb3d932011-05-17 17:44:51 -0700338 // "Real" frame that the application sees, in display coordinate space.
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800339 final Rect mFrame = new Rect();
340 final Rect mLastFrame = new Rect();
Wale Ogunwaled4a00a02016-10-10 11:29:17 -0700341 private boolean mFrameSizeChanged = false;
Dianne Hackbornffb3d932011-05-17 17:44:51 -0700342 // Frame that is scaled to the application's coordinate space when in
343 // screen size compatibility mode.
344 final Rect mCompatFrame = new Rect();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800345
346 final Rect mContainingFrame = new Rect();
Wale Ogunwalec6061fa2014-10-21 13:15:11 -0700347
Wale Ogunwaled4a00a02016-10-10 11:29:17 -0700348 private final Rect mParentFrame = new Rect();
Wale Ogunwalec6061fa2014-10-21 13:15:11 -0700349
Wale Ogunwale94596652015-02-06 19:27:34 -0800350 // The entire screen area of the {@link TaskStack} this window is in. Usually equal to the
351 // screen area of the device.
Wale Ogunwalec6061fa2014-10-21 13:15:11 -0700352 final Rect mDisplayFrame = new Rect();
353
354 // The region of the display frame that the display type supports displaying content on. This
355 // is mostly a special case for TV where some displays don’t have the entire display usable.
356 // {@link WindowManager.LayoutParams#FLAG_LAYOUT_IN_OVERSCAN} flag can be used to allow
357 // window display contents to extend into the overscan region.
Wale Ogunwaled4a00a02016-10-10 11:29:17 -0700358 private final Rect mOverscanFrame = new Rect();
Wale Ogunwalec6061fa2014-10-21 13:15:11 -0700359
360 // The display frame minus the stable insets. This value is always constant regardless of if
361 // the status bar or navigation bar is visible.
Wale Ogunwaled4a00a02016-10-10 11:29:17 -0700362 private final Rect mStableFrame = new Rect();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800363
Wale Ogunwalec6061fa2014-10-21 13:15:11 -0700364 // The area not occupied by the status and navigation bars. So, if both status and navigation
365 // bars are visible, the decor frame is equal to the stable frame.
366 final Rect mDecorFrame = new Rect();
367
368 // Equal to the decor frame if the IME (e.g. keyboard) is not present. Equal to the decor frame
369 // minus the area occupied by the IME if the IME is present.
Wale Ogunwaled4a00a02016-10-10 11:29:17 -0700370 private final Rect mContentFrame = new Rect();
Wale Ogunwalec6061fa2014-10-21 13:15:11 -0700371
372 // Legacy stuff. Generally equal to the content frame expect when the IME for older apps
373 // displays hint text.
374 final Rect mVisibleFrame = new Rect();
375
Filip Gruszczynski2217f612015-05-26 11:32:08 -0700376 // Frame that includes dead area outside of the surface but where we want to pretend that it's
377 // possible to draw.
Wale Ogunwaled4a00a02016-10-10 11:29:17 -0700378 private final Rect mOutsetFrame = new Rect();
Filip Gruszczynski2217f612015-05-26 11:32:08 -0700379
Jorim Jaggidc249c42015-12-15 14:57:31 -0800380 /**
381 * Usually empty. Set to the task's tempInsetFrame. See
382 *{@link android.app.IActivityManager#resizeDockedStack}.
383 */
Wale Ogunwaled4a00a02016-10-10 11:29:17 -0700384 private final Rect mInsetFrame = new Rect();
Jorim Jaggidc249c42015-12-15 14:57:31 -0800385
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800386 boolean mContentChanged;
387
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800388 // If a window showing a wallpaper: the requested offset for the
389 // wallpaper; if a wallpaper window: the currently applied offset.
390 float mWallpaperX = -1;
391 float mWallpaperY = -1;
392
393 // If a window showing a wallpaper: what fraction of the offset
394 // range corresponds to a full virtual screen.
395 float mWallpaperXStep = -1;
396 float mWallpaperYStep = -1;
397
Dianne Hackborn067e5f62014-09-07 23:14:30 -0700398 // If a window showing a wallpaper: a raw pixel offset to forcibly apply
399 // to its window; if a wallpaper window: not used.
400 int mWallpaperDisplayOffsetX = Integer.MIN_VALUE;
401 int mWallpaperDisplayOffsetY = Integer.MIN_VALUE;
402
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800403 // Wallpaper windows: pixels offset based on above variables.
404 int mXOffset;
405 int mYOffset;
406
Craig Mautner2268e7e2012-12-13 15:40:00 -0800407 /**
408 * This is set after IWindowSession.relayout() has been called at
409 * least once for the window. It allows us to detect the situation
410 * where we don't yet have a surface, but should have one soon, so
411 * we can give the window focus before waiting for the relayout.
412 */
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800413 boolean mRelayoutCalled;
414
Robert Carrfed10072016-05-26 11:48:49 -0700415 boolean mInRelayout;
416
Craig Mautner0bf6ec92012-12-18 08:33:27 -0800417 /**
418 * If the application has called relayout() with changes that can
419 * impact its window's size, we need to perform a layout pass on it
420 * even if it is not currently visible for layout. This is set
421 * when in that case until the layout is done.
422 */
Dianne Hackbornb7ff51b2012-01-23 19:15:27 -0800423 boolean mLayoutNeeded;
424
Craig Mautner0bf6ec92012-12-18 08:33:27 -0800425 /** Currently running an exit animation? */
Wale Ogunwalec48a3542016-02-19 15:18:45 -0800426 boolean mAnimatingExit;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800427
Craig Mautner0bf6ec92012-12-18 08:33:27 -0800428 /** Currently on the mDestroySurface list? */
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800429 boolean mDestroying;
430
Craig Mautner0bf6ec92012-12-18 08:33:27 -0800431 /** Completely remove from window manager after exit animation? */
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800432 boolean mRemoveOnExit;
433
Craig Mautner0bf6ec92012-12-18 08:33:27 -0800434 /**
Chong Zhang112eb8c2015-11-02 11:17:00 -0800435 * Whether the app died while it was visible, if true we might need
436 * to continue to show it until it's restarted.
437 */
438 boolean mAppDied;
439
440 /**
Craig Mautner0bf6ec92012-12-18 08:33:27 -0800441 * Set when the orientation is changing and this window has not yet
442 * been updated for the new orientation.
443 */
Bryce Lee8c3cf382017-07-06 19:47:10 -0700444 private boolean mOrientationChanging;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800445
Dianne Hackborna57c6952013-03-29 14:46:40 -0700446 /**
Robert Carr237028a2016-07-26 10:39:45 -0700447 * The orientation during the last visible call to relayout. If our
448 * current orientation is different, the window can't be ready
449 * to be shown.
450 */
451 int mLastVisibleLayoutRotation = -1;
452
453 /**
Andrii Kulianb2e37802017-01-11 00:36:44 -0800454 * Set when we need to report the orientation change to client to trigger a relayout.
455 */
456 boolean mReportOrientationChanged;
457
458 /**
Dianne Hackborna57c6952013-03-29 14:46:40 -0700459 * How long we last kept the screen frozen.
460 */
461 int mLastFreezeDuration;
462
Craig Mautner0bf6ec92012-12-18 08:33:27 -0800463 /** Is this window now (or just being) removed? */
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800464 boolean mRemoved;
465
Craig Mautner0bf6ec92012-12-18 08:33:27 -0800466 /**
Wale Ogunwalec48a3542016-02-19 15:18:45 -0800467 * It is save to remove the window and destroy the surface because the client requested removal
468 * or some other higher level component said so (e.g. activity manager).
469 * TODO: We should either have different booleans for the removal reason or use a bit-field.
Robert Carre12aece2016-02-02 22:43:27 -0800470 */
Svetoslav Ganov200adfb2016-10-18 13:29:27 -0700471 boolean mWindowRemovalAllowed;
Robert Carre12aece2016-02-02 22:43:27 -0800472
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800473 // Input channel and input window handle used by the input dispatcher.
Jeff Brown9302c872011-07-13 22:51:29 -0700474 final InputWindowHandle mInputWindowHandle;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800475 InputChannel mInputChannel;
Wale Ogunwaled4a00a02016-10-10 11:29:17 -0700476 private InputChannel mClientChannel;
Craig Mautner164d4bb2012-11-26 13:51:23 -0800477
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800478 // Used to improve performance of toString()
Wale Ogunwaled4a00a02016-10-10 11:29:17 -0700479 private String mStringNameCache;
480 private CharSequence mLastTitle;
481 private boolean mWasExiting;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800482
Craig Mautnera2c77052012-03-26 12:14:43 -0700483 final WindowStateAnimator mWinAnimator;
484
Craig Mautnerc8bc97e2012-04-02 12:54:54 -0700485 boolean mHasSurface = false;
486
Craig Mautner88400d32012-09-30 12:35:45 -0700487 /** When true this window can be displayed on screens owther than mOwnerUid's */
488 private boolean mShowToOwnerOnly;
Craig Mautner9dc52bc2012-08-06 14:15:42 -0700489
Robert Carr13f7be9e2015-12-02 18:39:45 -0800490 // Whether the window has a saved surface from last pause, which can be
491 // used to start an entering animation earlier.
Chong Zhang92147042016-05-09 12:47:11 -0700492 private boolean mSurfaceSaved = false;
493
Chong Zhang8e4bda92016-05-04 15:08:18 -0700494 // Whether we're performing an entering animation with a saved surface. This flag is
495 // true during the time we're showing a window with a previously saved surface. It's
496 // cleared when surface is destroyed, saved, or re-drawn by the app.
Chong Zhang92147042016-05-09 12:47:11 -0700497 private boolean mAnimatingWithSavedSurface;
498
499 // Whether the window was visible when we set the app to invisible last time. WM uses
500 // this as a hint to restore the surface (if available) for early animation next time
501 // the app is brought visible.
Wale Ogunwaled4a00a02016-10-10 11:29:17 -0700502 private boolean mWasVisibleBeforeClientHidden;
Robert Carr13f7be9e2015-12-02 18:39:45 -0800503
Robert Carra1eb4392015-12-10 12:43:51 -0800504 // This window will be replaced due to relaunch. This allows window manager
505 // to differentiate between simple removal of a window and replacement. In the latter case it
506 // will preserve the old window until the new one is drawn.
507 boolean mWillReplaceWindow = false;
508 // If true, the replaced window was already requested to be removed.
Wale Ogunwaled4a00a02016-10-10 11:29:17 -0700509 private boolean mReplacingRemoveRequested = false;
Robert Carra1eb4392015-12-10 12:43:51 -0800510 // Whether the replacement of the window should trigger app transition animation.
Wale Ogunwaled4a00a02016-10-10 11:29:17 -0700511 private boolean mAnimateReplacingWindow = false;
Robert Carra1eb4392015-12-10 12:43:51 -0800512 // If not null, the window that will be used to replace the old one. This is being set when
513 // the window is added and unset when this window reports its first draw.
Wale Ogunwaled4a00a02016-10-10 11:29:17 -0700514 private WindowState mReplacementWindow = null;
Robert Carrb439a632016-04-07 22:52:10 -0700515 // For the new window in the replacement transition, if we have
516 // requested to replace without animation, then we should
517 // make sure we also don't apply an enter animation for
518 // the new window.
519 boolean mSkipEnterAnimationForSeamlessReplacement = false;
Chong Zhangbd0d9372015-12-28 15:18:29 -0800520 // Whether this window is being moved via the resize API
Wale Ogunwaled4a00a02016-10-10 11:29:17 -0700521 private boolean mMovedByResize;
Robert Carr0d00c2e2016-02-29 17:45:02 -0800522
Jeff Brownc2932a12014-11-20 18:04:05 -0800523 /**
524 * Wake lock for drawing.
525 * Even though it's slightly more expensive to do so, we will use a separate wake lock
526 * for each app that is requesting to draw while dozing so that we can accurately track
527 * who is preventing the system from suspending.
528 * This lock is only acquired on first use.
529 */
Wale Ogunwaled4a00a02016-10-10 11:29:17 -0700530 private PowerManager.WakeLock mDrawLock;
Jeff Brownc2932a12014-11-20 18:04:05 -0800531
Wale Ogunwale2b19b602015-09-18 15:14:59 -0700532 final private Rect mTmpRect = new Rect();
533
Jorim Jaggi8fa45222016-02-19 19:54:39 -0800534 /**
535 * Whether the window was resized by us while it was gone for layout.
536 */
537 boolean mResizedWhileGone = false;
538
Andrii Kulianeb1d3222016-05-16 15:17:55 -0700539 /** @see #isResizedWhileNotDragResizing(). */
540 private boolean mResizedWhileNotDragResizing;
541
542 /** @see #isResizedWhileNotDragResizingReported(). */
543 private boolean mResizedWhileNotDragResizingReported;
Jorim Jaggif3df0aa2016-04-06 15:56:33 -0700544
Robert Carr6da3cc02016-06-16 15:17:07 -0700545 /**
546 * During seamless rotation we have two phases, first the old window contents
547 * are rotated to look as if they didn't move in the new coordinate system. Then we
548 * have to freeze updates to this layer (to preserve the transformation) until
549 * the resize actually occurs. This is true from when the transformation is set
550 * and false until the transaction to resize is sent.
551 */
552 boolean mSeamlesslyRotated = false;
553
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700554 private static final Region sEmptyRegion = new Region();
555
Wale Ogunwalee4343ef2016-07-19 08:00:46 -0700556 /**
Robert Carrc91d1c32017-02-15 19:37:46 -0800557 * Surface insets from the previous call to relayout(), used to track
558 * if we are changing the Surface insets.
559 */
560 final Rect mLastSurfaceInsets = new Rect();
561
562 /**
Bryce Leed390deb2017-06-22 13:14:28 -0700563 * A flag set by the {@link WindowState} parent to indicate that the parent has examined this
564 * {@link WindowState} in its overall drawing context. This book-keeping allows the parent to
565 * make sure all children have been considered.
566 */
567 private boolean mDrawnStateEvaluated;
568
569 /**
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -0700570 * Compares two window sub-layers and returns -1 if the first is lesser than the second in terms
Wale Ogunwalee4343ef2016-07-19 08:00:46 -0700571 * of z-order and 1 otherwise.
572 */
Griff Hazen51d00d82016-11-22 15:39:24 -0800573 private static final Comparator<WindowState> sWindowSubLayerComparator =
574 new Comparator<WindowState>() {
575 @Override
576 public int compare(WindowState w1, WindowState w2) {
577 final int layer1 = w1.mSubLayer;
578 final int layer2 = w2.mSubLayer;
579 if (layer1 < layer2 || (layer1 == layer2 && layer2 < 0 )) {
580 // We insert the child window into the list ordered by
581 // the sub-layer. For same sub-layers, the negative one
582 // should go below others; the positive one should go
583 // above others.
584 return -1;
585 }
586 return 1;
587 };
588 };
Wale Ogunwalee4343ef2016-07-19 08:00:46 -0700589
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800590 WindowState(WindowManagerService service, Session s, IWindow c, WindowToken token,
Wale Ogunwale7ed4d372016-07-09 15:28:55 -0700591 WindowState parentWindow, int appOp, int seq, WindowManager.LayoutParams a,
Wale Ogunwale5cd907d2017-01-26 14:14:08 -0800592 int viewVisibility, int ownerId, boolean ownerCanAddInternalSystemWindow) {
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800593 mService = service;
594 mSession = s;
595 mClient = c;
Dianne Hackbornc2293022013-02-06 23:14:49 -0800596 mAppOp = appOp;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800597 mToken = token;
Wale Ogunwalea6cc3612016-08-04 07:25:33 -0700598 mAppToken = mToken.asAppWindowToken();
Wale Ogunwaleb699ce02016-07-18 12:05:30 -0700599 mOwnerUid = ownerId;
Wale Ogunwale5cd907d2017-01-26 14:14:08 -0800600 mOwnerCanAddInternalSystemWindow = ownerCanAddInternalSystemWindow;
Jorim Jaggi4448e1e2017-05-16 22:26:02 +0200601 mWindowId = new WindowId(this);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800602 mAttrs.copyFrom(a);
603 mViewVisibility = viewVisibility;
Craig Mautnere7ae2502012-03-26 17:11:19 -0700604 mPolicy = mService.mPolicy;
605 mContext = mService.mContext;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800606 DeathRecipient deathRecipient = new DeathRecipient();
Dianne Hackborn9a230e02011-10-06 11:51:27 -0700607 mSeq = seq;
Adam Lesinski95c42972013-10-02 10:13:27 -0700608 mEnforceSizeCompat = (mAttrs.privateFlags & PRIVATE_FLAG_COMPATIBLE_WINDOW) != 0;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700609 if (localLOGV) Slog.v(
Craig Mautnerd87946b2012-03-29 18:00:19 -0700610 TAG, "Window " + this + " client=" + c.asBinder()
Craig Mautnerad09bcc2012-10-08 13:33:11 -0700611 + " token=" + token + " (" + mAttrs.token + ")" + " params=" + a);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800612 try {
613 c.asBinder().linkToDeath(deathRecipient, 0);
614 } catch (RemoteException e) {
615 mDeathRecipient = null;
Wale Ogunwalee4343ef2016-07-19 08:00:46 -0700616 mIsChildWindow = false;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800617 mLayoutAttached = false;
618 mIsImWindow = false;
619 mIsWallpaper = false;
620 mIsFloatingLayer = false;
621 mBaseLayer = 0;
622 mSubLayer = 0;
Jeff Brown9302c872011-07-13 22:51:29 -0700623 mInputWindowHandle = null;
Craig Mautnera2c77052012-03-26 12:14:43 -0700624 mWinAnimator = null;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800625 return;
626 }
627 mDeathRecipient = deathRecipient;
628
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700629 if (mAttrs.type >= FIRST_SUB_WINDOW && mAttrs.type <= LAST_SUB_WINDOW) {
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800630 // The multiplier here is to reserve space for multiple
631 // windows in the same type layer.
Wale Ogunwale5cd907d2017-01-26 14:14:08 -0800632 mBaseLayer = mPolicy.getWindowLayerLw(parentWindow)
Wale Ogunwalee4343ef2016-07-19 08:00:46 -0700633 * TYPE_LAYER_MULTIPLIER + TYPE_LAYER_OFFSET;
Wale Ogunwale5cd907d2017-01-26 14:14:08 -0800634 mSubLayer = mPolicy.getSubWindowLayerFromTypeLw(a.type);
Wale Ogunwalee4343ef2016-07-19 08:00:46 -0700635 mIsChildWindow = true;
takeda.masayuki18735092012-12-12 11:06:24 +0900636
Wale Ogunwalee4343ef2016-07-19 08:00:46 -0700637 if (DEBUG_ADD_REMOVE) Slog.v(TAG, "Adding " + this + " to " + parentWindow);
638 parentWindow.addChild(this, sWindowSubLayerComparator);
takeda.masayuki18735092012-12-12 11:06:24 +0900639
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800640 mLayoutAttached = mAttrs.type !=
641 WindowManager.LayoutParams.TYPE_APPLICATION_ATTACHED_DIALOG;
Wale Ogunwale7ed4d372016-07-09 15:28:55 -0700642 mIsImWindow = parentWindow.mAttrs.type == TYPE_INPUT_METHOD
643 || parentWindow.mAttrs.type == TYPE_INPUT_METHOD_DIALOG;
644 mIsWallpaper = parentWindow.mAttrs.type == TYPE_WALLPAPER;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800645 } else {
646 // The multiplier here is to reserve space for multiple
647 // windows in the same type layer.
Wale Ogunwale5cd907d2017-01-26 14:14:08 -0800648 mBaseLayer = mPolicy.getWindowLayerLw(this)
Wale Ogunwalee4343ef2016-07-19 08:00:46 -0700649 * TYPE_LAYER_MULTIPLIER + TYPE_LAYER_OFFSET;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800650 mSubLayer = 0;
Wale Ogunwalee4343ef2016-07-19 08:00:46 -0700651 mIsChildWindow = false;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800652 mLayoutAttached = false;
653 mIsImWindow = mAttrs.type == TYPE_INPUT_METHOD
654 || mAttrs.type == TYPE_INPUT_METHOD_DIALOG;
655 mIsWallpaper = mAttrs.type == TYPE_WALLPAPER;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800656 }
Wale Ogunwalee4343ef2016-07-19 08:00:46 -0700657 mIsFloatingLayer = mIsImWindow || mIsWallpaper;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800658
Wale Ogunwale72919d22016-12-08 18:58:50 -0800659 if (mAppToken != null && mAppToken.mShowForAllUsers) {
Wale Ogunwale360a8bc2016-10-10 13:25:26 -0700660 // Windows for apps that can show for all users should also show when the device is
661 // locked.
662 mAttrs.flags |= FLAG_SHOW_WHEN_LOCKED;
Craig Mautner19ab8282014-05-07 10:35:34 -0700663 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800664
Craig Mautner322e4032012-07-13 13:35:20 -0700665 mWinAnimator = new WindowStateAnimator(this);
666 mWinAnimator.mAlpha = a.alpha;
667
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800668 mRequestedWidth = 0;
669 mRequestedHeight = 0;
Dianne Hackborn1743b642012-03-12 17:04:43 -0700670 mLastRequestedWidth = 0;
671 mLastRequestedHeight = 0;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800672 mXOffset = 0;
673 mYOffset = 0;
674 mLayer = 0;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800675 mInputWindowHandle = new InputWindowHandle(
Vladislav Kaznacheev3787de12016-12-21 10:36:35 -0800676 mAppToken != null ? mAppToken.mInputApplicationHandle : null, this, c,
677 getDisplayId());
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800678 }
679
680 void attach() {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700681 if (localLOGV) Slog.v(TAG, "Attaching " + this + " token=" + mToken);
Wale Ogunwale387e4c62017-02-13 09:50:02 -0800682 mSession.windowAddedLocked(mAttrs.packageName);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800683 }
684
Bryce Leed390deb2017-06-22 13:14:28 -0700685 /**
686 * Returns whether this {@link WindowState} has been considered for drawing by its parent.
687 */
Bryce Lee6311c4b2017-07-06 14:09:29 -0700688 boolean getDrawnStateEvaluated() {
Bryce Leed390deb2017-06-22 13:14:28 -0700689 return mDrawnStateEvaluated;
690 }
691
692 /**
693 * Sets whether this {@link WindowState} has been considered for drawing by its parent. Should
694 * be cleared when detached from parent.
695 */
696 void setDrawnStateEvaluated(boolean evaluated) {
697 mDrawnStateEvaluated = evaluated;
698 }
699
700 @Override
701 void onParentSet() {
702 super.onParentSet();
703 setDrawnStateEvaluated(false /*evaluated*/);
704 }
705
Craig Mautnera2c77052012-03-26 12:14:43 -0700706 @Override
Dianne Hackbornf265ea92013-01-31 15:00:51 -0800707 public int getOwningUid() {
Dianne Hackbornc2293022013-02-06 23:14:49 -0800708 return mOwnerUid;
Dianne Hackbornf265ea92013-01-31 15:00:51 -0800709 }
710
711 @Override
712 public String getOwningPackage() {
713 return mAttrs.packageName;
714 }
715
Wale Ogunwale5cd907d2017-01-26 14:14:08 -0800716 @Override
717 public boolean canAddInternalSystemWindow() {
718 return mOwnerCanAddInternalSystemWindow;
719 }
720
Jorim Jaggif5834272016-04-04 20:25:41 -0700721 /**
722 * Subtracts the insets calculated by intersecting {@param layoutFrame} with {@param insetFrame}
723 * from {@param frame}. In other words, it applies the insets that would result if
724 * {@param frame} would be shifted to {@param layoutFrame} and then applying the insets from
Andrii Kuliandaea3572016-04-08 13:20:51 -0700725 * {@param insetFrame}. Also it respects {@param displayFrame} in case window has minimum
726 * width/height applied and insets should be overridden.
Jorim Jaggif5834272016-04-04 20:25:41 -0700727 */
Andrii Kuliandaea3572016-04-08 13:20:51 -0700728 private void subtractInsets(Rect frame, Rect layoutFrame, Rect insetFrame, Rect displayFrame) {
729 final int left = Math.max(0, insetFrame.left - Math.max(layoutFrame.left, displayFrame.left));
730 final int top = Math.max(0, insetFrame.top - Math.max(layoutFrame.top, displayFrame.top));
731 final int right = Math.max(0, Math.min(layoutFrame.right, displayFrame.right) - insetFrame.right);
732 final int bottom = Math.max(0, Math.min(layoutFrame.bottom, displayFrame.bottom) - insetFrame.bottom);
Jorim Jaggif5834272016-04-04 20:25:41 -0700733 frame.inset(left, top, right, bottom);
734 }
735
Dianne Hackbornf265ea92013-01-31 15:00:51 -0800736 @Override
Robert Carr43521762016-10-28 13:15:04 -0700737 public void computeFrameLw(Rect parentFrame, Rect displayFrame, Rect overscanFrame,
738 Rect contentFrame, Rect visibleFrame, Rect decorFrame, Rect stableFrame,
739 Rect outsetFrame) {
Wale Ogunwalec48a3542016-02-19 15:18:45 -0800740 if (mWillReplaceWindow && (mAnimatingExit || !mReplacingRemoveRequested)) {
Filip Gruszczynski55a309f2015-09-04 17:15:01 -0700741 // This window is being replaced and either already got information that it's being
742 // removed or we are still waiting for some information. Because of this we don't
743 // want to apply any more changes to it, so it remains in this state until new window
744 // appears.
745 return;
746 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800747 mHaveFrame = true;
748
Wale Ogunwale5a2f2cb2015-09-17 12:31:55 -0700749 final Task task = getTask();
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -0700750 final boolean inFullscreenContainer = inFullscreenContainer();
Robert Carre6275582016-02-29 15:45:45 -0800751 final boolean windowsAreFloating = task != null && task.isFloating();
Wale Ogunwale360a8bc2016-10-10 13:25:26 -0700752 final DisplayContent dc = getDisplayContent();
Wale Ogunwale79f268d2015-12-18 08:25:47 -0800753
Chong Zhangae35fef2016-03-16 15:56:55 -0700754 // If the task has temp inset bounds set, we have to make sure all its windows uses
755 // the temp inset frame. Otherwise different display frames get applied to the main
756 // window and the child window, making them misaligned.
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -0700757 if (inFullscreenContainer) {
Chong Zhangae35fef2016-03-16 15:56:55 -0700758 mInsetFrame.setEmpty();
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -0700759 } else if (task != null && isInMultiWindowMode()) {
Chong Zhangae35fef2016-03-16 15:56:55 -0700760 task.getTempInsetBounds(mInsetFrame);
761 }
762
Jorim Jaggif5834272016-04-04 20:25:41 -0700763 // Denotes the actual frame used to calculate the insets and to perform the layout. When
764 // resizing in docked mode, we'd like to freeze the layout, so we also need to freeze the
765 // insets temporarily. By the notion of a task having a different layout frame, we can
766 // achieve that while still moving the task around.
767 final Rect layoutContainingFrame;
768 final Rect layoutDisplayFrame;
769
770 // The offset from the layout containing frame to the actual containing frame.
771 final int layoutXDiff;
772 final int layoutYDiff;
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -0700773 if (inFullscreenContainer || layoutInParentFrame()) {
Wale Ogunwale79f268d2015-12-18 08:25:47 -0800774 // We use the parent frame as the containing frame for fullscreen and child windows
Robert Carr43521762016-10-28 13:15:04 -0700775 mContainingFrame.set(parentFrame);
776 mDisplayFrame.set(displayFrame);
777 layoutDisplayFrame = displayFrame;
778 layoutContainingFrame = parentFrame;
Jorim Jaggif5834272016-04-04 20:25:41 -0700779 layoutXDiff = 0;
780 layoutYDiff = 0;
Wale Ogunwale79f268d2015-12-18 08:25:47 -0800781 } else {
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -0700782 getContainerBounds(mContainingFrame);
Jorim Jaggi0429f352015-12-22 16:29:16 +0100783 if (mAppToken != null && !mAppToken.mFrozenBounds.isEmpty()) {
784
785 // If the bounds are frozen, we still want to translate the window freely and only
786 // freeze the size.
787 Rect frozen = mAppToken.mFrozenBounds.peek();
788 mContainingFrame.right = mContainingFrame.left + frozen.width();
789 mContainingFrame.bottom = mContainingFrame.top + frozen.height();
790 }
Wale Ogunwalef9c81492015-02-25 18:06:17 -0800791 final WindowState imeWin = mService.mInputMethodWindow;
Robert Carrfc03b2b2016-03-31 15:22:02 -0700792 // IME is up and obscuring this window. Adjust the window position so it is visible.
793 if (imeWin != null && imeWin.isVisibleNow() && mService.mInputMethodTarget == this) {
Winson Chungd73e94b2017-05-31 16:25:30 -0700794 final int stackId = getStackId();
795 if (stackId == FREEFORM_WORKSPACE_STACK_ID
796 && mContainingFrame.bottom > contentFrame.bottom) {
797 // In freeform we want to move the top up directly.
798 // TODO: Investigate why this is contentFrame not parentFrame.
799 mContainingFrame.top -= mContainingFrame.bottom - contentFrame.bottom;
800 } else if (stackId != PINNED_STACK_ID
801 && mContainingFrame.bottom > parentFrame.bottom) {
802 // But in docked we want to behave like fullscreen and behave as if the task
803 // were given smaller bounds for the purposes of layout. Skip adjustments for
804 // the pinned stack, they are handled separately in the PinnedStackController.
805 mContainingFrame.bottom = parentFrame.bottom;
806 }
Craig Mautnerc5a6e442013-06-05 17:22:35 -0700807 }
Skuhne81c524a2015-08-12 13:34:14 -0700808
Robert Carre6275582016-02-29 15:45:45 -0800809 if (windowsAreFloating) {
Chong Zhang65d15d02016-03-14 13:59:32 -0700810 // In floating modes (e.g. freeform, pinned) we have only to set the rectangle
811 // if it wasn't set already. No need to intersect it with the (visible)
Robert Carre6275582016-02-29 15:45:45 -0800812 // "content frame" since it is allowed to be outside the visible desktop.
Skuhne81c524a2015-08-12 13:34:14 -0700813 if (mContainingFrame.isEmpty()) {
Robert Carr43521762016-10-28 13:15:04 -0700814 mContainingFrame.set(contentFrame);
Skuhne81c524a2015-08-12 13:34:14 -0700815 }
Doris Liu06d582d2015-06-01 13:18:43 -0700816 }
Wale Ogunwale94596652015-02-06 19:27:34 -0800817 mDisplayFrame.set(mContainingFrame);
Jorim Jaggif5834272016-04-04 20:25:41 -0700818 layoutXDiff = !mInsetFrame.isEmpty() ? mInsetFrame.left - mContainingFrame.left : 0;
819 layoutYDiff = !mInsetFrame.isEmpty() ? mInsetFrame.top - mContainingFrame.top : 0;
820 layoutContainingFrame = !mInsetFrame.isEmpty() ? mInsetFrame : mContainingFrame;
Wale Ogunwale360a8bc2016-10-10 13:25:26 -0700821 mTmpRect.set(0, 0, dc.getDisplayInfo().logicalWidth, dc.getDisplayInfo().logicalHeight);
Robert Carr43521762016-10-28 13:15:04 -0700822 subtractInsets(mDisplayFrame, layoutContainingFrame, displayFrame, mTmpRect);
Robert Carrfd2bd1b2016-04-07 13:52:43 -0700823 if (!layoutInParentFrame()) {
Robert Carr43521762016-10-28 13:15:04 -0700824 subtractInsets(mContainingFrame, layoutContainingFrame, parentFrame, mTmpRect);
825 subtractInsets(mInsetFrame, layoutContainingFrame, parentFrame, mTmpRect);
Robert Carrfd2bd1b2016-04-07 13:52:43 -0700826 }
Robert Carr43521762016-10-28 13:15:04 -0700827 layoutDisplayFrame = displayFrame;
Jorim Jaggif5834272016-04-04 20:25:41 -0700828 layoutDisplayFrame.intersect(layoutContainingFrame);
Craig Mautner967212c2013-04-13 21:10:58 -0700829 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800830
Craig Mautner967212c2013-04-13 21:10:58 -0700831 final int pw = mContainingFrame.width();
832 final int ph = mContainingFrame.height();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800833
Robert Carr43521762016-10-28 13:15:04 -0700834 if (!mParentFrame.equals(parentFrame)) {
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800835 //Slog.i(TAG_WM, "Window " + this + " content frame from " + mParentFrame
Robert Carr43521762016-10-28 13:15:04 -0700836 // + " to " + parentFrame);
837 mParentFrame.set(parentFrame);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800838 mContentChanged = true;
839 }
Dianne Hackborn1743b642012-03-12 17:04:43 -0700840 if (mRequestedWidth != mLastRequestedWidth || mRequestedHeight != mLastRequestedHeight) {
841 mLastRequestedWidth = mRequestedWidth;
842 mLastRequestedHeight = mRequestedHeight;
843 mContentChanged = true;
844 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800845
Robert Carr43521762016-10-28 13:15:04 -0700846 mOverscanFrame.set(overscanFrame);
847 mContentFrame.set(contentFrame);
848 mVisibleFrame.set(visibleFrame);
849 mDecorFrame.set(decorFrame);
850 mStableFrame.set(stableFrame);
851 final boolean hasOutsets = outsetFrame != null;
Filip Gruszczynski2217f612015-05-26 11:32:08 -0700852 if (hasOutsets) {
Robert Carr43521762016-10-28 13:15:04 -0700853 mOutsetFrame.set(outsetFrame);
Filip Gruszczynski2217f612015-05-26 11:32:08 -0700854 }
Dianne Hackbornc4aad012013-02-22 15:05:25 -0800855
Craig Mautnereda67292013-04-28 13:50:14 -0700856 final int fw = mFrame.width();
857 final int fh = mFrame.height();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800858
Jorim Jaggif5834272016-04-04 20:25:41 -0700859 applyGravityAndUpdateFrame(layoutContainingFrame, layoutDisplayFrame);
860
Filip Gruszczynskiaaf18112015-06-05 13:37:40 -0700861 // Calculate the outsets before the content frame gets shrinked to the window frame.
862 if (hasOutsets) {
863 mOutsets.set(Math.max(mContentFrame.left - mOutsetFrame.left, 0),
864 Math.max(mContentFrame.top - mOutsetFrame.top, 0),
865 Math.max(mOutsetFrame.right - mContentFrame.right, 0),
866 Math.max(mOutsetFrame.bottom - mContentFrame.bottom, 0));
867 } else {
868 mOutsets.set(0, 0, 0, 0);
869 }
870
Craig Mautnera248eee2013-05-07 11:41:27 -0700871 // Make sure the content and visible frames are inside of the
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800872 // final window frame.
Robert Carre6275582016-02-29 15:45:45 -0800873 if (windowsAreFloating && !mFrame.isEmpty()) {
Robert Carre65a1c42017-02-28 16:52:59 -0800874 // For pinned workspace the frame isn't limited in any particular
875 // way since SystemUI controls the bounds. For freeform however
876 // we want to keep things inside the content frame.
877 final Rect limitFrame = task.inPinnedWorkspace() ? mFrame : mContentFrame;
Skuhne81c524a2015-08-12 13:34:14 -0700878 // Keep the frame out of the blocked system area, limit it in size to the content area
879 // and make sure that there is always a minimum visible so that the user can drag it
880 // into a usable area..
Robert Carre65a1c42017-02-28 16:52:59 -0800881 final int height = Math.min(mFrame.height(), limitFrame.height());
882 final int width = Math.min(limitFrame.width(), mFrame.width());
Wale Ogunwale231b06e2015-09-16 12:03:09 -0700883 final DisplayMetrics displayMetrics = getDisplayContent().getDisplayMetrics();
Kazuhiro Inaba63e24d12016-07-14 13:02:55 +0900884 final int minVisibleHeight = Math.min(height, WindowManagerService.dipToPixel(
885 MINIMUM_VISIBLE_HEIGHT_IN_DP, displayMetrics));
886 final int minVisibleWidth = Math.min(width, WindowManagerService.dipToPixel(
887 MINIMUM_VISIBLE_WIDTH_IN_DP, displayMetrics));
Robert Carre65a1c42017-02-28 16:52:59 -0800888 final int top = Math.max(limitFrame.top,
889 Math.min(mFrame.top, limitFrame.bottom - minVisibleHeight));
890 final int left = Math.max(limitFrame.left + minVisibleWidth - width,
891 Math.min(mFrame.left, limitFrame.right - minVisibleWidth));
Skuhne81c524a2015-08-12 13:34:14 -0700892 mFrame.set(left, top, left + width, top + height);
893 mContentFrame.set(mFrame);
894 mVisibleFrame.set(mContentFrame);
895 mStableFrame.set(mContentFrame);
Filip Gruszczynski466f3212015-09-21 17:57:57 -0700896 } else if (mAttrs.type == TYPE_DOCK_DIVIDER) {
Wale Ogunwale360a8bc2016-10-10 13:25:26 -0700897 dc.getDockedDividerController().positionDockedStackedDivider(mFrame);
Jorim Jaggi192086e2016-03-11 17:17:03 +0100898 mContentFrame.set(mFrame);
899 if (!mFrame.equals(mLastFrame)) {
900 mMovedByResize = true;
Filip Gruszczynskiae100802015-11-11 15:58:03 -0800901 }
Skuhne81c524a2015-08-12 13:34:14 -0700902 } else {
Jorim Jaggi656f6502016-04-11 21:08:17 -0700903 mContentFrame.set(Math.max(mContentFrame.left, mFrame.left),
904 Math.max(mContentFrame.top, mFrame.top),
905 Math.min(mContentFrame.right, mFrame.right),
906 Math.min(mContentFrame.bottom, mFrame.bottom));
Dianne Hackbornc4aad012013-02-22 15:05:25 -0800907
Jorim Jaggi656f6502016-04-11 21:08:17 -0700908 mVisibleFrame.set(Math.max(mVisibleFrame.left, mFrame.left),
909 Math.max(mVisibleFrame.top, mFrame.top),
910 Math.min(mVisibleFrame.right, mFrame.right),
911 Math.min(mVisibleFrame.bottom, mFrame.bottom));
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800912
Jorim Jaggi656f6502016-04-11 21:08:17 -0700913 mStableFrame.set(Math.max(mStableFrame.left, mFrame.left),
914 Math.max(mStableFrame.top, mFrame.top),
915 Math.min(mStableFrame.right, mFrame.right),
916 Math.min(mStableFrame.bottom, mFrame.bottom));
Skuhne81c524a2015-08-12 13:34:14 -0700917 }
Adrian Roosfa104232014-06-20 16:10:14 -0700918
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -0700919 if (inFullscreenContainer && !windowsAreFloating) {
Jorim Jaggi899327f2016-02-25 20:44:18 -0500920 // Windows that are not fullscreen can be positioned outside of the display frame,
921 // but that is not a reason to provide them with overscan insets.
Jorim Jaggif5834272016-04-04 20:25:41 -0700922 mOverscanInsets.set(Math.max(mOverscanFrame.left - layoutContainingFrame.left, 0),
923 Math.max(mOverscanFrame.top - layoutContainingFrame.top, 0),
924 Math.max(layoutContainingFrame.right - mOverscanFrame.right, 0),
925 Math.max(layoutContainingFrame.bottom - mOverscanFrame.bottom, 0));
Filip Gruszczynski01ef404d52016-01-28 18:14:27 -0800926 }
Craig Mautnereda67292013-04-28 13:50:14 -0700927
Jorim Jaggi81fe2d12015-12-21 14:45:18 +0100928 if (mAttrs.type == TYPE_DOCK_DIVIDER) {
Jorim Jaggi81fe2d12015-12-21 14:45:18 +0100929 // For the docked divider, we calculate the stable insets like a full-screen window
930 // so it can use it to calculate the snap positions.
931 mStableInsets.set(Math.max(mStableFrame.left - mDisplayFrame.left, 0),
932 Math.max(mStableFrame.top - mDisplayFrame.top, 0),
933 Math.max(mDisplayFrame.right - mStableFrame.right, 0),
934 Math.max(mDisplayFrame.bottom - mStableFrame.bottom, 0));
Jorim Jaggi2e95a482016-01-14 17:36:55 -0800935
936 // The divider doesn't care about insets in any case, so set it to empty so we don't
937 // trigger a relayout when moving it.
938 mContentInsets.setEmpty();
939 mVisibleInsets.setEmpty();
Jorim Jaggi81fe2d12015-12-21 14:45:18 +0100940 } else {
Andrii Kuliand9003372016-04-04 17:46:59 -0700941 getDisplayContent().getLogicalDisplayRect(mTmpRect);
Andrii Kuliana9d168c2016-03-23 13:19:32 -0700942 // Override right and/or bottom insets in case if the frame doesn't fit the screen in
943 // non-fullscreen mode.
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -0700944 boolean overrideRightInset = !windowsAreFloating && !inFullscreenContainer
945 && mFrame.right > mTmpRect.right;
946 boolean overrideBottomInset = !windowsAreFloating && !inFullscreenContainer
947 && mFrame.bottom > mTmpRect.bottom;
Jorim Jaggi656f6502016-04-11 21:08:17 -0700948 mContentInsets.set(mContentFrame.left - mFrame.left,
949 mContentFrame.top - mFrame.top,
Andrii Kuliand9003372016-04-04 17:46:59 -0700950 overrideRightInset ? mTmpRect.right - mContentFrame.right
Jorim Jaggi656f6502016-04-11 21:08:17 -0700951 : mFrame.right - mContentFrame.right,
Andrii Kuliand9003372016-04-04 17:46:59 -0700952 overrideBottomInset ? mTmpRect.bottom - mContentFrame.bottom
Jorim Jaggi656f6502016-04-11 21:08:17 -0700953 : mFrame.bottom - mContentFrame.bottom);
Jorim Jaggi2e95a482016-01-14 17:36:55 -0800954
Jorim Jaggi656f6502016-04-11 21:08:17 -0700955 mVisibleInsets.set(mVisibleFrame.left - mFrame.left,
956 mVisibleFrame.top - mFrame.top,
Andrii Kuliand9003372016-04-04 17:46:59 -0700957 overrideRightInset ? mTmpRect.right - mVisibleFrame.right
Jorim Jaggi656f6502016-04-11 21:08:17 -0700958 : mFrame.right - mVisibleFrame.right,
Andrii Kuliand9003372016-04-04 17:46:59 -0700959 overrideBottomInset ? mTmpRect.bottom - mVisibleFrame.bottom
Jorim Jaggi656f6502016-04-11 21:08:17 -0700960 : mFrame.bottom - mVisibleFrame.bottom);
Jorim Jaggi2e95a482016-01-14 17:36:55 -0800961
Jorim Jaggi656f6502016-04-11 21:08:17 -0700962 mStableInsets.set(Math.max(mStableFrame.left - mFrame.left, 0),
963 Math.max(mStableFrame.top - mFrame.top, 0),
Andrii Kuliand9003372016-04-04 17:46:59 -0700964 overrideRightInset ? Math.max(mTmpRect.right - mStableFrame.right, 0)
Jorim Jaggi656f6502016-04-11 21:08:17 -0700965 : Math.max(mFrame.right - mStableFrame.right, 0),
Andrii Kuliand9003372016-04-04 17:46:59 -0700966 overrideBottomInset ? Math.max(mTmpRect.bottom - mStableFrame.bottom, 0)
Jorim Jaggi656f6502016-04-11 21:08:17 -0700967 : Math.max(mFrame.bottom - mStableFrame.bottom, 0));
Jorim Jaggi81fe2d12015-12-21 14:45:18 +0100968 }
Adrian Roosfa104232014-06-20 16:10:14 -0700969
Jorim Jaggi656f6502016-04-11 21:08:17 -0700970 // Offset the actual frame by the amount layout frame is off.
971 mFrame.offset(-layoutXDiff, -layoutYDiff);
972 mCompatFrame.offset(-layoutXDiff, -layoutYDiff);
Jorim Jaggif5834272016-04-04 20:25:41 -0700973 mContentFrame.offset(-layoutXDiff, -layoutYDiff);
974 mVisibleFrame.offset(-layoutXDiff, -layoutYDiff);
975 mStableFrame.offset(-layoutXDiff, -layoutYDiff);
976
Craig Mautnereda67292013-04-28 13:50:14 -0700977 mCompatFrame.set(mFrame);
Dianne Hackborne2515ee2011-04-27 18:52:56 -0400978 if (mEnforceSizeCompat) {
Dianne Hackbornffb3d932011-05-17 17:44:51 -0700979 // If there is a size compatibility scale being applied to the
980 // window, we need to apply this to its insets so that they are
981 // reported to the app in its coordinate space.
Craig Mautnereda67292013-04-28 13:50:14 -0700982 mOverscanInsets.scale(mInvGlobalScale);
983 mContentInsets.scale(mInvGlobalScale);
984 mVisibleInsets.scale(mInvGlobalScale);
Adrian Roosfa104232014-06-20 16:10:14 -0700985 mStableInsets.scale(mInvGlobalScale);
Filip Gruszczynski2217f612015-05-26 11:32:08 -0700986 mOutsets.scale(mInvGlobalScale);
Dianne Hackbornffb3d932011-05-17 17:44:51 -0700987
988 // Also the scaled frame that we report to the app needs to be
989 // adjusted to be in its coordinate space.
990 mCompatFrame.scale(mInvGlobalScale);
Dianne Hackborne2515ee2011-04-27 18:52:56 -0400991 }
992
Craig Mautnereda67292013-04-28 13:50:14 -0700993 if (mIsWallpaper && (fw != mFrame.width() || fh != mFrame.height())) {
Craig Mautnerdf88d732014-01-27 09:21:32 -0800994 final DisplayContent displayContent = getDisplayContent();
995 if (displayContent != null) {
996 final DisplayInfo displayInfo = displayContent.getDisplayInfo();
Wale Ogunwale0303c572016-10-20 10:16:29 -0700997 getDisplayContent().mWallpaperController.updateWallpaperOffset(
Wale Ogunwalee8069dc2015-08-18 09:52:01 -0700998 this, displayInfo.logicalWidth, displayInfo.logicalHeight, false);
Craig Mautnerdf88d732014-01-27 09:21:32 -0800999 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001000 }
1001
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001002 if (DEBUG_LAYOUT || localLOGV) Slog.v(TAG,
Craig Mautnerb3b36ba2013-05-20 13:21:10 -07001003 "Resolving (mRequestedWidth="
1004 + mRequestedWidth + ", mRequestedheight="
1005 + mRequestedHeight + ") to" + " (pw=" + pw + ", ph=" + ph
1006 + "): frame=" + mFrame.toShortString()
1007 + " ci=" + mContentInsets.toShortString()
Adrian Roosfa104232014-06-20 16:10:14 -07001008 + " vi=" + mVisibleInsets.toShortString()
Andrii Kuliana9d168c2016-03-23 13:19:32 -07001009 + " si=" + mStableInsets.toShortString()
Filip Gruszczynski2217f612015-05-26 11:32:08 -07001010 + " of=" + mOutsets.toShortString());
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001011 }
1012
Craig Mautnera2c77052012-03-26 12:14:43 -07001013 @Override
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001014 public Rect getFrameLw() {
1015 return mFrame;
1016 }
1017
Craig Mautnera2c77052012-03-26 12:14:43 -07001018 @Override
Filip Gruszczynski2a6a2c22015-10-14 12:00:53 -07001019 public Point getShownPositionLw() {
1020 return mShownPosition;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001021 }
1022
Craig Mautnera2c77052012-03-26 12:14:43 -07001023 @Override
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001024 public Rect getDisplayFrameLw() {
1025 return mDisplayFrame;
1026 }
1027
Craig Mautnera2c77052012-03-26 12:14:43 -07001028 @Override
Dianne Hackbornc4aad012013-02-22 15:05:25 -08001029 public Rect getOverscanFrameLw() {
1030 return mOverscanFrame;
1031 }
1032
1033 @Override
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001034 public Rect getContentFrameLw() {
1035 return mContentFrame;
1036 }
1037
Craig Mautnera2c77052012-03-26 12:14:43 -07001038 @Override
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001039 public Rect getVisibleFrameLw() {
1040 return mVisibleFrame;
1041 }
1042
Robert Carre4ee8f8a2016-10-31 12:40:15 -07001043 Rect getStableFrameLw() {
1044 return mStableFrame;
1045 }
1046
Craig Mautnera2c77052012-03-26 12:14:43 -07001047 @Override
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001048 public boolean getGivenInsetsPendingLw() {
1049 return mGivenInsetsPending;
1050 }
1051
Craig Mautnera2c77052012-03-26 12:14:43 -07001052 @Override
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001053 public Rect getGivenContentInsetsLw() {
1054 return mGivenContentInsets;
1055 }
1056
Craig Mautnera2c77052012-03-26 12:14:43 -07001057 @Override
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001058 public Rect getGivenVisibleInsetsLw() {
1059 return mGivenVisibleInsets;
1060 }
1061
Craig Mautnera2c77052012-03-26 12:14:43 -07001062 @Override
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001063 public WindowManager.LayoutParams getAttrs() {
1064 return mAttrs;
1065 }
1066
Craig Mautner812d2ca2012-09-27 15:35:34 -07001067 @Override
Dianne Hackborn73ab6a42011-12-13 11:16:23 -08001068 public boolean getNeedsMenuLw(WindowManagerPolicy.WindowState bottom) {
Wale Ogunwaleae9adbf2016-10-18 15:17:06 -07001069 return getDisplayContent().getNeedsMenu(this, bottom);
Dianne Hackborn73ab6a42011-12-13 11:16:23 -08001070 }
1071
Craig Mautner19d59bc2012-09-04 11:15:56 -07001072 @Override
Dianne Hackborn9a230e02011-10-06 11:51:27 -07001073 public int getSystemUiVisibility() {
1074 return mSystemUiVisibility;
1075 }
1076
Craig Mautner19d59bc2012-09-04 11:15:56 -07001077 @Override
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001078 public int getSurfaceLayer() {
1079 return mLayer;
1080 }
1081
Craig Mautner812d2ca2012-09-27 15:35:34 -07001082 @Override
Selim Cinekd6623612015-05-22 18:56:22 -07001083 public int getBaseType() {
Wale Ogunwalecaa53af2016-07-17 14:50:26 -07001084 return getTopParentWindow().mAttrs.type;
Selim Cinekd6623612015-05-22 18:56:22 -07001085 }
1086
1087 @Override
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001088 public IApplicationToken getAppToken() {
1089 return mAppToken != null ? mAppToken.appToken : null;
1090 }
Craig Mautner19d59bc2012-09-04 11:15:56 -07001091
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001092 @Override
1093 public boolean isVoiceInteraction() {
Wale Ogunwale72919d22016-12-08 18:58:50 -08001094 return mAppToken != null && mAppToken.mVoiceInteraction;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001095 }
1096
Robert Carr31aa98b2016-07-20 15:29:03 -07001097 boolean setReportResizeHints() {
Craig Mautner4c5eb222013-11-18 12:59:05 -08001098 mOverscanInsetsChanged |= !mLastOverscanInsets.equals(mOverscanInsets);
1099 mContentInsetsChanged |= !mLastContentInsets.equals(mContentInsets);
1100 mVisibleInsetsChanged |= !mLastVisibleInsets.equals(mVisibleInsets);
Adrian Roosfa104232014-06-20 16:10:14 -07001101 mStableInsetsChanged |= !mLastStableInsets.equals(mStableInsets);
Filip Gruszczynski2217f612015-05-26 11:32:08 -07001102 mOutsetsChanged |= !mLastOutsets.equals(mOutsets);
Robert Carr31aa98b2016-07-20 15:29:03 -07001103 mFrameSizeChanged |= (mLastFrame.width() != mFrame.width()) ||
1104 (mLastFrame.height() != mFrame.height());
Filip Gruszczynski2217f612015-05-26 11:32:08 -07001105 return mOverscanInsetsChanged || mContentInsetsChanged || mVisibleInsetsChanged
Robert Carr31aa98b2016-07-20 15:29:03 -07001106 || mOutsetsChanged || mFrameSizeChanged;
Craig Mautner4c5eb222013-11-18 12:59:05 -08001107 }
1108
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001109 /**
1110 * Adds the window to the resizing list if any of the parameters we use to track the window
1111 * dimensions or insets have changed.
1112 */
1113 void updateResizingWindowIfNeeded() {
1114 final WindowStateAnimator winAnimator = mWinAnimator;
1115 if (!mHasSurface || mService.mLayoutSeq != mLayoutSeq || isGoneForLayoutLw()) {
1116 return;
1117 }
1118
1119 final Task task = getTask();
1120 // In the case of stack bound animations, the window frames will update (unlike other
1121 // animations which just modify various transformation properties). We don't want to
1122 // notify the client of frame changes in this case. Not only is it a lot of churn, but
1123 // the frame may not correspond to the surface size or the onscreen area at various
1124 // phases in the animation, and the client will become sad and confused.
Winson Chung40a5f932017-04-13 16:39:36 -07001125 if (task != null && task.mStack.isAnimatingBounds()) {
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001126 return;
1127 }
1128
1129 setReportResizeHints();
1130 boolean configChanged = isConfigChanged();
1131 if (DEBUG_CONFIGURATION && configChanged) {
1132 Slog.v(TAG_WM, "Win " + this + " config changed: " + getConfiguration());
1133 }
1134
1135 final boolean dragResizingChanged = isDragResizeChanged()
1136 && !isDragResizingChangeReported();
1137
1138 if (localLOGV) Slog.v(TAG_WM, "Resizing " + this + ": configChanged=" + configChanged
1139 + " dragResizingChanged=" + dragResizingChanged + " last=" + mLastFrame
1140 + " frame=" + mFrame);
1141
1142 // We update mLastFrame always rather than in the conditional with the last inset
1143 // variables, because mFrameSizeChanged only tracks the width and height changing.
1144 mLastFrame.set(mFrame);
1145
1146 if (mContentInsetsChanged
1147 || mVisibleInsetsChanged
1148 || winAnimator.mSurfaceResized
1149 || mOutsetsChanged
1150 || mFrameSizeChanged
1151 || configChanged
1152 || dragResizingChanged
Andrii Kulianb2e37802017-01-11 00:36:44 -08001153 || !isResizedWhileNotDragResizingReported()
1154 || mReportOrientationChanged) {
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001155 if (DEBUG_RESIZE || DEBUG_ORIENTATION) {
1156 Slog.v(TAG_WM, "Resize reasons for w=" + this + ": "
1157 + " contentInsetsChanged=" + mContentInsetsChanged
1158 + " " + mContentInsets.toShortString()
1159 + " visibleInsetsChanged=" + mVisibleInsetsChanged
1160 + " " + mVisibleInsets.toShortString()
1161 + " stableInsetsChanged=" + mStableInsetsChanged
1162 + " " + mStableInsets.toShortString()
1163 + " outsetsChanged=" + mOutsetsChanged
1164 + " " + mOutsets.toShortString()
1165 + " surfaceResized=" + winAnimator.mSurfaceResized
1166 + " configChanged=" + configChanged
1167 + " dragResizingChanged=" + dragResizingChanged
1168 + " resizedWhileNotDragResizingReported="
Andrii Kulianb2e37802017-01-11 00:36:44 -08001169 + isResizedWhileNotDragResizingReported()
1170 + " reportOrientationChanged=" + mReportOrientationChanged);
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001171 }
1172
1173 // If it's a dead window left on screen, and the configuration changed, there is nothing
1174 // we can do about it. Remove the window now.
1175 if (mAppToken != null && mAppDied) {
1176 mAppToken.removeDeadWindows();
1177 return;
1178 }
1179
Jorim Jaggidc9385a2017-05-13 02:00:31 +02001180 updateLastInsetValues();
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001181 mService.makeWindowFreezingScreenIfNeededLocked(this);
1182
1183 // If the orientation is changing, or we're starting or ending a drag resizing action,
1184 // then we need to hold off on unfreezing the display until this window has been
1185 // redrawn; to do that, we need to go through the process of getting informed by the
1186 // application when it has finished drawing.
Bryce Lee8c3cf382017-07-06 19:47:10 -07001187 if (getOrientationChanging() || dragResizingChanged
1188 || isResizedWhileNotDragResizing()) {
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001189 if (DEBUG_SURFACE_TRACE || DEBUG_ANIM || DEBUG_ORIENTATION || DEBUG_RESIZE) {
1190 Slog.v(TAG_WM, "Orientation or resize start waiting for draw"
1191 + ", mDrawState=DRAW_PENDING in " + this
1192 + ", surfaceController " + winAnimator.mSurfaceController);
1193 }
1194 winAnimator.mDrawState = DRAW_PENDING;
1195 if (mAppToken != null) {
1196 mAppToken.clearAllDrawn();
1197 }
1198 }
1199 if (!mService.mResizingWindows.contains(this)) {
1200 if (DEBUG_RESIZE || DEBUG_ORIENTATION) Slog.v(TAG_WM, "Resizing window " + this);
1201 mService.mResizingWindows.add(this);
1202 }
Bryce Lee8c3cf382017-07-06 19:47:10 -07001203 } else if (getOrientationChanging()) {
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001204 if (isDrawnLw()) {
1205 if (DEBUG_ORIENTATION) Slog.v(TAG_WM, "Orientation not waiting for draw in "
1206 + this + ", surfaceController " + winAnimator.mSurfaceController);
Bryce Lee8c3cf382017-07-06 19:47:10 -07001207 setOrientationChanging(false);
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001208 mLastFreezeDuration = (int)(SystemClock.elapsedRealtime()
1209 - mService.mDisplayFreezeTime);
1210 }
1211 }
1212 }
1213
Bryce Lee8c3cf382017-07-06 19:47:10 -07001214 boolean getOrientationChanging() {
1215 // In addition to the local state flag, we must also consider the difference in the last
1216 // reported configuration vs. the current state. If the client code has not been informed of
1217 // the change, logic dependent on having finished processing the orientation, such as
1218 // unfreezing, could be improperly triggered.
1219 // TODO(b/62846907): Checking against {@link mLastReportedConfiguration} could be flaky as
1220 // this is not necessarily what the client has processed yet. Find a
1221 // better indicator consistent with the client.
1222 return mOrientationChanging || (isVisible()
1223 && getConfiguration().orientation != mLastReportedConfiguration.orientation);
1224 }
1225
1226 void setOrientationChanging(boolean changing) {
1227 mOrientationChanging = changing;
1228 }
1229
Wale Ogunwale360a8bc2016-10-10 13:25:26 -07001230 DisplayContent getDisplayContent() {
1231 return mToken.getDisplayContent();
Craig Mautnerdf88d732014-01-27 09:21:32 -08001232 }
1233
Wale Ogunwale360a8bc2016-10-10 13:25:26 -07001234 DisplayInfo getDisplayInfo() {
Chong Zhang09b21ef2015-09-14 10:20:21 -07001235 final DisplayContent displayContent = getDisplayContent();
1236 return displayContent != null ? displayContent.getDisplayInfo() : null;
1237 }
1238
Jorim Jaggife762342016-10-13 14:33:27 +02001239 @Override
1240 public int getDisplayId() {
Craig Mautnerdf88d732014-01-27 09:21:32 -08001241 final DisplayContent displayContent = getDisplayContent();
1242 if (displayContent == null) {
1243 return -1;
1244 }
1245 return displayContent.getDisplayId();
Craig Mautner19d59bc2012-09-04 11:15:56 -07001246 }
1247
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07001248 Task getTask() {
Bryce Lee6d410262017-02-28 15:30:17 -08001249 return mAppToken != null ? mAppToken.getTask() : null;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07001250 }
1251
1252 TaskStack getStack() {
1253 Task task = getTask();
1254 if (task != null) {
1255 if (task.mStack != null) {
1256 return task.mStack;
Craig Mautnerf06b8c12013-04-18 14:27:28 -07001257 }
Craig Mautnerd9a22882013-03-16 15:00:36 -07001258 }
Filip Gruszczynski0689ae92015-10-01 12:30:31 -07001259 // Some system windows (e.g. "Power off" dialog) don't have a task, but we would still
1260 // associate them with some stack to enable dimming.
Wale Ogunwale360a8bc2016-10-10 13:25:26 -07001261 final DisplayContent dc = getDisplayContent();
1262 return mAttrs.type >= FIRST_SYSTEM_WINDOW && dc != null ? dc.getHomeStack() : null;
Craig Mautnerd9a22882013-03-16 15:00:36 -07001263 }
1264
Skuhnef932e562015-08-20 12:07:30 -07001265 /**
Wale Ogunwale61b009e2015-09-16 15:43:05 -07001266 * Retrieves the visible bounds of the window.
Skuhnef932e562015-08-20 12:07:30 -07001267 * @param bounds The rect which gets the bounds.
Skuhnef932e562015-08-20 12:07:30 -07001268 */
Chong Zhang4c9ba52a2015-11-10 18:36:33 -08001269 void getVisibleBounds(Rect bounds) {
Wale Ogunwaleb1faf602016-01-27 09:12:31 -08001270 final Task task = getTask();
1271 boolean intersectWithStackBounds = task != null && task.cropWindowsToStackBounds();
Wale Ogunwale61b009e2015-09-16 15:43:05 -07001272 bounds.setEmpty();
Wale Ogunwale2b19b602015-09-18 15:14:59 -07001273 mTmpRect.setEmpty();
1274 if (intersectWithStackBounds) {
Wale Ogunwaleb1faf602016-01-27 09:12:31 -08001275 final TaskStack stack = task.mStack;
Wale Ogunwale61b009e2015-09-16 15:43:05 -07001276 if (stack != null) {
Chong Zhang4c9ba52a2015-11-10 18:36:33 -08001277 stack.getDimBounds(mTmpRect);
Wale Ogunwale2b19b602015-09-18 15:14:59 -07001278 } else {
1279 intersectWithStackBounds = false;
Wale Ogunwale61b009e2015-09-16 15:43:05 -07001280 }
1281 }
Wale Ogunwale2b19b602015-09-18 15:14:59 -07001282
Chong Zhang9184ec62015-09-24 12:32:21 -07001283 bounds.set(mVisibleFrame);
1284 if (intersectWithStackBounds) {
1285 bounds.intersect(mTmpRect);
Wale Ogunwale2b19b602015-09-18 15:14:59 -07001286 }
1287
Wale Ogunwale61b009e2015-09-16 15:43:05 -07001288 if (bounds.isEmpty()) {
1289 bounds.set(mFrame);
Wale Ogunwale2b19b602015-09-18 15:14:59 -07001290 if (intersectWithStackBounds) {
1291 bounds.intersect(mTmpRect);
1292 }
Craig Mautnerbdc748af2013-12-02 14:08:25 -08001293 return;
Craig Mautner4cd0c13f2013-04-16 15:55:52 -07001294 }
Craig Mautner4cd0c13f2013-04-16 15:55:52 -07001295 }
1296
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001297 public long getInputDispatchingTimeoutNanos() {
1298 return mAppToken != null
Wale Ogunwale72919d22016-12-08 18:58:50 -08001299 ? mAppToken.mInputDispatchingTimeoutNanos
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001300 : WindowManagerService.DEFAULT_INPUT_DISPATCHING_TIMEOUT_NANOS;
1301 }
1302
Craig Mautnere8552142012-11-07 13:55:47 -08001303 @Override
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001304 public boolean hasAppShownWindows() {
Craig Mautnerf4120952012-06-21 18:25:39 -07001305 return mAppToken != null && (mAppToken.firstWindowDrawn || mAppToken.startingDisplayed);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001306 }
1307
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001308 boolean isIdentityMatrix(float dsdx, float dtdx, float dsdy, float dtdy) {
1309 if (dsdx < .99999f || dsdx > 1.00001f) return false;
1310 if (dtdy < .99999f || dtdy > 1.00001f) return false;
1311 if (dtdx < -.000001f || dtdx > .000001f) return false;
1312 if (dsdy < -.000001f || dsdy > .000001f) return false;
1313 return true;
1314 }
1315
Dianne Hackborne2515ee2011-04-27 18:52:56 -04001316 void prelayout() {
1317 if (mEnforceSizeCompat) {
Andrii Kulian06d07d62017-03-14 11:11:47 -07001318 mGlobalScale = getDisplayContent().mCompatibleScreenScale;
1319 mInvGlobalScale = 1 / mGlobalScale;
Dianne Hackborne2515ee2011-04-27 18:52:56 -04001320 } else {
Dianne Hackbornffb3d932011-05-17 17:44:51 -07001321 mGlobalScale = mInvGlobalScale = 1;
Dianne Hackborne2515ee2011-04-27 18:52:56 -04001322 }
1323 }
1324
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001325 @Override
Wale Ogunwale44f21802016-09-02 12:49:48 -07001326 boolean hasContentToDisplay() {
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001327 // If we're animating with a saved surface, we're already visible.
1328 // Return true so that the alpha doesn't get cleared.
1329 if (!mAppFreezing && isDrawnLw()
1330 && (mViewVisibility == View.VISIBLE || isAnimatingWithSavedSurface()
1331 || (mWinAnimator.isAnimationSet() && !mService.mAppTransition.isTransitionSet()))) {
1332 return true;
1333 }
1334
Wale Ogunwale44f21802016-09-02 12:49:48 -07001335 return super.hasContentToDisplay();
1336 }
1337
1338 @Override
1339 boolean isVisible() {
Jorim Jaggic6ae42a2017-05-08 23:42:02 +02001340 return wouldBeVisibleIfPolicyIgnored() && mPolicyVisibility;
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001341 }
1342
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001343 /**
Jorim Jaggic6ae42a2017-05-08 23:42:02 +02001344 * @return True if the window would be visible if we'd ignore policy visibility, false
1345 * otherwise.
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001346 */
Jorim Jaggic6ae42a2017-05-08 23:42:02 +02001347 boolean wouldBeVisibleIfPolicyIgnored() {
Jorim Jaggi43530c92017-05-18 01:53:56 +02001348 return mHasSurface && !isParentWindowHidden()
Wale Ogunwalec48a3542016-02-19 15:18:45 -08001349 && !mAnimatingExit && !mDestroying && (!mIsWallpaper || mWallpaperVisible);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001350 }
1351
Wale Ogunwale329b7e52016-01-15 15:00:57 -08001352 @Override
1353 public boolean isVisibleLw() {
Wale Ogunwale44f21802016-09-02 12:49:48 -07001354 return isVisible();
Wale Ogunwale329b7e52016-01-15 15:00:57 -08001355 }
1356
1357 /**
Wale Ogunwale329b7e52016-01-15 15:00:57 -08001358 * Is this window visible, ignoring its app token? It is not visible if there is no surface,
1359 * or we are in the process of running an exit animation that will remove the surface.
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001360 */
Wale Ogunwale44f21802016-09-02 12:49:48 -07001361 // TODO: Can we consolidate this with #isVisible() or have a more appropriate name for this?
1362 boolean isWinVisibleLw() {
Wale Ogunwale329b7e52016-01-15 15:00:57 -08001363 return (mAppToken == null || !mAppToken.hiddenRequested || mAppToken.mAppAnimator.animating)
Jorim Jaggic6ae42a2017-05-08 23:42:02 +02001364 && isVisible();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001365 }
1366
1367 /**
Wale Ogunwale329b7e52016-01-15 15:00:57 -08001368 * The same as isVisible(), but follows the current hidden state of the associated app token,
1369 * not the pending requested hidden state.
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001370 */
1371 boolean isVisibleNow() {
Wale Ogunwalea6cc3612016-08-04 07:25:33 -07001372 return (!mToken.hidden || mAttrs.type == TYPE_APPLICATION_STARTING)
Jorim Jaggic6ae42a2017-05-08 23:42:02 +02001373 && isVisible();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001374 }
1375
1376 /**
1377 * Can this window possibly be a drag/drop target? The test here is
1378 * a combination of the above "visible now" with the check that the
1379 * Input Manager uses when discarding windows from input consideration.
1380 */
1381 boolean isPotentialDragTarget() {
Jeff Browncc4f7db2011-08-30 20:34:48 -07001382 return isVisibleNow() && !mRemoved
1383 && mInputChannel != null && mInputWindowHandle != null;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001384 }
1385
1386 /**
1387 * Same as isVisible(), but we also count it as visible between the
1388 * call to IWindowSession.add() and the first relayout().
1389 */
1390 boolean isVisibleOrAdding() {
1391 final AppWindowToken atoken = mAppToken;
Craig Mautnerbf08af32012-05-16 19:43:42 -07001392 return (mHasSurface || (!mRelayoutCalled && mViewVisibility == View.VISIBLE))
Wale Ogunwale9d147902016-07-16 11:58:55 -07001393 && mPolicyVisibility && !isParentWindowHidden()
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001394 && (atoken == null || !atoken.hiddenRequested)
Wale Ogunwalec48a3542016-02-19 15:18:45 -08001395 && !mAnimatingExit && !mDestroying;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001396 }
1397
1398 /**
1399 * Is this window currently on-screen? It is on-screen either if it
1400 * is visible or it is currently running an animation before no longer
1401 * being visible.
1402 */
1403 boolean isOnScreen() {
Jorim Jaggiaf221d12016-11-15 14:59:57 -08001404 if (!mHasSurface || mDestroying || !mPolicyVisibility) {
Craig Mautnerc8bc97e2012-04-02 12:54:54 -07001405 return false;
1406 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001407 final AppWindowToken atoken = mAppToken;
1408 if (atoken != null) {
Wale Ogunwale9d147902016-07-16 11:58:55 -07001409 return ((!isParentWindowHidden() && !atoken.hiddenRequested)
Craig Mautnerccc9e9b2012-12-11 09:40:34 -08001410 || mWinAnimator.mAnimation != null || atoken.mAppAnimator.animation != null);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001411 }
Wale Ogunwale9d147902016-07-16 11:58:55 -07001412 return !isParentWindowHidden() || mWinAnimator.mAnimation != null;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001413 }
1414
1415 /**
Chong Zhang8e4bda92016-05-04 15:08:18 -07001416 * Whether this window's drawn state might affect the drawn states of the app token.
1417 *
1418 * @param visibleOnly Whether we should consider only the windows that's currently
1419 * visible in layout. If true, windows that has not relayout to VISIBLE
1420 * would always return false.
1421 *
1422 * @return true if the window should be considered while evaluating allDrawn flags.
1423 */
1424 boolean mightAffectAllDrawn(boolean visibleOnly) {
Wale Ogunwale89973222017-04-23 18:39:45 -07001425 final boolean isViewVisible = (mAppToken == null || !mAppToken.isClientHidden())
Chong Zhange292eb32016-05-21 09:23:55 -07001426 && (mViewVisibility == View.VISIBLE) && !mWindowRemovalAllowed;
Jorim Jaggib0d27342016-11-01 16:10:42 -07001427 return (isOnScreen() && (!visibleOnly || isViewVisible)
Chong Zhangfea963e2016-08-15 17:14:16 -07001428 || mWinAnimator.mAttrType == TYPE_BASE_APPLICATION
1429 || mWinAnimator.mAttrType == TYPE_DRAWN_APPLICATION)
Chong Zhang8e4bda92016-05-04 15:08:18 -07001430 && !mAnimatingExit && !mDestroying;
1431 }
1432
1433 /**
1434 * Whether this window is "interesting" when evaluating allDrawn. If it's interesting,
1435 * it must be drawn before allDrawn can become true.
1436 */
1437 boolean isInteresting() {
1438 return mAppToken != null && !mAppDied
1439 && (!mAppToken.mAppAnimator.freezingScreen || !mAppFreezing);
1440 }
1441
1442 /**
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001443 * Like isOnScreen(), but we don't return true if the window is part
1444 * of a transition that has not yet been started.
1445 */
1446 boolean isReadyForDisplay() {
Wale Ogunwalea6cc3612016-08-04 07:25:33 -07001447 if (mToken.waitingToShow && mService.mAppTransition.isTransitionSet()) {
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001448 return false;
1449 }
Craig Mautnerc8bc97e2012-04-02 12:54:54 -07001450 return mHasSurface && mPolicyVisibility && !mDestroying
Wale Ogunwalea6cc3612016-08-04 07:25:33 -07001451 && ((!isParentWindowHidden() && mViewVisibility == View.VISIBLE && !mToken.hidden)
Craig Mautnera2c77052012-03-26 12:14:43 -07001452 || mWinAnimator.mAnimation != null
Craig Mautner59431632012-04-04 11:56:44 -07001453 || ((mAppToken != null) && (mAppToken.mAppAnimator.animation != null)));
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001454 }
1455
Jorim Jaggi23cc9aa2017-05-23 16:05:35 +02001456 // TODO: Another visibility method that was added late in the release to minimize risk.
1457 @Override
1458 public boolean canAffectSystemUiFlags() {
1459 final boolean shown = mWinAnimator.getShown();
1460 final boolean exiting = mAnimatingExit || mDestroying
1461 || mAppToken != null && mAppToken.hidden;
1462 final boolean translucent = mAttrs.alpha == 0.0f;
1463 return shown && !exiting && !translucent;
1464 }
1465
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001466 /**
1467 * Like isOnScreen, but returns false if the surface hasn't yet
1468 * been drawn.
1469 */
Craig Mautnere6f7d5052012-10-08 10:34:17 -07001470 @Override
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001471 public boolean isDisplayedLw() {
1472 final AppWindowToken atoken = mAppToken;
Craig Mautnerbf90eaa2012-03-15 11:28:53 -07001473 return isDrawnLw() && mPolicyVisibility
Wale Ogunwale9d147902016-07-16 11:58:55 -07001474 && ((!isParentWindowHidden() &&
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001475 (atoken == null || !atoken.hiddenRequested))
Craig Mautnere6f7d5052012-10-08 10:34:17 -07001476 || mWinAnimator.mAnimating
1477 || (atoken != null && atoken.mAppAnimator.animation != null));
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001478 }
1479
Dianne Hackborn5c58de32012-04-28 19:52:37 -07001480 /**
Craig Mautnerae446592012-12-06 19:05:05 -08001481 * Return true if this window or its app token is currently animating.
Dianne Hackborn5c58de32012-04-28 19:52:37 -07001482 */
Craig Mautnere6f7d5052012-10-08 10:34:17 -07001483 @Override
Dianne Hackborn5c58de32012-04-28 19:52:37 -07001484 public boolean isAnimatingLw() {
Craig Mautnerae446592012-12-06 19:05:05 -08001485 return mWinAnimator.mAnimation != null
1486 || (mAppToken != null && mAppToken.mAppAnimator.animation != null);
Dianne Hackborn5c58de32012-04-28 19:52:37 -07001487 }
1488
Craig Mautner812d2ca2012-09-27 15:35:34 -07001489 @Override
Dianne Hackborncfbf7de2012-01-12 14:05:03 -08001490 public boolean isGoneForLayoutLw() {
1491 final AppWindowToken atoken = mAppToken;
1492 return mViewVisibility == View.GONE
1493 || !mRelayoutCalled
Wale Ogunwalea6cc3612016-08-04 07:25:33 -07001494 || (atoken == null && mToken.hidden)
Jorim Jaggi8fa45222016-02-19 19:54:39 -08001495 || (atoken != null && atoken.hiddenRequested)
Wale Ogunwale9d147902016-07-16 11:58:55 -07001496 || isParentWindowHidden()
Wale Ogunwalec48a3542016-02-19 15:18:45 -08001497 || (mAnimatingExit && !isAnimatingLw())
Craig Mautner0e415c62013-04-29 16:10:58 -07001498 || mDestroying;
Dianne Hackborncfbf7de2012-01-12 14:05:03 -08001499 }
1500
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001501 /**
1502 * Returns true if the window has a surface that it has drawn a
1503 * complete UI in to.
1504 */
Craig Mautnerccc9e9b2012-12-11 09:40:34 -08001505 public boolean isDrawFinishedLw() {
1506 return mHasSurface && !mDestroying &&
Wale Ogunwale9d147902016-07-16 11:58:55 -07001507 (mWinAnimator.mDrawState == COMMIT_DRAW_PENDING
1508 || mWinAnimator.mDrawState == READY_TO_SHOW
1509 || mWinAnimator.mDrawState == HAS_DRAWN);
Craig Mautnerccc9e9b2012-12-11 09:40:34 -08001510 }
1511
1512 /**
1513 * Returns true if the window has a surface that it has drawn a
1514 * complete UI in to.
1515 */
Adrian Roos76d2fe42015-07-09 14:54:08 -07001516 @Override
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001517 public boolean isDrawnLw() {
Craig Mautnerc8bc97e2012-04-02 12:54:54 -07001518 return mHasSurface && !mDestroying &&
Wale Ogunwale571771c2016-08-26 13:18:50 -07001519 (mWinAnimator.mDrawState == READY_TO_SHOW || mWinAnimator.mDrawState == HAS_DRAWN);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001520 }
1521
1522 /**
1523 * Return true if the window is opaque and fully drawn. This indicates
1524 * it may obscure windows behind it.
1525 */
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001526 private boolean isOpaqueDrawn() {
Chong Zhang66bf071d2016-02-05 14:42:36 -08001527 // When there is keyguard, wallpaper could be placed over the secure app
1528 // window but invisible. We need to check wallpaper visibility explicitly
1529 // to determine if it's occluding apps.
1530 return ((!mIsWallpaper && mAttrs.format == PixelFormat.OPAQUE)
1531 || (mIsWallpaper && mWallpaperVisible))
Craig Mautnera2c77052012-03-26 12:14:43 -07001532 && isDrawnLw() && mWinAnimator.mAnimation == null
Craig Mautner59431632012-04-04 11:56:44 -07001533 && (mAppToken == null || mAppToken.mAppAnimator.animation == null);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001534 }
1535
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001536 @Override
1537 void onMovedByResize() {
1538 if (DEBUG_RESIZE) Slog.d(TAG, "onMovedByResize: Moving " + this);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001539 mMovedByResize = true;
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001540 super.onMovedByResize();
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001541 }
1542
1543 boolean onAppVisibilityChanged(boolean visible, boolean runningAppAnimation) {
1544 boolean changed = false;
1545
1546 for (int i = mChildren.size() - 1; i >= 0; --i) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07001547 final WindowState c = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001548 changed |= c.onAppVisibilityChanged(visible, runningAppAnimation);
1549 }
1550
1551 if (mAttrs.type == TYPE_APPLICATION_STARTING) {
1552 // Starting window that's exiting will be removed when the animation finishes.
1553 // Mark all relevant flags for that onExitAnimationDone will proceed all the way
1554 // to actually remove it.
1555 if (!visible && isVisibleNow() && mAppToken.mAppAnimator.isAnimating()) {
1556 mAnimatingExit = true;
1557 mRemoveOnExit = true;
1558 mWindowRemovalAllowed = true;
1559 }
1560 return changed;
1561 }
1562
Robert Carrd5c7dd62017-03-08 10:39:30 -08001563 // Next up we will notify the client that it's visibility has changed.
1564 // We need to prevent it from destroying child surfaces until
1565 // the animation has finished.
1566 if (!visible && isVisibleNow()) {
1567 mWinAnimator.detachChildren();
1568 }
1569
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001570 if (visible != isVisibleNow()) {
1571 if (!runningAppAnimation) {
1572 final AccessibilityController accessibilityController =
1573 mService.mAccessibilityController;
1574 final int winTransit = visible ? TRANSIT_ENTER : TRANSIT_EXIT;
1575 mWinAnimator.applyAnimationLocked(winTransit, visible);
1576 //TODO (multidisplay): Magnification is supported only for the default
1577 if (accessibilityController != null && getDisplayId() == DEFAULT_DISPLAY) {
1578 accessibilityController.onWindowTransitionLocked(this, winTransit);
1579 }
1580 }
1581 changed = true;
1582 setDisplayLayoutNeeded();
1583 }
1584
1585 return changed;
1586 }
1587
1588 boolean onSetAppExiting() {
1589 final DisplayContent displayContent = getDisplayContent();
1590 boolean changed = false;
1591
1592 if (isVisibleNow()) {
1593 mWinAnimator.applyAnimationLocked(TRANSIT_EXIT, false);
1594 //TODO (multidisplay): Magnification is supported only for the default
1595 if (mService.mAccessibilityController != null && isDefaultDisplay()) {
1596 mService.mAccessibilityController.onWindowTransitionLocked(this, TRANSIT_EXIT);
1597 }
1598 changed = true;
1599 if (displayContent != null) {
Wale Ogunwale2b06bfc2016-09-28 14:17:05 -07001600 displayContent.setLayoutNeeded();
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001601 }
1602 }
1603
1604 for (int i = mChildren.size() - 1; i >= 0; --i) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07001605 final WindowState c = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001606 changed |= c.onSetAppExiting();
1607 }
1608
1609 return changed;
1610 }
1611
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001612 @Override
1613 void onResize() {
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001614 // Some windows won't go through the resizing process, if they don't have a surface, so
1615 // destroy all saved surfaces here.
1616 destroySavedSurface();
1617
1618 final ArrayList<WindowState> resizingWindows = mService.mResizingWindows;
1619 if (mHasSurface && !resizingWindows.contains(this)) {
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001620 if (DEBUG_RESIZE) Slog.d(TAG, "onResize: Resizing " + this);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001621 resizingWindows.add(this);
1622
1623 // If we are not drag resizing, force recreating of a new surface so updating
1624 // the content and positioning that surface will be in sync.
1625 //
1626 // As we use this flag as a hint to freeze surface boundary updates, we'd like to only
1627 // apply this to TYPE_BASE_APPLICATION, windows of TYPE_APPLICATION like dialogs, could
1628 // appear to not be drag resizing while they resize, but we'd still like to manipulate
1629 // their frame to update crop, etc...
1630 //
1631 // Anyway we don't need to synchronize position and content updates for these
1632 // windows since they aren't at the base layer and could be moved around anyway.
1633 if (!computeDragResizing() && mAttrs.type == TYPE_BASE_APPLICATION &&
Robert Carr8f0a3ad2017-02-15 19:30:28 -08001634 !mWinAnimator.isForceScaled() && !isGoneForLayoutLw() &&
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001635 !getTask().inPinnedWorkspace()) {
1636 setResizedWhileNotDragResizing(true);
1637 }
1638 }
1639 if (isGoneForLayoutLw()) {
1640 mResizedWhileGone = true;
1641 }
1642
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001643 super.onResize();
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001644 }
1645
1646 void onUnfreezeBounds() {
1647 for (int i = mChildren.size() - 1; i >= 0; --i) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07001648 final WindowState c = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001649 c.onUnfreezeBounds();
1650 }
1651
1652 if (!mHasSurface) {
1653 return;
1654 }
1655
1656 mLayoutNeeded = true;
1657 setDisplayLayoutNeeded();
1658 if (!mService.mResizingWindows.contains(this)) {
1659 mService.mResizingWindows.add(this);
1660 }
1661 }
1662
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001663 /**
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001664 * If the window has moved due to its containing content frame changing, then notify the
1665 * listeners and optionally animate it. Simply checking a change of position is not enough,
1666 * because being move due to dock divider is not a trigger for animation.
1667 */
1668 void handleWindowMovedIfNeeded() {
1669 if (!hasMoved()) {
1670 return;
1671 }
1672
1673 // Frame has moved, containing content frame has also moved, and we're not currently
1674 // animating... let's do something.
1675 final int left = mFrame.left;
1676 final int top = mFrame.top;
1677 final Task task = getTask();
1678 final boolean adjustedForMinimizedDockOrIme = task != null
1679 && (task.mStack.isAdjustedForMinimizedDockedStack()
1680 || task.mStack.isAdjustedForIme());
Adrian Roose94c15c2017-05-09 13:17:54 -07001681 if (mService.okToAnimate()
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001682 && (mAttrs.privateFlags & PRIVATE_FLAG_NO_MOVE_ANIMATION) == 0
1683 && !isDragResizing() && !adjustedForMinimizedDockOrIme
1684 && (task == null || getTask().mStack.hasMovementAnimations())
1685 && !mWinAnimator.mLastHidden) {
1686 mWinAnimator.setMoveAnimation(left, top);
1687 }
1688
1689 //TODO (multidisplay): Accessibility supported only for the default display.
1690 if (mService.mAccessibilityController != null
Andrii Kulian5406e7a2016-10-21 11:55:23 -07001691 && getDisplayContent().getDisplayId() == DEFAULT_DISPLAY) {
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001692 mService.mAccessibilityController.onSomeWindowResizedOrMovedLocked();
1693 }
1694
1695 try {
1696 mClient.moved(left, top);
1697 } catch (RemoteException e) {
1698 }
1699 mMovedByResize = false;
1700 }
1701
1702 /**
Craig Mautner4557c082015-04-27 13:07:40 -07001703 * Return whether this window has moved. (Only makes
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001704 * sense to call from performLayoutAndPlaceSurfacesLockedInner().)
1705 */
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001706 private boolean hasMoved() {
Chong Zhangbd0d9372015-12-28 15:18:29 -08001707 return mHasSurface && (mContentChanged || mMovedByResize)
Robert Carrc67c2a92016-09-22 13:25:45 -07001708 && !mAnimatingExit
Chong Zhangbd0d9372015-12-28 15:18:29 -08001709 && (mFrame.top != mLastFrame.top || mFrame.left != mLastFrame.left)
Wale Ogunwalee4343ef2016-07-19 08:00:46 -07001710 && (!mIsChildWindow || !getParentWindow().hasMoved());
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001711 }
1712
Wale Ogunwaleca9e0612016-12-02 07:45:59 -08001713 boolean isObscuringDisplay() {
Chong Zhang0abb20f2015-11-19 14:17:31 -08001714 Task task = getTask();
Wale Ogunwale14a3fb92016-09-11 15:19:05 -07001715 if (task != null && task.mStack != null && !task.mStack.fillsParent()) {
Chong Zhang0abb20f2015-11-19 14:17:31 -08001716 return false;
1717 }
Wale Ogunwaleca9e0612016-12-02 07:45:59 -08001718 return isOpaqueDrawn() && fillsDisplay();
Chong Zhang0abb20f2015-11-19 14:17:31 -08001719 }
1720
Wale Ogunwaleca9e0612016-12-02 07:45:59 -08001721 boolean fillsDisplay() {
1722 final DisplayInfo displayInfo = getDisplayInfo();
Chong Zhang0abb20f2015-11-19 14:17:31 -08001723 return mFrame.left <= 0 && mFrame.top <= 0
1724 && mFrame.right >= displayInfo.appWidth && mFrame.bottom >= displayInfo.appHeight;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001725 }
1726
Andrii Kulian9d91ca62016-09-29 22:28:09 -07001727 /** Returns true if last applied config was not yet requested by client. */
Craig Mautner812d2ca2012-09-27 15:35:34 -07001728 boolean isConfigChanged() {
Andrii Kulian9d91ca62016-09-29 22:28:09 -07001729 return !mLastReportedConfiguration.equals(getConfiguration());
Craig Mautner812d2ca2012-09-27 15:35:34 -07001730 }
1731
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001732 void onWindowReplacementTimeout() {
1733 if (mWillReplaceWindow) {
1734 // Since the window already timed out, remove it immediately now.
Wale Ogunwale571771c2016-08-26 13:18:50 -07001735 // Use WindowState#removeImmediately() instead of WindowState#removeIfPossible(), as the latter
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001736 // delays removal on certain conditions, which will leave the stale window in the
1737 // stack and marked mWillReplaceWindow=false, so the window will never be removed.
1738 //
1739 // Also removes child windows.
Wale Ogunwale571771c2016-08-26 13:18:50 -07001740 removeImmediately();
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001741 } else {
1742 for (int i = mChildren.size() - 1; i >= 0; --i) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07001743 final WindowState c = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001744 c.onWindowReplacementTimeout();
1745 }
1746 }
1747 }
1748
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001749 @Override
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001750 void forceWindowsScaleableInTransaction(boolean force) {
1751 if (mWinAnimator != null && mWinAnimator.hasSurface()) {
1752 mWinAnimator.mSurfaceController.forceScaleableInTransaction(force);
1753 }
1754
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001755 super.forceWindowsScaleableInTransaction(force);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001756 }
1757
Wale Ogunwalee4343ef2016-07-19 08:00:46 -07001758 @Override
Wale Ogunwale571771c2016-08-26 13:18:50 -07001759 void removeImmediately() {
1760 super.removeImmediately();
Wale Ogunwalee4343ef2016-07-19 08:00:46 -07001761
Wale Ogunwaleadde52e2016-07-16 13:11:55 -07001762 if (mRemoved) {
1763 // Nothing to do.
Wale Ogunwale571771c2016-08-26 13:18:50 -07001764 if (DEBUG_ADD_REMOVE) Slog.v(TAG_WM,
1765 "WS.removeImmediately: " + this + " Already removed...");
Wale Ogunwaleadde52e2016-07-16 13:11:55 -07001766 return;
1767 }
1768
Wale Ogunwaleadde52e2016-07-16 13:11:55 -07001769 mRemoved = true;
1770
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001771 mWillReplaceWindow = false;
1772 if (mReplacementWindow != null) {
1773 mReplacementWindow.mSkipEnterAnimationForSeamlessReplacement = false;
1774 }
1775
Wale Ogunwaleae9adbf2016-10-18 15:17:06 -07001776 final DisplayContent dc = getDisplayContent();
Wale Ogunwaleadde52e2016-07-16 13:11:55 -07001777 if (mService.mInputMethodTarget == this) {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00001778 dc.computeImeTarget(true /* updateImeTarget */);
Wale Ogunwaleadde52e2016-07-16 13:11:55 -07001779 }
1780
1781 final int type = mAttrs.type;
1782 if (WindowManagerService.excludeWindowTypeFromTapOutTask(type)) {
Wale Ogunwaleae9adbf2016-10-18 15:17:06 -07001783 dc.mTapExcludedWindows.remove(this);
Wale Ogunwaleadde52e2016-07-16 13:11:55 -07001784 }
1785 mPolicy.removeWindowLw(this);
1786
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001787 disposeInputChannel();
Craig Mautner164d4bb2012-11-26 13:51:23 -08001788
Craig Mautner96868332012-12-04 14:29:11 -08001789 mWinAnimator.destroyDeferredSurfaceLocked();
1790 mWinAnimator.destroySurfaceLocked();
Wale Ogunwale943002b2017-02-15 19:34:01 -08001791 mSession.windowRemovedLocked();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001792 try {
1793 mClient.asBinder().unlinkToDeath(mDeathRecipient, 0);
1794 } catch (RuntimeException e) {
1795 // Ignore if it has already been removed (usually because
1796 // we are doing this as part of processing a death note.)
1797 }
Wale Ogunwaleadde52e2016-07-16 13:11:55 -07001798
1799 mService.postWindowRemoveCleanupLocked(this);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001800 }
Jeff Browncc4f7db2011-08-30 20:34:48 -07001801
Wale Ogunwale571771c2016-08-26 13:18:50 -07001802 @Override
Wale Ogunwale92fc3722016-08-05 12:19:08 -07001803 void removeIfPossible() {
Wale Ogunwale571771c2016-08-26 13:18:50 -07001804 super.removeIfPossible();
Wale Ogunwale92fc3722016-08-05 12:19:08 -07001805 removeIfPossible(false /*keepVisibleDeadWindow*/);
1806 }
1807
Wale Ogunwale571771c2016-08-26 13:18:50 -07001808 private void removeIfPossible(boolean keepVisibleDeadWindow) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001809 mWindowRemovalAllowed = true;
1810 if (DEBUG_ADD_REMOVE) Slog.v(TAG,
1811 "removeIfPossible: " + this + " callers=" + Debug.getCallers(5));
1812
1813 final boolean startingWindow = mAttrs.type == TYPE_APPLICATION_STARTING;
1814 if (startingWindow && DEBUG_STARTING_WINDOW) Slog.d(TAG_WM,
1815 "Starting window removed " + this);
1816
1817 if (localLOGV || DEBUG_FOCUS || DEBUG_FOCUS_LIGHT && this == mService.mCurrentFocus)
1818 Slog.v(TAG_WM, "Remove " + this + " client="
1819 + Integer.toHexString(System.identityHashCode(mClient.asBinder()))
1820 + ", surfaceController=" + mWinAnimator.mSurfaceController + " Callers="
1821 + Debug.getCallers(5));
1822
1823 final long origId = Binder.clearCallingIdentity();
1824
1825 disposeInputChannel();
1826
1827 if (DEBUG_APP_TRANSITIONS) Slog.v(TAG_WM, "Remove " + this
1828 + ": mSurfaceController=" + mWinAnimator.mSurfaceController
1829 + " mAnimatingExit=" + mAnimatingExit
1830 + " mRemoveOnExit=" + mRemoveOnExit
1831 + " mHasSurface=" + mHasSurface
1832 + " surfaceShowing=" + mWinAnimator.getShown()
1833 + " isAnimationSet=" + mWinAnimator.isAnimationSet()
1834 + " app-animation="
1835 + (mAppToken != null ? mAppToken.mAppAnimator.animation : null)
1836 + " mWillReplaceWindow=" + mWillReplaceWindow
1837 + " inPendingTransaction="
1838 + (mAppToken != null ? mAppToken.inPendingTransaction : false)
1839 + " mDisplayFrozen=" + mService.mDisplayFrozen
1840 + " callers=" + Debug.getCallers(6));
1841
1842 // Visibility of the removed window. Will be used later to update orientation later on.
1843 boolean wasVisible = false;
1844
Andrii Kulian5406e7a2016-10-21 11:55:23 -07001845 final int displayId = getDisplayId();
1846
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001847 // First, see if we need to run an animation. If we do, we have to hold off on removing the
1848 // window until the animation is done. If the display is frozen, just remove immediately,
1849 // since the animation wouldn't be seen.
Adrian Roose94c15c2017-05-09 13:17:54 -07001850 if (mHasSurface && mService.okToAnimate()) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001851 if (mWillReplaceWindow) {
1852 // This window is going to be replaced. We need to keep it around until the new one
1853 // gets added, then we will get rid of this one.
1854 if (DEBUG_ADD_REMOVE) Slog.v(TAG_WM,
1855 "Preserving " + this + " until the new one is " + "added");
1856 // TODO: We are overloading mAnimatingExit flag to prevent the window state from
1857 // been removed. We probably need another flag to indicate that window removal
1858 // should be deffered vs. overloading the flag that says we are playing an exit
1859 // animation.
1860 mAnimatingExit = true;
1861 mReplacingRemoveRequested = true;
1862 Binder.restoreCallingIdentity(origId);
1863 return;
1864 }
1865
1866 if (isAnimatingWithSavedSurface() && !mAppToken.allDrawnExcludingSaved) {
1867 // We started enter animation early with a saved surface, now the app asks to remove
1868 // this window. If we remove it now and the app is not yet drawn, we'll show a
1869 // flicker. Delay the removal now until it's really drawn.
1870 if (DEBUG_ADD_REMOVE) Slog.d(TAG_WM,
1871 "removeWindowLocked: delay removal of " + this + " due to early animation");
1872 // Do not set mAnimatingExit to true here, it will cause the surface to be hidden
1873 // immediately after the enter animation is done. If the app is not yet drawn then
1874 // it will show up as a flicker.
1875 setupWindowForRemoveOnExit();
1876 Binder.restoreCallingIdentity(origId);
1877 return;
1878 }
1879 // If we are not currently running the exit animation, we need to see about starting one
1880 wasVisible = isWinVisibleLw();
1881
1882 if (keepVisibleDeadWindow) {
1883 if (DEBUG_ADD_REMOVE) Slog.v(TAG_WM,
1884 "Not removing " + this + " because app died while it's visible");
1885
1886 mAppDied = true;
1887 setDisplayLayoutNeeded();
1888 mService.mWindowPlacerLocked.performSurfacePlacement();
1889
1890 // Set up a replacement input channel since the app is now dead.
1891 // We need to catch tapping on the dead window to restart the app.
1892 openInputChannel(null);
1893 mService.mInputMonitor.updateInputWindowsLw(true /*force*/);
1894
1895 Binder.restoreCallingIdentity(origId);
1896 return;
1897 }
1898
1899 if (wasVisible) {
1900 final int transit = (!startingWindow) ? TRANSIT_EXIT : TRANSIT_PREVIEW_DONE;
1901
1902 // Try starting an animation.
1903 if (mWinAnimator.applyAnimationLocked(transit, false)) {
1904 mAnimatingExit = true;
1905 }
1906 //TODO (multidisplay): Magnification is supported only for the default display.
Andrii Kulian5406e7a2016-10-21 11:55:23 -07001907 if (mService.mAccessibilityController != null && displayId == DEFAULT_DISPLAY) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001908 mService.mAccessibilityController.onWindowTransitionLocked(this, transit);
1909 }
1910 }
1911 final boolean isAnimating =
1912 mWinAnimator.isAnimationSet() && !mWinAnimator.isDummyAnimation();
1913 final boolean lastWindowIsStartingWindow = startingWindow && mAppToken != null
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001914 && mAppToken.isLastWindow(this);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001915 // We delay the removal of a window if it has a showing surface that can be used to run
1916 // exit animation and it is marked as exiting.
1917 // Also, If isn't the an animating starting window that is the last window in the app.
1918 // We allow the removal of the non-animating starting window now as there is no
1919 // additional window or animation that will trigger its removal.
1920 if (mWinAnimator.getShown() && mAnimatingExit
1921 && (!lastWindowIsStartingWindow || isAnimating)) {
1922 // The exit animation is running or should run... wait for it!
1923 if (DEBUG_ADD_REMOVE) Slog.v(TAG_WM,
1924 "Not removing " + this + " due to exit animation ");
1925 setupWindowForRemoveOnExit();
1926 if (mAppToken != null) {
1927 mAppToken.updateReportedVisibilityLocked();
1928 }
1929 Binder.restoreCallingIdentity(origId);
1930 return;
1931 }
1932 }
1933
Wale Ogunwale571771c2016-08-26 13:18:50 -07001934 removeImmediately();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001935 // Removing a visible window will effect the computed orientation
1936 // So just update orientation if needed.
Andrii Kulian5406e7a2016-10-21 11:55:23 -07001937 if (wasVisible && mService.updateOrientationFromAppTokensLocked(false, displayId)) {
1938 mService.mH.obtainMessage(SEND_NEW_CONFIGURATION, displayId).sendToTarget();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001939 }
1940 mService.updateFocusedWindowLocked(UPDATE_FOCUS_NORMAL, true /*updateInputWindows*/);
1941 Binder.restoreCallingIdentity(origId);
1942 }
1943
1944 private void setupWindowForRemoveOnExit() {
1945 mRemoveOnExit = true;
1946 setDisplayLayoutNeeded();
1947 // Request a focus update as this window's input channel is already gone. Otherwise
1948 // we could have no focused window in input manager.
1949 final boolean focusChanged = mService.updateFocusedWindowLocked(
1950 UPDATE_FOCUS_WILL_PLACE_SURFACES, false /*updateInputWindows*/);
1951 mService.mWindowPlacerLocked.performSurfacePlacement();
1952 if (focusChanged) {
1953 mService.mInputMonitor.updateInputWindowsLw(false /*force*/);
1954 }
1955 }
1956
Filip Gruszczynski10a80e02015-11-06 09:21:17 -08001957 void setHasSurface(boolean hasSurface) {
1958 mHasSurface = hasSurface;
1959 }
1960
Filip Gruszczynski92e432c2015-12-15 19:17:09 -08001961 int getAnimLayerAdjustment() {
Wale Ogunwale44fbdf52016-11-16 10:18:45 -08001962 if (mIsImWindow && mService.mInputMethodTarget != null) {
Wale Ogunwale455fac52016-07-21 07:24:49 -07001963 final AppWindowToken appToken = mService.mInputMethodTarget.mAppToken;
1964 if (appToken != null) {
Robert Carrdee1b3f2017-02-27 11:33:33 -08001965 return appToken.getAnimLayerAdjustment();
Wale Ogunwale455fac52016-07-21 07:24:49 -07001966 }
Filip Gruszczynski92e432c2015-12-15 19:17:09 -08001967 }
Wale Ogunwale455fac52016-07-21 07:24:49 -07001968
Robert Carrdee1b3f2017-02-27 11:33:33 -08001969 return mToken.getAnimLayerAdjustment();
Filip Gruszczynski92e432c2015-12-15 19:17:09 -08001970 }
1971
Wale Ogunwalec69694a2016-10-18 13:51:15 -07001972 int getSpecialWindowAnimLayerAdjustment() {
1973 int specialAdjustment = 0;
1974 if (mIsImWindow) {
1975 specialAdjustment = getDisplayContent().mInputMethodAnimLayerAdjustment;
1976 } else if (mIsWallpaper) {
Wale Ogunwale0303c572016-10-20 10:16:29 -07001977 specialAdjustment = getDisplayContent().mWallpaperController.getAnimLayerAdjustment();
Wale Ogunwalec69694a2016-10-18 13:51:15 -07001978 }
1979
1980 return mLayer + specialAdjustment;
1981 }
1982
Wale Ogunwale6213caa2016-12-02 16:47:15 +00001983 boolean canBeImeTarget() {
Wale Ogunwale805d9ec2016-12-07 12:22:08 -08001984 if (mIsImWindow) {
1985 // IME windows can't be IME targets. IME targets are required to be below the IME
1986 // windows and that wouldn't be possible if the IME window is its own target...silly.
1987 return false;
1988 }
1989
Winson Chung3d0a74a2017-07-12 12:37:19 -07001990 final boolean windowsAreFocusable = mAppToken == null || mAppToken.windowsAreFocusable();
Winson Chungb1549342017-07-11 09:59:56 -07001991 if (!windowsAreFocusable) {
1992 // This window can't be an IME target if the app's windows should not be focusable.
1993 return false;
1994 }
1995
Wale Ogunwale805d9ec2016-12-07 12:22:08 -08001996 final int fl = mAttrs.flags & (FLAG_NOT_FOCUSABLE | FLAG_ALT_FOCUSABLE_IM);
Wale Ogunwale6213caa2016-12-02 16:47:15 +00001997 final int type = mAttrs.type;
1998
Wale Ogunwale805d9ec2016-12-07 12:22:08 -08001999 // Can only be an IME target if both FLAG_NOT_FOCUSABLE and FLAG_ALT_FOCUSABLE_IM are set or
2000 // both are cleared...and not a starting window.
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002001 if (fl != 0 && fl != (FLAG_NOT_FOCUSABLE | FLAG_ALT_FOCUSABLE_IM)
2002 && type != TYPE_APPLICATION_STARTING) {
2003 return false;
2004 }
2005
2006 if (DEBUG_INPUT_METHOD) {
2007 Slog.i(TAG_WM, "isVisibleOrAdding " + this + ": " + isVisibleOrAdding());
2008 if (!isVisibleOrAdding()) {
2009 Slog.i(TAG_WM, " mSurfaceController=" + mWinAnimator.mSurfaceController
2010 + " relayoutCalled=" + mRelayoutCalled
2011 + " viewVis=" + mViewVisibility
2012 + " policyVis=" + mPolicyVisibility
2013 + " policyVisAfterAnim=" + mPolicyVisibilityAfterAnim
2014 + " parentHidden=" + isParentWindowHidden()
2015 + " exiting=" + mAnimatingExit + " destroying=" + mDestroying);
2016 if (mAppToken != null) {
2017 Slog.i(TAG_WM, " mAppToken.hiddenRequested=" + mAppToken.hiddenRequested);
2018 }
2019 }
2020 }
2021 return isVisibleOrAdding();
2022 }
2023
Filip Gruszczynski92e432c2015-12-15 19:17:09 -08002024 void scheduleAnimationIfDimming() {
Wale Ogunwale360a8bc2016-10-10 13:25:26 -07002025 final DisplayContent dc = getDisplayContent();
2026 if (dc == null) {
Filip Gruszczynski92e432c2015-12-15 19:17:09 -08002027 return;
2028 }
2029 final DimLayer.DimLayerUser dimLayerUser = getDimLayerUser();
Wale Ogunwale360a8bc2016-10-10 13:25:26 -07002030 if (dimLayerUser != null && dc.mDimLayerController.isDimming(dimLayerUser, mWinAnimator)) {
Filip Gruszczynski92e432c2015-12-15 19:17:09 -08002031 // Force an animation pass just to update the mDimLayer layer.
2032 mService.scheduleAnimationLocked();
2033 }
2034 }
2035
Chong Zhangacf11402015-11-04 16:23:10 -08002036 private final class DeadWindowEventReceiver extends InputEventReceiver {
2037 DeadWindowEventReceiver(InputChannel inputChannel) {
2038 super(inputChannel, mService.mH.getLooper());
2039 }
2040 @Override
Tarandeep Singhe1cfcf42017-07-10 18:50:00 -07002041 public void onInputEvent(InputEvent event, int displayId) {
Chong Zhangacf11402015-11-04 16:23:10 -08002042 finishInputEvent(event, true);
2043 }
2044 }
2045 /**
2046 * Dummy event receiver for windows that died visible.
2047 */
2048 private DeadWindowEventReceiver mDeadWindowEventReceiver;
2049
Chong Zhang112eb8c2015-11-02 11:17:00 -08002050 void openInputChannel(InputChannel outInputChannel) {
Jeff Browncc4f7db2011-08-30 20:34:48 -07002051 if (mInputChannel != null) {
2052 throw new IllegalStateException("Window already has an input channel.");
2053 }
Wale Ogunwale9adfe572016-09-08 20:43:58 -07002054 String name = getName();
Chong Zhang112eb8c2015-11-02 11:17:00 -08002055 InputChannel[] inputChannels = InputChannel.openInputChannelPair(name);
2056 mInputChannel = inputChannels[0];
2057 mClientChannel = inputChannels[1];
2058 mInputWindowHandle.inputChannel = inputChannels[0];
2059 if (outInputChannel != null) {
2060 mClientChannel.transferTo(outInputChannel);
2061 mClientChannel.dispose();
2062 mClientChannel = null;
Chong Zhangacf11402015-11-04 16:23:10 -08002063 } else {
2064 // If the window died visible, we setup a dummy input channel, so that taps
2065 // can still detected by input monitor channel, and we can relaunch the app.
2066 // Create dummy event receiver that simply reports all events as handled.
2067 mDeadWindowEventReceiver = new DeadWindowEventReceiver(mClientChannel);
Chong Zhang112eb8c2015-11-02 11:17:00 -08002068 }
2069 mService.mInputManager.registerInputChannel(mInputChannel, mInputWindowHandle);
Jeff Browncc4f7db2011-08-30 20:34:48 -07002070 }
2071
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002072 void disposeInputChannel() {
Chong Zhangacf11402015-11-04 16:23:10 -08002073 if (mDeadWindowEventReceiver != null) {
2074 mDeadWindowEventReceiver.dispose();
2075 mDeadWindowEventReceiver = null;
2076 }
2077
2078 // unregister server channel first otherwise it complains about broken channel
2079 if (mInputChannel != null) {
2080 mService.mInputManager.unregisterInputChannel(mInputChannel);
2081 mInputChannel.dispose();
2082 mInputChannel = null;
2083 }
Chong Zhang112eb8c2015-11-02 11:17:00 -08002084 if (mClientChannel != null) {
2085 mClientChannel.dispose();
2086 mClientChannel = null;
2087 }
Jeff Browncc4f7db2011-08-30 20:34:48 -07002088 mInputWindowHandle.inputChannel = null;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002089 }
2090
Chong Zhang112eb8c2015-11-02 11:17:00 -08002091 void applyDimLayerIfNeeded() {
Chong Zhangeb917322015-11-10 14:05:40 -08002092 // When the app is terminated (eg. from Recents), the task might have already been
2093 // removed with the window pending removal. Don't apply dim in such cases, as there
2094 // will be no more updateDimLayer() calls, which leaves the dimlayer invalid.
2095 final AppWindowToken token = mAppToken;
2096 if (token != null && token.removed) {
2097 return;
2098 }
2099
Wale Ogunwale360a8bc2016-10-10 13:25:26 -07002100 final DisplayContent dc = getDisplayContent();
Wale Ogunwalec48a3542016-02-19 15:18:45 -08002101 if (!mAnimatingExit && mAppDied) {
Chong Zhang112eb8c2015-11-02 11:17:00 -08002102 // If app died visible, apply a dim over the window to indicate that it's inactive
Wale Ogunwale360a8bc2016-10-10 13:25:26 -07002103 dc.mDimLayerController.applyDimAbove(getDimLayerUser(), mWinAnimator);
Chong Zhang112eb8c2015-11-02 11:17:00 -08002104 } else if ((mAttrs.flags & FLAG_DIM_BEHIND) != 0
Jorim Jaggic6ae42a2017-05-08 23:42:02 +02002105 && dc != null && !mAnimatingExit && isVisible()) {
Wale Ogunwale360a8bc2016-10-10 13:25:26 -07002106 dc.mDimLayerController.applyDimBehind(getDimLayerUser(), mWinAnimator);
Filip Gruszczynski4501d232015-09-02 13:00:02 -07002107 }
2108 }
2109
Wale Ogunwale360a8bc2016-10-10 13:25:26 -07002110 private DimLayer.DimLayerUser getDimLayerUser() {
Filip Gruszczynski0689ae92015-10-01 12:30:31 -07002111 Task task = getTask();
2112 if (task != null) {
2113 return task;
2114 }
2115 return getStack();
2116 }
2117
Wale Ogunwale9bc47732016-08-10 14:44:22 -07002118 /** Returns true if the replacement window was removed. */
2119 boolean removeReplacedWindowIfNeeded(WindowState replacement) {
2120 if (mWillReplaceWindow && mReplacementWindow == replacement && replacement.hasDrawnLw()) {
2121 replacement.mSkipEnterAnimationForSeamlessReplacement = false;
2122 removeReplacedWindow();
2123 return true;
2124 }
2125
2126 for (int i = mChildren.size() - 1; i >= 0; --i) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07002127 final WindowState c = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07002128 if (c.removeReplacedWindowIfNeeded(replacement)) {
2129 return true;
2130 }
2131 }
2132 return false;
2133 }
2134
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002135 private void removeReplacedWindow() {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07002136 if (DEBUG_ADD_REMOVE) Slog.d(TAG, "Removing replaced window: " + this);
2137 if (isDimming()) {
2138 transferDimToReplacement();
Robert Carra1eb4392015-12-10 12:43:51 -08002139 }
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07002140 mWillReplaceWindow = false;
2141 mAnimateReplacingWindow = false;
2142 mReplacingRemoveRequested = false;
Wale Ogunwale9bc47732016-08-10 14:44:22 -07002143 mReplacementWindow = null;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07002144 if (mAnimatingExit || !mAnimateReplacingWindow) {
Wale Ogunwale571771c2016-08-26 13:18:50 -07002145 removeImmediately();
Filip Gruszczynski76cc44f2015-09-03 16:03:10 -07002146 }
2147 }
2148
Wale Ogunwale9bc47732016-08-10 14:44:22 -07002149 boolean setReplacementWindowIfNeeded(WindowState replacementCandidate) {
2150 boolean replacementSet = false;
2151
2152 if (mWillReplaceWindow && mReplacementWindow == null
2153 && getWindowTag().toString().equals(replacementCandidate.getWindowTag().toString())) {
2154
2155 mReplacementWindow = replacementCandidate;
2156 replacementCandidate.mSkipEnterAnimationForSeamlessReplacement = !mAnimateReplacingWindow;
2157 replacementSet = true;
2158 }
2159
2160 for (int i = mChildren.size() - 1; i >= 0; --i) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07002161 final WindowState c = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07002162 replacementSet |= c.setReplacementWindowIfNeeded(replacementCandidate);
2163 }
2164
2165 return replacementSet;
2166 }
2167
Filip Gruszczynskie92179d2015-09-26 16:12:30 -07002168 void setDisplayLayoutNeeded() {
Wale Ogunwale360a8bc2016-10-10 13:25:26 -07002169 final DisplayContent dc = getDisplayContent();
2170 if (dc != null) {
2171 dc.setLayoutNeeded();
Filip Gruszczynskie92179d2015-09-26 16:12:30 -07002172 }
2173 }
2174
Robert Carrfed10072016-05-26 11:48:49 -07002175 // TODO: Strange usage of word workspace here and above.
2176 boolean inPinnedWorkspace() {
2177 final Task task = getTask();
2178 return task != null && task.inPinnedWorkspace();
2179 }
2180
Chong Zhang5117e272016-05-03 12:47:34 -07002181 void applyAdjustForImeIfNeeded() {
2182 final Task task = getTask();
2183 if (task != null && task.mStack != null && task.mStack.isAdjustedForIme()) {
2184 task.mStack.applyAdjustForImeIfNeeded(task);
2185 }
2186 }
2187
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002188 @Override
2189 void switchUser() {
2190 super.switchUser();
2191 if (isHiddenFromUserLocked()) {
2192 if (DEBUG_VISIBILITY) Slog.w(TAG_WM, "user changing, hiding " + this
2193 + ", attrs=" + mAttrs.type + ", belonging to " + mOwnerUid);
2194 hideLw(false);
2195 }
2196 }
2197
Wale Ogunwale053c8e42015-11-16 14:27:21 -08002198 int getTouchableRegion(Region region, int flags) {
2199 final boolean modal = (flags & (FLAG_NOT_TOUCH_MODAL | FLAG_NOT_FOCUSABLE)) == 0;
Filip Gruszczynski9cac3b42015-10-30 14:20:37 -07002200 if (modal && mAppToken != null) {
2201 // Limit the outer touch to the activity stack region.
Wale Ogunwale053c8e42015-11-16 14:27:21 -08002202 flags |= FLAG_NOT_TOUCH_MODAL;
Chong Zhang4c9ba52a2015-11-10 18:36:33 -08002203 // If this is a modal window we need to dismiss it if it's not full screen and the
2204 // touch happens outside of the frame that displays the content. This means we
2205 // need to intercept touches outside of that window. The dim layer user
2206 // associated with the window (task or stack) will give us the good bounds, as
2207 // they would be used to display the dim layer.
2208 final DimLayer.DimLayerUser dimLayerUser = getDimLayerUser();
2209 if (dimLayerUser != null) {
2210 dimLayerUser.getDimBounds(mTmpRect);
Filip Gruszczynski9cac3b42015-10-30 14:20:37 -07002211 } else {
Chong Zhang4c9ba52a2015-11-10 18:36:33 -08002212 getVisibleBounds(mTmpRect);
2213 }
2214 if (inFreeformWorkspace()) {
Filip Gruszczynski9cac3b42015-10-30 14:20:37 -07002215 // For freeform windows we the touch region to include the whole surface for the
2216 // shadows.
Chong Zhang4c9ba52a2015-11-10 18:36:33 -08002217 final DisplayMetrics displayMetrics = getDisplayContent().getDisplayMetrics();
2218 final int delta = WindowManagerService.dipToPixel(
2219 RESIZE_HANDLE_WIDTH_IN_DP, displayMetrics);
2220 mTmpRect.inset(-delta, -delta);
Filip Gruszczynski9cac3b42015-10-30 14:20:37 -07002221 }
2222 region.set(mTmpRect);
Wale Ogunwale053c8e42015-11-16 14:27:21 -08002223 cropRegionToStackBoundsIfNeeded(region);
Filip Gruszczynski9cac3b42015-10-30 14:20:37 -07002224 } else {
2225 // Not modal or full screen modal
2226 getTouchableRegion(region);
2227 }
2228 return flags;
2229 }
2230
Filip Gruszczynski14b4e572015-11-03 15:53:55 -08002231 void checkPolicyVisibilityChange() {
2232 if (mPolicyVisibility != mPolicyVisibilityAfterAnim) {
2233 if (DEBUG_VISIBILITY) {
2234 Slog.v(TAG, "Policy visibility changing after anim in " +
2235 mWinAnimator + ": " + mPolicyVisibilityAfterAnim);
2236 }
2237 mPolicyVisibility = mPolicyVisibilityAfterAnim;
Filip Gruszczynski63a35e22015-11-05 15:38:59 -08002238 setDisplayLayoutNeeded();
Filip Gruszczynski14b4e572015-11-03 15:53:55 -08002239 if (!mPolicyVisibility) {
2240 if (mService.mCurrentFocus == this) {
2241 if (DEBUG_FOCUS_LIGHT) Slog.i(TAG,
2242 "setAnimationLocked: setting mFocusMayChange true");
2243 mService.mFocusMayChange = true;
2244 }
2245 // Window is no longer visible -- make sure if we were waiting
2246 // for it to be displayed before enabling the display, that
2247 // we allow the display to be enabled now.
2248 mService.enableScreenIfNeededLocked();
2249 }
2250 }
2251 }
2252
2253 void setRequestedSize(int requestedWidth, int requestedHeight) {
2254 if ((mRequestedWidth != requestedWidth || mRequestedHeight != requestedHeight)) {
2255 mLayoutNeeded = true;
2256 mRequestedWidth = requestedWidth;
2257 mRequestedHeight = requestedHeight;
2258 }
2259 }
2260
Bryce Leef858b572017-06-29 14:03:33 -07002261 void prepareWindowToDisplayDuringRelayout(boolean wasVisible) {
Bryce Leeae73ba42017-05-05 09:58:25 -07002262 // We need to turn on screen regardless of visibility.
Filip Gruszczynski84cc5e32015-11-03 18:05:47 -08002263 if ((mAttrs.flags & FLAG_TURN_SCREEN_ON) != 0) {
2264 if (DEBUG_VISIBILITY) Slog.v(TAG, "Relayout window turning screen on: " + this);
2265 mTurnOnScreen = true;
2266 }
Bryce Leeae73ba42017-05-05 09:58:25 -07002267
2268 // If we were already visible, skip rest of preparation.
2269 if (wasVisible) {
2270 if (DEBUG_VISIBILITY) Slog.v(TAG,
2271 "Already visible and does not turn on screen, skip preparing: " + this);
2272 return;
2273 }
2274
2275 if ((mAttrs.softInputMode & SOFT_INPUT_MASK_ADJUST)
2276 == SOFT_INPUT_ADJUST_RESIZE) {
2277 mLayoutNeeded = true;
2278 }
2279
Adrian Roose94c15c2017-05-09 13:17:54 -07002280 if (isDrawnLw() && mService.okToAnimate()) {
Bryce Leeae73ba42017-05-05 09:58:25 -07002281 mWinAnimator.applyEnterAnimationLocked();
2282 }
Bryce Leef858b572017-06-29 14:03:33 -07002283 }
Bryce Leeae73ba42017-05-05 09:58:25 -07002284
Bryce Leef858b572017-06-29 14:03:33 -07002285 void getMergedConfiguration(MergedConfiguration outConfiguration) {
2286 final Configuration globalConfig = mService.mRoot.getConfiguration();
2287 final Configuration overrideConfig = getMergedOverrideConfiguration();
2288 outConfiguration.setConfiguration(globalConfig, overrideConfig);
2289 }
2290
2291 void setReportedConfiguration(MergedConfiguration config) {
2292 mLastReportedConfiguration.setTo(config.getMergedConfiguration());
Filip Gruszczynski84cc5e32015-11-03 18:05:47 -08002293 }
2294
2295 void adjustStartingWindowFlags() {
2296 if (mAttrs.type == TYPE_BASE_APPLICATION && mAppToken != null
2297 && mAppToken.startingWindow != null) {
2298 // Special handling of starting window over the base
2299 // window of the app: propagate lock screen flags to it,
2300 // to provide the correct semantics while starting.
2301 final int mask = FLAG_SHOW_WHEN_LOCKED | FLAG_DISMISS_KEYGUARD
2302 | FLAG_ALLOW_LOCK_WHILE_SCREEN_ON;
2303 WindowManager.LayoutParams sa = mAppToken.startingWindow.mAttrs;
2304 sa.flags = (sa.flags & ~mask) | (mAttrs.flags & mask);
2305 }
2306 }
2307
2308 void setWindowScale(int requestedWidth, int requestedHeight) {
2309 final boolean scaledWindow = (mAttrs.flags & FLAG_SCALED) != 0;
2310
2311 if (scaledWindow) {
2312 // requested{Width|Height} Surface's physical size
2313 // attrs.{width|height} Size on screen
2314 // TODO: We don't check if attrs != null here. Is it implicitly checked?
2315 mHScale = (mAttrs.width != requestedWidth) ?
2316 (mAttrs.width / (float)requestedWidth) : 1.0f;
2317 mVScale = (mAttrs.height != requestedHeight) ?
2318 (mAttrs.height / (float)requestedHeight) : 1.0f;
2319 } else {
2320 mHScale = mVScale = 1;
2321 }
2322 }
2323
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002324 private class DeathRecipient implements IBinder.DeathRecipient {
Craig Mautnere8552142012-11-07 13:55:47 -08002325 @Override
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002326 public void binderDied() {
2327 try {
2328 synchronized(mService.mWindowMap) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07002329 final WindowState win = mService.windowForClientLocked(mSession, mClient, false);
Craig Mautnerd87946b2012-03-29 18:00:19 -07002330 Slog.i(TAG, "WIN DEATH: " + win);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002331 if (win != null) {
Wale Ogunwale1666e312016-12-16 11:27:18 -08002332 final DisplayContent dc = getDisplayContent();
Jorim Jaggi10abe2f2017-01-03 16:44:46 +01002333 if (win.mAppToken != null && win.mAppToken.findMainWindow() == win) {
2334 mService.mTaskSnapshotController.onAppDied(win.mAppToken);
2335 }
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07002336 win.removeIfPossible(shouldKeepVisibleDeadAppWindow());
Wale Ogunwalea9f9b372016-02-04 18:04:39 -08002337 if (win.mAttrs.type == TYPE_DOCK_DIVIDER) {
2338 // The owner of the docked divider died :( We reset the docked stack,
Jorim Jaggidcb68142016-02-09 21:51:30 -08002339 // just in case they have the divider at an unstable position. Better
2340 // also reset drag resizing state, because the owner can't do it
2341 // anymore.
Wale Ogunwale1666e312016-12-16 11:27:18 -08002342 final TaskStack stack = dc.getDockedStackIgnoringVisibility();
Wale Ogunwalea9f9b372016-02-04 18:04:39 -08002343 if (stack != null) {
2344 stack.resetDockedStackToMiddle();
2345 }
Jorim Jaggidcb68142016-02-09 21:51:30 -08002346 mService.setDockedStackResizing(false);
Wale Ogunwalea9f9b372016-02-04 18:04:39 -08002347 }
Craig Mautnerb3b36ba2013-05-20 13:21:10 -07002348 } else if (mHasSurface) {
Craig Mautnera99764e2013-03-06 10:22:16 -08002349 Slog.e(TAG, "!!! LEAK !!! Window removed but surface still valid.");
Wale Ogunwale92fc3722016-08-05 12:19:08 -07002350 WindowState.this.removeIfPossible();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002351 }
2352 }
2353 } catch (IllegalArgumentException ex) {
Wale Ogunwalee42d0e12016-05-02 16:40:59 -07002354 // This will happen if the window has already been removed.
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002355 }
2356 }
2357 }
2358
Wale Ogunwale3fd20fe2016-01-23 17:41:28 -08002359 /**
2360 * Returns true if this window is visible and belongs to a dead app and shouldn't be removed,
2361 * because we want to preserve its location on screen to be re-activated later when the user
2362 * interacts with it.
2363 */
2364 boolean shouldKeepVisibleDeadAppWindow() {
Wale Ogunwale89973222017-04-23 18:39:45 -07002365 if (!isWinVisibleLw() || mAppToken == null || mAppToken.isClientHidden()) {
Wale Ogunwale3fd20fe2016-01-23 17:41:28 -08002366 // Not a visible app window or the app isn't dead.
2367 return false;
2368 }
2369
Wale Ogunwale51d1d912016-05-04 13:27:18 -07002370 if (mAttrs.token != mClient.asBinder()) {
2371 // The window was add by a client using another client's app token. We don't want to
2372 // keep the dead window around for this case since this is meant for 'real' apps.
2373 return false;
2374 }
2375
Wale Ogunwale3fd20fe2016-01-23 17:41:28 -08002376 if (mAttrs.type == TYPE_APPLICATION_STARTING) {
2377 // We don't keep starting windows since they were added by the window manager before
2378 // the app even launched.
2379 return false;
2380 }
2381
2382 final TaskStack stack = getStack();
2383 return stack != null && StackId.keepVisibleDeadAppWindowOnScreen(stack.mStackId);
2384 }
2385
Wale Ogunwaled045c822015-12-02 09:14:28 -08002386 /** @return true if this window desires key events. */
2387 boolean canReceiveKeys() {
Craig Mautner58106812012-12-28 12:27:40 -08002388 return isVisibleOrAdding()
Chong Zhange292eb32016-05-21 09:23:55 -07002389 && (mViewVisibility == View.VISIBLE) && !mRemoveOnExit
Wale Ogunwaled045c822015-12-02 09:14:28 -08002390 && ((mAttrs.flags & WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE) == 0)
Jorim Jaggib72c9ad2016-04-11 18:27:58 -07002391 && (mAppToken == null || mAppToken.windowsAreFocusable())
Matthew Nge15352e2016-12-20 15:36:29 -08002392 && !canReceiveTouchInput();
2393 }
2394
2395 /** @return true if this window desires touch events. */
2396 boolean canReceiveTouchInput() {
Bryce Lee6d410262017-02-28 15:30:17 -08002397 return mAppToken != null && mAppToken.getTask() != null
2398 && mAppToken.getTask().mStack.shouldIgnoreInput();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002399 }
2400
Craig Mautner749a7bb2012-04-02 13:49:53 -07002401 @Override
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002402 public boolean hasDrawnLw() {
Craig Mautner749a7bb2012-04-02 13:49:53 -07002403 return mWinAnimator.mDrawState == WindowStateAnimator.HAS_DRAWN;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002404 }
2405
Craig Mautner749a7bb2012-04-02 13:49:53 -07002406 @Override
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002407 public boolean showLw(boolean doAnimation) {
2408 return showLw(doAnimation, true);
2409 }
2410
2411 boolean showLw(boolean doAnimation, boolean requestAnim) {
Craig Mautner5962b122012-10-05 14:45:52 -07002412 if (isHiddenFromUserLocked()) {
Craig Mautner9dc52bc2012-08-06 14:15:42 -07002413 return false;
2414 }
Dianne Hackbornb6b23ec2013-02-11 19:29:06 -08002415 if (!mAppOpVisibility) {
2416 // Being hidden due to app op request.
2417 return false;
2418 }
Svetoslav Ganovaa076532016-08-01 19:16:43 -07002419 if (mPermanentlyHidden) {
2420 // Permanently hidden until the app exists as apps aren't prepared
2421 // to handle their windows being removed from under them.
2422 return false;
2423 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002424 if (mPolicyVisibility && mPolicyVisibilityAfterAnim) {
Craig Mautnere32c3072012-03-12 15:25:35 -07002425 // Already showing.
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002426 return false;
2427 }
Craig Mautnerd87946b2012-03-29 18:00:19 -07002428 if (DEBUG_VISIBILITY) Slog.v(TAG, "Policy visibility true: " + this);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002429 if (doAnimation) {
Craig Mautnerd87946b2012-03-29 18:00:19 -07002430 if (DEBUG_VISIBILITY) Slog.v(TAG, "doAnimation: mPolicyVisibility="
Craig Mautnera2c77052012-03-26 12:14:43 -07002431 + mPolicyVisibility + " mAnimation=" + mWinAnimator.mAnimation);
Adrian Roose94c15c2017-05-09 13:17:54 -07002432 if (!mService.okToAnimate()) {
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002433 doAnimation = false;
Craig Mautnera2c77052012-03-26 12:14:43 -07002434 } else if (mPolicyVisibility && mWinAnimator.mAnimation == null) {
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002435 // Check for the case where we are currently visible and
2436 // not animating; we do not want to do animation at such a
2437 // point to become visible when we already are.
2438 doAnimation = false;
2439 }
2440 }
2441 mPolicyVisibility = true;
2442 mPolicyVisibilityAfterAnim = true;
2443 if (doAnimation) {
Craig Mautnerc2f9be02012-03-27 17:32:29 -07002444 mWinAnimator.applyAnimationLocked(WindowManagerPolicy.TRANSIT_ENTER, true);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002445 }
2446 if (requestAnim) {
Craig Mautner96868332012-12-04 14:29:11 -08002447 mService.scheduleAnimationLocked();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002448 }
Jorim Jaggic8c4a8e2017-04-04 15:09:51 +02002449 if ((mAttrs.flags & FLAG_NOT_FOCUSABLE) == 0) {
2450 mService.updateFocusedWindowLocked(UPDATE_FOCUS_NORMAL, false /* updateImWindows */);
2451 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002452 return true;
2453 }
2454
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002455 @Override
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002456 public boolean hideLw(boolean doAnimation) {
2457 return hideLw(doAnimation, true);
2458 }
2459
2460 boolean hideLw(boolean doAnimation, boolean requestAnim) {
2461 if (doAnimation) {
Adrian Roose94c15c2017-05-09 13:17:54 -07002462 if (!mService.okToAnimate()) {
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002463 doAnimation = false;
2464 }
2465 }
Wale Ogunwale9bc47732016-08-10 14:44:22 -07002466 boolean current = doAnimation ? mPolicyVisibilityAfterAnim : mPolicyVisibility;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002467 if (!current) {
Craig Mautnere32c3072012-03-12 15:25:35 -07002468 // Already hiding.
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002469 return false;
2470 }
2471 if (doAnimation) {
Craig Mautnerc2f9be02012-03-27 17:32:29 -07002472 mWinAnimator.applyAnimationLocked(WindowManagerPolicy.TRANSIT_EXIT, false);
Craig Mautnera2c77052012-03-26 12:14:43 -07002473 if (mWinAnimator.mAnimation == null) {
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002474 doAnimation = false;
2475 }
2476 }
Wale Ogunwale9bc47732016-08-10 14:44:22 -07002477 mPolicyVisibilityAfterAnim = false;
2478 if (!doAnimation) {
Craig Mautnerd87946b2012-03-29 18:00:19 -07002479 if (DEBUG_VISIBILITY) Slog.v(TAG, "Policy visibility false: " + this);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002480 mPolicyVisibility = false;
2481 // Window is no longer visible -- make sure if we were waiting
2482 // for it to be displayed before enabling the display, that
2483 // we allow the display to be enabled now.
2484 mService.enableScreenIfNeededLocked();
2485 if (mService.mCurrentFocus == this) {
Filip Gruszczynski14b4e572015-11-03 15:53:55 -08002486 if (DEBUG_FOCUS_LIGHT) Slog.i(TAG,
Craig Mautner58458122013-09-14 14:59:50 -07002487 "WindowState.hideLw: setting mFocusMayChange true");
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002488 mService.mFocusMayChange = true;
2489 }
2490 }
2491 if (requestAnim) {
Craig Mautner96868332012-12-04 14:29:11 -08002492 mService.scheduleAnimationLocked();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002493 }
Jorim Jaggic8c4a8e2017-04-04 15:09:51 +02002494 if (mService.mCurrentFocus == this) {
2495 mService.updateFocusedWindowLocked(UPDATE_FOCUS_NORMAL, false /* updateImWindows */);
2496 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002497 return true;
2498 }
2499
Craig Mautnerfb32c6e2013-02-12 15:08:44 -08002500 public void setAppOpVisibilityLw(boolean state) {
Dianne Hackbornb6b23ec2013-02-11 19:29:06 -08002501 if (mAppOpVisibility != state) {
2502 mAppOpVisibility = state;
2503 if (state) {
2504 // If the policy visibility had last been to hide, then this
2505 // will incorrectly show at this point since we lost that
2506 // information. Not a big deal -- for the windows that have app
2507 // ops modifies they should only be hidden by policy due to the
2508 // lock screen, and the user won't be changing this if locked.
2509 // Plus it will quickly be fixed the next time we do a layout.
Craig Mautnerfb32c6e2013-02-12 15:08:44 -08002510 showLw(true, true);
Dianne Hackbornb6b23ec2013-02-11 19:29:06 -08002511 } else {
Craig Mautnerfb32c6e2013-02-12 15:08:44 -08002512 hideLw(true, true);
Dianne Hackbornb6b23ec2013-02-11 19:29:06 -08002513 }
Dianne Hackbornb6b23ec2013-02-11 19:29:06 -08002514 }
Dianne Hackbornb6b23ec2013-02-11 19:29:06 -08002515 }
2516
Svetoslav Ganovaa076532016-08-01 19:16:43 -07002517 public void hidePermanentlyLw() {
2518 if (!mPermanentlyHidden) {
2519 mPermanentlyHidden = true;
2520 hideLw(true, true);
2521 }
2522 }
2523
Jeff Brownc2932a12014-11-20 18:04:05 -08002524 public void pokeDrawLockLw(long timeout) {
2525 if (isVisibleOrAdding()) {
2526 if (mDrawLock == null) {
2527 // We want the tag name to be somewhat stable so that it is easier to correlate
2528 // in wake lock statistics. So in particular, we don't want to include the
2529 // window's hash code as in toString().
Wale Ogunwalecad05a02015-09-25 10:41:44 -07002530 final CharSequence tag = getWindowTag();
Jeff Brownc2932a12014-11-20 18:04:05 -08002531 mDrawLock = mService.mPowerManager.newWakeLock(
2532 PowerManager.DRAW_WAKE_LOCK, "Window:" + tag);
2533 mDrawLock.setReferenceCounted(false);
2534 mDrawLock.setWorkSource(new WorkSource(mOwnerUid, mAttrs.packageName));
2535 }
2536 // Each call to acquire resets the timeout.
2537 if (DEBUG_POWER) {
2538 Slog.d(TAG, "pokeDrawLock: poking draw lock on behalf of visible window owned by "
2539 + mAttrs.packageName);
2540 }
2541 mDrawLock.acquire(timeout);
2542 } else if (DEBUG_POWER) {
2543 Slog.d(TAG, "pokeDrawLock: suppressed draw lock request for invisible window "
2544 + "owned by " + mAttrs.packageName);
2545 }
2546 }
2547
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002548 @Override
2549 public boolean isAlive() {
2550 return mClient.asBinder().isBinderAlive();
2551 }
2552
Craig Mautnera987d432012-10-11 14:07:58 -07002553 boolean isClosing() {
Wale Ogunwalec48a3542016-02-19 15:18:45 -08002554 return mAnimatingExit || (mService.mClosingApps.contains(mAppToken));
Craig Mautnera987d432012-10-11 14:07:58 -07002555 }
2556
Chong Zhangbef461f2015-10-27 11:38:24 -07002557 boolean isAnimatingWithSavedSurface() {
Chong Zhang92147042016-05-09 12:47:11 -07002558 return mAnimatingWithSavedSurface;
2559 }
2560
Wale Ogunwaled1c37912016-08-16 03:19:39 -07002561 @Override
Wale Ogunwale9bc47732016-08-10 14:44:22 -07002562 boolean isAnimating() {
2563 if (mWinAnimator.isAnimationSet() || mAnimatingExit) {
2564 return true;
2565 }
Wale Ogunwaled1c37912016-08-16 03:19:39 -07002566 return super.isAnimating();
Wale Ogunwale9bc47732016-08-10 14:44:22 -07002567 }
2568
Chong Zhang8e4bda92016-05-04 15:08:18 -07002569 boolean isAnimatingInvisibleWithSavedSurface() {
Wale Ogunwale9bc47732016-08-10 14:44:22 -07002570 if (mAnimatingWithSavedSurface
2571 && (mViewVisibility != View.VISIBLE || mWindowRemovalAllowed)) {
2572 return true;
2573 }
2574 for (int i = mChildren.size() - 1; i >= 0; --i) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07002575 final WindowState c = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07002576 if (c.isAnimatingInvisibleWithSavedSurface()) {
2577 return true;
2578 }
2579 }
2580 return false;
2581 }
2582
2583 void stopUsingSavedSurface() {
2584 for (int i = mChildren.size() - 1; i >= 0; --i) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07002585 final WindowState c = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07002586 c.stopUsingSavedSurface();
2587 }
2588
2589 if (!isAnimatingInvisibleWithSavedSurface()) {
2590 return;
2591 }
2592
2593 if (DEBUG_APP_TRANSITIONS || DEBUG_ANIM) Slog.d(TAG, "stopUsingSavedSurface: " + this);
2594 clearAnimatingWithSavedSurface();
2595 mDestroying = true;
2596 mWinAnimator.hide("stopUsingSavedSurface");
Wale Ogunwale0303c572016-10-20 10:16:29 -07002597 getDisplayContent().mWallpaperController.hideWallpapers(this);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07002598 }
2599
2600 void markSavedSurfaceExiting() {
2601 if (isAnimatingInvisibleWithSavedSurface()) {
2602 mAnimatingExit = true;
2603 mWinAnimator.mAnimating = true;
2604 }
2605 for (int i = mChildren.size() - 1; i >= 0; --i) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07002606 final WindowState c = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07002607 c.markSavedSurfaceExiting();
2608 }
2609 }
2610
2611 void addWinAnimatorToList(ArrayList<WindowStateAnimator> animators) {
2612 animators.add(mWinAnimator);
2613
2614 for (int i = mChildren.size() - 1; i >= 0; --i) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07002615 final WindowState c = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07002616 c.addWinAnimatorToList(animators);
2617 }
2618 }
2619
Wale Ogunwaled1c37912016-08-16 03:19:39 -07002620 void sendAppVisibilityToClients() {
2621 super.sendAppVisibilityToClients();
Wale Ogunwale9bc47732016-08-10 14:44:22 -07002622
Wale Ogunwale89973222017-04-23 18:39:45 -07002623 final boolean clientHidden = mAppToken.isClientHidden();
Wale Ogunwale9bc47732016-08-10 14:44:22 -07002624 if (mAttrs.type == TYPE_APPLICATION_STARTING && clientHidden) {
2625 // Don't hide the starting window.
2626 return;
2627 }
2628
Wale Ogunwale89973222017-04-23 18:39:45 -07002629 if (clientHidden) {
2630 // Once we are notifying the client that it's visibility has changed, we need to prevent
2631 // it from destroying child surfaces until the animation has finished. We do this by
2632 // detaching any surface control the client added from the client.
2633 for (int i = mChildren.size() - 1; i >= 0; --i) {
2634 final WindowState c = mChildren.get(i);
2635 c.mWinAnimator.detachChildren();
2636 }
2637
2638 mWinAnimator.detachChildren();
2639 }
2640
Wale Ogunwale9bc47732016-08-10 14:44:22 -07002641 try {
2642 if (DEBUG_VISIBILITY) Slog.v(TAG,
2643 "Setting visibility of " + this + ": " + (!clientHidden));
2644 mClient.dispatchAppVisibility(!clientHidden);
2645 } catch (RemoteException e) {
2646 }
Chong Zhang8e4bda92016-05-04 15:08:18 -07002647 }
2648
Chong Zhang92147042016-05-09 12:47:11 -07002649 public void setVisibleBeforeClientHidden() {
2650 mWasVisibleBeforeClientHidden |=
2651 (mViewVisibility == View.VISIBLE || mAnimatingWithSavedSurface);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07002652
Wale Ogunwaled1c37912016-08-16 03:19:39 -07002653 super.setVisibleBeforeClientHidden();
Chong Zhang92147042016-05-09 12:47:11 -07002654 }
2655
Wale Ogunwale9bc47732016-08-10 14:44:22 -07002656 public void clearWasVisibleBeforeClientHidden() {
Chong Zhang92147042016-05-09 12:47:11 -07002657 mWasVisibleBeforeClientHidden = false;
Wale Ogunwale9bc47732016-08-10 14:44:22 -07002658 for (int i = mChildren.size() - 1; i >= 0; --i) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07002659 final WindowState c = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07002660 c.clearWasVisibleBeforeClientHidden();
2661 }
Chong Zhang92147042016-05-09 12:47:11 -07002662 }
2663
2664 public boolean wasVisibleBeforeClientHidden() {
2665 return mWasVisibleBeforeClientHidden;
Chong Zhangbef461f2015-10-27 11:38:24 -07002666 }
2667
Wale Ogunwale9bc47732016-08-10 14:44:22 -07002668 void onStartFreezingScreen() {
2669 mAppFreezing = true;
2670 for (int i = mChildren.size() - 1; i >= 0; --i) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07002671 final WindowState c = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07002672 c.onStartFreezingScreen();
2673 }
2674 }
2675
2676 boolean onStopFreezingScreen() {
2677 boolean unfrozeWindows = false;
2678 for (int i = mChildren.size() - 1; i >= 0; --i) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07002679 final WindowState c = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07002680 unfrozeWindows |= c.onStopFreezingScreen();
2681 }
2682
2683 if (!mAppFreezing) {
2684 return unfrozeWindows;
2685 }
2686
Wale Ogunwale953171d2016-09-30 09:17:30 -07002687 mAppFreezing = false;
2688
Bryce Lee8c3cf382017-07-06 19:47:10 -07002689 if (mHasSurface && !getOrientationChanging()
Wale Ogunwale9bc47732016-08-10 14:44:22 -07002690 && mService.mWindowsFreezingScreen != WINDOWS_FREEZING_SCREENS_TIMEOUT) {
2691 if (DEBUG_ORIENTATION) Slog.v(TAG_WM, "set mOrientationChanging of " + this);
Bryce Lee8c3cf382017-07-06 19:47:10 -07002692 setOrientationChanging(true);
Wale Ogunwalee05f5012016-09-16 16:27:29 -07002693 mService.mRoot.mOrientationChangeComplete = false;
Wale Ogunwale9bc47732016-08-10 14:44:22 -07002694 }
2695 mLastFreezeDuration = 0;
2696 setDisplayLayoutNeeded();
2697 return true;
2698 }
2699
Chong Zhangeb22e8e2016-01-20 19:52:22 -08002700 private boolean shouldSaveSurface() {
Chong Zhang6c71c0b2016-04-01 15:10:31 -07002701 if (mWinAnimator.mSurfaceController == null) {
2702 // Don't bother if the surface controller is gone for any reason.
2703 return false;
2704 }
2705
Chong Zhang92147042016-05-09 12:47:11 -07002706 if (!mWasVisibleBeforeClientHidden) {
2707 return false;
2708 }
2709
Wale Ogunwale945d1972016-03-23 13:16:41 -07002710 if ((mAttrs.flags & FLAG_SECURE) != 0) {
2711 // We don't save secure surfaces since their content shouldn't be shown while the app
2712 // isn't on screen and content might leak through during the transition animation with
2713 // saved surface.
2714 return false;
2715 }
2716
Jorim Jaggi02886a82016-12-06 09:10:06 -08002717 if (isLowRamDeviceStatic()) {
Chong Zhangdb20b5f2015-10-23 14:01:43 -07002718 // Don't save surfaces on Svelte devices.
Chong Zhangeb22e8e2016-01-20 19:52:22 -08002719 return false;
2720 }
2721
Jorim Jaggiab7ad382016-10-26 18:22:04 -07002722 final Task task = getTask();
Chong Zhangeb22e8e2016-01-20 19:52:22 -08002723 final AppWindowToken taskTop = task.getTopVisibleAppToken();
2724 if (taskTop != null && taskTop != mAppToken) {
2725 // Don't save if the window is not the topmost window.
2726 return false;
2727 }
2728
Jorim Jaggi8fa45222016-02-19 19:54:39 -08002729 if (mResizedWhileGone) {
2730 // Somebody resized our window while we were gone for layout, which means that the
2731 // client got an old size, so we have an outdated surface here.
2732 return false;
2733 }
2734
Robert Carr7098dbd2016-02-01 12:31:01 -08002735 if (DEBUG_DISABLE_SAVING_SURFACES) {
2736 return false;
2737 }
2738
Chong Zhangeb22e8e2016-01-20 19:52:22 -08002739 return mAppToken.shouldSaveSurface();
2740 }
2741
Wale Ogunwale9bc47732016-08-10 14:44:22 -07002742 boolean destroySurface(boolean cleanupOnResume, boolean appStopped) {
2743 boolean destroyedSomething = false;
2744 for (int i = mChildren.size() - 1; i >= 0; --i) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07002745 final WindowState c = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07002746 destroyedSomething |= c.destroySurface(cleanupOnResume, appStopped);
2747 }
2748
Robert Carrdb2f6e62017-03-01 20:17:58 -08002749 if (!(appStopped || mWindowRemovalAllowed || cleanupOnResume)) {
2750 return destroyedSomething;
Wale Ogunwale9bc47732016-08-10 14:44:22 -07002751 }
Robert Carrdb2f6e62017-03-01 20:17:58 -08002752
2753 if (appStopped || mWindowRemovalAllowed) {
2754 mWinAnimator.destroyPreservedSurfaceLocked();
2755 }
2756
2757 if (mDestroying) {
2758 if (DEBUG_ADD_REMOVE) Slog.e(TAG_WM, "win=" + this
2759 + " destroySurfaces: appStopped=" + appStopped
2760 + " win.mWindowRemovalAllowed=" + mWindowRemovalAllowed
2761 + " win.mRemoveOnExit=" + mRemoveOnExit);
2762 if (!cleanupOnResume || mRemoveOnExit) {
Robert Carr89a28ab2017-04-24 15:33:11 -07002763 destroyOrSaveSurfaceUnchecked();
Robert Carrdb2f6e62017-03-01 20:17:58 -08002764 }
2765 if (mRemoveOnExit) {
2766 removeImmediately();
2767 }
2768 if (cleanupOnResume) {
2769 requestUpdateWallpaperIfNeeded();
2770 }
2771 mDestroying = false;
2772 destroyedSomething = true;
2773 }
2774
Wale Ogunwale9bc47732016-08-10 14:44:22 -07002775 return destroyedSomething;
2776 }
Chris Craik3131bde2016-05-06 13:39:08 -07002777
Robert Carr89a28ab2017-04-24 15:33:11 -07002778 // Destroy or save the application surface without checking
2779 // various indicators of whether the client has released the surface.
2780 // This is in general unsafe, and most callers should use {@link #destroySurface}
2781 void destroyOrSaveSurfaceUnchecked() {
Chong Zhangeb22e8e2016-01-20 19:52:22 -08002782 mSurfaceSaved = shouldSaveSurface();
2783 if (mSurfaceSaved) {
2784 if (DEBUG_APP_TRANSITIONS || DEBUG_ANIM) {
2785 Slog.v(TAG, "Saving surface: " + this);
2786 }
Chris Craik3131bde2016-05-06 13:39:08 -07002787 // Previous user of the surface may have set a transparent region signaling a portion
2788 // doesn't need to be composited, so reset to default empty state.
2789 mSession.setTransparentRegion(mClient, sEmptyRegion);
Chong Zhangeb22e8e2016-01-20 19:52:22 -08002790
2791 mWinAnimator.hide("saved surface");
2792 mWinAnimator.mDrawState = WindowStateAnimator.NO_SURFACE;
2793 setHasSurface(false);
Chong Zhang47e36a32016-02-29 16:44:33 -08002794 // The client should have disconnected at this point, but if it doesn't,
2795 // we need to make sure it's disconnected. Otherwise when we reuse the surface
2796 // the client can't reconnect to the buffer queue, and rendering will fail.
2797 if (mWinAnimator.mSurfaceController != null) {
2798 mWinAnimator.mSurfaceController.disconnectInTransaction();
2799 }
Chong Zhang8e4bda92016-05-04 15:08:18 -07002800 mAnimatingWithSavedSurface = false;
Chong Zhangeb22e8e2016-01-20 19:52:22 -08002801 } else {
Robert Carr13f7be9e2015-12-02 18:39:45 -08002802 mWinAnimator.destroySurfaceLocked();
2803 }
Chong Zhang92147042016-05-09 12:47:11 -07002804 // Clear animating flags now, since the surface is now gone. (Note this is true even
2805 // if the surface is saved, to outside world the surface is still NO_SURFACE.)
2806 mAnimatingExit = false;
Robert Carr13f7be9e2015-12-02 18:39:45 -08002807 }
Chong Zhangdb20b5f2015-10-23 14:01:43 -07002808
Chong Zhang92147042016-05-09 12:47:11 -07002809 void destroySavedSurface() {
Wale Ogunwale9bc47732016-08-10 14:44:22 -07002810 for (int i = mChildren.size() - 1; i >= 0; --i) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07002811 final WindowState c = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07002812 c.destroySavedSurface();
2813 }
2814
Robert Carr13f7be9e2015-12-02 18:39:45 -08002815 if (mSurfaceSaved) {
Wale Ogunwale9bc47732016-08-10 14:44:22 -07002816 if (DEBUG_APP_TRANSITIONS || DEBUG_ANIM) Slog.v(TAG, "Destroying saved surface: " + this);
Robert Carr13f7be9e2015-12-02 18:39:45 -08002817 mWinAnimator.destroySurfaceLocked();
Robert Carr237028a2016-07-26 10:39:45 -07002818 mSurfaceSaved = false;
Robert Carr13f7be9e2015-12-02 18:39:45 -08002819 }
Chong Zhang92147042016-05-09 12:47:11 -07002820 mWasVisibleBeforeClientHidden = false;
Robert Carr13f7be9e2015-12-02 18:39:45 -08002821 }
2822
Wale Ogunwale9bc47732016-08-10 14:44:22 -07002823 /** Returns -1 if there are no interesting windows or number of interesting windows not drawn.*/
2824 int restoreSavedSurfaceForInterestingWindow() {
2825 int interestingNotDrawn = -1;
2826 for (int i = mChildren.size() - 1; i >= 0; --i) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07002827 final WindowState c = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07002828 final int childInterestingNotDrawn = c.restoreSavedSurfaceForInterestingWindow();
2829 if (childInterestingNotDrawn != -1) {
2830 if (interestingNotDrawn == -1) {
2831 interestingNotDrawn = childInterestingNotDrawn;
2832 } else {
2833 interestingNotDrawn += childInterestingNotDrawn;
2834 }
2835 }
Chong Zhang4113ffa2016-02-18 12:39:13 -08002836 }
Robert Carr237028a2016-07-26 10:39:45 -07002837
Wale Ogunwale9bc47732016-08-10 14:44:22 -07002838 if (mAttrs.type == TYPE_APPLICATION_STARTING
2839 || mAppDied || !wasVisibleBeforeClientHidden()
2840 || (mAppToken.mAppAnimator.freezingScreen && mAppFreezing)) {
2841 // Window isn't interesting...
2842 return interestingNotDrawn;
2843 }
2844
2845 restoreSavedSurface();
2846
2847 if (!isDrawnLw()) {
2848 if (interestingNotDrawn == -1) {
2849 interestingNotDrawn = 1;
2850 } else {
2851 interestingNotDrawn++;
2852 }
2853 }
2854 return interestingNotDrawn;
2855 }
2856
2857 /** Returns true if the saved surface was restored. */
2858 boolean restoreSavedSurface() {
2859 if (!mSurfaceSaved) {
2860 return false;
2861 }
2862
2863 // Sometimes we save surfaces due to layout invisible directly after rotation occurs.
2864 // However this means the surface was never laid out in the new orientation.
2865 // We can only restore to the last rotation we were laid out as visible in.
Andrii Kulian8ee72852017-03-10 10:36:45 -08002866 if (mLastVisibleLayoutRotation != getDisplayContent().getRotation()) {
Robert Carr237028a2016-07-26 10:39:45 -07002867 destroySavedSurface();
Wale Ogunwale9bc47732016-08-10 14:44:22 -07002868 return false;
Robert Carr237028a2016-07-26 10:39:45 -07002869 }
Chong Zhangeb22e8e2016-01-20 19:52:22 -08002870 mSurfaceSaved = false;
Robert Carr237028a2016-07-26 10:39:45 -07002871
Chong Zhang6c71c0b2016-04-01 15:10:31 -07002872 if (mWinAnimator.mSurfaceController != null) {
2873 setHasSurface(true);
Wale Ogunwale9d147902016-07-16 11:58:55 -07002874 mWinAnimator.mDrawState = READY_TO_SHOW;
Chong Zhang92147042016-05-09 12:47:11 -07002875 mAnimatingWithSavedSurface = true;
Chong Zhang6c71c0b2016-04-01 15:10:31 -07002876
Chong Zhang6e9872b2016-08-17 10:19:05 -07002877 requestUpdateWallpaperIfNeeded();
2878
Chong Zhang6c71c0b2016-04-01 15:10:31 -07002879 if (DEBUG_APP_TRANSITIONS || DEBUG_ANIM) {
2880 Slog.v(TAG, "Restoring saved surface: " + this);
2881 }
2882 } else {
2883 // mSurfaceController shouldn't be null if mSurfaceSaved was still true at
2884 // this point. Even if we destroyed the saved surface because of rotation
2885 // or resize, mSurfaceSaved flag should have been cleared. So this is a wtf.
2886 Slog.wtf(TAG, "Failed to restore saved surface: surface gone! " + this);
Chong Zhangeb22e8e2016-01-20 19:52:22 -08002887 }
Wale Ogunwale9bc47732016-08-10 14:44:22 -07002888
2889 return true;
Chong Zhangeb22e8e2016-01-20 19:52:22 -08002890 }
2891
Chong Zhang92147042016-05-09 12:47:11 -07002892 boolean canRestoreSurface() {
Wale Ogunwale9bc47732016-08-10 14:44:22 -07002893 if (mWasVisibleBeforeClientHidden && mSurfaceSaved) {
2894 return true;
2895 }
2896
2897 for (int i = mChildren.size() - 1; i >= 0; --i) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07002898 final WindowState c = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07002899 if (c.canRestoreSurface()) {
2900 return true;
2901 }
2902 }
2903
2904 return false;
Chong Zhang92147042016-05-09 12:47:11 -07002905 }
2906
2907 boolean hasSavedSurface() {
Robert Carr13f7be9e2015-12-02 18:39:45 -08002908 return mSurfaceSaved;
2909 }
2910
Chong Zhang92147042016-05-09 12:47:11 -07002911 void clearHasSavedSurface() {
2912 mSurfaceSaved = false;
2913 mAnimatingWithSavedSurface = false;
Chong Zhangf58631a2016-05-24 16:02:10 -07002914 if (mWasVisibleBeforeClientHidden) {
2915 mAppToken.destroySavedSurfaces();
2916 }
Chong Zhang92147042016-05-09 12:47:11 -07002917 }
2918
Chong Zhangcbbcc0f2016-05-17 20:46:58 -07002919 boolean clearAnimatingWithSavedSurface() {
Chong Zhang92147042016-05-09 12:47:11 -07002920 if (mAnimatingWithSavedSurface) {
2921 // App has drawn something to its windows, we're no longer animating with
2922 // the saved surfaces.
2923 if (DEBUG_ANIM) Slog.d(TAG,
2924 "clearAnimatingWithSavedSurface(): win=" + this);
2925 mAnimatingWithSavedSurface = false;
Chong Zhangcbbcc0f2016-05-17 20:46:58 -07002926 return true;
Chong Zhang92147042016-05-09 12:47:11 -07002927 }
Chong Zhangcbbcc0f2016-05-17 20:46:58 -07002928 return false;
Chong Zhang92147042016-05-09 12:47:11 -07002929 }
2930
Craig Mautner69b08182012-09-05 13:07:13 -07002931 @Override
2932 public boolean isDefaultDisplay() {
Craig Mautnerdf88d732014-01-27 09:21:32 -08002933 final DisplayContent displayContent = getDisplayContent();
2934 if (displayContent == null) {
2935 // Only a window that was on a non-default display can be detached from it.
2936 return false;
2937 }
Winson Chung47a3e652014-05-21 16:03:42 -07002938 return displayContent.isDefaultDisplay;
Craig Mautner69b08182012-09-05 13:07:13 -07002939 }
2940
Adrian Rooscd3884d2015-02-18 17:25:23 +01002941 @Override
2942 public boolean isDimming() {
Filip Gruszczynski0689ae92015-10-01 12:30:31 -07002943 final DimLayer.DimLayerUser dimLayerUser = getDimLayerUser();
Wale Ogunwale360a8bc2016-10-10 13:25:26 -07002944 final DisplayContent dc = getDisplayContent();
2945 return dimLayerUser != null && dc != null
2946 && dc.mDimLayerController.isDimming(dimLayerUser, mWinAnimator);
Adrian Rooscd3884d2015-02-18 17:25:23 +01002947 }
2948
Wale Ogunwale360a8bc2016-10-10 13:25:26 -07002949 void setShowToOwnerOnlyLocked(boolean showToOwnerOnly) {
Craig Mautner88400d32012-09-30 12:35:45 -07002950 mShowToOwnerOnly = showToOwnerOnly;
2951 }
2952
Wale Ogunwaleea92d972016-12-08 07:33:13 -08002953 private boolean isHiddenFromUserLocked() {
Wale Ogunwalecaa53af2016-07-17 14:50:26 -07002954 // Child windows are evaluated based on their parent window.
2955 final WindowState win = getTopParentWindow();
Wale Ogunwale360a8bc2016-10-10 13:25:26 -07002956 if (win.mAttrs.type < FIRST_SYSTEM_WINDOW
Wale Ogunwale72919d22016-12-08 18:58:50 -08002957 && win.mAppToken != null && win.mAppToken.mShowForAllUsers) {
Jorim Jaggidbe44ac2016-04-22 19:50:13 -07002958
2959 // All window frames that are fullscreen extend above status bar, but some don't extend
2960 // below navigation bar. Thus, check for display frame for top/left and stable frame for
2961 // bottom right.
2962 if (win.mFrame.left <= win.mDisplayFrame.left
2963 && win.mFrame.top <= win.mDisplayFrame.top
2964 && win.mFrame.right >= win.mStableFrame.right
2965 && win.mFrame.bottom >= win.mStableFrame.bottom) {
Craig Mautner5962b122012-10-05 14:45:52 -07002966 // Is a fullscreen window, like the clock alarm. Show to everyone.
2967 return false;
2968 }
2969 }
2970
Craig Mautner341220f2012-10-16 15:20:09 -07002971 return win.mShowToOwnerOnly
Kenny Guy2a764942014-04-02 13:29:20 +01002972 && !mService.isCurrentProfileLocked(UserHandle.getUserId(win.mOwnerUid));
Craig Mautner9dc52bc2012-08-06 14:15:42 -07002973 }
2974
Dianne Hackbornffb3d932011-05-17 17:44:51 -07002975 private static void applyInsets(Region outRegion, Rect frame, Rect inset) {
2976 outRegion.set(
2977 frame.left + inset.left, frame.top + inset.top,
2978 frame.right - inset.right, frame.bottom - inset.bottom);
Dianne Hackborne2515ee2011-04-27 18:52:56 -04002979 }
2980
Wale Ogunwale053c8e42015-11-16 14:27:21 -08002981 void getTouchableRegion(Region outRegion) {
Dianne Hackbornffb3d932011-05-17 17:44:51 -07002982 final Rect frame = mFrame;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002983 switch (mTouchableInsets) {
2984 default:
Wale Ogunwale053c8e42015-11-16 14:27:21 -08002985 case TOUCHABLE_INSETS_FRAME:
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002986 outRegion.set(frame);
2987 break;
Wale Ogunwale053c8e42015-11-16 14:27:21 -08002988 case TOUCHABLE_INSETS_CONTENT:
Dianne Hackbornffb3d932011-05-17 17:44:51 -07002989 applyInsets(outRegion, frame, mGivenContentInsets);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002990 break;
Wale Ogunwale053c8e42015-11-16 14:27:21 -08002991 case TOUCHABLE_INSETS_VISIBLE:
Dianne Hackbornffb3d932011-05-17 17:44:51 -07002992 applyInsets(outRegion, frame, mGivenVisibleInsets);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002993 break;
Wale Ogunwale053c8e42015-11-16 14:27:21 -08002994 case TOUCHABLE_INSETS_REGION: {
Wale Ogunwaleae9adbf2016-10-18 15:17:06 -07002995 outRegion.set(mGivenTouchableRegion);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002996 outRegion.translate(frame.left, frame.top);
2997 break;
2998 }
2999 }
Wale Ogunwale053c8e42015-11-16 14:27:21 -08003000 cropRegionToStackBoundsIfNeeded(outRegion);
3001 }
3002
Wale Ogunwaleae9adbf2016-10-18 15:17:06 -07003003 private void cropRegionToStackBoundsIfNeeded(Region region) {
Wale Ogunwaleb1faf602016-01-27 09:12:31 -08003004 final Task task = getTask();
3005 if (task == null || !task.cropWindowsToStackBounds()) {
Wale Ogunwale053c8e42015-11-16 14:27:21 -08003006 return;
3007 }
3008
Wale Ogunwaleb1faf602016-01-27 09:12:31 -08003009 final TaskStack stack = task.mStack;
Wale Ogunwale053c8e42015-11-16 14:27:21 -08003010 if (stack == null) {
3011 return;
3012 }
3013
3014 stack.getDimBounds(mTmpRect);
3015 region.op(mTmpRect, Region.Op.INTERSECT);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08003016 }
3017
Dianne Hackborne3f23a32013-03-01 13:25:35 -08003018 /**
3019 * Report a focus change. Must be called with no locks held, and consistently
3020 * from the same serialized thread (such as dispatched from a handler).
3021 */
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -07003022 void reportFocusChangedSerialized(boolean focused, boolean inTouchMode) {
Dianne Hackborne3f23a32013-03-01 13:25:35 -08003023 try {
3024 mClient.windowFocusChanged(focused, inTouchMode);
3025 } catch (RemoteException e) {
3026 }
3027 if (mFocusCallbacks != null) {
3028 final int N = mFocusCallbacks.beginBroadcast();
3029 for (int i=0; i<N; i++) {
3030 IWindowFocusObserver obs = mFocusCallbacks.getBroadcastItem(i);
3031 try {
3032 if (focused) {
3033 obs.focusGained(mWindowId.asBinder());
3034 } else {
3035 obs.focusLost(mWindowId.asBinder());
3036 }
3037 } catch (RemoteException e) {
3038 }
3039 }
3040 mFocusCallbacks.finishBroadcast();
3041 }
3042 }
3043
Andrii Kulian9d91ca62016-09-29 22:28:09 -07003044 @Override
3045 public Configuration getConfiguration() {
Jorim Jaggi26c8c422016-05-09 19:57:25 -07003046 if (mAppToken != null && mAppToken.mFrozenMergedConfig.size() > 0) {
Andrii Kulian9d91ca62016-09-29 22:28:09 -07003047 return mAppToken.mFrozenMergedConfig.peek();
Jorim Jaggi26c8c422016-05-09 19:57:25 -07003048 }
Andrii Kulian9d91ca62016-09-29 22:28:09 -07003049
Wale Ogunwale19e452e2016-10-12 12:36:29 -07003050 return super.getConfiguration();
Jorim Jaggi26c8c422016-05-09 19:57:25 -07003051 }
3052
Craig Mautnerdf88d732014-01-27 09:21:32 -08003053 void reportResized() {
Wale Ogunwalecad05a02015-09-25 10:41:44 -07003054 Trace.traceBegin(TRACE_TAG_WINDOW_MANAGER, "wm.reportResized_" + getWindowTag());
Craig Mautnerdf88d732014-01-27 09:21:32 -08003055 try {
Craig Mautnerd1c2c542014-02-06 10:31:41 -08003056 if (DEBUG_RESIZE || DEBUG_ORIENTATION) Slog.v(TAG, "Reporting new frame to " + this
3057 + ": " + mCompatFrame);
Bryce Leef858b572017-06-29 14:03:33 -07003058 final MergedConfiguration mergedConfiguration =
3059 new MergedConfiguration(mService.mRoot.getConfiguration(),
3060 getMergedOverrideConfiguration());
3061
3062 setReportedConfiguration(mergedConfiguration);
3063
Wale Ogunwale19e452e2016-10-12 12:36:29 -07003064 if (DEBUG_ORIENTATION && mWinAnimator.mDrawState == DRAW_PENDING)
Craig Mautnerd1c2c542014-02-06 10:31:41 -08003065 Slog.i(TAG, "Resizing " + this + " WITH DRAW PENDING");
3066
Craig Mautnerdf88d732014-01-27 09:21:32 -08003067 final Rect frame = mFrame;
3068 final Rect overscanInsets = mLastOverscanInsets;
3069 final Rect contentInsets = mLastContentInsets;
3070 final Rect visibleInsets = mLastVisibleInsets;
Adrian Roosfa104232014-06-20 16:10:14 -07003071 final Rect stableInsets = mLastStableInsets;
Filip Gruszczynski2217f612015-05-26 11:32:08 -07003072 final Rect outsets = mLastOutsets;
Wale Ogunwale19e452e2016-10-12 12:36:29 -07003073 final boolean reportDraw = mWinAnimator.mDrawState == DRAW_PENDING;
Andrii Kulianb2e37802017-01-11 00:36:44 -08003074 final boolean reportOrientation = mReportOrientationChanged;
Andrii Kulianb047b8b2017-02-08 18:38:26 -08003075 final int displayId = getDisplayId();
Chet Haase8eb48d22014-09-24 07:31:29 -07003076 if (mAttrs.type != WindowManager.LayoutParams.TYPE_APPLICATION_STARTING
3077 && mClient instanceof IWindow.Stub) {
Craig Mautnerdf88d732014-01-27 09:21:32 -08003078 // To prevent deadlock simulate one-way call if win.mClient is a local object.
3079 mService.mH.post(new Runnable() {
3080 @Override
3081 public void run() {
3082 try {
Jorim Jaggi253a20f2015-11-03 12:38:42 +01003083 dispatchResized(frame, overscanInsets, contentInsets, visibleInsets,
Andrii Kulian44607962017-03-16 11:06:24 -07003084 stableInsets, outsets, reportDraw, mergedConfiguration,
Andrii Kulianb047b8b2017-02-08 18:38:26 -08003085 reportOrientation, displayId);
Craig Mautnerdf88d732014-01-27 09:21:32 -08003086 } catch (RemoteException e) {
3087 // Not a remote call, RemoteException won't be raised.
3088 }
3089 }
3090 });
3091 } else {
Jorim Jaggi253a20f2015-11-03 12:38:42 +01003092 dispatchResized(frame, overscanInsets, contentInsets, visibleInsets, stableInsets,
Andrii Kulian44607962017-03-16 11:06:24 -07003093 outsets, reportDraw, mergedConfiguration, reportOrientation, displayId);
Craig Mautnerdf88d732014-01-27 09:21:32 -08003094 }
Svetoslav4604abc2014-06-10 18:59:30 -07003095
3096 //TODO (multidisplay): Accessibility supported only for the default display.
Andrii Kulian5406e7a2016-10-21 11:55:23 -07003097 if (mService.mAccessibilityController != null && getDisplayId() == DEFAULT_DISPLAY) {
Svetoslavf7174e82014-06-12 11:29:35 -07003098 mService.mAccessibilityController.onSomeWindowResizedOrMovedLocked();
Svetoslav4604abc2014-06-10 18:59:30 -07003099 }
3100
Craig Mautnerdf88d732014-01-27 09:21:32 -08003101 mOverscanInsetsChanged = false;
3102 mContentInsetsChanged = false;
3103 mVisibleInsetsChanged = false;
Adrian Roosfa104232014-06-20 16:10:14 -07003104 mStableInsetsChanged = false;
Filip Gruszczynski2217f612015-05-26 11:32:08 -07003105 mOutsetsChanged = false;
Robert Carr31aa98b2016-07-20 15:29:03 -07003106 mFrameSizeChanged = false;
Andrii Kulianeb1d3222016-05-16 15:17:55 -07003107 mResizedWhileNotDragResizingReported = true;
Craig Mautnerdf88d732014-01-27 09:21:32 -08003108 mWinAnimator.mSurfaceResized = false;
Andrii Kulianb2e37802017-01-11 00:36:44 -08003109 mReportOrientationChanged = false;
Craig Mautnerdf88d732014-01-27 09:21:32 -08003110 } catch (RemoteException e) {
Bryce Lee8c3cf382017-07-06 19:47:10 -07003111 setOrientationChanging(false);
Craig Mautnerdf88d732014-01-27 09:21:32 -08003112 mLastFreezeDuration = (int)(SystemClock.elapsedRealtime()
3113 - mService.mDisplayFreezeTime);
tiger_huang950ee772014-07-11 18:41:48 +08003114 // We are assuming the hosting process is dead or in a zombie state.
3115 Slog.w(TAG, "Failed to report 'resized' to the client of " + this
3116 + ", removing this window.");
3117 mService.mPendingRemove.add(this);
Filip Gruszczynski24966d42015-09-05 15:00:00 -07003118 mService.mWindowPlacerLocked.requestTraversal();
Craig Mautnerdf88d732014-01-27 09:21:32 -08003119 }
Wale Ogunwalecad05a02015-09-25 10:41:44 -07003120 Trace.traceEnd(TRACE_TAG_WINDOW_MANAGER);
Craig Mautnerdf88d732014-01-27 09:21:32 -08003121 }
3122
Jorim Jaggi2e95a482016-01-14 17:36:55 -08003123 Rect getBackdropFrame(Rect frame) {
Chong Zhangd153c4f2015-11-06 20:26:40 -08003124 // When the task is docked, we send fullscreen sized backDropFrame as soon as resizing
3125 // start even if we haven't received the relayout window, so that the client requests
3126 // the relayout sooner. When dragging stops, backDropFrame needs to stay fullscreen
3127 // until the window to small size, otherwise the multithread renderer will shift last
3128 // one or more frame to wrong offset. So here we send fullscreen backdrop if either
3129 // isDragResizing() or isDragResizeChanged() is true.
Filip Gruszczynski84fa3352016-01-25 16:28:49 -08003130 boolean resizing = isDragResizing() || isDragResizeChanged();
3131 if (StackId.useWindowFrameForBackdrop(getStackId()) || !resizing) {
3132 return frame;
3133 }
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -07003134 final DisplayInfo displayInfo = getDisplayInfo();
Jorim Jaggi2e95a482016-01-14 17:36:55 -08003135 mTmpRect.set(0, 0, displayInfo.logicalWidth, displayInfo.logicalHeight);
Filip Gruszczynski84fa3352016-01-25 16:28:49 -08003136 return mTmpRect;
3137 }
3138
Jorim Jaggi86905582016-02-09 21:36:09 -08003139 @Override
3140 public int getStackId() {
Filip Gruszczynski84fa3352016-01-25 16:28:49 -08003141 final TaskStack stack = getStack();
3142 if (stack == null) {
3143 return INVALID_STACK_ID;
3144 }
3145 return stack.mStackId;
Jorim Jaggi2e95a482016-01-14 17:36:55 -08003146 }
3147
3148 private void dispatchResized(Rect frame, Rect overscanInsets, Rect contentInsets,
3149 Rect visibleInsets, Rect stableInsets, Rect outsets, boolean reportDraw,
Andrii Kulian44607962017-03-16 11:06:24 -07003150 MergedConfiguration mergedConfiguration, boolean reportOrientation, int displayId)
Andrii Kulianb047b8b2017-02-08 18:38:26 -08003151 throws RemoteException {
Andrii Kulianb2e37802017-01-11 00:36:44 -08003152 final boolean forceRelayout = isDragResizeChanged() || mResizedWhileNotDragResizing
3153 || reportOrientation;
Chong Zhangedaf3052016-04-22 15:04:31 -07003154
Jorim Jaggidc249c42015-12-15 14:57:31 -08003155 mClient.resized(frame, overscanInsets, contentInsets, visibleInsets, stableInsets, outsets,
Andrii Kulian44607962017-03-16 11:06:24 -07003156 reportDraw, mergedConfiguration, getBackdropFrame(frame), forceRelayout,
3157 mPolicy.isNavBarForcedShownLw(this), displayId);
Jorim Jaggic662d8e2016-02-05 16:54:54 -08003158 mDragResizingChangeReported = true;
Jorim Jaggi253a20f2015-11-03 12:38:42 +01003159 }
3160
Dianne Hackborne3f23a32013-03-01 13:25:35 -08003161 public void registerFocusObserver(IWindowFocusObserver observer) {
3162 synchronized(mService.mWindowMap) {
3163 if (mFocusCallbacks == null) {
3164 mFocusCallbacks = new RemoteCallbackList<IWindowFocusObserver>();
3165 }
3166 mFocusCallbacks.register(observer);
3167 }
3168 }
3169
3170 public void unregisterFocusObserver(IWindowFocusObserver observer) {
3171 synchronized(mService.mWindowMap) {
3172 if (mFocusCallbacks != null) {
3173 mFocusCallbacks.unregister(observer);
3174 }
3175 }
3176 }
3177
3178 public boolean isFocused() {
3179 synchronized(mService.mWindowMap) {
3180 return mService.mCurrentFocus == this;
3181 }
3182 }
3183
Filip Gruszczynski1a1d8312015-08-26 17:00:47 -07003184 boolean inFreeformWorkspace() {
Wale Ogunwale5a2f2cb2015-09-17 12:31:55 -07003185 final Task task = getTask();
Chong Zhang09b21ef2015-09-14 10:20:21 -07003186 return task != null && task.inFreeformWorkspace();
3187 }
3188
Wale Ogunwale9185fb02016-03-11 18:06:14 -08003189 @Override
Andrii Kulian933076d2016-03-29 17:04:42 -07003190 public boolean isInMultiWindowMode() {
Wale Ogunwale9185fb02016-03-11 18:06:14 -08003191 final Task task = getTask();
3192 return task != null && !task.isFullscreen();
3193 }
3194
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -07003195 /** Is this window in a container that takes up the entire screen space? */
3196 private boolean inFullscreenContainer() {
3197 if (mAppToken == null) {
3198 return true;
3199 }
3200 if (mAppToken.hasBounds()) {
3201 return false;
3202 }
3203 return !isInMultiWindowMode();
3204 }
3205
Andrii Kulian283acd22017-08-03 04:03:51 -07003206 /** @return true when the window is in fullscreen task, but has non-fullscreen bounds set. */
3207 boolean isLetterboxedAppWindow() {
3208 final Task task = getTask();
3209 final boolean taskIsFullscreen = task != null && task.isFullscreen();
3210 final boolean appWindowIsFullscreen = mAppToken != null && !mAppToken.hasBounds();
3211
3212 return taskIsFullscreen && !appWindowIsFullscreen;
3213 }
3214
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -07003215 /** Returns the appropriate bounds to use for computing frames. */
3216 private void getContainerBounds(Rect outBounds) {
3217 if (isInMultiWindowMode()) {
3218 getTask().getBounds(outBounds);
3219 } else if (mAppToken != null){
3220 mAppToken.getBounds(outBounds);
3221 } else {
3222 outBounds.setEmpty();
3223 }
3224 }
3225
Chong Zhang3005e752015-09-18 18:46:28 -07003226 boolean isDragResizeChanged() {
Filip Gruszczynski3ddc5d62015-09-23 15:01:30 -07003227 return mDragResizing != computeDragResizing();
3228 }
3229
Wale Ogunwaled1c37912016-08-16 03:19:39 -07003230 @Override
Wale Ogunwale9bc47732016-08-10 14:44:22 -07003231 void setWaitingForDrawnIfResizingChanged() {
3232 if (isDragResizeChanged()) {
3233 mService.mWaitingForDrawn.add(this);
3234 }
Wale Ogunwaled1c37912016-08-16 03:19:39 -07003235 super.setWaitingForDrawnIfResizingChanged();
Wale Ogunwale9bc47732016-08-10 14:44:22 -07003236 }
3237
Jorim Jaggic662d8e2016-02-05 16:54:54 -08003238 /**
3239 * @return Whether we reported a drag resize change to the application or not already.
3240 */
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -07003241 private boolean isDragResizingChangeReported() {
Jorim Jaggic662d8e2016-02-05 16:54:54 -08003242 return mDragResizingChangeReported;
3243 }
3244
3245 /**
3246 * Resets the state whether we reported a drag resize change to the app.
3247 */
Wale Ogunwaled1c37912016-08-16 03:19:39 -07003248 @Override
Jorim Jaggic662d8e2016-02-05 16:54:54 -08003249 void resetDragResizingChangeReported() {
3250 mDragResizingChangeReported = false;
Wale Ogunwaled1c37912016-08-16 03:19:39 -07003251 super.resetDragResizingChangeReported();
Jorim Jaggic662d8e2016-02-05 16:54:54 -08003252 }
3253
Andrii Kulianeb1d3222016-05-16 15:17:55 -07003254 /**
3255 * Set whether we got resized but drag resizing flag was false.
3256 * @see #isResizedWhileNotDragResizing().
3257 */
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -07003258 private void setResizedWhileNotDragResizing(boolean resizedWhileNotDragResizing) {
Andrii Kulianeb1d3222016-05-16 15:17:55 -07003259 mResizedWhileNotDragResizing = resizedWhileNotDragResizing;
3260 mResizedWhileNotDragResizingReported = !resizedWhileNotDragResizing;
3261 }
3262
3263 /**
3264 * Indicates whether we got resized but drag resizing flag was false. In this case, we also
3265 * need to recreate the surface and defer surface bound updates in order to make sure the
3266 * buffer contents and the positioning/size stay in sync.
3267 */
3268 boolean isResizedWhileNotDragResizing() {
3269 return mResizedWhileNotDragResizing;
3270 }
3271
3272 /**
3273 * @return Whether we reported "resize while not drag resizing" to the application.
3274 * @see #isResizedWhileNotDragResizing()
3275 */
Wale Ogunwale360a8bc2016-10-10 13:25:26 -07003276 private boolean isResizedWhileNotDragResizingReported() {
Andrii Kulianeb1d3222016-05-16 15:17:55 -07003277 return mResizedWhileNotDragResizingReported;
3278 }
3279
Jorim Jaggidcf467c2015-11-05 13:59:32 +01003280 int getResizeMode() {
3281 return mResizeMode;
3282 }
3283
Wale Ogunwale360a8bc2016-10-10 13:25:26 -07003284 private boolean computeDragResizing() {
Wale Ogunwale5a2f2cb2015-09-17 12:31:55 -07003285 final Task task = getTask();
Filip Gruszczynski3ddc5d62015-09-23 15:01:30 -07003286 if (task == null) {
3287 return false;
3288 }
Winson Chung2af04b32017-01-24 16:21:13 -08003289 if (!StackId.isStackAffectedByDragResizing(getStackId())) {
3290 return false;
3291 }
Jorim Jaggidd6e4c12016-02-17 22:13:43 -08003292 if (mAttrs.width != MATCH_PARENT || mAttrs.height != MATCH_PARENT) {
Jorim Jaggidd6e4c12016-02-17 22:13:43 -08003293 // Floating windows never enter drag resize mode.
3294 return false;
3295 }
Filip Gruszczynski3ddc5d62015-09-23 15:01:30 -07003296 if (task.isDragResizing()) {
3297 return true;
3298 }
Jorim Jaggi0429f352015-12-22 16:29:16 +01003299
3300 // If the bounds are currently frozen, it means that the layout size that the app sees
3301 // and the bounds we clip this window to might be different. In order to avoid holes, we
3302 // simulate that we are still resizing so the app fills the hole with the resizing
3303 // background.
Wale Ogunwale360a8bc2016-10-10 13:25:26 -07003304 return (getDisplayContent().mDividerControllerLocked.isResizing()
Jorim Jaggi0429f352015-12-22 16:29:16 +01003305 || mAppToken != null && !mAppToken.mFrozenBounds.isEmpty()) &&
Jorim Jaggi899327f2016-02-25 20:44:18 -05003306 !task.inFreeformWorkspace() && !isGoneForLayoutLw();
Jorim Jaggi9511b0f2016-01-29 19:12:44 -08003307
Chong Zhang3005e752015-09-18 18:46:28 -07003308 }
3309
3310 void setDragResizing() {
Jorim Jaggic662d8e2016-02-05 16:54:54 -08003311 final boolean resizing = computeDragResizing();
3312 if (resizing == mDragResizing) {
3313 return;
3314 }
3315 mDragResizing = resizing;
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +01003316 final Task task = getTask();
3317 if (task != null && task.isDragResizing()) {
3318 mResizeMode = task.getDragResizeMode();
3319 } else {
Wale Ogunwale360a8bc2016-10-10 13:25:26 -07003320 mResizeMode = mDragResizing && getDisplayContent().mDividerControllerLocked.isResizing()
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +01003321 ? DRAG_RESIZE_MODE_DOCKED_DIVIDER
3322 : DRAG_RESIZE_MODE_FREEFORM;
3323 }
Chong Zhang3005e752015-09-18 18:46:28 -07003324 }
3325
3326 boolean isDragResizing() {
3327 return mDragResizing;
Skuhnef932e562015-08-20 12:07:30 -07003328 }
3329
Robert Carr2487ce72016-04-07 15:18:45 -07003330 boolean isDockedResizing() {
Robert Carrfbbde852016-10-18 11:02:28 -07003331 return (mDragResizing && getResizeMode() == DRAG_RESIZE_MODE_DOCKED_DIVIDER)
3332 || (isChildWindow() && getParentWindow().isDockedResizing());
Robert Carr2487ce72016-04-07 15:18:45 -07003333 }
3334
Dianne Hackborna44abeb2011-08-08 19:24:01 -07003335 void dump(PrintWriter pw, String prefix, boolean dumpAll) {
Wale Ogunwale30cc7bf2015-02-04 16:47:57 -08003336 final TaskStack stack = getStack();
Craig Mautnerdf88d732014-01-27 09:21:32 -08003337 pw.print(prefix); pw.print("mDisplayId="); pw.print(getDisplayId());
Wale Ogunwale30cc7bf2015-02-04 16:47:57 -08003338 if (stack != null) {
3339 pw.print(" stackId="); pw.print(stack.mStackId);
3340 }
Craig Mautner59c00972012-07-30 12:10:24 -07003341 pw.print(" mSession="); pw.print(mSession);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08003342 pw.print(" mClient="); pw.println(mClient.asBinder());
Craig Mautner88400d32012-09-30 12:35:45 -07003343 pw.print(prefix); pw.print("mOwnerUid="); pw.print(mOwnerUid);
Dianne Hackbornc2293022013-02-06 23:14:49 -08003344 pw.print(" mShowToOwnerOnly="); pw.print(mShowToOwnerOnly);
3345 pw.print(" package="); pw.print(mAttrs.packageName);
3346 pw.print(" appop="); pw.println(AppOpsManager.opToName(mAppOp));
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08003347 pw.print(prefix); pw.print("mAttrs="); pw.println(mAttrs);
Dianne Hackborna44abeb2011-08-08 19:24:01 -07003348 pw.print(prefix); pw.print("Requested w="); pw.print(mRequestedWidth);
3349 pw.print(" h="); pw.print(mRequestedHeight);
3350 pw.print(" mLayoutSeq="); pw.println(mLayoutSeq);
Dianne Hackborn1743b642012-03-12 17:04:43 -07003351 if (mRequestedWidth != mLastRequestedWidth || mRequestedHeight != mLastRequestedHeight) {
3352 pw.print(prefix); pw.print("LastRequested w="); pw.print(mLastRequestedWidth);
3353 pw.print(" h="); pw.println(mLastRequestedHeight);
3354 }
Wale Ogunwalee4343ef2016-07-19 08:00:46 -07003355 if (mIsChildWindow || mLayoutAttached) {
3356 pw.print(prefix); pw.print("mParentWindow="); pw.print(getParentWindow());
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08003357 pw.print(" mLayoutAttached="); pw.println(mLayoutAttached);
3358 }
3359 if (mIsImWindow || mIsWallpaper || mIsFloatingLayer) {
3360 pw.print(prefix); pw.print("mIsImWindow="); pw.print(mIsImWindow);
3361 pw.print(" mIsWallpaper="); pw.print(mIsWallpaper);
3362 pw.print(" mIsFloatingLayer="); pw.print(mIsFloatingLayer);
3363 pw.print(" mWallpaperVisible="); pw.println(mWallpaperVisible);
3364 }
Dianne Hackborna44abeb2011-08-08 19:24:01 -07003365 if (dumpAll) {
3366 pw.print(prefix); pw.print("mBaseLayer="); pw.print(mBaseLayer);
3367 pw.print(" mSubLayer="); pw.print(mSubLayer);
3368 pw.print(" mAnimLayer="); pw.print(mLayer); pw.print("+");
Wale Ogunwale455fac52016-07-21 07:24:49 -07003369 pw.print(getAnimLayerAdjustment());
Craig Mautnerc2f9be02012-03-27 17:32:29 -07003370 pw.print("="); pw.print(mWinAnimator.mAnimLayer);
3371 pw.print(" mLastLayer="); pw.println(mWinAnimator.mLastLayer);
Dianne Hackborn6d05fd32011-11-19 14:36:15 -08003372 }
Dianne Hackborna44abeb2011-08-08 19:24:01 -07003373 if (dumpAll) {
3374 pw.print(prefix); pw.print("mToken="); pw.println(mToken);
Dianne Hackborna44abeb2011-08-08 19:24:01 -07003375 if (mAppToken != null) {
Wale Ogunwale6bab4cf2016-04-07 12:23:08 -07003376 pw.print(prefix); pw.print("mAppToken="); pw.println(mAppToken);
3377 pw.print(prefix); pw.print(" isAnimatingWithSavedSurface()=");
Chong Zhangbfc2f8f2016-01-29 15:50:34 -08003378 pw.print(isAnimatingWithSavedSurface());
Bryce Lee6311c4b2017-07-06 14:09:29 -07003379 pw.print(" mAppDied=");pw.print(mAppDied);
3380 pw.print(prefix); pw.print("drawnStateEvaluated=");
3381 pw.print(getDrawnStateEvaluated());
3382 pw.print(prefix); pw.print("mightAffectAllDrawn=");
3383 pw.println(mightAffectAllDrawn(false /*visibleOnly*/));
Dianne Hackborna44abeb2011-08-08 19:24:01 -07003384 }
Dianne Hackborna44abeb2011-08-08 19:24:01 -07003385 pw.print(prefix); pw.print("mViewVisibility=0x");
3386 pw.print(Integer.toHexString(mViewVisibility));
Dianne Hackborna44abeb2011-08-08 19:24:01 -07003387 pw.print(" mHaveFrame="); pw.print(mHaveFrame);
3388 pw.print(" mObscured="); pw.println(mObscured);
Dianne Hackborn9a230e02011-10-06 11:51:27 -07003389 pw.print(prefix); pw.print("mSeq="); pw.print(mSeq);
3390 pw.print(" mSystemUiVisibility=0x");
3391 pw.println(Integer.toHexString(mSystemUiVisibility));
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08003392 }
Dianne Hackbornb6b23ec2013-02-11 19:29:06 -08003393 if (!mPolicyVisibility || !mPolicyVisibilityAfterAnim || !mAppOpVisibility
Svetoslav Ganov71c51022016-09-02 17:54:37 -07003394 || isParentWindowHidden()|| mPermanentlyHidden) {
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08003395 pw.print(prefix); pw.print("mPolicyVisibility=");
3396 pw.print(mPolicyVisibility);
3397 pw.print(" mPolicyVisibilityAfterAnim=");
3398 pw.print(mPolicyVisibilityAfterAnim);
Dianne Hackbornb6b23ec2013-02-11 19:29:06 -08003399 pw.print(" mAppOpVisibility=");
3400 pw.print(mAppOpVisibility);
Wale Ogunwale3c1170d2016-12-02 14:44:52 -08003401 pw.print(" parentHidden="); pw.print(isParentWindowHidden());
Svetoslav Ganovaa076532016-08-01 19:16:43 -07003402 pw.print(" mPermanentlyHidden="); pw.println(mPermanentlyHidden);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08003403 }
Dianne Hackbornb7ff51b2012-01-23 19:15:27 -08003404 if (!mRelayoutCalled || mLayoutNeeded) {
3405 pw.print(prefix); pw.print("mRelayoutCalled="); pw.print(mRelayoutCalled);
3406 pw.print(" mLayoutNeeded="); pw.println(mLayoutNeeded);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08003407 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08003408 if (mXOffset != 0 || mYOffset != 0) {
3409 pw.print(prefix); pw.print("Offsets x="); pw.print(mXOffset);
3410 pw.print(" y="); pw.println(mYOffset);
3411 }
Dianne Hackborna44abeb2011-08-08 19:24:01 -07003412 if (dumpAll) {
3413 pw.print(prefix); pw.print("mGivenContentInsets=");
3414 mGivenContentInsets.printShortString(pw);
3415 pw.print(" mGivenVisibleInsets=");
3416 mGivenVisibleInsets.printShortString(pw);
3417 pw.println();
3418 if (mTouchableInsets != 0 || mGivenInsetsPending) {
3419 pw.print(prefix); pw.print("mTouchableInsets="); pw.print(mTouchableInsets);
3420 pw.print(" mGivenInsetsPending="); pw.println(mGivenInsetsPending);
Dianne Hackborna4b7f2f2012-05-21 11:28:41 -07003421 Region region = new Region();
3422 getTouchableRegion(region);
3423 pw.print(prefix); pw.print("touchable region="); pw.println(region);
Dianne Hackborna44abeb2011-08-08 19:24:01 -07003424 }
Andrii Kulian9d91ca62016-09-29 22:28:09 -07003425 pw.print(prefix); pw.print("mFullConfiguration="); pw.println(getConfiguration());
3426 pw.print(prefix); pw.print("mLastReportedConfiguration=");
3427 pw.println(mLastReportedConfiguration);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08003428 }
Craig Mautnerc8bc97e2012-04-02 12:54:54 -07003429 pw.print(prefix); pw.print("mHasSurface="); pw.print(mHasSurface);
Filip Gruszczynski2a6a2c22015-10-14 12:00:53 -07003430 pw.print(" mShownPosition="); mShownPosition.printShortString(pw);
Chong Zhanga8975bd2016-01-28 17:13:47 -08003431 pw.print(" isReadyForDisplay()="); pw.print(isReadyForDisplay());
Wale Ogunwale9017ec02016-02-25 08:55:25 -08003432 pw.print(" hasSavedSurface()="); pw.print(hasSavedSurface());
3433 pw.print(" mWindowRemovalAllowed="); pw.println(mWindowRemovalAllowed);
Dianne Hackborna44abeb2011-08-08 19:24:01 -07003434 if (dumpAll) {
3435 pw.print(prefix); pw.print("mFrame="); mFrame.printShortString(pw);
3436 pw.print(" last="); mLastFrame.printShortString(pw);
3437 pw.println();
3438 }
Dianne Hackbornffb3d932011-05-17 17:44:51 -07003439 if (mEnforceSizeCompat) {
3440 pw.print(prefix); pw.print("mCompatFrame="); mCompatFrame.printShortString(pw);
Dianne Hackbornffb3d932011-05-17 17:44:51 -07003441 pw.println();
3442 }
Dianne Hackborna44abeb2011-08-08 19:24:01 -07003443 if (dumpAll) {
Dianne Hackborn5c58de32012-04-28 19:52:37 -07003444 pw.print(prefix); pw.print("Frames: containing=");
Dianne Hackborna44abeb2011-08-08 19:24:01 -07003445 mContainingFrame.printShortString(pw);
Dianne Hackborn5c58de32012-04-28 19:52:37 -07003446 pw.print(" parent="); mParentFrame.printShortString(pw);
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003447 pw.println();
3448 pw.print(prefix); pw.print(" display="); mDisplayFrame.printShortString(pw);
3449 pw.print(" overscan="); mOverscanFrame.printShortString(pw);
Dianne Hackborna44abeb2011-08-08 19:24:01 -07003450 pw.println();
Dianne Hackborn85afd1b2012-05-13 13:31:06 -07003451 pw.print(prefix); pw.print(" content="); mContentFrame.printShortString(pw);
Dianne Hackborn5c58de32012-04-28 19:52:37 -07003452 pw.print(" visible="); mVisibleFrame.printShortString(pw);
Dianne Hackborna44abeb2011-08-08 19:24:01 -07003453 pw.println();
John Spurlock46646232013-09-30 22:32:42 -04003454 pw.print(prefix); pw.print(" decor="); mDecorFrame.printShortString(pw);
3455 pw.println();
Filip Gruszczynski2217f612015-05-26 11:32:08 -07003456 pw.print(prefix); pw.print(" outset="); mOutsetFrame.printShortString(pw);
3457 pw.println();
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003458 pw.print(prefix); pw.print("Cur insets: overscan=");
3459 mOverscanInsets.printShortString(pw);
3460 pw.print(" content="); mContentInsets.printShortString(pw);
Dianne Hackborn5c58de32012-04-28 19:52:37 -07003461 pw.print(" visible="); mVisibleInsets.printShortString(pw);
Adrian Roosfa104232014-06-20 16:10:14 -07003462 pw.print(" stable="); mStableInsets.printShortString(pw);
Wale Ogunwale6bab4cf2016-04-07 12:23:08 -07003463 pw.print(" surface="); mAttrs.surfaceInsets.printShortString(pw);
Filip Gruszczynski2217f612015-05-26 11:32:08 -07003464 pw.print(" outsets="); mOutsets.printShortString(pw);
Dianne Hackborn5c58de32012-04-28 19:52:37 -07003465 pw.println();
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003466 pw.print(prefix); pw.print("Lst insets: overscan=");
3467 mLastOverscanInsets.printShortString(pw);
3468 pw.print(" content="); mLastContentInsets.printShortString(pw);
Dianne Hackborn5c58de32012-04-28 19:52:37 -07003469 pw.print(" visible="); mLastVisibleInsets.printShortString(pw);
Adrian Roosfa104232014-06-20 16:10:14 -07003470 pw.print(" stable="); mLastStableInsets.printShortString(pw);
Filip Gruszczynski2217f612015-05-26 11:32:08 -07003471 pw.print(" physical="); mLastOutsets.printShortString(pw);
3472 pw.print(" outset="); mLastOutsets.printShortString(pw);
Dianne Hackborna44abeb2011-08-08 19:24:01 -07003473 pw.println();
3474 }
Dianne Hackborn529e7442012-11-01 14:22:28 -07003475 pw.print(prefix); pw.print(mWinAnimator); pw.println(":");
3476 mWinAnimator.dump(pw, prefix + " ", dumpAll);
Wale Ogunwalec48a3542016-02-19 15:18:45 -08003477 if (mAnimatingExit || mRemoveOnExit || mDestroying || mRemoved) {
3478 pw.print(prefix); pw.print("mAnimatingExit="); pw.print(mAnimatingExit);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08003479 pw.print(" mRemoveOnExit="); pw.print(mRemoveOnExit);
3480 pw.print(" mDestroying="); pw.print(mDestroying);
3481 pw.print(" mRemoved="); pw.println(mRemoved);
3482 }
Bryce Lee8c3cf382017-07-06 19:47:10 -07003483 if (getOrientationChanging() || mAppFreezing || mTurnOnScreen
Andrii Kulianb2e37802017-01-11 00:36:44 -08003484 || mReportOrientationChanged) {
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08003485 pw.print(prefix); pw.print("mOrientationChanging=");
3486 pw.print(mOrientationChanging);
Bryce Lee8c3cf382017-07-06 19:47:10 -07003487 pw.print(" configOrientationChanging=");
3488 pw.print(mLastReportedConfiguration.orientation
3489 != getConfiguration().orientation);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08003490 pw.print(" mAppFreezing="); pw.print(mAppFreezing);
Wale Ogunwalebfa81ad2017-05-24 15:14:42 -07003491 pw.print(" mTurnOnScreen="); pw.print(mTurnOnScreen);
Andrii Kulianb2e37802017-01-11 00:36:44 -08003492 pw.print(" mReportOrientationChanged="); pw.println(mReportOrientationChanged);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08003493 }
Dianne Hackborna57c6952013-03-29 14:46:40 -07003494 if (mLastFreezeDuration != 0) {
3495 pw.print(prefix); pw.print("mLastFreezeDuration=");
3496 TimeUtils.formatDuration(mLastFreezeDuration, pw); pw.println();
3497 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08003498 if (mHScale != 1 || mVScale != 1) {
3499 pw.print(prefix); pw.print("mHScale="); pw.print(mHScale);
3500 pw.print(" mVScale="); pw.println(mVScale);
3501 }
3502 if (mWallpaperX != -1 || mWallpaperY != -1) {
3503 pw.print(prefix); pw.print("mWallpaperX="); pw.print(mWallpaperX);
3504 pw.print(" mWallpaperY="); pw.println(mWallpaperY);
3505 }
3506 if (mWallpaperXStep != -1 || mWallpaperYStep != -1) {
3507 pw.print(prefix); pw.print("mWallpaperXStep="); pw.print(mWallpaperXStep);
3508 pw.print(" mWallpaperYStep="); pw.println(mWallpaperYStep);
3509 }
Dianne Hackborn067e5f62014-09-07 23:14:30 -07003510 if (mWallpaperDisplayOffsetX != Integer.MIN_VALUE
3511 || mWallpaperDisplayOffsetY != Integer.MIN_VALUE) {
3512 pw.print(prefix); pw.print("mWallpaperDisplayOffsetX=");
3513 pw.print(mWallpaperDisplayOffsetX);
3514 pw.print(" mWallpaperDisplayOffsetY=");
3515 pw.println(mWallpaperDisplayOffsetY);
3516 }
Jeff Brownc2932a12014-11-20 18:04:05 -08003517 if (mDrawLock != null) {
Wale Ogunwale85b90ab2015-04-27 20:54:47 -07003518 pw.print(prefix); pw.println("mDrawLock=" + mDrawLock);
Jeff Brownc2932a12014-11-20 18:04:05 -08003519 }
Jorim Jaggi9511b0f2016-01-29 19:12:44 -08003520 if (isDragResizing()) {
3521 pw.print(prefix); pw.println("isDragResizing=" + isDragResizing());
3522 }
3523 if (computeDragResizing()) {
3524 pw.print(prefix); pw.println("computeDragResizing=" + computeDragResizing());
3525 }
Bryce Lee6311c4b2017-07-06 14:09:29 -07003526 pw.print(prefix); pw.println("isOnScreen=" + isOnScreen());
3527 pw.print(prefix); pw.println("isVisible=" + isVisible());
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08003528 }
Craig Mautner164d4bb2012-11-26 13:51:23 -08003529
Wale Ogunwale9adfe572016-09-08 20:43:58 -07003530 @Override
3531 String getName() {
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08003532 return Integer.toHexString(System.identityHashCode(this))
Wale Ogunwalecad05a02015-09-25 10:41:44 -07003533 + " " + getWindowTag();
3534 }
3535
Robert Carra1eb4392015-12-10 12:43:51 -08003536 CharSequence getWindowTag() {
Wale Ogunwalecad05a02015-09-25 10:41:44 -07003537 CharSequence tag = mAttrs.getTitle();
3538 if (tag == null || tag.length() <= 0) {
3539 tag = mAttrs.packageName;
3540 }
3541 return tag;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08003542 }
3543
3544 @Override
3545 public String toString() {
Wale Ogunwalecad05a02015-09-25 10:41:44 -07003546 final CharSequence title = getWindowTag();
Wale Ogunwalec48a3542016-02-19 15:18:45 -08003547 if (mStringNameCache == null || mLastTitle != title || mWasExiting != mAnimatingExit) {
Dianne Hackbornc2293022013-02-06 23:14:49 -08003548 mLastTitle = title;
Wale Ogunwalec48a3542016-02-19 15:18:45 -08003549 mWasExiting = mAnimatingExit;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08003550 mStringNameCache = "Window{" + Integer.toHexString(System.identityHashCode(this))
Wale Ogunwalee4343ef2016-07-19 08:00:46 -07003551 + " u" + UserHandle.getUserId(mOwnerUid)
Wale Ogunwalec48a3542016-02-19 15:18:45 -08003552 + " " + mLastTitle + (mAnimatingExit ? " EXITING}" : "}");
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08003553 }
3554 return mStringNameCache;
3555 }
Robert Carr58f29132015-10-29 14:19:05 -07003556
Chia-I Wue6bcaf12016-05-27 10:58:48 +08003557 void transformClipRectFromScreenToSurfaceSpace(Rect clipRect) {
Robert Carr58f29132015-10-29 14:19:05 -07003558 if (mHScale >= 0) {
Chia-I Wue6bcaf12016-05-27 10:58:48 +08003559 clipRect.left = (int) (clipRect.left / mHScale);
3560 clipRect.right = (int) Math.ceil(clipRect.right / mHScale);
Robert Carr58f29132015-10-29 14:19:05 -07003561 }
3562 if (mVScale >= 0) {
Chia-I Wue6bcaf12016-05-27 10:58:48 +08003563 clipRect.top = (int) (clipRect.top / mVScale);
3564 clipRect.bottom = (int) Math.ceil(clipRect.bottom / mVScale);
Robert Carr58f29132015-10-29 14:19:05 -07003565 }
3566 }
Robert Carr31e28482015-12-02 16:53:18 -08003567
Jorim Jaggif5834272016-04-04 20:25:41 -07003568 void applyGravityAndUpdateFrame(Rect containingFrame, Rect displayFrame) {
3569 final int pw = containingFrame.width();
3570 final int ph = containingFrame.height();
Robert Carr31e28482015-12-02 16:53:18 -08003571 final Task task = getTask();
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -07003572 final boolean inNonFullscreenContainer = !inFullscreenContainer();
Jorim Jaggi5f23a572016-04-22 15:05:50 -07003573 final boolean noLimits = (mAttrs.flags & FLAG_LAYOUT_NO_LIMITS) != 0;
3574
3575 // We need to fit it to the display if either
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -07003576 // a) The window is in a fullscreen container, or we don't have a task (we assume fullscreen
3577 // for the taskless windows)
Robert Carr6f44db12016-07-21 14:54:43 -07003578 // b) If it's a secondary app window, we also need to fit it to the display unless
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -07003579 // FLAG_LAYOUT_NO_LIMITS is set. This is so we place Popups, dialogs, and similar windows on
3580 // screen, but SurfaceViews want to be always at a specific location so we don't fit it to
3581 // the display.
3582 final boolean fitToDisplay = (task == null || !inNonFullscreenContainer)
Robert Carr6f44db12016-07-21 14:54:43 -07003583 || ((mAttrs.type != TYPE_BASE_APPLICATION) && !noLimits);
Robert Carr31e28482015-12-02 16:53:18 -08003584 float x, y;
3585 int w,h;
3586
3587 if ((mAttrs.flags & FLAG_SCALED) != 0) {
3588 if (mAttrs.width < 0) {
3589 w = pw;
3590 } else if (mEnforceSizeCompat) {
3591 w = (int)(mAttrs.width * mGlobalScale + .5f);
3592 } else {
3593 w = mAttrs.width;
3594 }
3595 if (mAttrs.height < 0) {
3596 h = ph;
3597 } else if (mEnforceSizeCompat) {
3598 h = (int)(mAttrs.height * mGlobalScale + .5f);
3599 } else {
3600 h = mAttrs.height;
3601 }
3602 } else {
3603 if (mAttrs.width == MATCH_PARENT) {
3604 w = pw;
3605 } else if (mEnforceSizeCompat) {
3606 w = (int)(mRequestedWidth * mGlobalScale + .5f);
3607 } else {
3608 w = mRequestedWidth;
3609 }
3610 if (mAttrs.height == MATCH_PARENT) {
3611 h = ph;
3612 } else if (mEnforceSizeCompat) {
3613 h = (int)(mRequestedHeight * mGlobalScale + .5f);
3614 } else {
3615 h = mRequestedHeight;
3616 }
3617 }
3618
3619 if (mEnforceSizeCompat) {
3620 x = mAttrs.x * mGlobalScale;
3621 y = mAttrs.y * mGlobalScale;
3622 } else {
3623 x = mAttrs.x;
3624 y = mAttrs.y;
3625 }
3626
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -07003627 if (inNonFullscreenContainer && !layoutInParentFrame()) {
Wale Ogunwale79f268d2015-12-18 08:25:47 -08003628 // Make sure window fits in containing frame since it is in a non-fullscreen task as
Robert Carr31e28482015-12-02 16:53:18 -08003629 // required by {@link Gravity#apply} call.
3630 w = Math.min(w, pw);
3631 h = Math.min(h, ph);
3632 }
3633
3634 // Set mFrame
Jorim Jaggif5834272016-04-04 20:25:41 -07003635 Gravity.apply(mAttrs.gravity, w, h, containingFrame,
Robert Carr31e28482015-12-02 16:53:18 -08003636 (int) (x + mAttrs.horizontalMargin * pw),
3637 (int) (y + mAttrs.verticalMargin * ph), mFrame);
3638
3639 // Now make sure the window fits in the overall display frame.
Robert Carre6275582016-02-29 15:45:45 -08003640 if (fitToDisplay) {
Jorim Jaggif5834272016-04-04 20:25:41 -07003641 Gravity.applyDisplay(mAttrs.gravity, displayFrame, mFrame);
Robert Carre6275582016-02-29 15:45:45 -08003642 }
Robert Carr6e18c5e2016-02-29 15:57:13 -08003643
3644 // We need to make sure we update the CompatFrame as it is used for
3645 // cropping decisions, etc, on systems where we lack a decor layer.
3646 mCompatFrame.set(mFrame);
3647 if (mEnforceSizeCompat) {
3648 // See comparable block in computeFrameLw.
3649 mCompatFrame.scale(mInvGlobalScale);
3650 }
Robert Carr31e28482015-12-02 16:53:18 -08003651 }
Robert Carr51a1b872015-12-08 14:03:13 -08003652
3653 boolean isChildWindow() {
Wale Ogunwalee4343ef2016-07-19 08:00:46 -07003654 return mIsChildWindow;
Wale Ogunwaleadde52e2016-07-16 13:11:55 -07003655 }
3656
Robert Carrf3b72c72016-03-21 18:16:39 -07003657 boolean layoutInParentFrame() {
Wale Ogunwalee4343ef2016-07-19 08:00:46 -07003658 return mIsChildWindow
3659 && (mAttrs.privateFlags & PRIVATE_FLAG_LAYOUT_CHILD_WINDOW_IN_PARENT_FRAME) != 0;
Robert Carrf3b72c72016-03-21 18:16:39 -07003660 }
3661
Wale Ogunwalecaa53af2016-07-17 14:50:26 -07003662 /** Returns the parent window if this is a child of another window, else null. */
3663 WindowState getParentWindow() {
Wale Ogunwalee4343ef2016-07-19 08:00:46 -07003664 // NOTE: We are not calling getParent() directly as the WindowState might be a child of a
3665 // WindowContainer that isn't a WindowState.
3666 return (mIsChildWindow) ? ((WindowState) super.getParent()) : null;
Wale Ogunwalecaa53af2016-07-17 14:50:26 -07003667 }
3668
3669 /** Returns the topmost parent window if this is a child of another window, else this. */
3670 WindowState getTopParentWindow() {
Wale Ogunwaleea92d972016-12-08 07:33:13 -08003671 WindowState current = this;
3672 WindowState topParent = current;
3673 while (current != null && current.mIsChildWindow) {
3674 current = current.getParentWindow();
3675 // Parent window can be null if the child is detached from it's parent already, but
3676 // someone still has a reference to access it. So, we return the top parent value we
3677 // already have instead of null.
3678 if (current != null) {
3679 topParent = current;
3680 }
Wale Ogunwalecaa53af2016-07-17 14:50:26 -07003681 }
Wale Ogunwaleea92d972016-12-08 07:33:13 -08003682 return topParent;
Wale Ogunwalecaa53af2016-07-17 14:50:26 -07003683 }
3684
Wale Ogunwale9d147902016-07-16 11:58:55 -07003685 boolean isParentWindowHidden() {
Wale Ogunwalee4343ef2016-07-19 08:00:46 -07003686 final WindowState parent = getParentWindow();
Wale Ogunwaleea92d972016-12-08 07:33:13 -08003687 return parent != null && parent.mHidden;
Wale Ogunwale9d147902016-07-16 11:58:55 -07003688 }
3689
Wale Ogunwale9bc47732016-08-10 14:44:22 -07003690 void setWillReplaceWindow(boolean animate) {
3691 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07003692 final WindowState c = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07003693 c.setWillReplaceWindow(animate);
3694 }
3695
Wale Ogunwale6d8e06b2016-01-05 10:43:25 -08003696 if ((mAttrs.privateFlags & PRIVATE_FLAG_WILL_NOT_REPLACE_ON_RELAUNCH) != 0
3697 || mAttrs.type == TYPE_APPLICATION_STARTING) {
3698 // We don't set replacing on starting windows since they are added by window manager and
3699 // not the client so won't be replaced by the client.
3700 return;
Robert Carra1eb4392015-12-10 12:43:51 -08003701 }
Wale Ogunwale6d8e06b2016-01-05 10:43:25 -08003702
3703 mWillReplaceWindow = true;
Wale Ogunwale9bc47732016-08-10 14:44:22 -07003704 mReplacementWindow = null;
Wale Ogunwale6d8e06b2016-01-05 10:43:25 -08003705 mAnimateReplacingWindow = animate;
Robert Carra1eb4392015-12-10 12:43:51 -08003706 }
Chong Zhangf596cd52016-01-05 13:42:44 -08003707
Wale Ogunwale9bc47732016-08-10 14:44:22 -07003708 void clearWillReplaceWindow() {
Chong Zhangf596cd52016-01-05 13:42:44 -08003709 mWillReplaceWindow = false;
Wale Ogunwale9bc47732016-08-10 14:44:22 -07003710 mReplacementWindow = null;
Chong Zhangf596cd52016-01-05 13:42:44 -08003711 mAnimateReplacingWindow = false;
Wale Ogunwale9bc47732016-08-10 14:44:22 -07003712
3713 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07003714 final WindowState c = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07003715 c.clearWillReplaceWindow();
3716 }
3717 }
3718
3719 boolean waitingForReplacement() {
3720 if (mWillReplaceWindow) {
3721 return true;
3722 }
3723
3724 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07003725 final WindowState c = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07003726 if (c.waitingForReplacement()) {
3727 return true;
3728 }
3729 }
3730 return false;
Chong Zhangf596cd52016-01-05 13:42:44 -08003731 }
Vladislav Kaznacheev989b58a2016-02-10 12:19:33 -08003732
Chong Zhang4d7369a2016-04-25 16:09:14 -07003733 void requestUpdateWallpaperIfNeeded() {
Wale Ogunwale360a8bc2016-10-10 13:25:26 -07003734 final DisplayContent dc = getDisplayContent();
3735 if (dc != null && (mAttrs.flags & FLAG_SHOW_WALLPAPER) != 0) {
3736 dc.pendingLayoutChanges |= FINISH_LAYOUT_REDO_WALLPAPER;
3737 dc.setLayoutNeeded();
Chong Zhang4d7369a2016-04-25 16:09:14 -07003738 mService.mWindowPlacerLocked.requestTraversal();
3739 }
Wale Ogunwale9bc47732016-08-10 14:44:22 -07003740
3741 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07003742 final WindowState c = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07003743 c.requestUpdateWallpaperIfNeeded();
3744 }
Chong Zhang4d7369a2016-04-25 16:09:14 -07003745 }
3746
Vladislav Kaznacheev989b58a2016-02-10 12:19:33 -08003747 float translateToWindowX(float x) {
3748 float winX = x - mFrame.left;
3749 if (mEnforceSizeCompat) {
3750 winX *= mGlobalScale;
3751 }
3752 return winX;
3753 }
3754
3755 float translateToWindowY(float y) {
3756 float winY = y - mFrame.top;
3757 if (mEnforceSizeCompat) {
3758 winY *= mGlobalScale;
3759 }
3760 return winY;
3761 }
Robert Carrd1a010f2016-04-07 22:36:22 -07003762
Wale Ogunwale360a8bc2016-10-10 13:25:26 -07003763 private void transferDimToReplacement() {
Robert Carr9fe459d2016-04-07 23:32:28 -07003764 final DimLayer.DimLayerUser dimLayerUser = getDimLayerUser();
Wale Ogunwale360a8bc2016-10-10 13:25:26 -07003765 final DisplayContent dc = getDisplayContent();
3766 if (dimLayerUser != null && dc != null) {
3767 dc.mDimLayerController.applyDim(dimLayerUser,
3768 mReplacementWindow.mWinAnimator, (mAttrs.flags & FLAG_DIM_BEHIND) != 0);
Robert Carr9fe459d2016-04-07 23:32:28 -07003769 }
3770 }
3771
Robert Carrd1a010f2016-04-07 22:36:22 -07003772 // During activity relaunch due to resize, we sometimes use window replacement
3773 // for only child windows (as the main window is handled by window preservation)
3774 // and the big surface.
3775 //
Chong Zhangfea963e2016-08-15 17:14:16 -07003776 // Though windows of TYPE_APPLICATION or TYPE_DRAWN_APPLICATION (as opposed to
3777 // TYPE_BASE_APPLICATION) are not children in the sense of an attached window,
3778 // we also want to replace them at such phases, as they won't be covered by window
3779 // preservation, and in general we expect them to return following relaunch.
Robert Carrd1a010f2016-04-07 22:36:22 -07003780 boolean shouldBeReplacedWithChildren() {
Chong Zhang921f8e32016-08-17 14:26:57 -07003781 return mIsChildWindow || mAttrs.type == TYPE_APPLICATION
Chong Zhangfea963e2016-08-15 17:14:16 -07003782 || mAttrs.type == TYPE_DRAWN_APPLICATION;
Robert Carrd1a010f2016-04-07 22:36:22 -07003783 }
Robert Carrfd10cd12016-06-29 16:41:50 -07003784
Wale Ogunwale9bc47732016-08-10 14:44:22 -07003785 void setWillReplaceChildWindows() {
3786 if (shouldBeReplacedWithChildren()) {
3787 setWillReplaceWindow(false /* animate */);
3788 }
3789 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07003790 final WindowState c = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07003791 c.setWillReplaceChildWindows();
3792 }
3793 }
3794
3795 WindowState getReplacingWindow() {
3796 if (mAnimatingExit && mWillReplaceWindow && mAnimateReplacingWindow) {
3797 return this;
3798 }
3799 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07003800 final WindowState c = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07003801 final WindowState replacing = c.getReplacingWindow();
3802 if (replacing != null) {
3803 return replacing;
3804 }
3805 }
3806 return null;
3807 }
3808
Jorim Jaggife762342016-10-13 14:33:27 +02003809 @Override
Robert Carrfd10cd12016-06-29 16:41:50 -07003810 public int getRotationAnimationHint() {
3811 if (mAppToken != null) {
3812 return mAppToken.mRotationAnimationHint;
3813 } else {
3814 return -1;
3815 }
3816 }
Wale Ogunwale9d147902016-07-16 11:58:55 -07003817
Jorim Jaggife762342016-10-13 14:33:27 +02003818 @Override
3819 public boolean isInputMethodWindow() {
3820 return mIsImWindow;
3821 }
3822
Wale Ogunwale9d147902016-07-16 11:58:55 -07003823 // This must be called while inside a transaction.
3824 boolean performShowLocked() {
3825 if (isHiddenFromUserLocked()) {
3826 if (DEBUG_VISIBILITY) Slog.w(TAG, "hiding " + this + ", belonging to " + mOwnerUid);
3827 hideLw(false);
3828 return false;
3829 }
3830
3831 logPerformShow("performShow on ");
3832
Jorim Jaggia50da602016-12-29 11:51:42 +01003833 final int drawState = mWinAnimator.mDrawState;
3834 if ((drawState == HAS_DRAWN || drawState == READY_TO_SHOW)
3835 && mAttrs.type != TYPE_APPLICATION_STARTING && mAppToken != null) {
3836 mAppToken.onFirstWindowDrawn(this, mWinAnimator);
3837 }
3838
Jorim Jaggib0d27342016-11-01 16:10:42 -07003839 if (mWinAnimator.mDrawState != READY_TO_SHOW || !isReadyForDisplay()) {
Wale Ogunwale9d147902016-07-16 11:58:55 -07003840 return false;
3841 }
3842
3843 logPerformShow("Showing ");
3844
3845 mService.enableScreenIfNeededLocked();
3846 mWinAnimator.applyEnterAnimationLocked();
3847
3848 // Force the show in the next prepareSurfaceLocked() call.
3849 mWinAnimator.mLastAlpha = -1;
3850 if (DEBUG_SURFACE_TRACE || DEBUG_ANIM) Slog.v(TAG,
3851 "performShowLocked: mDrawState=HAS_DRAWN in " + this);
3852 mWinAnimator.mDrawState = HAS_DRAWN;
3853 mService.scheduleAnimationLocked();
3854
3855 if (mHidden) {
3856 mHidden = false;
3857 final DisplayContent displayContent = getDisplayContent();
3858
Wale Ogunwalee4343ef2016-07-19 08:00:46 -07003859 for (int i = mChildren.size() - 1; i >= 0; --i) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07003860 final WindowState c = mChildren.get(i);
Wale Ogunwale9d147902016-07-16 11:58:55 -07003861 if (c.mWinAnimator.mSurfaceController != null) {
3862 c.performShowLocked();
3863 // It hadn't been shown, which means layout not performed on it, so now we
3864 // want to make sure to do a layout. If called from within the transaction
3865 // loop, this will cause it to restart with a new layout.
3866 if (displayContent != null) {
Wale Ogunwale2b06bfc2016-09-28 14:17:05 -07003867 displayContent.setLayoutNeeded();
Wale Ogunwale9d147902016-07-16 11:58:55 -07003868 }
3869 }
3870 }
3871 }
3872
Wale Ogunwale9d147902016-07-16 11:58:55 -07003873 if (mAttrs.type == TYPE_INPUT_METHOD) {
Wale Ogunwale360a8bc2016-10-10 13:25:26 -07003874 getDisplayContent().mDividerControllerLocked.resetImeHideRequested();
Wale Ogunwale9d147902016-07-16 11:58:55 -07003875 }
3876
3877 return true;
3878 }
3879
Wale Ogunwale360a8bc2016-10-10 13:25:26 -07003880 private void logPerformShow(String prefix) {
Wale Ogunwale9d147902016-07-16 11:58:55 -07003881 if (DEBUG_VISIBILITY
Jorim Jaggie4b0f282017-05-17 15:10:29 +02003882 || (DEBUG_STARTING_WINDOW_VERBOSE && mAttrs.type == TYPE_APPLICATION_STARTING)) {
Wale Ogunwale9d147902016-07-16 11:58:55 -07003883 Slog.v(TAG, prefix + this
3884 + ": mDrawState=" + mWinAnimator.drawStateToString()
Jorim Jaggib0d27342016-11-01 16:10:42 -07003885 + " readyForDisplay=" + isReadyForDisplay()
Wale Ogunwale9d147902016-07-16 11:58:55 -07003886 + " starting=" + (mAttrs.type == TYPE_APPLICATION_STARTING)
3887 + " during animation: policyVis=" + mPolicyVisibility
3888 + " parentHidden=" + isParentWindowHidden()
3889 + " tok.hiddenRequested="
Wale Ogunwale360a8bc2016-10-10 13:25:26 -07003890 + (mAppToken != null && mAppToken.hiddenRequested)
3891 + " tok.hidden=" + (mAppToken != null && mAppToken.hidden)
Wale Ogunwale9d147902016-07-16 11:58:55 -07003892 + " animating=" + mWinAnimator.mAnimating
3893 + " tok animating="
Wale Ogunwale360a8bc2016-10-10 13:25:26 -07003894 + (mWinAnimator.mAppAnimator != null && mWinAnimator.mAppAnimator.animating)
Wale Ogunwale9d147902016-07-16 11:58:55 -07003895 + " Callers=" + Debug.getCallers(4));
3896 }
3897 }
Wale Ogunwaleadde52e2016-07-16 13:11:55 -07003898
3899 WindowInfo getWindowInfo() {
3900 WindowInfo windowInfo = WindowInfo.obtain();
3901 windowInfo.type = mAttrs.type;
3902 windowInfo.layer = mLayer;
3903 windowInfo.token = mClient.asBinder();
3904 windowInfo.title = mAttrs.accessibilityTitle;
3905 windowInfo.accessibilityIdOfAnchor = mAttrs.accessibilityIdOfAnchor;
3906 windowInfo.focused = isFocused();
Phil Weaverf00cd142017-03-03 13:44:00 -08003907 Task task = getTask();
3908 windowInfo.inPictureInPicture = (task != null) && task.inPinnedWorkspace();
Wale Ogunwaleadde52e2016-07-16 13:11:55 -07003909
Wale Ogunwalee4343ef2016-07-19 08:00:46 -07003910 if (mIsChildWindow) {
3911 windowInfo.parentToken = getParentWindow().mClient.asBinder();
Wale Ogunwaleadde52e2016-07-16 13:11:55 -07003912 }
3913
Wale Ogunwalee4343ef2016-07-19 08:00:46 -07003914 final int childCount = mChildren.size();
Wale Ogunwaleadde52e2016-07-16 13:11:55 -07003915 if (childCount > 0) {
3916 if (windowInfo.childTokens == null) {
Wale Ogunwalee4343ef2016-07-19 08:00:46 -07003917 windowInfo.childTokens = new ArrayList(childCount);
Wale Ogunwaleadde52e2016-07-16 13:11:55 -07003918 }
3919 for (int j = 0; j < childCount; j++) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07003920 final WindowState child = mChildren.get(j);
Wale Ogunwaleadde52e2016-07-16 13:11:55 -07003921 windowInfo.childTokens.add(child.mClient.asBinder());
3922 }
3923 }
Wale Ogunwaleadde52e2016-07-16 13:11:55 -07003924 return windowInfo;
3925 }
3926
Wale Ogunwale9bc47732016-08-10 14:44:22 -07003927 int getHighestAnimLayer() {
3928 int highest = mWinAnimator.mAnimLayer;
3929 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07003930 final WindowState c = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07003931 final int childLayer = c.getHighestAnimLayer();
3932 if (childLayer > highest) {
3933 highest = childLayer;
3934 }
3935 }
3936 return highest;
3937 }
3938
Wale Ogunwale9adfe572016-09-08 20:43:58 -07003939 @Override
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08003940 boolean forAllWindows(ToBooleanFunction<WindowState> callback, boolean traverseTopToBottom) {
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07003941 if (mChildren.isEmpty()) {
3942 // The window has no children so we just return it.
Wale Ogunwale3c1170d2016-12-02 14:44:52 -08003943 return applyInOrderWithImeWindows(callback, traverseTopToBottom);
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07003944 }
3945
3946 if (traverseTopToBottom) {
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08003947 return forAllWindowTopToBottom(callback);
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07003948 } else {
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08003949 return forAllWindowBottomToTop(callback);
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07003950 }
3951 }
3952
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08003953 private boolean forAllWindowBottomToTop(ToBooleanFunction<WindowState> callback) {
Wale Ogunwale34247952017-02-19 11:57:53 -08003954 // We want to consume the negative sublayer children first because they need to appear
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07003955 // below the parent, then this window (the parent), and then the positive sublayer children
3956 // because they need to appear above the parent.
3957 int i = 0;
3958 final int count = mChildren.size();
3959 WindowState child = mChildren.get(i);
3960
3961 while (i < count && child.mSubLayer < 0) {
Wale Ogunwale34247952017-02-19 11:57:53 -08003962 if (child.applyInOrderWithImeWindows(callback, false /* traverseTopToBottom */)) {
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08003963 return true;
3964 }
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07003965 i++;
3966 if (i >= count) {
3967 break;
3968 }
3969 child = mChildren.get(i);
3970 }
3971
Wale Ogunwale3c1170d2016-12-02 14:44:52 -08003972 if (applyInOrderWithImeWindows(callback, false /* traverseTopToBottom */)) {
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08003973 return true;
3974 }
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07003975
3976 while (i < count) {
Wale Ogunwale34247952017-02-19 11:57:53 -08003977 if (child.applyInOrderWithImeWindows(callback, false /* traverseTopToBottom */)) {
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08003978 return true;
3979 }
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07003980 i++;
3981 if (i >= count) {
3982 break;
3983 }
3984 child = mChildren.get(i);
3985 }
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08003986
3987 return false;
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07003988 }
3989
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08003990 private boolean forAllWindowTopToBottom(ToBooleanFunction<WindowState> callback) {
Wale Ogunwale34247952017-02-19 11:57:53 -08003991 // We want to consume the positive sublayer children first because they need to appear
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07003992 // above the parent, then this window (the parent), and then the negative sublayer children
3993 // because they need to appear above the parent.
3994 int i = mChildren.size() - 1;
3995 WindowState child = mChildren.get(i);
3996
3997 while (i >= 0 && child.mSubLayer >= 0) {
Wale Ogunwale34247952017-02-19 11:57:53 -08003998 if (child.applyInOrderWithImeWindows(callback, true /* traverseTopToBottom */)) {
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08003999 return true;
4000 }
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07004001 --i;
4002 if (i < 0) {
4003 break;
4004 }
4005 child = mChildren.get(i);
4006 }
4007
Wale Ogunwale3c1170d2016-12-02 14:44:52 -08004008 if (applyInOrderWithImeWindows(callback, true /* traverseTopToBottom */)) {
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08004009 return true;
4010 }
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07004011
4012 while (i >= 0) {
Wale Ogunwale34247952017-02-19 11:57:53 -08004013 if (child.applyInOrderWithImeWindows(callback, true /* traverseTopToBottom */)) {
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08004014 return true;
4015 }
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07004016 --i;
4017 if (i < 0) {
4018 break;
4019 }
4020 child = mChildren.get(i);
4021 }
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08004022
4023 return false;
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07004024 }
4025
Wale Ogunwale3c1170d2016-12-02 14:44:52 -08004026 private boolean applyInOrderWithImeWindows(ToBooleanFunction<WindowState> callback,
4027 boolean traverseTopToBottom) {
4028 if (traverseTopToBottom) {
4029 if (mService.mInputMethodTarget == this) {
4030 // This window is the current IME target, so we need to process the IME windows
4031 // directly above it.
4032 if (getDisplayContent().forAllImeWindows(callback, traverseTopToBottom)) {
4033 return true;
4034 }
4035 }
4036 if (callback.apply(this)) {
4037 return true;
4038 }
4039 } else {
4040 if (callback.apply(this)) {
4041 return true;
4042 }
4043 if (mService.mInputMethodTarget == this) {
4044 // This window is the current IME target, so we need to process the IME windows
4045 // directly above it.
4046 if (getDisplayContent().forAllImeWindows(callback, traverseTopToBottom)) {
4047 return true;
4048 }
4049 }
4050 }
4051
4052 return false;
4053 }
4054
Wale Ogunwaled1880962016-11-08 10:31:59 -08004055 WindowState getWindow(Predicate<WindowState> callback) {
Wale Ogunwale34247952017-02-19 11:57:53 -08004056 if (mChildren.isEmpty()) {
4057 return callback.test(this) ? this : null;
4058 }
4059
4060 // We want to consume the positive sublayer children first because they need to appear
4061 // above the parent, then this window (the parent), and then the negative sublayer children
4062 // because they need to appear above the parent.
4063 int i = mChildren.size() - 1;
4064 WindowState child = mChildren.get(i);
4065
4066 while (i >= 0 && child.mSubLayer >= 0) {
4067 if (callback.test(child)) {
4068 return child;
4069 }
4070 --i;
4071 if (i < 0) {
4072 break;
4073 }
4074 child = mChildren.get(i);
4075 }
4076
Wale Ogunwaled1880962016-11-08 10:31:59 -08004077 if (callback.test(this)) {
4078 return this;
4079 }
Wale Ogunwale34247952017-02-19 11:57:53 -08004080
4081 while (i >= 0) {
4082 if (callback.test(child)) {
4083 return child;
4084 }
4085 --i;
4086 if (i < 0) {
4087 break;
4088 }
4089 child = mChildren.get(i);
4090 }
4091
4092 return null;
Wale Ogunwaled1880962016-11-08 10:31:59 -08004093 }
4094
Wale Ogunwale9bc47732016-08-10 14:44:22 -07004095 boolean isWindowAnimationSet() {
4096 if (mWinAnimator.isWindowAnimationSet()) {
4097 return true;
4098 }
4099 for (int i = mChildren.size() - 1; i >= 0; --i) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07004100 final WindowState c = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07004101 if (c.isWindowAnimationSet()) {
4102 return true;
4103 }
4104 }
4105 return false;
4106 }
4107
Wale Ogunwaleadde52e2016-07-16 13:11:55 -07004108 void onExitAnimationDone() {
4109 if (DEBUG_ANIM) Slog.v(TAG, "onExitAnimationDone in " + this
4110 + ": exiting=" + mAnimatingExit + " remove=" + mRemoveOnExit
4111 + " windowAnimating=" + mWinAnimator.isWindowAnimationSet());
4112
Wale Ogunwalee4343ef2016-07-19 08:00:46 -07004113 if (!mChildren.isEmpty()) {
Wale Ogunwaleadde52e2016-07-16 13:11:55 -07004114 // Copying to a different list as multiple children can be removed.
Wale Ogunwalee4343ef2016-07-19 08:00:46 -07004115 // TODO: Not sure if we really need to copy this into a different list.
Wale Ogunwaled90546a2016-09-09 23:28:03 -07004116 final LinkedList<WindowState> childWindows = new LinkedList(mChildren);
Wale Ogunwaleadde52e2016-07-16 13:11:55 -07004117 for (int i = childWindows.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07004118 childWindows.get(i).onExitAnimationDone();
Wale Ogunwaleadde52e2016-07-16 13:11:55 -07004119 }
4120 }
4121
4122 if (mWinAnimator.mEnteringAnimation) {
4123 mWinAnimator.mEnteringAnimation = false;
4124 mService.requestTraversal();
4125 // System windows don't have an activity and an app token as a result, but need a way
4126 // to be informed about their entrance animation end.
4127 if (mAppToken == null) {
4128 try {
4129 mClient.dispatchWindowShown();
4130 } catch (RemoteException e) {
4131 }
4132 }
4133 }
4134
4135 if (!mWinAnimator.isWindowAnimationSet()) {
4136 //TODO (multidisplay): Accessibility is supported only for the default display.
4137 if (mService.mAccessibilityController != null && getDisplayId() == DEFAULT_DISPLAY) {
4138 mService.mAccessibilityController.onSomeWindowResizedOrMovedLocked();
4139 }
4140 }
4141
4142 if (!mAnimatingExit) {
4143 return;
4144 }
4145
4146 if (mWinAnimator.isWindowAnimationSet()) {
4147 return;
4148 }
4149
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07004150 if (localLOGV || DEBUG_ADD_REMOVE) Slog.v(TAG,
Wale Ogunwaleadde52e2016-07-16 13:11:55 -07004151 "Exit animation finished in " + this + ": remove=" + mRemoveOnExit);
4152
4153 mDestroying = true;
4154
4155 final boolean hasSurface = mWinAnimator.hasSurface();
4156 if (hasSurface) {
4157 mWinAnimator.hide("onExitAnimationDone");
4158 }
4159
4160 // If we have an app token, we ask it to destroy the surface for us, so that it can take
4161 // care to ensure the activity has actually stopped and the surface is not still in use.
4162 // Otherwise we add the service to mDestroySurface and allow it to be processed in our next
4163 // transaction.
4164 if (mAppToken != null) {
4165 mAppToken.destroySurfaces();
4166 } else {
4167 if (hasSurface) {
4168 mService.mDestroySurface.add(this);
4169 }
4170 if (mRemoveOnExit) {
4171 mService.mPendingRemove.add(this);
4172 mRemoveOnExit = false;
4173 }
4174 }
4175 mAnimatingExit = false;
Wale Ogunwale0303c572016-10-20 10:16:29 -07004176 getDisplayContent().mWallpaperController.hideWallpapers(this);
Wale Ogunwaleadde52e2016-07-16 13:11:55 -07004177 }
Dan Willemsen117197f2016-07-30 13:02:59 -07004178
Wale Ogunwale9bc47732016-08-10 14:44:22 -07004179 boolean clearAnimatingFlags() {
4180 boolean didSomething = false;
4181 // We don't want to clear it out for windows that get replaced, because the
4182 // animation depends on the flag to remove the replaced window.
4183 //
4184 // We also don't clear the mAnimatingExit flag for windows which have the
4185 // mRemoveOnExit flag. This indicates an explicit remove request has been issued
4186 // by the client. We should let animation proceed and not clear this flag or
4187 // they won't eventually be removed by WindowStateAnimator#finishExit.
4188 if (!mWillReplaceWindow && !mRemoveOnExit) {
4189 // Clear mAnimating flag together with mAnimatingExit. When animation
4190 // changes from exiting to entering, we need to clear this flag until the
4191 // new animation gets applied, so that isAnimationStarting() becomes true
4192 // until then.
4193 // Otherwise applySurfaceChangesTransaction will fail to skip surface
4194 // placement for this window during this period, one or more frame will
4195 // show up with wrong position or scale.
4196 if (mAnimatingExit) {
4197 mAnimatingExit = false;
4198 didSomething = true;
4199 }
4200 if (mWinAnimator.mAnimating) {
4201 mWinAnimator.mAnimating = false;
4202 didSomething = true;
4203 }
4204 if (mDestroying) {
4205 mDestroying = false;
4206 mService.mDestroySurface.remove(this);
4207 didSomething = true;
4208 }
4209 }
4210
4211 for (int i = mChildren.size() - 1; i >= 0; --i) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07004212 didSomething |= (mChildren.get(i)).clearAnimatingFlags();
Wale Ogunwale9bc47732016-08-10 14:44:22 -07004213 }
4214
4215 return didSomething;
4216 }
4217
Winson4b4ba902016-07-27 19:45:52 -07004218 public boolean isRtl() {
Andrii Kulian9d91ca62016-09-29 22:28:09 -07004219 return getConfiguration().getLayoutDirection() == View.LAYOUT_DIRECTION_RTL;
Winson4b4ba902016-07-27 19:45:52 -07004220 }
Wale Ogunwalee4da0c12016-07-29 12:47:02 -07004221
4222 void hideWallpaperWindow(boolean wasDeferred, String reason) {
Wale Ogunwale9bc47732016-08-10 14:44:22 -07004223 for (int j = mChildren.size() - 1; j >= 0; --j) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07004224 final WindowState c = mChildren.get(j);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07004225 c.hideWallpaperWindow(wasDeferred, reason);
4226 }
Wale Ogunwalee4da0c12016-07-29 12:47:02 -07004227 if (!mWinAnimator.mLastHidden || wasDeferred) {
4228 mWinAnimator.hide(reason);
4229 dispatchWallpaperVisibility(false);
4230 final DisplayContent displayContent = getDisplayContent();
4231 if (displayContent != null) {
4232 displayContent.pendingLayoutChanges |= FINISH_LAYOUT_REDO_WALLPAPER;
4233 }
4234 }
4235 }
4236
4237 /**
4238 * Check wallpaper window for visibility change and notify window if so.
4239 * @param visible Current visibility.
4240 */
4241 void dispatchWallpaperVisibility(final boolean visible) {
4242 final boolean hideAllowed =
Wale Ogunwale0303c572016-10-20 10:16:29 -07004243 getDisplayContent().mWallpaperController.mDeferredHideWallpaper == null;
Wale Ogunwalee4da0c12016-07-29 12:47:02 -07004244
4245 // Only send notification if the visibility actually changed and we are not trying to hide
4246 // the wallpaper when we are deferring hiding of the wallpaper.
4247 if (mWallpaperVisible != visible && (hideAllowed || visible)) {
4248 mWallpaperVisible = visible;
4249 try {
4250 if (DEBUG_VISIBILITY || DEBUG_WALLPAPER_LIGHT) Slog.v(TAG,
4251 "Updating vis of wallpaper " + this
4252 + ": " + visible + " from:\n" + Debug.getCallers(4, " "));
4253 mClient.dispatchAppVisibility(visible);
4254 } catch (RemoteException e) {
4255 }
4256 }
4257 }
4258
Wale Ogunwale9bc47732016-08-10 14:44:22 -07004259 boolean hasVisibleNotDrawnWallpaper() {
4260 if (mWallpaperVisible && !isDrawnLw()) {
4261 return true;
4262 }
4263 for (int j = mChildren.size() - 1; j >= 0; --j) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07004264 final WindowState c = mChildren.get(j);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07004265 if (c.hasVisibleNotDrawnWallpaper()) {
4266 return true;
4267 }
4268 }
4269 return false;
4270 }
4271
Wale Ogunwale9bc47732016-08-10 14:44:22 -07004272 void updateReportedVisibility(UpdateReportedVisibilityResults results) {
4273 for (int i = mChildren.size() - 1; i >= 0; --i) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07004274 final WindowState c = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07004275 c.updateReportedVisibility(results);
4276 }
4277
4278 if (mAppFreezing || mViewVisibility != View.VISIBLE
4279 || mAttrs.type == TYPE_APPLICATION_STARTING
4280 || mDestroying) {
4281 return;
4282 }
4283 if (DEBUG_VISIBILITY) {
4284 Slog.v(TAG, "Win " + this + ": isDrawn=" + isDrawnLw()
4285 + ", isAnimationSet=" + mWinAnimator.isAnimationSet());
4286 if (!isDrawnLw()) {
4287 Slog.v(TAG, "Not displayed: s=" + mWinAnimator.mSurfaceController
4288 + " pv=" + mPolicyVisibility
4289 + " mDrawState=" + mWinAnimator.mDrawState
4290 + " ph=" + isParentWindowHidden()
4291 + " th=" + (mAppToken != null ? mAppToken.hiddenRequested : false)
4292 + " a=" + mWinAnimator.mAnimating);
4293 }
4294 }
4295
4296 results.numInteresting++;
4297 if (isDrawnLw()) {
4298 results.numDrawn++;
4299 if (!mWinAnimator.isAnimationSet()) {
4300 results.numVisible++;
4301 }
4302 results.nowGone = false;
4303 } else if (mWinAnimator.isAnimationSet()) {
4304 results.nowGone = false;
4305 }
4306 }
4307
Robert Carrfbbde852016-10-18 11:02:28 -07004308 /**
4309 * Calculate the window crop according to system decor policy. In general this is
4310 * the system decor rect (see #calculateSystemDecorRect), but we also have some
4311 * special cases. This rectangle is in screen space.
4312 */
4313 void calculatePolicyCrop(Rect policyCrop) {
4314 final DisplayContent displayContent = getDisplayContent();
4315 final DisplayInfo displayInfo = displayContent.getDisplayInfo();
4316
4317 if (!isDefaultDisplay()) {
4318 // On a different display there is no system decor. Crop the window
4319 // by the screen boundaries.
4320 // TODO(multi-display)
4321 policyCrop.set(0, 0, mCompatFrame.width(), mCompatFrame.height());
4322 policyCrop.intersect(-mCompatFrame.left, -mCompatFrame.top,
4323 displayInfo.logicalWidth - mCompatFrame.left,
4324 displayInfo.logicalHeight - mCompatFrame.top);
4325 } else if (mLayer >= mService.mSystemDecorLayer) {
4326 // Above the decor layer is easy, just use the entire window
4327 policyCrop.set(0, 0, mCompatFrame.width(), mCompatFrame.height());
4328 } else if (mDecorFrame.isEmpty()) {
4329 // Windows without policy decor aren't cropped.
4330 policyCrop.set(0, 0, mCompatFrame.width(), mCompatFrame.height());
4331 } else {
4332 // Crop to the system decor specified by policy.
4333 calculateSystemDecorRect(policyCrop);
4334 }
4335 }
4336
4337 /**
4338 * The system decor rect is the region of the window which is not covered
4339 * by system decorations.
4340 */
4341 private void calculateSystemDecorRect(Rect systemDecorRect) {
4342 final Rect decorRect = mDecorFrame;
4343 final int width = mFrame.width();
4344 final int height = mFrame.height();
4345
4346 // Compute the offset of the window in relation to the decor rect.
4347 final int left = mXOffset + mFrame.left;
4348 final int top = mYOffset + mFrame.top;
4349
4350 // Initialize the decor rect to the entire frame.
4351 if (isDockedResizing()) {
4352 // If we are resizing with the divider, the task bounds might be smaller than the
4353 // stack bounds. The system decor is used to clip to the task bounds, which we don't
4354 // want in this case in order to avoid holes.
4355 //
4356 // We take care to not shrink the width, for surfaces which are larger than
4357 // the display region. Of course this area will not eventually be visible
4358 // but if we truncate the width now, we will calculate incorrectly
4359 // when adjusting to the stack bounds.
4360 final DisplayInfo displayInfo = getDisplayContent().getDisplayInfo();
4361 systemDecorRect.set(0, 0,
4362 Math.max(width, displayInfo.logicalWidth),
4363 Math.max(height, displayInfo.logicalHeight));
4364 } else {
4365 systemDecorRect.set(0, 0, width, height);
4366 }
4367
4368 // If a freeform window is animating from a position where it would be cutoff, it would be
4369 // cutoff during the animation. We don't want that, so for the duration of the animation
4370 // we ignore the decor cropping and depend on layering to position windows correctly.
4371 final boolean cropToDecor = !(inFreeformWorkspace() && isAnimatingLw());
4372 if (cropToDecor) {
4373 // Intersect with the decor rect, offsetted by window position.
4374 systemDecorRect.intersect(decorRect.left - left, decorRect.top - top,
4375 decorRect.right - left, decorRect.bottom - top);
4376 }
4377
4378 // If size compatibility is being applied to the window, the
4379 // surface is scaled relative to the screen. Also apply this
4380 // scaling to the crop rect. We aren't using the standard rect
4381 // scale function because we want to round things to make the crop
4382 // always round to a larger rect to ensure we don't crop too
4383 // much and hide part of the window that should be seen.
4384 if (mEnforceSizeCompat && mInvGlobalScale != 1.0f) {
4385 final float scale = mInvGlobalScale;
4386 systemDecorRect.left = (int) (systemDecorRect.left * scale - 0.5f);
4387 systemDecorRect.top = (int) (systemDecorRect.top * scale - 0.5f);
4388 systemDecorRect.right = (int) ((systemDecorRect.right + 1) * scale - 0.5f);
4389 systemDecorRect.bottom = (int) ((systemDecorRect.bottom + 1) * scale - 0.5f);
4390 }
4391
4392 }
4393
4394 /**
4395 * Expand the given rectangle by this windows surface insets. This
4396 * takes you from the 'window size' to the 'surface size'.
4397 * The surface insets are positive in each direction, so we inset by
4398 * the inverse.
4399 */
4400 void expandForSurfaceInsets(Rect r) {
4401 r.inset(-mAttrs.surfaceInsets.left,
4402 -mAttrs.surfaceInsets.top,
4403 -mAttrs.surfaceInsets.right,
4404 -mAttrs.surfaceInsets.bottom);
4405 }
4406
Robert Carrc91d1c32017-02-15 19:37:46 -08004407 boolean surfaceInsetsChanging() {
4408 return !mLastSurfaceInsets.equals(mAttrs.surfaceInsets);
4409 }
4410
Bryce Leef858b572017-06-29 14:03:33 -07004411 int relayoutVisibleWindow(int result, int attrChanges, int oldVisibility) {
Robert Carrecc06b32017-04-18 14:25:10 -07004412 final boolean wasVisible = isVisibleLw();
4413
4414 result |= (!wasVisible || !isDrawnLw()) ? RELAYOUT_RES_FIRST_TIME : 0;
Robert Carrc91d1c32017-02-15 19:37:46 -08004415 if (mAnimatingExit) {
4416 Slog.d(TAG, "relayoutVisibleWindow: " + this + " mAnimatingExit=true, mRemoveOnExit="
4417 + mRemoveOnExit + ", mDestroying=" + mDestroying);
4418
4419 mWinAnimator.cancelExitAnimationForNextAnimationLocked();
4420 mAnimatingExit = false;
4421 }
4422 if (mDestroying) {
4423 mDestroying = false;
4424 mService.mDestroySurface.remove(this);
4425 }
4426 if (oldVisibility == View.GONE) {
4427 mWinAnimator.mEnterAnimationPending = true;
4428 }
4429
Andrii Kulian8ee72852017-03-10 10:36:45 -08004430 mLastVisibleLayoutRotation = getDisplayContent().getRotation();
Robert Carrc91d1c32017-02-15 19:37:46 -08004431
4432 mWinAnimator.mEnteringAnimation = true;
Bryce Leeae73ba42017-05-05 09:58:25 -07004433
Bryce Leef858b572017-06-29 14:03:33 -07004434 prepareWindowToDisplayDuringRelayout(wasVisible);
Bryce Leeae73ba42017-05-05 09:58:25 -07004435
Robert Carrc91d1c32017-02-15 19:37:46 -08004436 if ((attrChanges & FORMAT_CHANGED) != 0) {
4437 // If the format can't be changed in place, preserve the old surface until the app draws
4438 // on the new one. This prevents blinking when we change elevation of freeform and
4439 // pinned windows.
4440 if (!mWinAnimator.tryChangeFormatInPlaceLocked()) {
4441 mWinAnimator.preserveSurfaceLocked();
4442 result |= RELAYOUT_RES_SURFACE_CHANGED
4443 | RELAYOUT_RES_FIRST_TIME;
4444 }
4445 }
4446
4447 // When we change the Surface size, in scenarios which may require changing
4448 // the surface position in sync with the resize, we use a preserved surface
4449 // so we can freeze it while waiting for the client to report draw on the newly
Winson Chung8bca9e42017-04-16 15:59:43 -07004450 // sized surface. Don't preserve surfaces if the insets change while animating the pinned
4451 // stack since it can lead to issues if a new surface is created while calculating the
4452 // scale for the animation using the source hint rect
4453 // (see WindowStateAnimator#setSurfaceBoundariesLocked()).
Robert Carrc91d1c32017-02-15 19:37:46 -08004454 if (isDragResizeChanged() || isResizedWhileNotDragResizing()
Winson Chung8bca9e42017-04-16 15:59:43 -07004455 || (surfaceInsetsChanging() && !inPinnedWorkspace())) {
Robert Carrc91d1c32017-02-15 19:37:46 -08004456 mLastSurfaceInsets.set(mAttrs.surfaceInsets);
4457
4458 setDragResizing();
4459 setResizedWhileNotDragResizing(false);
4460 // We can only change top level windows to the full-screen surface when
4461 // resizing (as we only have one full-screen surface). So there is no need
4462 // to preserve and destroy windows which are attached to another, they
4463 // will keep their surface and its size may change over time.
4464 if (mHasSurface && !isChildWindow()) {
4465 mWinAnimator.preserveSurfaceLocked();
Robert Carrdb2f6e62017-03-01 20:17:58 -08004466 result |= RELAYOUT_RES_SURFACE_CHANGED |
4467 RELAYOUT_RES_FIRST_TIME;
Robert Carrc91d1c32017-02-15 19:37:46 -08004468 }
4469 }
4470 final boolean freeformResizing = isDragResizing()
4471 && getResizeMode() == DRAG_RESIZE_MODE_FREEFORM;
4472 final boolean dockedResizing = isDragResizing()
4473 && getResizeMode() == DRAG_RESIZE_MODE_DOCKED_DIVIDER;
4474 result |= freeformResizing ? RELAYOUT_RES_DRAG_RESIZING_FREEFORM : 0;
4475 result |= dockedResizing ? RELAYOUT_RES_DRAG_RESIZING_DOCKED : 0;
4476 if (isAnimatingWithSavedSurface()) {
4477 // If we're animating with a saved surface now, request client to report draw.
4478 // We still need to know when the real thing is drawn.
4479 result |= RELAYOUT_RES_FIRST_TIME;
4480 }
4481 return result;
4482 }
4483
Jorim Jaggidc9385a2017-05-13 02:00:31 +02004484 /**
4485 * @return True if this window has been laid out at least once; false otherwise.
4486 */
4487 boolean isLaidOut() {
4488 return mLayoutSeq != -1;
4489 }
4490
4491 /**
4492 * Updates the last inset values to the current ones.
4493 */
4494 void updateLastInsetValues() {
4495 mLastOverscanInsets.set(mOverscanInsets);
4496 mLastContentInsets.set(mContentInsets);
4497 mLastVisibleInsets.set(mVisibleInsets);
4498 mLastStableInsets.set(mStableInsets);
4499 mLastOutsets.set(mOutsets);
4500 }
4501
Wale Ogunwale9bc47732016-08-10 14:44:22 -07004502 // TODO: Hack to work around the number of states AppWindowToken needs to access without having
4503 // access to its windows children. Need to investigate re-writing
4504 // {@link AppWindowToken#updateReportedVisibilityLocked} so this can be removed.
4505 static final class UpdateReportedVisibilityResults {
4506 int numInteresting;
4507 int numVisible;
4508 int numDrawn;
4509 boolean nowGone = true;
4510
4511 void reset() {
4512 numInteresting = 0;
4513 numVisible = 0;
4514 numDrawn = 0;
4515 nowGone = true;
4516 }
4517 }
Robert Carraf422a82017-04-10 18:34:33 -07004518
Jorim Jaggi4448e1e2017-05-16 22:26:02 +02004519 private static final class WindowId extends IWindowId.Stub {
4520 private final WeakReference<WindowState> mOuter;
4521
4522 private WindowId(WindowState outer) {
4523
4524 // Use a weak reference for the outer class. This is important to prevent the following
4525 // leak: Since we send this class to the client process, binder will keep it alive as
4526 // long as the client keeps it alive. Now, if the window is removed, we need to clear
4527 // out our reference so even though this class is kept alive we don't leak WindowState,
4528 // which can keep a whole lot of classes alive.
4529 mOuter = new WeakReference<>(outer);
4530 }
4531
4532 @Override
4533 public void registerFocusObserver(IWindowFocusObserver observer) {
4534 final WindowState outer = mOuter.get();
4535 if (outer != null) {
4536 outer.registerFocusObserver(observer);
4537 }
4538 }
4539 @Override
4540 public void unregisterFocusObserver(IWindowFocusObserver observer) {
4541 final WindowState outer = mOuter.get();
4542 if (outer != null) {
4543 outer.unregisterFocusObserver(observer);
4544 }
4545 }
4546 @Override
4547 public boolean isFocused() {
4548 final WindowState outer = mOuter.get();
4549 return outer != null && outer.isFocused();
4550 }
4551 }
4552
Robert Carraf422a82017-04-10 18:34:33 -07004553 boolean usesRelativeZOrdering() {
4554 if (!isChildWindow()) {
4555 return false;
4556 } else if (mAttrs.type == TYPE_APPLICATION_MEDIA_OVERLAY) {
4557 return true;
4558 } else {
4559 return false;
4560 }
4561 }
satokcef37fb2011-10-24 21:49:38 +09004562}