blob: 1bfc1a0047c3573f0c4533af3339f93a035f8051 [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 Lee31386ab2017-07-06 17:51:26 -0700444 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 */
688 boolean getDrawnStatedEvaluated() {
689 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 Lee31386ab2017-07-06 17:51:26 -07001187 if (mOrientationChanging || dragResizingChanged || isResizedWhileNotDragResizing()) {
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001188 if (DEBUG_SURFACE_TRACE || DEBUG_ANIM || DEBUG_ORIENTATION || DEBUG_RESIZE) {
1189 Slog.v(TAG_WM, "Orientation or resize start waiting for draw"
1190 + ", mDrawState=DRAW_PENDING in " + this
1191 + ", surfaceController " + winAnimator.mSurfaceController);
1192 }
1193 winAnimator.mDrawState = DRAW_PENDING;
1194 if (mAppToken != null) {
1195 mAppToken.clearAllDrawn();
1196 }
1197 }
1198 if (!mService.mResizingWindows.contains(this)) {
1199 if (DEBUG_RESIZE || DEBUG_ORIENTATION) Slog.v(TAG_WM, "Resizing window " + this);
1200 mService.mResizingWindows.add(this);
1201 }
Bryce Lee31386ab2017-07-06 17:51:26 -07001202 } else if (mOrientationChanging) {
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001203 if (isDrawnLw()) {
1204 if (DEBUG_ORIENTATION) Slog.v(TAG_WM, "Orientation not waiting for draw in "
1205 + this + ", surfaceController " + winAnimator.mSurfaceController);
Bryce Lee31386ab2017-07-06 17:51:26 -07001206 mOrientationChanging = false;
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001207 mLastFreezeDuration = (int)(SystemClock.elapsedRealtime()
1208 - mService.mDisplayFreezeTime);
1209 }
1210 }
1211 }
1212
Wale Ogunwale360a8bc2016-10-10 13:25:26 -07001213 DisplayContent getDisplayContent() {
1214 return mToken.getDisplayContent();
Craig Mautnerdf88d732014-01-27 09:21:32 -08001215 }
1216
Wale Ogunwale360a8bc2016-10-10 13:25:26 -07001217 DisplayInfo getDisplayInfo() {
Chong Zhang09b21ef2015-09-14 10:20:21 -07001218 final DisplayContent displayContent = getDisplayContent();
1219 return displayContent != null ? displayContent.getDisplayInfo() : null;
1220 }
1221
Jorim Jaggife762342016-10-13 14:33:27 +02001222 @Override
1223 public int getDisplayId() {
Craig Mautnerdf88d732014-01-27 09:21:32 -08001224 final DisplayContent displayContent = getDisplayContent();
1225 if (displayContent == null) {
1226 return -1;
1227 }
1228 return displayContent.getDisplayId();
Craig Mautner19d59bc2012-09-04 11:15:56 -07001229 }
1230
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07001231 Task getTask() {
Bryce Lee6d410262017-02-28 15:30:17 -08001232 return mAppToken != null ? mAppToken.getTask() : null;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07001233 }
1234
1235 TaskStack getStack() {
1236 Task task = getTask();
1237 if (task != null) {
1238 if (task.mStack != null) {
1239 return task.mStack;
Craig Mautnerf06b8c12013-04-18 14:27:28 -07001240 }
Craig Mautnerd9a22882013-03-16 15:00:36 -07001241 }
Filip Gruszczynski0689ae92015-10-01 12:30:31 -07001242 // Some system windows (e.g. "Power off" dialog) don't have a task, but we would still
1243 // associate them with some stack to enable dimming.
Wale Ogunwale360a8bc2016-10-10 13:25:26 -07001244 final DisplayContent dc = getDisplayContent();
1245 return mAttrs.type >= FIRST_SYSTEM_WINDOW && dc != null ? dc.getHomeStack() : null;
Craig Mautnerd9a22882013-03-16 15:00:36 -07001246 }
1247
Skuhnef932e562015-08-20 12:07:30 -07001248 /**
Wale Ogunwale61b009e2015-09-16 15:43:05 -07001249 * Retrieves the visible bounds of the window.
Skuhnef932e562015-08-20 12:07:30 -07001250 * @param bounds The rect which gets the bounds.
Skuhnef932e562015-08-20 12:07:30 -07001251 */
Chong Zhang4c9ba52a2015-11-10 18:36:33 -08001252 void getVisibleBounds(Rect bounds) {
Wale Ogunwaleb1faf602016-01-27 09:12:31 -08001253 final Task task = getTask();
1254 boolean intersectWithStackBounds = task != null && task.cropWindowsToStackBounds();
Wale Ogunwale61b009e2015-09-16 15:43:05 -07001255 bounds.setEmpty();
Wale Ogunwale2b19b602015-09-18 15:14:59 -07001256 mTmpRect.setEmpty();
1257 if (intersectWithStackBounds) {
Wale Ogunwaleb1faf602016-01-27 09:12:31 -08001258 final TaskStack stack = task.mStack;
Wale Ogunwale61b009e2015-09-16 15:43:05 -07001259 if (stack != null) {
Chong Zhang4c9ba52a2015-11-10 18:36:33 -08001260 stack.getDimBounds(mTmpRect);
Wale Ogunwale2b19b602015-09-18 15:14:59 -07001261 } else {
1262 intersectWithStackBounds = false;
Wale Ogunwale61b009e2015-09-16 15:43:05 -07001263 }
1264 }
Wale Ogunwale2b19b602015-09-18 15:14:59 -07001265
Chong Zhang9184ec62015-09-24 12:32:21 -07001266 bounds.set(mVisibleFrame);
1267 if (intersectWithStackBounds) {
1268 bounds.intersect(mTmpRect);
Wale Ogunwale2b19b602015-09-18 15:14:59 -07001269 }
1270
Wale Ogunwale61b009e2015-09-16 15:43:05 -07001271 if (bounds.isEmpty()) {
1272 bounds.set(mFrame);
Wale Ogunwale2b19b602015-09-18 15:14:59 -07001273 if (intersectWithStackBounds) {
1274 bounds.intersect(mTmpRect);
1275 }
Craig Mautnerbdc748af2013-12-02 14:08:25 -08001276 return;
Craig Mautner4cd0c13f2013-04-16 15:55:52 -07001277 }
Craig Mautner4cd0c13f2013-04-16 15:55:52 -07001278 }
1279
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001280 public long getInputDispatchingTimeoutNanos() {
1281 return mAppToken != null
Wale Ogunwale72919d22016-12-08 18:58:50 -08001282 ? mAppToken.mInputDispatchingTimeoutNanos
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001283 : WindowManagerService.DEFAULT_INPUT_DISPATCHING_TIMEOUT_NANOS;
1284 }
1285
Craig Mautnere8552142012-11-07 13:55:47 -08001286 @Override
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001287 public boolean hasAppShownWindows() {
Craig Mautnerf4120952012-06-21 18:25:39 -07001288 return mAppToken != null && (mAppToken.firstWindowDrawn || mAppToken.startingDisplayed);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001289 }
1290
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001291 boolean isIdentityMatrix(float dsdx, float dtdx, float dsdy, float dtdy) {
1292 if (dsdx < .99999f || dsdx > 1.00001f) return false;
1293 if (dtdy < .99999f || dtdy > 1.00001f) return false;
1294 if (dtdx < -.000001f || dtdx > .000001f) return false;
1295 if (dsdy < -.000001f || dsdy > .000001f) return false;
1296 return true;
1297 }
1298
Dianne Hackborne2515ee2011-04-27 18:52:56 -04001299 void prelayout() {
1300 if (mEnforceSizeCompat) {
Andrii Kulian06d07d62017-03-14 11:11:47 -07001301 mGlobalScale = getDisplayContent().mCompatibleScreenScale;
1302 mInvGlobalScale = 1 / mGlobalScale;
Dianne Hackborne2515ee2011-04-27 18:52:56 -04001303 } else {
Dianne Hackbornffb3d932011-05-17 17:44:51 -07001304 mGlobalScale = mInvGlobalScale = 1;
Dianne Hackborne2515ee2011-04-27 18:52:56 -04001305 }
1306 }
1307
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001308 @Override
Wale Ogunwale44f21802016-09-02 12:49:48 -07001309 boolean hasContentToDisplay() {
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001310 // If we're animating with a saved surface, we're already visible.
1311 // Return true so that the alpha doesn't get cleared.
1312 if (!mAppFreezing && isDrawnLw()
1313 && (mViewVisibility == View.VISIBLE || isAnimatingWithSavedSurface()
1314 || (mWinAnimator.isAnimationSet() && !mService.mAppTransition.isTransitionSet()))) {
1315 return true;
1316 }
1317
Wale Ogunwale44f21802016-09-02 12:49:48 -07001318 return super.hasContentToDisplay();
1319 }
1320
1321 @Override
1322 boolean isVisible() {
Jorim Jaggic6ae42a2017-05-08 23:42:02 +02001323 return wouldBeVisibleIfPolicyIgnored() && mPolicyVisibility;
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001324 }
1325
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001326 /**
Jorim Jaggic6ae42a2017-05-08 23:42:02 +02001327 * @return True if the window would be visible if we'd ignore policy visibility, false
1328 * otherwise.
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001329 */
Jorim Jaggic6ae42a2017-05-08 23:42:02 +02001330 boolean wouldBeVisibleIfPolicyIgnored() {
Jorim Jaggi43530c92017-05-18 01:53:56 +02001331 return mHasSurface && !isParentWindowHidden()
Wale Ogunwalec48a3542016-02-19 15:18:45 -08001332 && !mAnimatingExit && !mDestroying && (!mIsWallpaper || mWallpaperVisible);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001333 }
1334
Wale Ogunwale329b7e52016-01-15 15:00:57 -08001335 @Override
1336 public boolean isVisibleLw() {
Wale Ogunwale44f21802016-09-02 12:49:48 -07001337 return isVisible();
Wale Ogunwale329b7e52016-01-15 15:00:57 -08001338 }
1339
1340 /**
Wale Ogunwale329b7e52016-01-15 15:00:57 -08001341 * Is this window visible, ignoring its app token? It is not visible if there is no surface,
1342 * or we are in the process of running an exit animation that will remove the surface.
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001343 */
Wale Ogunwale44f21802016-09-02 12:49:48 -07001344 // TODO: Can we consolidate this with #isVisible() or have a more appropriate name for this?
1345 boolean isWinVisibleLw() {
Wale Ogunwale329b7e52016-01-15 15:00:57 -08001346 return (mAppToken == null || !mAppToken.hiddenRequested || mAppToken.mAppAnimator.animating)
Jorim Jaggic6ae42a2017-05-08 23:42:02 +02001347 && isVisible();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001348 }
1349
1350 /**
Wale Ogunwale329b7e52016-01-15 15:00:57 -08001351 * The same as isVisible(), but follows the current hidden state of the associated app token,
1352 * not the pending requested hidden state.
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001353 */
1354 boolean isVisibleNow() {
Wale Ogunwalea6cc3612016-08-04 07:25:33 -07001355 return (!mToken.hidden || mAttrs.type == TYPE_APPLICATION_STARTING)
Jorim Jaggic6ae42a2017-05-08 23:42:02 +02001356 && isVisible();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001357 }
1358
1359 /**
1360 * Can this window possibly be a drag/drop target? The test here is
1361 * a combination of the above "visible now" with the check that the
1362 * Input Manager uses when discarding windows from input consideration.
1363 */
1364 boolean isPotentialDragTarget() {
Jeff Browncc4f7db2011-08-30 20:34:48 -07001365 return isVisibleNow() && !mRemoved
1366 && mInputChannel != null && mInputWindowHandle != null;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001367 }
1368
1369 /**
1370 * Same as isVisible(), but we also count it as visible between the
1371 * call to IWindowSession.add() and the first relayout().
1372 */
1373 boolean isVisibleOrAdding() {
1374 final AppWindowToken atoken = mAppToken;
Craig Mautnerbf08af32012-05-16 19:43:42 -07001375 return (mHasSurface || (!mRelayoutCalled && mViewVisibility == View.VISIBLE))
Wale Ogunwale9d147902016-07-16 11:58:55 -07001376 && mPolicyVisibility && !isParentWindowHidden()
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001377 && (atoken == null || !atoken.hiddenRequested)
Wale Ogunwalec48a3542016-02-19 15:18:45 -08001378 && !mAnimatingExit && !mDestroying;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001379 }
1380
1381 /**
1382 * Is this window currently on-screen? It is on-screen either if it
1383 * is visible or it is currently running an animation before no longer
1384 * being visible.
1385 */
1386 boolean isOnScreen() {
Jorim Jaggiaf221d12016-11-15 14:59:57 -08001387 if (!mHasSurface || mDestroying || !mPolicyVisibility) {
Craig Mautnerc8bc97e2012-04-02 12:54:54 -07001388 return false;
1389 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001390 final AppWindowToken atoken = mAppToken;
1391 if (atoken != null) {
Wale Ogunwale9d147902016-07-16 11:58:55 -07001392 return ((!isParentWindowHidden() && !atoken.hiddenRequested)
Craig Mautnerccc9e9b2012-12-11 09:40:34 -08001393 || mWinAnimator.mAnimation != null || atoken.mAppAnimator.animation != null);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001394 }
Wale Ogunwale9d147902016-07-16 11:58:55 -07001395 return !isParentWindowHidden() || mWinAnimator.mAnimation != null;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001396 }
1397
1398 /**
Chong Zhang8e4bda92016-05-04 15:08:18 -07001399 * Whether this window's drawn state might affect the drawn states of the app token.
1400 *
1401 * @param visibleOnly Whether we should consider only the windows that's currently
1402 * visible in layout. If true, windows that has not relayout to VISIBLE
1403 * would always return false.
1404 *
1405 * @return true if the window should be considered while evaluating allDrawn flags.
1406 */
1407 boolean mightAffectAllDrawn(boolean visibleOnly) {
Wale Ogunwale89973222017-04-23 18:39:45 -07001408 final boolean isViewVisible = (mAppToken == null || !mAppToken.isClientHidden())
Chong Zhange292eb32016-05-21 09:23:55 -07001409 && (mViewVisibility == View.VISIBLE) && !mWindowRemovalAllowed;
Jorim Jaggib0d27342016-11-01 16:10:42 -07001410 return (isOnScreen() && (!visibleOnly || isViewVisible)
Chong Zhangfea963e2016-08-15 17:14:16 -07001411 || mWinAnimator.mAttrType == TYPE_BASE_APPLICATION
1412 || mWinAnimator.mAttrType == TYPE_DRAWN_APPLICATION)
Chong Zhang8e4bda92016-05-04 15:08:18 -07001413 && !mAnimatingExit && !mDestroying;
1414 }
1415
1416 /**
1417 * Whether this window is "interesting" when evaluating allDrawn. If it's interesting,
1418 * it must be drawn before allDrawn can become true.
1419 */
1420 boolean isInteresting() {
1421 return mAppToken != null && !mAppDied
1422 && (!mAppToken.mAppAnimator.freezingScreen || !mAppFreezing);
1423 }
1424
1425 /**
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001426 * Like isOnScreen(), but we don't return true if the window is part
1427 * of a transition that has not yet been started.
1428 */
1429 boolean isReadyForDisplay() {
Wale Ogunwalea6cc3612016-08-04 07:25:33 -07001430 if (mToken.waitingToShow && mService.mAppTransition.isTransitionSet()) {
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001431 return false;
1432 }
Craig Mautnerc8bc97e2012-04-02 12:54:54 -07001433 return mHasSurface && mPolicyVisibility && !mDestroying
Wale Ogunwalea6cc3612016-08-04 07:25:33 -07001434 && ((!isParentWindowHidden() && mViewVisibility == View.VISIBLE && !mToken.hidden)
Craig Mautnera2c77052012-03-26 12:14:43 -07001435 || mWinAnimator.mAnimation != null
Craig Mautner59431632012-04-04 11:56:44 -07001436 || ((mAppToken != null) && (mAppToken.mAppAnimator.animation != null)));
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001437 }
1438
Jorim Jaggi23cc9aa2017-05-23 16:05:35 +02001439 // TODO: Another visibility method that was added late in the release to minimize risk.
1440 @Override
1441 public boolean canAffectSystemUiFlags() {
1442 final boolean shown = mWinAnimator.getShown();
1443 final boolean exiting = mAnimatingExit || mDestroying
1444 || mAppToken != null && mAppToken.hidden;
1445 final boolean translucent = mAttrs.alpha == 0.0f;
1446 return shown && !exiting && !translucent;
1447 }
1448
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001449 /**
1450 * Like isOnScreen, but returns false if the surface hasn't yet
1451 * been drawn.
1452 */
Craig Mautnere6f7d5052012-10-08 10:34:17 -07001453 @Override
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001454 public boolean isDisplayedLw() {
1455 final AppWindowToken atoken = mAppToken;
Craig Mautnerbf90eaa2012-03-15 11:28:53 -07001456 return isDrawnLw() && mPolicyVisibility
Wale Ogunwale9d147902016-07-16 11:58:55 -07001457 && ((!isParentWindowHidden() &&
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001458 (atoken == null || !atoken.hiddenRequested))
Craig Mautnere6f7d5052012-10-08 10:34:17 -07001459 || mWinAnimator.mAnimating
1460 || (atoken != null && atoken.mAppAnimator.animation != null));
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001461 }
1462
Dianne Hackborn5c58de32012-04-28 19:52:37 -07001463 /**
Craig Mautnerae446592012-12-06 19:05:05 -08001464 * Return true if this window or its app token is currently animating.
Dianne Hackborn5c58de32012-04-28 19:52:37 -07001465 */
Craig Mautnere6f7d5052012-10-08 10:34:17 -07001466 @Override
Dianne Hackborn5c58de32012-04-28 19:52:37 -07001467 public boolean isAnimatingLw() {
Craig Mautnerae446592012-12-06 19:05:05 -08001468 return mWinAnimator.mAnimation != null
1469 || (mAppToken != null && mAppToken.mAppAnimator.animation != null);
Dianne Hackborn5c58de32012-04-28 19:52:37 -07001470 }
1471
Craig Mautner812d2ca2012-09-27 15:35:34 -07001472 @Override
Dianne Hackborncfbf7de2012-01-12 14:05:03 -08001473 public boolean isGoneForLayoutLw() {
1474 final AppWindowToken atoken = mAppToken;
1475 return mViewVisibility == View.GONE
1476 || !mRelayoutCalled
Wale Ogunwalea6cc3612016-08-04 07:25:33 -07001477 || (atoken == null && mToken.hidden)
Jorim Jaggi8fa45222016-02-19 19:54:39 -08001478 || (atoken != null && atoken.hiddenRequested)
Wale Ogunwale9d147902016-07-16 11:58:55 -07001479 || isParentWindowHidden()
Wale Ogunwalec48a3542016-02-19 15:18:45 -08001480 || (mAnimatingExit && !isAnimatingLw())
Craig Mautner0e415c62013-04-29 16:10:58 -07001481 || mDestroying;
Dianne Hackborncfbf7de2012-01-12 14:05:03 -08001482 }
1483
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001484 /**
1485 * Returns true if the window has a surface that it has drawn a
1486 * complete UI in to.
1487 */
Craig Mautnerccc9e9b2012-12-11 09:40:34 -08001488 public boolean isDrawFinishedLw() {
1489 return mHasSurface && !mDestroying &&
Wale Ogunwale9d147902016-07-16 11:58:55 -07001490 (mWinAnimator.mDrawState == COMMIT_DRAW_PENDING
1491 || mWinAnimator.mDrawState == READY_TO_SHOW
1492 || mWinAnimator.mDrawState == HAS_DRAWN);
Craig Mautnerccc9e9b2012-12-11 09:40:34 -08001493 }
1494
1495 /**
1496 * Returns true if the window has a surface that it has drawn a
1497 * complete UI in to.
1498 */
Adrian Roos76d2fe42015-07-09 14:54:08 -07001499 @Override
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001500 public boolean isDrawnLw() {
Craig Mautnerc8bc97e2012-04-02 12:54:54 -07001501 return mHasSurface && !mDestroying &&
Wale Ogunwale571771c2016-08-26 13:18:50 -07001502 (mWinAnimator.mDrawState == READY_TO_SHOW || mWinAnimator.mDrawState == HAS_DRAWN);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001503 }
1504
1505 /**
1506 * Return true if the window is opaque and fully drawn. This indicates
1507 * it may obscure windows behind it.
1508 */
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001509 private boolean isOpaqueDrawn() {
Chong Zhang66bf071d2016-02-05 14:42:36 -08001510 // When there is keyguard, wallpaper could be placed over the secure app
1511 // window but invisible. We need to check wallpaper visibility explicitly
1512 // to determine if it's occluding apps.
1513 return ((!mIsWallpaper && mAttrs.format == PixelFormat.OPAQUE)
1514 || (mIsWallpaper && mWallpaperVisible))
Craig Mautnera2c77052012-03-26 12:14:43 -07001515 && isDrawnLw() && mWinAnimator.mAnimation == null
Craig Mautner59431632012-04-04 11:56:44 -07001516 && (mAppToken == null || mAppToken.mAppAnimator.animation == null);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001517 }
1518
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001519 @Override
1520 void onMovedByResize() {
1521 if (DEBUG_RESIZE) Slog.d(TAG, "onMovedByResize: Moving " + this);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001522 mMovedByResize = true;
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001523 super.onMovedByResize();
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001524 }
1525
1526 boolean onAppVisibilityChanged(boolean visible, boolean runningAppAnimation) {
1527 boolean changed = false;
1528
1529 for (int i = mChildren.size() - 1; i >= 0; --i) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07001530 final WindowState c = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001531 changed |= c.onAppVisibilityChanged(visible, runningAppAnimation);
1532 }
1533
1534 if (mAttrs.type == TYPE_APPLICATION_STARTING) {
1535 // Starting window that's exiting will be removed when the animation finishes.
1536 // Mark all relevant flags for that onExitAnimationDone will proceed all the way
1537 // to actually remove it.
1538 if (!visible && isVisibleNow() && mAppToken.mAppAnimator.isAnimating()) {
1539 mAnimatingExit = true;
1540 mRemoveOnExit = true;
1541 mWindowRemovalAllowed = true;
1542 }
1543 return changed;
1544 }
1545
Robert Carrd5c7dd62017-03-08 10:39:30 -08001546 // Next up we will notify the client that it's visibility has changed.
1547 // We need to prevent it from destroying child surfaces until
1548 // the animation has finished.
1549 if (!visible && isVisibleNow()) {
1550 mWinAnimator.detachChildren();
1551 }
1552
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001553 if (visible != isVisibleNow()) {
1554 if (!runningAppAnimation) {
1555 final AccessibilityController accessibilityController =
1556 mService.mAccessibilityController;
1557 final int winTransit = visible ? TRANSIT_ENTER : TRANSIT_EXIT;
1558 mWinAnimator.applyAnimationLocked(winTransit, visible);
1559 //TODO (multidisplay): Magnification is supported only for the default
1560 if (accessibilityController != null && getDisplayId() == DEFAULT_DISPLAY) {
1561 accessibilityController.onWindowTransitionLocked(this, winTransit);
1562 }
1563 }
1564 changed = true;
1565 setDisplayLayoutNeeded();
1566 }
1567
1568 return changed;
1569 }
1570
1571 boolean onSetAppExiting() {
1572 final DisplayContent displayContent = getDisplayContent();
1573 boolean changed = false;
1574
1575 if (isVisibleNow()) {
1576 mWinAnimator.applyAnimationLocked(TRANSIT_EXIT, false);
1577 //TODO (multidisplay): Magnification is supported only for the default
1578 if (mService.mAccessibilityController != null && isDefaultDisplay()) {
1579 mService.mAccessibilityController.onWindowTransitionLocked(this, TRANSIT_EXIT);
1580 }
1581 changed = true;
1582 if (displayContent != null) {
Wale Ogunwale2b06bfc2016-09-28 14:17:05 -07001583 displayContent.setLayoutNeeded();
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001584 }
1585 }
1586
1587 for (int i = mChildren.size() - 1; i >= 0; --i) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07001588 final WindowState c = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001589 changed |= c.onSetAppExiting();
1590 }
1591
1592 return changed;
1593 }
1594
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001595 @Override
1596 void onResize() {
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001597 // Some windows won't go through the resizing process, if they don't have a surface, so
1598 // destroy all saved surfaces here.
1599 destroySavedSurface();
1600
1601 final ArrayList<WindowState> resizingWindows = mService.mResizingWindows;
1602 if (mHasSurface && !resizingWindows.contains(this)) {
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001603 if (DEBUG_RESIZE) Slog.d(TAG, "onResize: Resizing " + this);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001604 resizingWindows.add(this);
1605
1606 // If we are not drag resizing, force recreating of a new surface so updating
1607 // the content and positioning that surface will be in sync.
1608 //
1609 // As we use this flag as a hint to freeze surface boundary updates, we'd like to only
1610 // apply this to TYPE_BASE_APPLICATION, windows of TYPE_APPLICATION like dialogs, could
1611 // appear to not be drag resizing while they resize, but we'd still like to manipulate
1612 // their frame to update crop, etc...
1613 //
1614 // Anyway we don't need to synchronize position and content updates for these
1615 // windows since they aren't at the base layer and could be moved around anyway.
1616 if (!computeDragResizing() && mAttrs.type == TYPE_BASE_APPLICATION &&
Robert Carr8f0a3ad2017-02-15 19:30:28 -08001617 !mWinAnimator.isForceScaled() && !isGoneForLayoutLw() &&
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001618 !getTask().inPinnedWorkspace()) {
1619 setResizedWhileNotDragResizing(true);
1620 }
1621 }
1622 if (isGoneForLayoutLw()) {
1623 mResizedWhileGone = true;
1624 }
1625
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001626 super.onResize();
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001627 }
1628
1629 void onUnfreezeBounds() {
1630 for (int i = mChildren.size() - 1; i >= 0; --i) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07001631 final WindowState c = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001632 c.onUnfreezeBounds();
1633 }
1634
1635 if (!mHasSurface) {
1636 return;
1637 }
1638
1639 mLayoutNeeded = true;
1640 setDisplayLayoutNeeded();
1641 if (!mService.mResizingWindows.contains(this)) {
1642 mService.mResizingWindows.add(this);
1643 }
1644 }
1645
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001646 /**
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001647 * If the window has moved due to its containing content frame changing, then notify the
1648 * listeners and optionally animate it. Simply checking a change of position is not enough,
1649 * because being move due to dock divider is not a trigger for animation.
1650 */
1651 void handleWindowMovedIfNeeded() {
1652 if (!hasMoved()) {
1653 return;
1654 }
1655
1656 // Frame has moved, containing content frame has also moved, and we're not currently
1657 // animating... let's do something.
1658 final int left = mFrame.left;
1659 final int top = mFrame.top;
1660 final Task task = getTask();
1661 final boolean adjustedForMinimizedDockOrIme = task != null
1662 && (task.mStack.isAdjustedForMinimizedDockedStack()
1663 || task.mStack.isAdjustedForIme());
Adrian Roose94c15c2017-05-09 13:17:54 -07001664 if (mService.okToAnimate()
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001665 && (mAttrs.privateFlags & PRIVATE_FLAG_NO_MOVE_ANIMATION) == 0
1666 && !isDragResizing() && !adjustedForMinimizedDockOrIme
1667 && (task == null || getTask().mStack.hasMovementAnimations())
1668 && !mWinAnimator.mLastHidden) {
1669 mWinAnimator.setMoveAnimation(left, top);
1670 }
1671
1672 //TODO (multidisplay): Accessibility supported only for the default display.
1673 if (mService.mAccessibilityController != null
Andrii Kulian5406e7a2016-10-21 11:55:23 -07001674 && getDisplayContent().getDisplayId() == DEFAULT_DISPLAY) {
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001675 mService.mAccessibilityController.onSomeWindowResizedOrMovedLocked();
1676 }
1677
1678 try {
1679 mClient.moved(left, top);
1680 } catch (RemoteException e) {
1681 }
1682 mMovedByResize = false;
1683 }
1684
1685 /**
Craig Mautner4557c082015-04-27 13:07:40 -07001686 * Return whether this window has moved. (Only makes
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001687 * sense to call from performLayoutAndPlaceSurfacesLockedInner().)
1688 */
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001689 private boolean hasMoved() {
Chong Zhangbd0d9372015-12-28 15:18:29 -08001690 return mHasSurface && (mContentChanged || mMovedByResize)
Robert Carrc67c2a92016-09-22 13:25:45 -07001691 && !mAnimatingExit
Chong Zhangbd0d9372015-12-28 15:18:29 -08001692 && (mFrame.top != mLastFrame.top || mFrame.left != mLastFrame.left)
Wale Ogunwalee4343ef2016-07-19 08:00:46 -07001693 && (!mIsChildWindow || !getParentWindow().hasMoved());
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001694 }
1695
Wale Ogunwaleca9e0612016-12-02 07:45:59 -08001696 boolean isObscuringDisplay() {
Chong Zhang0abb20f2015-11-19 14:17:31 -08001697 Task task = getTask();
Wale Ogunwale14a3fb92016-09-11 15:19:05 -07001698 if (task != null && task.mStack != null && !task.mStack.fillsParent()) {
Chong Zhang0abb20f2015-11-19 14:17:31 -08001699 return false;
1700 }
Wale Ogunwaleca9e0612016-12-02 07:45:59 -08001701 return isOpaqueDrawn() && fillsDisplay();
Chong Zhang0abb20f2015-11-19 14:17:31 -08001702 }
1703
Wale Ogunwaleca9e0612016-12-02 07:45:59 -08001704 boolean fillsDisplay() {
1705 final DisplayInfo displayInfo = getDisplayInfo();
Chong Zhang0abb20f2015-11-19 14:17:31 -08001706 return mFrame.left <= 0 && mFrame.top <= 0
1707 && mFrame.right >= displayInfo.appWidth && mFrame.bottom >= displayInfo.appHeight;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001708 }
1709
Andrii Kulian9d91ca62016-09-29 22:28:09 -07001710 /** Returns true if last applied config was not yet requested by client. */
Craig Mautner812d2ca2012-09-27 15:35:34 -07001711 boolean isConfigChanged() {
Andrii Kulian9d91ca62016-09-29 22:28:09 -07001712 return !mLastReportedConfiguration.equals(getConfiguration());
Craig Mautner812d2ca2012-09-27 15:35:34 -07001713 }
1714
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001715 void onWindowReplacementTimeout() {
1716 if (mWillReplaceWindow) {
1717 // Since the window already timed out, remove it immediately now.
Wale Ogunwale571771c2016-08-26 13:18:50 -07001718 // Use WindowState#removeImmediately() instead of WindowState#removeIfPossible(), as the latter
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001719 // delays removal on certain conditions, which will leave the stale window in the
1720 // stack and marked mWillReplaceWindow=false, so the window will never be removed.
1721 //
1722 // Also removes child windows.
Wale Ogunwale571771c2016-08-26 13:18:50 -07001723 removeImmediately();
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001724 } else {
1725 for (int i = mChildren.size() - 1; i >= 0; --i) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07001726 final WindowState c = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001727 c.onWindowReplacementTimeout();
1728 }
1729 }
1730 }
1731
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001732 @Override
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001733 void forceWindowsScaleableInTransaction(boolean force) {
1734 if (mWinAnimator != null && mWinAnimator.hasSurface()) {
1735 mWinAnimator.mSurfaceController.forceScaleableInTransaction(force);
1736 }
1737
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001738 super.forceWindowsScaleableInTransaction(force);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001739 }
1740
Wale Ogunwalee4343ef2016-07-19 08:00:46 -07001741 @Override
Wale Ogunwale571771c2016-08-26 13:18:50 -07001742 void removeImmediately() {
1743 super.removeImmediately();
Wale Ogunwalee4343ef2016-07-19 08:00:46 -07001744
Wale Ogunwaleadde52e2016-07-16 13:11:55 -07001745 if (mRemoved) {
1746 // Nothing to do.
Wale Ogunwale571771c2016-08-26 13:18:50 -07001747 if (DEBUG_ADD_REMOVE) Slog.v(TAG_WM,
1748 "WS.removeImmediately: " + this + " Already removed...");
Wale Ogunwaleadde52e2016-07-16 13:11:55 -07001749 return;
1750 }
1751
Wale Ogunwaleadde52e2016-07-16 13:11:55 -07001752 mRemoved = true;
1753
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001754 mWillReplaceWindow = false;
1755 if (mReplacementWindow != null) {
1756 mReplacementWindow.mSkipEnterAnimationForSeamlessReplacement = false;
1757 }
1758
Wale Ogunwaleae9adbf2016-10-18 15:17:06 -07001759 final DisplayContent dc = getDisplayContent();
Wale Ogunwaleadde52e2016-07-16 13:11:55 -07001760 if (mService.mInputMethodTarget == this) {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00001761 dc.computeImeTarget(true /* updateImeTarget */);
Wale Ogunwaleadde52e2016-07-16 13:11:55 -07001762 }
1763
1764 final int type = mAttrs.type;
1765 if (WindowManagerService.excludeWindowTypeFromTapOutTask(type)) {
Wale Ogunwaleae9adbf2016-10-18 15:17:06 -07001766 dc.mTapExcludedWindows.remove(this);
Wale Ogunwaleadde52e2016-07-16 13:11:55 -07001767 }
1768 mPolicy.removeWindowLw(this);
1769
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001770 disposeInputChannel();
Craig Mautner164d4bb2012-11-26 13:51:23 -08001771
Craig Mautner96868332012-12-04 14:29:11 -08001772 mWinAnimator.destroyDeferredSurfaceLocked();
1773 mWinAnimator.destroySurfaceLocked();
Wale Ogunwale943002b2017-02-15 19:34:01 -08001774 mSession.windowRemovedLocked();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001775 try {
1776 mClient.asBinder().unlinkToDeath(mDeathRecipient, 0);
1777 } catch (RuntimeException e) {
1778 // Ignore if it has already been removed (usually because
1779 // we are doing this as part of processing a death note.)
1780 }
Wale Ogunwaleadde52e2016-07-16 13:11:55 -07001781
1782 mService.postWindowRemoveCleanupLocked(this);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001783 }
Jeff Browncc4f7db2011-08-30 20:34:48 -07001784
Wale Ogunwale571771c2016-08-26 13:18:50 -07001785 @Override
Wale Ogunwale92fc3722016-08-05 12:19:08 -07001786 void removeIfPossible() {
Wale Ogunwale571771c2016-08-26 13:18:50 -07001787 super.removeIfPossible();
Wale Ogunwale92fc3722016-08-05 12:19:08 -07001788 removeIfPossible(false /*keepVisibleDeadWindow*/);
1789 }
1790
Wale Ogunwale571771c2016-08-26 13:18:50 -07001791 private void removeIfPossible(boolean keepVisibleDeadWindow) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001792 mWindowRemovalAllowed = true;
1793 if (DEBUG_ADD_REMOVE) Slog.v(TAG,
1794 "removeIfPossible: " + this + " callers=" + Debug.getCallers(5));
1795
1796 final boolean startingWindow = mAttrs.type == TYPE_APPLICATION_STARTING;
1797 if (startingWindow && DEBUG_STARTING_WINDOW) Slog.d(TAG_WM,
1798 "Starting window removed " + this);
1799
1800 if (localLOGV || DEBUG_FOCUS || DEBUG_FOCUS_LIGHT && this == mService.mCurrentFocus)
1801 Slog.v(TAG_WM, "Remove " + this + " client="
1802 + Integer.toHexString(System.identityHashCode(mClient.asBinder()))
1803 + ", surfaceController=" + mWinAnimator.mSurfaceController + " Callers="
1804 + Debug.getCallers(5));
1805
1806 final long origId = Binder.clearCallingIdentity();
1807
1808 disposeInputChannel();
1809
1810 if (DEBUG_APP_TRANSITIONS) Slog.v(TAG_WM, "Remove " + this
1811 + ": mSurfaceController=" + mWinAnimator.mSurfaceController
1812 + " mAnimatingExit=" + mAnimatingExit
1813 + " mRemoveOnExit=" + mRemoveOnExit
1814 + " mHasSurface=" + mHasSurface
1815 + " surfaceShowing=" + mWinAnimator.getShown()
1816 + " isAnimationSet=" + mWinAnimator.isAnimationSet()
1817 + " app-animation="
1818 + (mAppToken != null ? mAppToken.mAppAnimator.animation : null)
1819 + " mWillReplaceWindow=" + mWillReplaceWindow
1820 + " inPendingTransaction="
1821 + (mAppToken != null ? mAppToken.inPendingTransaction : false)
1822 + " mDisplayFrozen=" + mService.mDisplayFrozen
1823 + " callers=" + Debug.getCallers(6));
1824
1825 // Visibility of the removed window. Will be used later to update orientation later on.
1826 boolean wasVisible = false;
1827
Andrii Kulian5406e7a2016-10-21 11:55:23 -07001828 final int displayId = getDisplayId();
1829
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001830 // First, see if we need to run an animation. If we do, we have to hold off on removing the
1831 // window until the animation is done. If the display is frozen, just remove immediately,
1832 // since the animation wouldn't be seen.
Adrian Roose94c15c2017-05-09 13:17:54 -07001833 if (mHasSurface && mService.okToAnimate()) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001834 if (mWillReplaceWindow) {
1835 // This window is going to be replaced. We need to keep it around until the new one
1836 // gets added, then we will get rid of this one.
1837 if (DEBUG_ADD_REMOVE) Slog.v(TAG_WM,
1838 "Preserving " + this + " until the new one is " + "added");
1839 // TODO: We are overloading mAnimatingExit flag to prevent the window state from
1840 // been removed. We probably need another flag to indicate that window removal
1841 // should be deffered vs. overloading the flag that says we are playing an exit
1842 // animation.
1843 mAnimatingExit = true;
1844 mReplacingRemoveRequested = true;
1845 Binder.restoreCallingIdentity(origId);
1846 return;
1847 }
1848
1849 if (isAnimatingWithSavedSurface() && !mAppToken.allDrawnExcludingSaved) {
1850 // We started enter animation early with a saved surface, now the app asks to remove
1851 // this window. If we remove it now and the app is not yet drawn, we'll show a
1852 // flicker. Delay the removal now until it's really drawn.
1853 if (DEBUG_ADD_REMOVE) Slog.d(TAG_WM,
1854 "removeWindowLocked: delay removal of " + this + " due to early animation");
1855 // Do not set mAnimatingExit to true here, it will cause the surface to be hidden
1856 // immediately after the enter animation is done. If the app is not yet drawn then
1857 // it will show up as a flicker.
1858 setupWindowForRemoveOnExit();
1859 Binder.restoreCallingIdentity(origId);
1860 return;
1861 }
1862 // If we are not currently running the exit animation, we need to see about starting one
1863 wasVisible = isWinVisibleLw();
1864
1865 if (keepVisibleDeadWindow) {
1866 if (DEBUG_ADD_REMOVE) Slog.v(TAG_WM,
1867 "Not removing " + this + " because app died while it's visible");
1868
1869 mAppDied = true;
1870 setDisplayLayoutNeeded();
1871 mService.mWindowPlacerLocked.performSurfacePlacement();
1872
1873 // Set up a replacement input channel since the app is now dead.
1874 // We need to catch tapping on the dead window to restart the app.
1875 openInputChannel(null);
1876 mService.mInputMonitor.updateInputWindowsLw(true /*force*/);
1877
1878 Binder.restoreCallingIdentity(origId);
1879 return;
1880 }
1881
1882 if (wasVisible) {
1883 final int transit = (!startingWindow) ? TRANSIT_EXIT : TRANSIT_PREVIEW_DONE;
1884
1885 // Try starting an animation.
1886 if (mWinAnimator.applyAnimationLocked(transit, false)) {
1887 mAnimatingExit = true;
1888 }
1889 //TODO (multidisplay): Magnification is supported only for the default display.
Andrii Kulian5406e7a2016-10-21 11:55:23 -07001890 if (mService.mAccessibilityController != null && displayId == DEFAULT_DISPLAY) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001891 mService.mAccessibilityController.onWindowTransitionLocked(this, transit);
1892 }
1893 }
1894 final boolean isAnimating =
1895 mWinAnimator.isAnimationSet() && !mWinAnimator.isDummyAnimation();
1896 final boolean lastWindowIsStartingWindow = startingWindow && mAppToken != null
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001897 && mAppToken.isLastWindow(this);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001898 // We delay the removal of a window if it has a showing surface that can be used to run
1899 // exit animation and it is marked as exiting.
1900 // Also, If isn't the an animating starting window that is the last window in the app.
1901 // We allow the removal of the non-animating starting window now as there is no
1902 // additional window or animation that will trigger its removal.
1903 if (mWinAnimator.getShown() && mAnimatingExit
1904 && (!lastWindowIsStartingWindow || isAnimating)) {
1905 // The exit animation is running or should run... wait for it!
1906 if (DEBUG_ADD_REMOVE) Slog.v(TAG_WM,
1907 "Not removing " + this + " due to exit animation ");
1908 setupWindowForRemoveOnExit();
1909 if (mAppToken != null) {
1910 mAppToken.updateReportedVisibilityLocked();
1911 }
1912 Binder.restoreCallingIdentity(origId);
1913 return;
1914 }
1915 }
1916
Wale Ogunwale571771c2016-08-26 13:18:50 -07001917 removeImmediately();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001918 // Removing a visible window will effect the computed orientation
1919 // So just update orientation if needed.
Andrii Kulian5406e7a2016-10-21 11:55:23 -07001920 if (wasVisible && mService.updateOrientationFromAppTokensLocked(false, displayId)) {
1921 mService.mH.obtainMessage(SEND_NEW_CONFIGURATION, displayId).sendToTarget();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001922 }
1923 mService.updateFocusedWindowLocked(UPDATE_FOCUS_NORMAL, true /*updateInputWindows*/);
1924 Binder.restoreCallingIdentity(origId);
1925 }
1926
1927 private void setupWindowForRemoveOnExit() {
1928 mRemoveOnExit = true;
1929 setDisplayLayoutNeeded();
1930 // Request a focus update as this window's input channel is already gone. Otherwise
1931 // we could have no focused window in input manager.
1932 final boolean focusChanged = mService.updateFocusedWindowLocked(
1933 UPDATE_FOCUS_WILL_PLACE_SURFACES, false /*updateInputWindows*/);
1934 mService.mWindowPlacerLocked.performSurfacePlacement();
1935 if (focusChanged) {
1936 mService.mInputMonitor.updateInputWindowsLw(false /*force*/);
1937 }
1938 }
1939
Filip Gruszczynski10a80e02015-11-06 09:21:17 -08001940 void setHasSurface(boolean hasSurface) {
1941 mHasSurface = hasSurface;
1942 }
1943
Filip Gruszczynski92e432c2015-12-15 19:17:09 -08001944 int getAnimLayerAdjustment() {
Wale Ogunwale44fbdf52016-11-16 10:18:45 -08001945 if (mIsImWindow && mService.mInputMethodTarget != null) {
Wale Ogunwale455fac52016-07-21 07:24:49 -07001946 final AppWindowToken appToken = mService.mInputMethodTarget.mAppToken;
1947 if (appToken != null) {
Robert Carrdee1b3f2017-02-27 11:33:33 -08001948 return appToken.getAnimLayerAdjustment();
Wale Ogunwale455fac52016-07-21 07:24:49 -07001949 }
Filip Gruszczynski92e432c2015-12-15 19:17:09 -08001950 }
Wale Ogunwale455fac52016-07-21 07:24:49 -07001951
Robert Carrdee1b3f2017-02-27 11:33:33 -08001952 return mToken.getAnimLayerAdjustment();
Filip Gruszczynski92e432c2015-12-15 19:17:09 -08001953 }
1954
Wale Ogunwalec69694a2016-10-18 13:51:15 -07001955 int getSpecialWindowAnimLayerAdjustment() {
1956 int specialAdjustment = 0;
1957 if (mIsImWindow) {
1958 specialAdjustment = getDisplayContent().mInputMethodAnimLayerAdjustment;
1959 } else if (mIsWallpaper) {
Wale Ogunwale0303c572016-10-20 10:16:29 -07001960 specialAdjustment = getDisplayContent().mWallpaperController.getAnimLayerAdjustment();
Wale Ogunwalec69694a2016-10-18 13:51:15 -07001961 }
1962
1963 return mLayer + specialAdjustment;
1964 }
1965
Wale Ogunwale6213caa2016-12-02 16:47:15 +00001966 boolean canBeImeTarget() {
Wale Ogunwale805d9ec2016-12-07 12:22:08 -08001967 if (mIsImWindow) {
1968 // IME windows can't be IME targets. IME targets are required to be below the IME
1969 // windows and that wouldn't be possible if the IME window is its own target...silly.
1970 return false;
1971 }
1972
Winson Chungb1549342017-07-11 09:59:56 -07001973 final boolean windowsAreFocusable = mAppToken != null && mAppToken.windowsAreFocusable();
1974 if (!windowsAreFocusable) {
1975 // This window can't be an IME target if the app's windows should not be focusable.
1976 return false;
1977 }
1978
Wale Ogunwale805d9ec2016-12-07 12:22:08 -08001979 final int fl = mAttrs.flags & (FLAG_NOT_FOCUSABLE | FLAG_ALT_FOCUSABLE_IM);
Wale Ogunwale6213caa2016-12-02 16:47:15 +00001980 final int type = mAttrs.type;
1981
Wale Ogunwale805d9ec2016-12-07 12:22:08 -08001982 // Can only be an IME target if both FLAG_NOT_FOCUSABLE and FLAG_ALT_FOCUSABLE_IM are set or
1983 // both are cleared...and not a starting window.
Wale Ogunwale6213caa2016-12-02 16:47:15 +00001984 if (fl != 0 && fl != (FLAG_NOT_FOCUSABLE | FLAG_ALT_FOCUSABLE_IM)
1985 && type != TYPE_APPLICATION_STARTING) {
1986 return false;
1987 }
1988
1989 if (DEBUG_INPUT_METHOD) {
1990 Slog.i(TAG_WM, "isVisibleOrAdding " + this + ": " + isVisibleOrAdding());
1991 if (!isVisibleOrAdding()) {
1992 Slog.i(TAG_WM, " mSurfaceController=" + mWinAnimator.mSurfaceController
1993 + " relayoutCalled=" + mRelayoutCalled
1994 + " viewVis=" + mViewVisibility
1995 + " policyVis=" + mPolicyVisibility
1996 + " policyVisAfterAnim=" + mPolicyVisibilityAfterAnim
1997 + " parentHidden=" + isParentWindowHidden()
1998 + " exiting=" + mAnimatingExit + " destroying=" + mDestroying);
1999 if (mAppToken != null) {
2000 Slog.i(TAG_WM, " mAppToken.hiddenRequested=" + mAppToken.hiddenRequested);
2001 }
2002 }
2003 }
2004 return isVisibleOrAdding();
2005 }
2006
Filip Gruszczynski92e432c2015-12-15 19:17:09 -08002007 void scheduleAnimationIfDimming() {
Wale Ogunwale360a8bc2016-10-10 13:25:26 -07002008 final DisplayContent dc = getDisplayContent();
2009 if (dc == null) {
Filip Gruszczynski92e432c2015-12-15 19:17:09 -08002010 return;
2011 }
2012 final DimLayer.DimLayerUser dimLayerUser = getDimLayerUser();
Wale Ogunwale360a8bc2016-10-10 13:25:26 -07002013 if (dimLayerUser != null && dc.mDimLayerController.isDimming(dimLayerUser, mWinAnimator)) {
Filip Gruszczynski92e432c2015-12-15 19:17:09 -08002014 // Force an animation pass just to update the mDimLayer layer.
2015 mService.scheduleAnimationLocked();
2016 }
2017 }
2018
Chong Zhangacf11402015-11-04 16:23:10 -08002019 private final class DeadWindowEventReceiver extends InputEventReceiver {
2020 DeadWindowEventReceiver(InputChannel inputChannel) {
2021 super(inputChannel, mService.mH.getLooper());
2022 }
2023 @Override
2024 public void onInputEvent(InputEvent event) {
2025 finishInputEvent(event, true);
2026 }
2027 }
2028 /**
2029 * Dummy event receiver for windows that died visible.
2030 */
2031 private DeadWindowEventReceiver mDeadWindowEventReceiver;
2032
Chong Zhang112eb8c2015-11-02 11:17:00 -08002033 void openInputChannel(InputChannel outInputChannel) {
Jeff Browncc4f7db2011-08-30 20:34:48 -07002034 if (mInputChannel != null) {
2035 throw new IllegalStateException("Window already has an input channel.");
2036 }
Wale Ogunwale9adfe572016-09-08 20:43:58 -07002037 String name = getName();
Chong Zhang112eb8c2015-11-02 11:17:00 -08002038 InputChannel[] inputChannels = InputChannel.openInputChannelPair(name);
2039 mInputChannel = inputChannels[0];
2040 mClientChannel = inputChannels[1];
2041 mInputWindowHandle.inputChannel = inputChannels[0];
2042 if (outInputChannel != null) {
2043 mClientChannel.transferTo(outInputChannel);
2044 mClientChannel.dispose();
2045 mClientChannel = null;
Chong Zhangacf11402015-11-04 16:23:10 -08002046 } else {
2047 // If the window died visible, we setup a dummy input channel, so that taps
2048 // can still detected by input monitor channel, and we can relaunch the app.
2049 // Create dummy event receiver that simply reports all events as handled.
2050 mDeadWindowEventReceiver = new DeadWindowEventReceiver(mClientChannel);
Chong Zhang112eb8c2015-11-02 11:17:00 -08002051 }
2052 mService.mInputManager.registerInputChannel(mInputChannel, mInputWindowHandle);
Jeff Browncc4f7db2011-08-30 20:34:48 -07002053 }
2054
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002055 void disposeInputChannel() {
Chong Zhangacf11402015-11-04 16:23:10 -08002056 if (mDeadWindowEventReceiver != null) {
2057 mDeadWindowEventReceiver.dispose();
2058 mDeadWindowEventReceiver = null;
2059 }
2060
2061 // unregister server channel first otherwise it complains about broken channel
2062 if (mInputChannel != null) {
2063 mService.mInputManager.unregisterInputChannel(mInputChannel);
2064 mInputChannel.dispose();
2065 mInputChannel = null;
2066 }
Chong Zhang112eb8c2015-11-02 11:17:00 -08002067 if (mClientChannel != null) {
2068 mClientChannel.dispose();
2069 mClientChannel = null;
2070 }
Jeff Browncc4f7db2011-08-30 20:34:48 -07002071 mInputWindowHandle.inputChannel = null;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002072 }
2073
Chong Zhang112eb8c2015-11-02 11:17:00 -08002074 void applyDimLayerIfNeeded() {
Chong Zhangeb917322015-11-10 14:05:40 -08002075 // When the app is terminated (eg. from Recents), the task might have already been
2076 // removed with the window pending removal. Don't apply dim in such cases, as there
2077 // will be no more updateDimLayer() calls, which leaves the dimlayer invalid.
2078 final AppWindowToken token = mAppToken;
2079 if (token != null && token.removed) {
2080 return;
2081 }
2082
Wale Ogunwale360a8bc2016-10-10 13:25:26 -07002083 final DisplayContent dc = getDisplayContent();
Wale Ogunwalec48a3542016-02-19 15:18:45 -08002084 if (!mAnimatingExit && mAppDied) {
Chong Zhang112eb8c2015-11-02 11:17:00 -08002085 // If app died visible, apply a dim over the window to indicate that it's inactive
Wale Ogunwale360a8bc2016-10-10 13:25:26 -07002086 dc.mDimLayerController.applyDimAbove(getDimLayerUser(), mWinAnimator);
Chong Zhang112eb8c2015-11-02 11:17:00 -08002087 } else if ((mAttrs.flags & FLAG_DIM_BEHIND) != 0
Jorim Jaggic6ae42a2017-05-08 23:42:02 +02002088 && dc != null && !mAnimatingExit && isVisible()) {
Wale Ogunwale360a8bc2016-10-10 13:25:26 -07002089 dc.mDimLayerController.applyDimBehind(getDimLayerUser(), mWinAnimator);
Filip Gruszczynski4501d232015-09-02 13:00:02 -07002090 }
2091 }
2092
Wale Ogunwale360a8bc2016-10-10 13:25:26 -07002093 private DimLayer.DimLayerUser getDimLayerUser() {
Filip Gruszczynski0689ae92015-10-01 12:30:31 -07002094 Task task = getTask();
2095 if (task != null) {
2096 return task;
2097 }
2098 return getStack();
2099 }
2100
Wale Ogunwale9bc47732016-08-10 14:44:22 -07002101 /** Returns true if the replacement window was removed. */
2102 boolean removeReplacedWindowIfNeeded(WindowState replacement) {
2103 if (mWillReplaceWindow && mReplacementWindow == replacement && replacement.hasDrawnLw()) {
2104 replacement.mSkipEnterAnimationForSeamlessReplacement = false;
2105 removeReplacedWindow();
2106 return true;
2107 }
2108
2109 for (int i = mChildren.size() - 1; i >= 0; --i) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07002110 final WindowState c = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07002111 if (c.removeReplacedWindowIfNeeded(replacement)) {
2112 return true;
2113 }
2114 }
2115 return false;
2116 }
2117
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002118 private void removeReplacedWindow() {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07002119 if (DEBUG_ADD_REMOVE) Slog.d(TAG, "Removing replaced window: " + this);
2120 if (isDimming()) {
2121 transferDimToReplacement();
Robert Carra1eb4392015-12-10 12:43:51 -08002122 }
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07002123 mWillReplaceWindow = false;
2124 mAnimateReplacingWindow = false;
2125 mReplacingRemoveRequested = false;
Wale Ogunwale9bc47732016-08-10 14:44:22 -07002126 mReplacementWindow = null;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07002127 if (mAnimatingExit || !mAnimateReplacingWindow) {
Wale Ogunwale571771c2016-08-26 13:18:50 -07002128 removeImmediately();
Filip Gruszczynski76cc44f2015-09-03 16:03:10 -07002129 }
2130 }
2131
Wale Ogunwale9bc47732016-08-10 14:44:22 -07002132 boolean setReplacementWindowIfNeeded(WindowState replacementCandidate) {
2133 boolean replacementSet = false;
2134
2135 if (mWillReplaceWindow && mReplacementWindow == null
2136 && getWindowTag().toString().equals(replacementCandidate.getWindowTag().toString())) {
2137
2138 mReplacementWindow = replacementCandidate;
2139 replacementCandidate.mSkipEnterAnimationForSeamlessReplacement = !mAnimateReplacingWindow;
2140 replacementSet = true;
2141 }
2142
2143 for (int i = mChildren.size() - 1; i >= 0; --i) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07002144 final WindowState c = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07002145 replacementSet |= c.setReplacementWindowIfNeeded(replacementCandidate);
2146 }
2147
2148 return replacementSet;
2149 }
2150
Filip Gruszczynskie92179d2015-09-26 16:12:30 -07002151 void setDisplayLayoutNeeded() {
Wale Ogunwale360a8bc2016-10-10 13:25:26 -07002152 final DisplayContent dc = getDisplayContent();
2153 if (dc != null) {
2154 dc.setLayoutNeeded();
Filip Gruszczynskie92179d2015-09-26 16:12:30 -07002155 }
2156 }
2157
Robert Carrfed10072016-05-26 11:48:49 -07002158 // TODO: Strange usage of word workspace here and above.
2159 boolean inPinnedWorkspace() {
2160 final Task task = getTask();
2161 return task != null && task.inPinnedWorkspace();
2162 }
2163
Chong Zhang5117e272016-05-03 12:47:34 -07002164 void applyAdjustForImeIfNeeded() {
2165 final Task task = getTask();
2166 if (task != null && task.mStack != null && task.mStack.isAdjustedForIme()) {
2167 task.mStack.applyAdjustForImeIfNeeded(task);
2168 }
2169 }
2170
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002171 @Override
2172 void switchUser() {
2173 super.switchUser();
2174 if (isHiddenFromUserLocked()) {
2175 if (DEBUG_VISIBILITY) Slog.w(TAG_WM, "user changing, hiding " + this
2176 + ", attrs=" + mAttrs.type + ", belonging to " + mOwnerUid);
2177 hideLw(false);
2178 }
2179 }
2180
Wale Ogunwale053c8e42015-11-16 14:27:21 -08002181 int getTouchableRegion(Region region, int flags) {
2182 final boolean modal = (flags & (FLAG_NOT_TOUCH_MODAL | FLAG_NOT_FOCUSABLE)) == 0;
Filip Gruszczynski9cac3b42015-10-30 14:20:37 -07002183 if (modal && mAppToken != null) {
2184 // Limit the outer touch to the activity stack region.
Wale Ogunwale053c8e42015-11-16 14:27:21 -08002185 flags |= FLAG_NOT_TOUCH_MODAL;
Chong Zhang4c9ba52a2015-11-10 18:36:33 -08002186 // If this is a modal window we need to dismiss it if it's not full screen and the
2187 // touch happens outside of the frame that displays the content. This means we
2188 // need to intercept touches outside of that window. The dim layer user
2189 // associated with the window (task or stack) will give us the good bounds, as
2190 // they would be used to display the dim layer.
2191 final DimLayer.DimLayerUser dimLayerUser = getDimLayerUser();
2192 if (dimLayerUser != null) {
2193 dimLayerUser.getDimBounds(mTmpRect);
Filip Gruszczynski9cac3b42015-10-30 14:20:37 -07002194 } else {
Chong Zhang4c9ba52a2015-11-10 18:36:33 -08002195 getVisibleBounds(mTmpRect);
2196 }
2197 if (inFreeformWorkspace()) {
Filip Gruszczynski9cac3b42015-10-30 14:20:37 -07002198 // For freeform windows we the touch region to include the whole surface for the
2199 // shadows.
Chong Zhang4c9ba52a2015-11-10 18:36:33 -08002200 final DisplayMetrics displayMetrics = getDisplayContent().getDisplayMetrics();
2201 final int delta = WindowManagerService.dipToPixel(
2202 RESIZE_HANDLE_WIDTH_IN_DP, displayMetrics);
2203 mTmpRect.inset(-delta, -delta);
Filip Gruszczynski9cac3b42015-10-30 14:20:37 -07002204 }
2205 region.set(mTmpRect);
Wale Ogunwale053c8e42015-11-16 14:27:21 -08002206 cropRegionToStackBoundsIfNeeded(region);
Filip Gruszczynski9cac3b42015-10-30 14:20:37 -07002207 } else {
2208 // Not modal or full screen modal
2209 getTouchableRegion(region);
2210 }
2211 return flags;
2212 }
2213
Filip Gruszczynski14b4e572015-11-03 15:53:55 -08002214 void checkPolicyVisibilityChange() {
2215 if (mPolicyVisibility != mPolicyVisibilityAfterAnim) {
2216 if (DEBUG_VISIBILITY) {
2217 Slog.v(TAG, "Policy visibility changing after anim in " +
2218 mWinAnimator + ": " + mPolicyVisibilityAfterAnim);
2219 }
2220 mPolicyVisibility = mPolicyVisibilityAfterAnim;
Filip Gruszczynski63a35e22015-11-05 15:38:59 -08002221 setDisplayLayoutNeeded();
Filip Gruszczynski14b4e572015-11-03 15:53:55 -08002222 if (!mPolicyVisibility) {
2223 if (mService.mCurrentFocus == this) {
2224 if (DEBUG_FOCUS_LIGHT) Slog.i(TAG,
2225 "setAnimationLocked: setting mFocusMayChange true");
2226 mService.mFocusMayChange = true;
2227 }
2228 // Window is no longer visible -- make sure if we were waiting
2229 // for it to be displayed before enabling the display, that
2230 // we allow the display to be enabled now.
2231 mService.enableScreenIfNeededLocked();
2232 }
2233 }
2234 }
2235
2236 void setRequestedSize(int requestedWidth, int requestedHeight) {
2237 if ((mRequestedWidth != requestedWidth || mRequestedHeight != requestedHeight)) {
2238 mLayoutNeeded = true;
2239 mRequestedWidth = requestedWidth;
2240 mRequestedHeight = requestedHeight;
2241 }
2242 }
2243
Bryce Leef858b572017-06-29 14:03:33 -07002244 void prepareWindowToDisplayDuringRelayout(boolean wasVisible) {
Bryce Leeae73ba42017-05-05 09:58:25 -07002245 // We need to turn on screen regardless of visibility.
Filip Gruszczynski84cc5e32015-11-03 18:05:47 -08002246 if ((mAttrs.flags & FLAG_TURN_SCREEN_ON) != 0) {
2247 if (DEBUG_VISIBILITY) Slog.v(TAG, "Relayout window turning screen on: " + this);
2248 mTurnOnScreen = true;
2249 }
Bryce Leeae73ba42017-05-05 09:58:25 -07002250
2251 // If we were already visible, skip rest of preparation.
2252 if (wasVisible) {
2253 if (DEBUG_VISIBILITY) Slog.v(TAG,
2254 "Already visible and does not turn on screen, skip preparing: " + this);
2255 return;
2256 }
2257
2258 if ((mAttrs.softInputMode & SOFT_INPUT_MASK_ADJUST)
2259 == SOFT_INPUT_ADJUST_RESIZE) {
2260 mLayoutNeeded = true;
2261 }
2262
Adrian Roose94c15c2017-05-09 13:17:54 -07002263 if (isDrawnLw() && mService.okToAnimate()) {
Bryce Leeae73ba42017-05-05 09:58:25 -07002264 mWinAnimator.applyEnterAnimationLocked();
2265 }
Bryce Leef858b572017-06-29 14:03:33 -07002266 }
Bryce Leeae73ba42017-05-05 09:58:25 -07002267
Bryce Leef858b572017-06-29 14:03:33 -07002268 void getMergedConfiguration(MergedConfiguration outConfiguration) {
2269 final Configuration globalConfig = mService.mRoot.getConfiguration();
2270 final Configuration overrideConfig = getMergedOverrideConfiguration();
2271 outConfiguration.setConfiguration(globalConfig, overrideConfig);
2272 }
2273
2274 void setReportedConfiguration(MergedConfiguration config) {
2275 mLastReportedConfiguration.setTo(config.getMergedConfiguration());
Filip Gruszczynski84cc5e32015-11-03 18:05:47 -08002276 }
2277
2278 void adjustStartingWindowFlags() {
2279 if (mAttrs.type == TYPE_BASE_APPLICATION && mAppToken != null
2280 && mAppToken.startingWindow != null) {
2281 // Special handling of starting window over the base
2282 // window of the app: propagate lock screen flags to it,
2283 // to provide the correct semantics while starting.
2284 final int mask = FLAG_SHOW_WHEN_LOCKED | FLAG_DISMISS_KEYGUARD
2285 | FLAG_ALLOW_LOCK_WHILE_SCREEN_ON;
2286 WindowManager.LayoutParams sa = mAppToken.startingWindow.mAttrs;
2287 sa.flags = (sa.flags & ~mask) | (mAttrs.flags & mask);
2288 }
2289 }
2290
2291 void setWindowScale(int requestedWidth, int requestedHeight) {
2292 final boolean scaledWindow = (mAttrs.flags & FLAG_SCALED) != 0;
2293
2294 if (scaledWindow) {
2295 // requested{Width|Height} Surface's physical size
2296 // attrs.{width|height} Size on screen
2297 // TODO: We don't check if attrs != null here. Is it implicitly checked?
2298 mHScale = (mAttrs.width != requestedWidth) ?
2299 (mAttrs.width / (float)requestedWidth) : 1.0f;
2300 mVScale = (mAttrs.height != requestedHeight) ?
2301 (mAttrs.height / (float)requestedHeight) : 1.0f;
2302 } else {
2303 mHScale = mVScale = 1;
2304 }
2305 }
2306
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002307 private class DeathRecipient implements IBinder.DeathRecipient {
Craig Mautnere8552142012-11-07 13:55:47 -08002308 @Override
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002309 public void binderDied() {
2310 try {
2311 synchronized(mService.mWindowMap) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07002312 final WindowState win = mService.windowForClientLocked(mSession, mClient, false);
Craig Mautnerd87946b2012-03-29 18:00:19 -07002313 Slog.i(TAG, "WIN DEATH: " + win);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002314 if (win != null) {
Wale Ogunwale1666e312016-12-16 11:27:18 -08002315 final DisplayContent dc = getDisplayContent();
Jorim Jaggi10abe2f2017-01-03 16:44:46 +01002316 if (win.mAppToken != null && win.mAppToken.findMainWindow() == win) {
2317 mService.mTaskSnapshotController.onAppDied(win.mAppToken);
2318 }
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07002319 win.removeIfPossible(shouldKeepVisibleDeadAppWindow());
Wale Ogunwalea9f9b372016-02-04 18:04:39 -08002320 if (win.mAttrs.type == TYPE_DOCK_DIVIDER) {
2321 // The owner of the docked divider died :( We reset the docked stack,
Jorim Jaggidcb68142016-02-09 21:51:30 -08002322 // just in case they have the divider at an unstable position. Better
2323 // also reset drag resizing state, because the owner can't do it
2324 // anymore.
Wale Ogunwale1666e312016-12-16 11:27:18 -08002325 final TaskStack stack = dc.getDockedStackIgnoringVisibility();
Wale Ogunwalea9f9b372016-02-04 18:04:39 -08002326 if (stack != null) {
2327 stack.resetDockedStackToMiddle();
2328 }
Jorim Jaggidcb68142016-02-09 21:51:30 -08002329 mService.setDockedStackResizing(false);
Wale Ogunwalea9f9b372016-02-04 18:04:39 -08002330 }
Craig Mautnerb3b36ba2013-05-20 13:21:10 -07002331 } else if (mHasSurface) {
Craig Mautnera99764e2013-03-06 10:22:16 -08002332 Slog.e(TAG, "!!! LEAK !!! Window removed but surface still valid.");
Wale Ogunwale92fc3722016-08-05 12:19:08 -07002333 WindowState.this.removeIfPossible();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002334 }
2335 }
2336 } catch (IllegalArgumentException ex) {
Wale Ogunwalee42d0e12016-05-02 16:40:59 -07002337 // This will happen if the window has already been removed.
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002338 }
2339 }
2340 }
2341
Wale Ogunwale3fd20fe2016-01-23 17:41:28 -08002342 /**
2343 * Returns true if this window is visible and belongs to a dead app and shouldn't be removed,
2344 * because we want to preserve its location on screen to be re-activated later when the user
2345 * interacts with it.
2346 */
2347 boolean shouldKeepVisibleDeadAppWindow() {
Wale Ogunwale89973222017-04-23 18:39:45 -07002348 if (!isWinVisibleLw() || mAppToken == null || mAppToken.isClientHidden()) {
Wale Ogunwale3fd20fe2016-01-23 17:41:28 -08002349 // Not a visible app window or the app isn't dead.
2350 return false;
2351 }
2352
Wale Ogunwale51d1d912016-05-04 13:27:18 -07002353 if (mAttrs.token != mClient.asBinder()) {
2354 // The window was add by a client using another client's app token. We don't want to
2355 // keep the dead window around for this case since this is meant for 'real' apps.
2356 return false;
2357 }
2358
Wale Ogunwale3fd20fe2016-01-23 17:41:28 -08002359 if (mAttrs.type == TYPE_APPLICATION_STARTING) {
2360 // We don't keep starting windows since they were added by the window manager before
2361 // the app even launched.
2362 return false;
2363 }
2364
2365 final TaskStack stack = getStack();
2366 return stack != null && StackId.keepVisibleDeadAppWindowOnScreen(stack.mStackId);
2367 }
2368
Wale Ogunwaled045c822015-12-02 09:14:28 -08002369 /** @return true if this window desires key events. */
2370 boolean canReceiveKeys() {
Craig Mautner58106812012-12-28 12:27:40 -08002371 return isVisibleOrAdding()
Chong Zhange292eb32016-05-21 09:23:55 -07002372 && (mViewVisibility == View.VISIBLE) && !mRemoveOnExit
Wale Ogunwaled045c822015-12-02 09:14:28 -08002373 && ((mAttrs.flags & WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE) == 0)
Jorim Jaggib72c9ad2016-04-11 18:27:58 -07002374 && (mAppToken == null || mAppToken.windowsAreFocusable())
Matthew Nge15352e2016-12-20 15:36:29 -08002375 && !canReceiveTouchInput();
2376 }
2377
2378 /** @return true if this window desires touch events. */
2379 boolean canReceiveTouchInput() {
Bryce Lee6d410262017-02-28 15:30:17 -08002380 return mAppToken != null && mAppToken.getTask() != null
2381 && mAppToken.getTask().mStack.shouldIgnoreInput();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002382 }
2383
Craig Mautner749a7bb2012-04-02 13:49:53 -07002384 @Override
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002385 public boolean hasDrawnLw() {
Craig Mautner749a7bb2012-04-02 13:49:53 -07002386 return mWinAnimator.mDrawState == WindowStateAnimator.HAS_DRAWN;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002387 }
2388
Craig Mautner749a7bb2012-04-02 13:49:53 -07002389 @Override
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002390 public boolean showLw(boolean doAnimation) {
2391 return showLw(doAnimation, true);
2392 }
2393
2394 boolean showLw(boolean doAnimation, boolean requestAnim) {
Craig Mautner5962b122012-10-05 14:45:52 -07002395 if (isHiddenFromUserLocked()) {
Craig Mautner9dc52bc2012-08-06 14:15:42 -07002396 return false;
2397 }
Dianne Hackbornb6b23ec2013-02-11 19:29:06 -08002398 if (!mAppOpVisibility) {
2399 // Being hidden due to app op request.
2400 return false;
2401 }
Svetoslav Ganovaa076532016-08-01 19:16:43 -07002402 if (mPermanentlyHidden) {
2403 // Permanently hidden until the app exists as apps aren't prepared
2404 // to handle their windows being removed from under them.
2405 return false;
2406 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002407 if (mPolicyVisibility && mPolicyVisibilityAfterAnim) {
Craig Mautnere32c3072012-03-12 15:25:35 -07002408 // Already showing.
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002409 return false;
2410 }
Craig Mautnerd87946b2012-03-29 18:00:19 -07002411 if (DEBUG_VISIBILITY) Slog.v(TAG, "Policy visibility true: " + this);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002412 if (doAnimation) {
Craig Mautnerd87946b2012-03-29 18:00:19 -07002413 if (DEBUG_VISIBILITY) Slog.v(TAG, "doAnimation: mPolicyVisibility="
Craig Mautnera2c77052012-03-26 12:14:43 -07002414 + mPolicyVisibility + " mAnimation=" + mWinAnimator.mAnimation);
Adrian Roose94c15c2017-05-09 13:17:54 -07002415 if (!mService.okToAnimate()) {
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002416 doAnimation = false;
Craig Mautnera2c77052012-03-26 12:14:43 -07002417 } else if (mPolicyVisibility && mWinAnimator.mAnimation == null) {
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002418 // Check for the case where we are currently visible and
2419 // not animating; we do not want to do animation at such a
2420 // point to become visible when we already are.
2421 doAnimation = false;
2422 }
2423 }
2424 mPolicyVisibility = true;
2425 mPolicyVisibilityAfterAnim = true;
2426 if (doAnimation) {
Craig Mautnerc2f9be02012-03-27 17:32:29 -07002427 mWinAnimator.applyAnimationLocked(WindowManagerPolicy.TRANSIT_ENTER, true);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002428 }
2429 if (requestAnim) {
Craig Mautner96868332012-12-04 14:29:11 -08002430 mService.scheduleAnimationLocked();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002431 }
Jorim Jaggic8c4a8e2017-04-04 15:09:51 +02002432 if ((mAttrs.flags & FLAG_NOT_FOCUSABLE) == 0) {
2433 mService.updateFocusedWindowLocked(UPDATE_FOCUS_NORMAL, false /* updateImWindows */);
2434 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002435 return true;
2436 }
2437
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002438 @Override
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002439 public boolean hideLw(boolean doAnimation) {
2440 return hideLw(doAnimation, true);
2441 }
2442
2443 boolean hideLw(boolean doAnimation, boolean requestAnim) {
2444 if (doAnimation) {
Adrian Roose94c15c2017-05-09 13:17:54 -07002445 if (!mService.okToAnimate()) {
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002446 doAnimation = false;
2447 }
2448 }
Wale Ogunwale9bc47732016-08-10 14:44:22 -07002449 boolean current = doAnimation ? mPolicyVisibilityAfterAnim : mPolicyVisibility;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002450 if (!current) {
Craig Mautnere32c3072012-03-12 15:25:35 -07002451 // Already hiding.
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002452 return false;
2453 }
2454 if (doAnimation) {
Craig Mautnerc2f9be02012-03-27 17:32:29 -07002455 mWinAnimator.applyAnimationLocked(WindowManagerPolicy.TRANSIT_EXIT, false);
Craig Mautnera2c77052012-03-26 12:14:43 -07002456 if (mWinAnimator.mAnimation == null) {
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002457 doAnimation = false;
2458 }
2459 }
Wale Ogunwale9bc47732016-08-10 14:44:22 -07002460 mPolicyVisibilityAfterAnim = false;
2461 if (!doAnimation) {
Craig Mautnerd87946b2012-03-29 18:00:19 -07002462 if (DEBUG_VISIBILITY) Slog.v(TAG, "Policy visibility false: " + this);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002463 mPolicyVisibility = false;
2464 // Window is no longer visible -- make sure if we were waiting
2465 // for it to be displayed before enabling the display, that
2466 // we allow the display to be enabled now.
2467 mService.enableScreenIfNeededLocked();
2468 if (mService.mCurrentFocus == this) {
Filip Gruszczynski14b4e572015-11-03 15:53:55 -08002469 if (DEBUG_FOCUS_LIGHT) Slog.i(TAG,
Craig Mautner58458122013-09-14 14:59:50 -07002470 "WindowState.hideLw: setting mFocusMayChange true");
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002471 mService.mFocusMayChange = true;
2472 }
2473 }
2474 if (requestAnim) {
Craig Mautner96868332012-12-04 14:29:11 -08002475 mService.scheduleAnimationLocked();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002476 }
Jorim Jaggic8c4a8e2017-04-04 15:09:51 +02002477 if (mService.mCurrentFocus == this) {
2478 mService.updateFocusedWindowLocked(UPDATE_FOCUS_NORMAL, false /* updateImWindows */);
2479 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002480 return true;
2481 }
2482
Craig Mautnerfb32c6e2013-02-12 15:08:44 -08002483 public void setAppOpVisibilityLw(boolean state) {
Dianne Hackbornb6b23ec2013-02-11 19:29:06 -08002484 if (mAppOpVisibility != state) {
2485 mAppOpVisibility = state;
2486 if (state) {
2487 // If the policy visibility had last been to hide, then this
2488 // will incorrectly show at this point since we lost that
2489 // information. Not a big deal -- for the windows that have app
2490 // ops modifies they should only be hidden by policy due to the
2491 // lock screen, and the user won't be changing this if locked.
2492 // Plus it will quickly be fixed the next time we do a layout.
Craig Mautnerfb32c6e2013-02-12 15:08:44 -08002493 showLw(true, true);
Dianne Hackbornb6b23ec2013-02-11 19:29:06 -08002494 } else {
Craig Mautnerfb32c6e2013-02-12 15:08:44 -08002495 hideLw(true, true);
Dianne Hackbornb6b23ec2013-02-11 19:29:06 -08002496 }
Dianne Hackbornb6b23ec2013-02-11 19:29:06 -08002497 }
Dianne Hackbornb6b23ec2013-02-11 19:29:06 -08002498 }
2499
Svetoslav Ganovaa076532016-08-01 19:16:43 -07002500 public void hidePermanentlyLw() {
2501 if (!mPermanentlyHidden) {
2502 mPermanentlyHidden = true;
2503 hideLw(true, true);
2504 }
2505 }
2506
Jeff Brownc2932a12014-11-20 18:04:05 -08002507 public void pokeDrawLockLw(long timeout) {
2508 if (isVisibleOrAdding()) {
2509 if (mDrawLock == null) {
2510 // We want the tag name to be somewhat stable so that it is easier to correlate
2511 // in wake lock statistics. So in particular, we don't want to include the
2512 // window's hash code as in toString().
Wale Ogunwalecad05a02015-09-25 10:41:44 -07002513 final CharSequence tag = getWindowTag();
Jeff Brownc2932a12014-11-20 18:04:05 -08002514 mDrawLock = mService.mPowerManager.newWakeLock(
2515 PowerManager.DRAW_WAKE_LOCK, "Window:" + tag);
2516 mDrawLock.setReferenceCounted(false);
2517 mDrawLock.setWorkSource(new WorkSource(mOwnerUid, mAttrs.packageName));
2518 }
2519 // Each call to acquire resets the timeout.
2520 if (DEBUG_POWER) {
2521 Slog.d(TAG, "pokeDrawLock: poking draw lock on behalf of visible window owned by "
2522 + mAttrs.packageName);
2523 }
2524 mDrawLock.acquire(timeout);
2525 } else if (DEBUG_POWER) {
2526 Slog.d(TAG, "pokeDrawLock: suppressed draw lock request for invisible window "
2527 + "owned by " + mAttrs.packageName);
2528 }
2529 }
2530
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002531 @Override
2532 public boolean isAlive() {
2533 return mClient.asBinder().isBinderAlive();
2534 }
2535
Craig Mautnera987d432012-10-11 14:07:58 -07002536 boolean isClosing() {
Wale Ogunwalec48a3542016-02-19 15:18:45 -08002537 return mAnimatingExit || (mService.mClosingApps.contains(mAppToken));
Craig Mautnera987d432012-10-11 14:07:58 -07002538 }
2539
Chong Zhangbef461f2015-10-27 11:38:24 -07002540 boolean isAnimatingWithSavedSurface() {
Chong Zhang92147042016-05-09 12:47:11 -07002541 return mAnimatingWithSavedSurface;
2542 }
2543
Wale Ogunwaled1c37912016-08-16 03:19:39 -07002544 @Override
Wale Ogunwale9bc47732016-08-10 14:44:22 -07002545 boolean isAnimating() {
2546 if (mWinAnimator.isAnimationSet() || mAnimatingExit) {
2547 return true;
2548 }
Wale Ogunwaled1c37912016-08-16 03:19:39 -07002549 return super.isAnimating();
Wale Ogunwale9bc47732016-08-10 14:44:22 -07002550 }
2551
Chong Zhang8e4bda92016-05-04 15:08:18 -07002552 boolean isAnimatingInvisibleWithSavedSurface() {
Wale Ogunwale9bc47732016-08-10 14:44:22 -07002553 if (mAnimatingWithSavedSurface
2554 && (mViewVisibility != View.VISIBLE || mWindowRemovalAllowed)) {
2555 return true;
2556 }
2557 for (int i = mChildren.size() - 1; i >= 0; --i) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07002558 final WindowState c = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07002559 if (c.isAnimatingInvisibleWithSavedSurface()) {
2560 return true;
2561 }
2562 }
2563 return false;
2564 }
2565
2566 void stopUsingSavedSurface() {
2567 for (int i = mChildren.size() - 1; i >= 0; --i) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07002568 final WindowState c = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07002569 c.stopUsingSavedSurface();
2570 }
2571
2572 if (!isAnimatingInvisibleWithSavedSurface()) {
2573 return;
2574 }
2575
2576 if (DEBUG_APP_TRANSITIONS || DEBUG_ANIM) Slog.d(TAG, "stopUsingSavedSurface: " + this);
2577 clearAnimatingWithSavedSurface();
2578 mDestroying = true;
2579 mWinAnimator.hide("stopUsingSavedSurface");
Wale Ogunwale0303c572016-10-20 10:16:29 -07002580 getDisplayContent().mWallpaperController.hideWallpapers(this);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07002581 }
2582
2583 void markSavedSurfaceExiting() {
2584 if (isAnimatingInvisibleWithSavedSurface()) {
2585 mAnimatingExit = true;
2586 mWinAnimator.mAnimating = true;
2587 }
2588 for (int i = mChildren.size() - 1; i >= 0; --i) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07002589 final WindowState c = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07002590 c.markSavedSurfaceExiting();
2591 }
2592 }
2593
2594 void addWinAnimatorToList(ArrayList<WindowStateAnimator> animators) {
2595 animators.add(mWinAnimator);
2596
2597 for (int i = mChildren.size() - 1; i >= 0; --i) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07002598 final WindowState c = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07002599 c.addWinAnimatorToList(animators);
2600 }
2601 }
2602
Wale Ogunwaled1c37912016-08-16 03:19:39 -07002603 void sendAppVisibilityToClients() {
2604 super.sendAppVisibilityToClients();
Wale Ogunwale9bc47732016-08-10 14:44:22 -07002605
Wale Ogunwale89973222017-04-23 18:39:45 -07002606 final boolean clientHidden = mAppToken.isClientHidden();
Wale Ogunwale9bc47732016-08-10 14:44:22 -07002607 if (mAttrs.type == TYPE_APPLICATION_STARTING && clientHidden) {
2608 // Don't hide the starting window.
2609 return;
2610 }
2611
Wale Ogunwale89973222017-04-23 18:39:45 -07002612 if (clientHidden) {
2613 // Once we are notifying the client that it's visibility has changed, we need to prevent
2614 // it from destroying child surfaces until the animation has finished. We do this by
2615 // detaching any surface control the client added from the client.
2616 for (int i = mChildren.size() - 1; i >= 0; --i) {
2617 final WindowState c = mChildren.get(i);
2618 c.mWinAnimator.detachChildren();
2619 }
2620
2621 mWinAnimator.detachChildren();
2622 }
2623
Wale Ogunwale9bc47732016-08-10 14:44:22 -07002624 try {
2625 if (DEBUG_VISIBILITY) Slog.v(TAG,
2626 "Setting visibility of " + this + ": " + (!clientHidden));
2627 mClient.dispatchAppVisibility(!clientHidden);
2628 } catch (RemoteException e) {
2629 }
Chong Zhang8e4bda92016-05-04 15:08:18 -07002630 }
2631
Chong Zhang92147042016-05-09 12:47:11 -07002632 public void setVisibleBeforeClientHidden() {
2633 mWasVisibleBeforeClientHidden |=
2634 (mViewVisibility == View.VISIBLE || mAnimatingWithSavedSurface);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07002635
Wale Ogunwaled1c37912016-08-16 03:19:39 -07002636 super.setVisibleBeforeClientHidden();
Chong Zhang92147042016-05-09 12:47:11 -07002637 }
2638
Wale Ogunwale9bc47732016-08-10 14:44:22 -07002639 public void clearWasVisibleBeforeClientHidden() {
Chong Zhang92147042016-05-09 12:47:11 -07002640 mWasVisibleBeforeClientHidden = false;
Wale Ogunwale9bc47732016-08-10 14:44:22 -07002641 for (int i = mChildren.size() - 1; i >= 0; --i) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07002642 final WindowState c = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07002643 c.clearWasVisibleBeforeClientHidden();
2644 }
Chong Zhang92147042016-05-09 12:47:11 -07002645 }
2646
2647 public boolean wasVisibleBeforeClientHidden() {
2648 return mWasVisibleBeforeClientHidden;
Chong Zhangbef461f2015-10-27 11:38:24 -07002649 }
2650
Wale Ogunwale9bc47732016-08-10 14:44:22 -07002651 void onStartFreezingScreen() {
2652 mAppFreezing = true;
2653 for (int i = mChildren.size() - 1; i >= 0; --i) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07002654 final WindowState c = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07002655 c.onStartFreezingScreen();
2656 }
2657 }
2658
2659 boolean onStopFreezingScreen() {
2660 boolean unfrozeWindows = false;
2661 for (int i = mChildren.size() - 1; i >= 0; --i) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07002662 final WindowState c = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07002663 unfrozeWindows |= c.onStopFreezingScreen();
2664 }
2665
2666 if (!mAppFreezing) {
2667 return unfrozeWindows;
2668 }
2669
Wale Ogunwale953171d2016-09-30 09:17:30 -07002670 mAppFreezing = false;
2671
Bryce Lee31386ab2017-07-06 17:51:26 -07002672 if (mHasSurface && !mOrientationChanging
Wale Ogunwale9bc47732016-08-10 14:44:22 -07002673 && mService.mWindowsFreezingScreen != WINDOWS_FREEZING_SCREENS_TIMEOUT) {
2674 if (DEBUG_ORIENTATION) Slog.v(TAG_WM, "set mOrientationChanging of " + this);
Bryce Lee31386ab2017-07-06 17:51:26 -07002675 mOrientationChanging = true;
Wale Ogunwalee05f5012016-09-16 16:27:29 -07002676 mService.mRoot.mOrientationChangeComplete = false;
Wale Ogunwale9bc47732016-08-10 14:44:22 -07002677 }
2678 mLastFreezeDuration = 0;
2679 setDisplayLayoutNeeded();
2680 return true;
2681 }
2682
Chong Zhangeb22e8e2016-01-20 19:52:22 -08002683 private boolean shouldSaveSurface() {
Chong Zhang6c71c0b2016-04-01 15:10:31 -07002684 if (mWinAnimator.mSurfaceController == null) {
2685 // Don't bother if the surface controller is gone for any reason.
2686 return false;
2687 }
2688
Chong Zhang92147042016-05-09 12:47:11 -07002689 if (!mWasVisibleBeforeClientHidden) {
2690 return false;
2691 }
2692
Wale Ogunwale945d1972016-03-23 13:16:41 -07002693 if ((mAttrs.flags & FLAG_SECURE) != 0) {
2694 // We don't save secure surfaces since their content shouldn't be shown while the app
2695 // isn't on screen and content might leak through during the transition animation with
2696 // saved surface.
2697 return false;
2698 }
2699
Jorim Jaggi02886a82016-12-06 09:10:06 -08002700 if (isLowRamDeviceStatic()) {
Chong Zhangdb20b5f2015-10-23 14:01:43 -07002701 // Don't save surfaces on Svelte devices.
Chong Zhangeb22e8e2016-01-20 19:52:22 -08002702 return false;
2703 }
2704
Jorim Jaggiab7ad382016-10-26 18:22:04 -07002705 final Task task = getTask();
Chong Zhangeb22e8e2016-01-20 19:52:22 -08002706 final AppWindowToken taskTop = task.getTopVisibleAppToken();
2707 if (taskTop != null && taskTop != mAppToken) {
2708 // Don't save if the window is not the topmost window.
2709 return false;
2710 }
2711
Jorim Jaggi8fa45222016-02-19 19:54:39 -08002712 if (mResizedWhileGone) {
2713 // Somebody resized our window while we were gone for layout, which means that the
2714 // client got an old size, so we have an outdated surface here.
2715 return false;
2716 }
2717
Robert Carr7098dbd2016-02-01 12:31:01 -08002718 if (DEBUG_DISABLE_SAVING_SURFACES) {
2719 return false;
2720 }
2721
Chong Zhangeb22e8e2016-01-20 19:52:22 -08002722 return mAppToken.shouldSaveSurface();
2723 }
2724
Wale Ogunwale9bc47732016-08-10 14:44:22 -07002725 boolean destroySurface(boolean cleanupOnResume, boolean appStopped) {
2726 boolean destroyedSomething = false;
2727 for (int i = mChildren.size() - 1; i >= 0; --i) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07002728 final WindowState c = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07002729 destroyedSomething |= c.destroySurface(cleanupOnResume, appStopped);
2730 }
2731
Robert Carrdb2f6e62017-03-01 20:17:58 -08002732 if (!(appStopped || mWindowRemovalAllowed || cleanupOnResume)) {
2733 return destroyedSomething;
Wale Ogunwale9bc47732016-08-10 14:44:22 -07002734 }
Robert Carrdb2f6e62017-03-01 20:17:58 -08002735
2736 if (appStopped || mWindowRemovalAllowed) {
2737 mWinAnimator.destroyPreservedSurfaceLocked();
2738 }
2739
2740 if (mDestroying) {
2741 if (DEBUG_ADD_REMOVE) Slog.e(TAG_WM, "win=" + this
2742 + " destroySurfaces: appStopped=" + appStopped
2743 + " win.mWindowRemovalAllowed=" + mWindowRemovalAllowed
2744 + " win.mRemoveOnExit=" + mRemoveOnExit);
2745 if (!cleanupOnResume || mRemoveOnExit) {
Robert Carr89a28ab2017-04-24 15:33:11 -07002746 destroyOrSaveSurfaceUnchecked();
Robert Carrdb2f6e62017-03-01 20:17:58 -08002747 }
2748 if (mRemoveOnExit) {
2749 removeImmediately();
2750 }
2751 if (cleanupOnResume) {
2752 requestUpdateWallpaperIfNeeded();
2753 }
2754 mDestroying = false;
2755 destroyedSomething = true;
2756 }
2757
Wale Ogunwale9bc47732016-08-10 14:44:22 -07002758 return destroyedSomething;
2759 }
Chris Craik3131bde2016-05-06 13:39:08 -07002760
Robert Carr89a28ab2017-04-24 15:33:11 -07002761 // Destroy or save the application surface without checking
2762 // various indicators of whether the client has released the surface.
2763 // This is in general unsafe, and most callers should use {@link #destroySurface}
2764 void destroyOrSaveSurfaceUnchecked() {
Chong Zhangeb22e8e2016-01-20 19:52:22 -08002765 mSurfaceSaved = shouldSaveSurface();
2766 if (mSurfaceSaved) {
2767 if (DEBUG_APP_TRANSITIONS || DEBUG_ANIM) {
2768 Slog.v(TAG, "Saving surface: " + this);
2769 }
Chris Craik3131bde2016-05-06 13:39:08 -07002770 // Previous user of the surface may have set a transparent region signaling a portion
2771 // doesn't need to be composited, so reset to default empty state.
2772 mSession.setTransparentRegion(mClient, sEmptyRegion);
Chong Zhangeb22e8e2016-01-20 19:52:22 -08002773
2774 mWinAnimator.hide("saved surface");
2775 mWinAnimator.mDrawState = WindowStateAnimator.NO_SURFACE;
2776 setHasSurface(false);
Chong Zhang47e36a32016-02-29 16:44:33 -08002777 // The client should have disconnected at this point, but if it doesn't,
2778 // we need to make sure it's disconnected. Otherwise when we reuse the surface
2779 // the client can't reconnect to the buffer queue, and rendering will fail.
2780 if (mWinAnimator.mSurfaceController != null) {
2781 mWinAnimator.mSurfaceController.disconnectInTransaction();
2782 }
Chong Zhang8e4bda92016-05-04 15:08:18 -07002783 mAnimatingWithSavedSurface = false;
Chong Zhangeb22e8e2016-01-20 19:52:22 -08002784 } else {
Robert Carr13f7be9e2015-12-02 18:39:45 -08002785 mWinAnimator.destroySurfaceLocked();
2786 }
Chong Zhang92147042016-05-09 12:47:11 -07002787 // Clear animating flags now, since the surface is now gone. (Note this is true even
2788 // if the surface is saved, to outside world the surface is still NO_SURFACE.)
2789 mAnimatingExit = false;
Robert Carr13f7be9e2015-12-02 18:39:45 -08002790 }
Chong Zhangdb20b5f2015-10-23 14:01:43 -07002791
Chong Zhang92147042016-05-09 12:47:11 -07002792 void destroySavedSurface() {
Wale Ogunwale9bc47732016-08-10 14:44:22 -07002793 for (int i = mChildren.size() - 1; i >= 0; --i) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07002794 final WindowState c = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07002795 c.destroySavedSurface();
2796 }
2797
Robert Carr13f7be9e2015-12-02 18:39:45 -08002798 if (mSurfaceSaved) {
Wale Ogunwale9bc47732016-08-10 14:44:22 -07002799 if (DEBUG_APP_TRANSITIONS || DEBUG_ANIM) Slog.v(TAG, "Destroying saved surface: " + this);
Robert Carr13f7be9e2015-12-02 18:39:45 -08002800 mWinAnimator.destroySurfaceLocked();
Robert Carr237028a2016-07-26 10:39:45 -07002801 mSurfaceSaved = false;
Robert Carr13f7be9e2015-12-02 18:39:45 -08002802 }
Chong Zhang92147042016-05-09 12:47:11 -07002803 mWasVisibleBeforeClientHidden = false;
Robert Carr13f7be9e2015-12-02 18:39:45 -08002804 }
2805
Wale Ogunwale9bc47732016-08-10 14:44:22 -07002806 /** Returns -1 if there are no interesting windows or number of interesting windows not drawn.*/
2807 int restoreSavedSurfaceForInterestingWindow() {
2808 int interestingNotDrawn = -1;
2809 for (int i = mChildren.size() - 1; i >= 0; --i) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07002810 final WindowState c = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07002811 final int childInterestingNotDrawn = c.restoreSavedSurfaceForInterestingWindow();
2812 if (childInterestingNotDrawn != -1) {
2813 if (interestingNotDrawn == -1) {
2814 interestingNotDrawn = childInterestingNotDrawn;
2815 } else {
2816 interestingNotDrawn += childInterestingNotDrawn;
2817 }
2818 }
Chong Zhang4113ffa2016-02-18 12:39:13 -08002819 }
Robert Carr237028a2016-07-26 10:39:45 -07002820
Wale Ogunwale9bc47732016-08-10 14:44:22 -07002821 if (mAttrs.type == TYPE_APPLICATION_STARTING
2822 || mAppDied || !wasVisibleBeforeClientHidden()
2823 || (mAppToken.mAppAnimator.freezingScreen && mAppFreezing)) {
2824 // Window isn't interesting...
2825 return interestingNotDrawn;
2826 }
2827
2828 restoreSavedSurface();
2829
2830 if (!isDrawnLw()) {
2831 if (interestingNotDrawn == -1) {
2832 interestingNotDrawn = 1;
2833 } else {
2834 interestingNotDrawn++;
2835 }
2836 }
2837 return interestingNotDrawn;
2838 }
2839
2840 /** Returns true if the saved surface was restored. */
2841 boolean restoreSavedSurface() {
2842 if (!mSurfaceSaved) {
2843 return false;
2844 }
2845
2846 // Sometimes we save surfaces due to layout invisible directly after rotation occurs.
2847 // However this means the surface was never laid out in the new orientation.
2848 // We can only restore to the last rotation we were laid out as visible in.
Andrii Kulian8ee72852017-03-10 10:36:45 -08002849 if (mLastVisibleLayoutRotation != getDisplayContent().getRotation()) {
Robert Carr237028a2016-07-26 10:39:45 -07002850 destroySavedSurface();
Wale Ogunwale9bc47732016-08-10 14:44:22 -07002851 return false;
Robert Carr237028a2016-07-26 10:39:45 -07002852 }
Chong Zhangeb22e8e2016-01-20 19:52:22 -08002853 mSurfaceSaved = false;
Robert Carr237028a2016-07-26 10:39:45 -07002854
Chong Zhang6c71c0b2016-04-01 15:10:31 -07002855 if (mWinAnimator.mSurfaceController != null) {
2856 setHasSurface(true);
Wale Ogunwale9d147902016-07-16 11:58:55 -07002857 mWinAnimator.mDrawState = READY_TO_SHOW;
Chong Zhang92147042016-05-09 12:47:11 -07002858 mAnimatingWithSavedSurface = true;
Chong Zhang6c71c0b2016-04-01 15:10:31 -07002859
Chong Zhang6e9872b2016-08-17 10:19:05 -07002860 requestUpdateWallpaperIfNeeded();
2861
Chong Zhang6c71c0b2016-04-01 15:10:31 -07002862 if (DEBUG_APP_TRANSITIONS || DEBUG_ANIM) {
2863 Slog.v(TAG, "Restoring saved surface: " + this);
2864 }
2865 } else {
2866 // mSurfaceController shouldn't be null if mSurfaceSaved was still true at
2867 // this point. Even if we destroyed the saved surface because of rotation
2868 // or resize, mSurfaceSaved flag should have been cleared. So this is a wtf.
2869 Slog.wtf(TAG, "Failed to restore saved surface: surface gone! " + this);
Chong Zhangeb22e8e2016-01-20 19:52:22 -08002870 }
Wale Ogunwale9bc47732016-08-10 14:44:22 -07002871
2872 return true;
Chong Zhangeb22e8e2016-01-20 19:52:22 -08002873 }
2874
Chong Zhang92147042016-05-09 12:47:11 -07002875 boolean canRestoreSurface() {
Wale Ogunwale9bc47732016-08-10 14:44:22 -07002876 if (mWasVisibleBeforeClientHidden && mSurfaceSaved) {
2877 return true;
2878 }
2879
2880 for (int i = mChildren.size() - 1; i >= 0; --i) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07002881 final WindowState c = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07002882 if (c.canRestoreSurface()) {
2883 return true;
2884 }
2885 }
2886
2887 return false;
Chong Zhang92147042016-05-09 12:47:11 -07002888 }
2889
2890 boolean hasSavedSurface() {
Robert Carr13f7be9e2015-12-02 18:39:45 -08002891 return mSurfaceSaved;
2892 }
2893
Chong Zhang92147042016-05-09 12:47:11 -07002894 void clearHasSavedSurface() {
2895 mSurfaceSaved = false;
2896 mAnimatingWithSavedSurface = false;
Chong Zhangf58631a2016-05-24 16:02:10 -07002897 if (mWasVisibleBeforeClientHidden) {
2898 mAppToken.destroySavedSurfaces();
2899 }
Chong Zhang92147042016-05-09 12:47:11 -07002900 }
2901
Chong Zhangcbbcc0f2016-05-17 20:46:58 -07002902 boolean clearAnimatingWithSavedSurface() {
Chong Zhang92147042016-05-09 12:47:11 -07002903 if (mAnimatingWithSavedSurface) {
2904 // App has drawn something to its windows, we're no longer animating with
2905 // the saved surfaces.
2906 if (DEBUG_ANIM) Slog.d(TAG,
2907 "clearAnimatingWithSavedSurface(): win=" + this);
2908 mAnimatingWithSavedSurface = false;
Chong Zhangcbbcc0f2016-05-17 20:46:58 -07002909 return true;
Chong Zhang92147042016-05-09 12:47:11 -07002910 }
Chong Zhangcbbcc0f2016-05-17 20:46:58 -07002911 return false;
Chong Zhang92147042016-05-09 12:47:11 -07002912 }
2913
Craig Mautner69b08182012-09-05 13:07:13 -07002914 @Override
2915 public boolean isDefaultDisplay() {
Craig Mautnerdf88d732014-01-27 09:21:32 -08002916 final DisplayContent displayContent = getDisplayContent();
2917 if (displayContent == null) {
2918 // Only a window that was on a non-default display can be detached from it.
2919 return false;
2920 }
Winson Chung47a3e652014-05-21 16:03:42 -07002921 return displayContent.isDefaultDisplay;
Craig Mautner69b08182012-09-05 13:07:13 -07002922 }
2923
Adrian Rooscd3884d2015-02-18 17:25:23 +01002924 @Override
2925 public boolean isDimming() {
Filip Gruszczynski0689ae92015-10-01 12:30:31 -07002926 final DimLayer.DimLayerUser dimLayerUser = getDimLayerUser();
Wale Ogunwale360a8bc2016-10-10 13:25:26 -07002927 final DisplayContent dc = getDisplayContent();
2928 return dimLayerUser != null && dc != null
2929 && dc.mDimLayerController.isDimming(dimLayerUser, mWinAnimator);
Adrian Rooscd3884d2015-02-18 17:25:23 +01002930 }
2931
Wale Ogunwale360a8bc2016-10-10 13:25:26 -07002932 void setShowToOwnerOnlyLocked(boolean showToOwnerOnly) {
Craig Mautner88400d32012-09-30 12:35:45 -07002933 mShowToOwnerOnly = showToOwnerOnly;
2934 }
2935
Wale Ogunwaleea92d972016-12-08 07:33:13 -08002936 private boolean isHiddenFromUserLocked() {
Wale Ogunwalecaa53af2016-07-17 14:50:26 -07002937 // Child windows are evaluated based on their parent window.
2938 final WindowState win = getTopParentWindow();
Wale Ogunwale360a8bc2016-10-10 13:25:26 -07002939 if (win.mAttrs.type < FIRST_SYSTEM_WINDOW
Wale Ogunwale72919d22016-12-08 18:58:50 -08002940 && win.mAppToken != null && win.mAppToken.mShowForAllUsers) {
Jorim Jaggidbe44ac2016-04-22 19:50:13 -07002941
2942 // All window frames that are fullscreen extend above status bar, but some don't extend
2943 // below navigation bar. Thus, check for display frame for top/left and stable frame for
2944 // bottom right.
2945 if (win.mFrame.left <= win.mDisplayFrame.left
2946 && win.mFrame.top <= win.mDisplayFrame.top
2947 && win.mFrame.right >= win.mStableFrame.right
2948 && win.mFrame.bottom >= win.mStableFrame.bottom) {
Craig Mautner5962b122012-10-05 14:45:52 -07002949 // Is a fullscreen window, like the clock alarm. Show to everyone.
2950 return false;
2951 }
2952 }
2953
Craig Mautner341220f2012-10-16 15:20:09 -07002954 return win.mShowToOwnerOnly
Kenny Guy2a764942014-04-02 13:29:20 +01002955 && !mService.isCurrentProfileLocked(UserHandle.getUserId(win.mOwnerUid));
Craig Mautner9dc52bc2012-08-06 14:15:42 -07002956 }
2957
Dianne Hackbornffb3d932011-05-17 17:44:51 -07002958 private static void applyInsets(Region outRegion, Rect frame, Rect inset) {
2959 outRegion.set(
2960 frame.left + inset.left, frame.top + inset.top,
2961 frame.right - inset.right, frame.bottom - inset.bottom);
Dianne Hackborne2515ee2011-04-27 18:52:56 -04002962 }
2963
Wale Ogunwale053c8e42015-11-16 14:27:21 -08002964 void getTouchableRegion(Region outRegion) {
Dianne Hackbornffb3d932011-05-17 17:44:51 -07002965 final Rect frame = mFrame;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002966 switch (mTouchableInsets) {
2967 default:
Wale Ogunwale053c8e42015-11-16 14:27:21 -08002968 case TOUCHABLE_INSETS_FRAME:
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002969 outRegion.set(frame);
2970 break;
Wale Ogunwale053c8e42015-11-16 14:27:21 -08002971 case TOUCHABLE_INSETS_CONTENT:
Dianne Hackbornffb3d932011-05-17 17:44:51 -07002972 applyInsets(outRegion, frame, mGivenContentInsets);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002973 break;
Wale Ogunwale053c8e42015-11-16 14:27:21 -08002974 case TOUCHABLE_INSETS_VISIBLE:
Dianne Hackbornffb3d932011-05-17 17:44:51 -07002975 applyInsets(outRegion, frame, mGivenVisibleInsets);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002976 break;
Wale Ogunwale053c8e42015-11-16 14:27:21 -08002977 case TOUCHABLE_INSETS_REGION: {
Wale Ogunwaleae9adbf2016-10-18 15:17:06 -07002978 outRegion.set(mGivenTouchableRegion);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002979 outRegion.translate(frame.left, frame.top);
2980 break;
2981 }
2982 }
Wale Ogunwale053c8e42015-11-16 14:27:21 -08002983 cropRegionToStackBoundsIfNeeded(outRegion);
2984 }
2985
Wale Ogunwaleae9adbf2016-10-18 15:17:06 -07002986 private void cropRegionToStackBoundsIfNeeded(Region region) {
Wale Ogunwaleb1faf602016-01-27 09:12:31 -08002987 final Task task = getTask();
2988 if (task == null || !task.cropWindowsToStackBounds()) {
Wale Ogunwale053c8e42015-11-16 14:27:21 -08002989 return;
2990 }
2991
Wale Ogunwaleb1faf602016-01-27 09:12:31 -08002992 final TaskStack stack = task.mStack;
Wale Ogunwale053c8e42015-11-16 14:27:21 -08002993 if (stack == null) {
2994 return;
2995 }
2996
2997 stack.getDimBounds(mTmpRect);
2998 region.op(mTmpRect, Region.Op.INTERSECT);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002999 }
3000
Dianne Hackborne3f23a32013-03-01 13:25:35 -08003001 /**
3002 * Report a focus change. Must be called with no locks held, and consistently
3003 * from the same serialized thread (such as dispatched from a handler).
3004 */
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -07003005 void reportFocusChangedSerialized(boolean focused, boolean inTouchMode) {
Dianne Hackborne3f23a32013-03-01 13:25:35 -08003006 try {
3007 mClient.windowFocusChanged(focused, inTouchMode);
3008 } catch (RemoteException e) {
3009 }
3010 if (mFocusCallbacks != null) {
3011 final int N = mFocusCallbacks.beginBroadcast();
3012 for (int i=0; i<N; i++) {
3013 IWindowFocusObserver obs = mFocusCallbacks.getBroadcastItem(i);
3014 try {
3015 if (focused) {
3016 obs.focusGained(mWindowId.asBinder());
3017 } else {
3018 obs.focusLost(mWindowId.asBinder());
3019 }
3020 } catch (RemoteException e) {
3021 }
3022 }
3023 mFocusCallbacks.finishBroadcast();
3024 }
3025 }
3026
Andrii Kulian9d91ca62016-09-29 22:28:09 -07003027 @Override
3028 public Configuration getConfiguration() {
Jorim Jaggi26c8c422016-05-09 19:57:25 -07003029 if (mAppToken != null && mAppToken.mFrozenMergedConfig.size() > 0) {
Andrii Kulian9d91ca62016-09-29 22:28:09 -07003030 return mAppToken.mFrozenMergedConfig.peek();
Jorim Jaggi26c8c422016-05-09 19:57:25 -07003031 }
Andrii Kulian9d91ca62016-09-29 22:28:09 -07003032
Wale Ogunwale19e452e2016-10-12 12:36:29 -07003033 return super.getConfiguration();
Jorim Jaggi26c8c422016-05-09 19:57:25 -07003034 }
3035
Craig Mautnerdf88d732014-01-27 09:21:32 -08003036 void reportResized() {
Wale Ogunwalecad05a02015-09-25 10:41:44 -07003037 Trace.traceBegin(TRACE_TAG_WINDOW_MANAGER, "wm.reportResized_" + getWindowTag());
Craig Mautnerdf88d732014-01-27 09:21:32 -08003038 try {
Craig Mautnerd1c2c542014-02-06 10:31:41 -08003039 if (DEBUG_RESIZE || DEBUG_ORIENTATION) Slog.v(TAG, "Reporting new frame to " + this
3040 + ": " + mCompatFrame);
Bryce Leef858b572017-06-29 14:03:33 -07003041 final MergedConfiguration mergedConfiguration =
3042 new MergedConfiguration(mService.mRoot.getConfiguration(),
3043 getMergedOverrideConfiguration());
3044
3045 setReportedConfiguration(mergedConfiguration);
3046
Wale Ogunwale19e452e2016-10-12 12:36:29 -07003047 if (DEBUG_ORIENTATION && mWinAnimator.mDrawState == DRAW_PENDING)
Craig Mautnerd1c2c542014-02-06 10:31:41 -08003048 Slog.i(TAG, "Resizing " + this + " WITH DRAW PENDING");
3049
Craig Mautnerdf88d732014-01-27 09:21:32 -08003050 final Rect frame = mFrame;
3051 final Rect overscanInsets = mLastOverscanInsets;
3052 final Rect contentInsets = mLastContentInsets;
3053 final Rect visibleInsets = mLastVisibleInsets;
Adrian Roosfa104232014-06-20 16:10:14 -07003054 final Rect stableInsets = mLastStableInsets;
Filip Gruszczynski2217f612015-05-26 11:32:08 -07003055 final Rect outsets = mLastOutsets;
Wale Ogunwale19e452e2016-10-12 12:36:29 -07003056 final boolean reportDraw = mWinAnimator.mDrawState == DRAW_PENDING;
Andrii Kulianb2e37802017-01-11 00:36:44 -08003057 final boolean reportOrientation = mReportOrientationChanged;
Andrii Kulianb047b8b2017-02-08 18:38:26 -08003058 final int displayId = getDisplayId();
Chet Haase8eb48d22014-09-24 07:31:29 -07003059 if (mAttrs.type != WindowManager.LayoutParams.TYPE_APPLICATION_STARTING
3060 && mClient instanceof IWindow.Stub) {
Craig Mautnerdf88d732014-01-27 09:21:32 -08003061 // To prevent deadlock simulate one-way call if win.mClient is a local object.
3062 mService.mH.post(new Runnable() {
3063 @Override
3064 public void run() {
3065 try {
Jorim Jaggi253a20f2015-11-03 12:38:42 +01003066 dispatchResized(frame, overscanInsets, contentInsets, visibleInsets,
Andrii Kulian44607962017-03-16 11:06:24 -07003067 stableInsets, outsets, reportDraw, mergedConfiguration,
Andrii Kulianb047b8b2017-02-08 18:38:26 -08003068 reportOrientation, displayId);
Craig Mautnerdf88d732014-01-27 09:21:32 -08003069 } catch (RemoteException e) {
3070 // Not a remote call, RemoteException won't be raised.
3071 }
3072 }
3073 });
3074 } else {
Jorim Jaggi253a20f2015-11-03 12:38:42 +01003075 dispatchResized(frame, overscanInsets, contentInsets, visibleInsets, stableInsets,
Andrii Kulian44607962017-03-16 11:06:24 -07003076 outsets, reportDraw, mergedConfiguration, reportOrientation, displayId);
Craig Mautnerdf88d732014-01-27 09:21:32 -08003077 }
Svetoslav4604abc2014-06-10 18:59:30 -07003078
3079 //TODO (multidisplay): Accessibility supported only for the default display.
Andrii Kulian5406e7a2016-10-21 11:55:23 -07003080 if (mService.mAccessibilityController != null && getDisplayId() == DEFAULT_DISPLAY) {
Svetoslavf7174e82014-06-12 11:29:35 -07003081 mService.mAccessibilityController.onSomeWindowResizedOrMovedLocked();
Svetoslav4604abc2014-06-10 18:59:30 -07003082 }
3083
Craig Mautnerdf88d732014-01-27 09:21:32 -08003084 mOverscanInsetsChanged = false;
3085 mContentInsetsChanged = false;
3086 mVisibleInsetsChanged = false;
Adrian Roosfa104232014-06-20 16:10:14 -07003087 mStableInsetsChanged = false;
Filip Gruszczynski2217f612015-05-26 11:32:08 -07003088 mOutsetsChanged = false;
Robert Carr31aa98b2016-07-20 15:29:03 -07003089 mFrameSizeChanged = false;
Andrii Kulianeb1d3222016-05-16 15:17:55 -07003090 mResizedWhileNotDragResizingReported = true;
Craig Mautnerdf88d732014-01-27 09:21:32 -08003091 mWinAnimator.mSurfaceResized = false;
Andrii Kulianb2e37802017-01-11 00:36:44 -08003092 mReportOrientationChanged = false;
Craig Mautnerdf88d732014-01-27 09:21:32 -08003093 } catch (RemoteException e) {
Bryce Lee31386ab2017-07-06 17:51:26 -07003094 mOrientationChanging = false;
Craig Mautnerdf88d732014-01-27 09:21:32 -08003095 mLastFreezeDuration = (int)(SystemClock.elapsedRealtime()
3096 - mService.mDisplayFreezeTime);
tiger_huang950ee772014-07-11 18:41:48 +08003097 // We are assuming the hosting process is dead or in a zombie state.
3098 Slog.w(TAG, "Failed to report 'resized' to the client of " + this
3099 + ", removing this window.");
3100 mService.mPendingRemove.add(this);
Filip Gruszczynski24966d42015-09-05 15:00:00 -07003101 mService.mWindowPlacerLocked.requestTraversal();
Craig Mautnerdf88d732014-01-27 09:21:32 -08003102 }
Wale Ogunwalecad05a02015-09-25 10:41:44 -07003103 Trace.traceEnd(TRACE_TAG_WINDOW_MANAGER);
Craig Mautnerdf88d732014-01-27 09:21:32 -08003104 }
3105
Jorim Jaggi2e95a482016-01-14 17:36:55 -08003106 Rect getBackdropFrame(Rect frame) {
Chong Zhangd153c4f2015-11-06 20:26:40 -08003107 // When the task is docked, we send fullscreen sized backDropFrame as soon as resizing
3108 // start even if we haven't received the relayout window, so that the client requests
3109 // the relayout sooner. When dragging stops, backDropFrame needs to stay fullscreen
3110 // until the window to small size, otherwise the multithread renderer will shift last
3111 // one or more frame to wrong offset. So here we send fullscreen backdrop if either
3112 // isDragResizing() or isDragResizeChanged() is true.
Filip Gruszczynski84fa3352016-01-25 16:28:49 -08003113 boolean resizing = isDragResizing() || isDragResizeChanged();
3114 if (StackId.useWindowFrameForBackdrop(getStackId()) || !resizing) {
3115 return frame;
3116 }
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -07003117 final DisplayInfo displayInfo = getDisplayInfo();
Jorim Jaggi2e95a482016-01-14 17:36:55 -08003118 mTmpRect.set(0, 0, displayInfo.logicalWidth, displayInfo.logicalHeight);
Filip Gruszczynski84fa3352016-01-25 16:28:49 -08003119 return mTmpRect;
3120 }
3121
Jorim Jaggi86905582016-02-09 21:36:09 -08003122 @Override
3123 public int getStackId() {
Filip Gruszczynski84fa3352016-01-25 16:28:49 -08003124 final TaskStack stack = getStack();
3125 if (stack == null) {
3126 return INVALID_STACK_ID;
3127 }
3128 return stack.mStackId;
Jorim Jaggi2e95a482016-01-14 17:36:55 -08003129 }
3130
3131 private void dispatchResized(Rect frame, Rect overscanInsets, Rect contentInsets,
3132 Rect visibleInsets, Rect stableInsets, Rect outsets, boolean reportDraw,
Andrii Kulian44607962017-03-16 11:06:24 -07003133 MergedConfiguration mergedConfiguration, boolean reportOrientation, int displayId)
Andrii Kulianb047b8b2017-02-08 18:38:26 -08003134 throws RemoteException {
Andrii Kulianb2e37802017-01-11 00:36:44 -08003135 final boolean forceRelayout = isDragResizeChanged() || mResizedWhileNotDragResizing
3136 || reportOrientation;
Chong Zhangedaf3052016-04-22 15:04:31 -07003137
Jorim Jaggidc249c42015-12-15 14:57:31 -08003138 mClient.resized(frame, overscanInsets, contentInsets, visibleInsets, stableInsets, outsets,
Andrii Kulian44607962017-03-16 11:06:24 -07003139 reportDraw, mergedConfiguration, getBackdropFrame(frame), forceRelayout,
3140 mPolicy.isNavBarForcedShownLw(this), displayId);
Jorim Jaggic662d8e2016-02-05 16:54:54 -08003141 mDragResizingChangeReported = true;
Jorim Jaggi253a20f2015-11-03 12:38:42 +01003142 }
3143
Dianne Hackborne3f23a32013-03-01 13:25:35 -08003144 public void registerFocusObserver(IWindowFocusObserver observer) {
3145 synchronized(mService.mWindowMap) {
3146 if (mFocusCallbacks == null) {
3147 mFocusCallbacks = new RemoteCallbackList<IWindowFocusObserver>();
3148 }
3149 mFocusCallbacks.register(observer);
3150 }
3151 }
3152
3153 public void unregisterFocusObserver(IWindowFocusObserver observer) {
3154 synchronized(mService.mWindowMap) {
3155 if (mFocusCallbacks != null) {
3156 mFocusCallbacks.unregister(observer);
3157 }
3158 }
3159 }
3160
3161 public boolean isFocused() {
3162 synchronized(mService.mWindowMap) {
3163 return mService.mCurrentFocus == this;
3164 }
3165 }
3166
Filip Gruszczynski1a1d8312015-08-26 17:00:47 -07003167 boolean inFreeformWorkspace() {
Wale Ogunwale5a2f2cb2015-09-17 12:31:55 -07003168 final Task task = getTask();
Chong Zhang09b21ef2015-09-14 10:20:21 -07003169 return task != null && task.inFreeformWorkspace();
3170 }
3171
Wale Ogunwale9185fb02016-03-11 18:06:14 -08003172 @Override
Andrii Kulian933076d2016-03-29 17:04:42 -07003173 public boolean isInMultiWindowMode() {
Wale Ogunwale9185fb02016-03-11 18:06:14 -08003174 final Task task = getTask();
3175 return task != null && !task.isFullscreen();
3176 }
3177
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -07003178 /** Is this window in a container that takes up the entire screen space? */
3179 private boolean inFullscreenContainer() {
3180 if (mAppToken == null) {
3181 return true;
3182 }
3183 if (mAppToken.hasBounds()) {
3184 return false;
3185 }
3186 return !isInMultiWindowMode();
3187 }
3188
3189 /** Returns the appropriate bounds to use for computing frames. */
3190 private void getContainerBounds(Rect outBounds) {
3191 if (isInMultiWindowMode()) {
3192 getTask().getBounds(outBounds);
3193 } else if (mAppToken != null){
3194 mAppToken.getBounds(outBounds);
3195 } else {
3196 outBounds.setEmpty();
3197 }
3198 }
3199
Chong Zhang3005e752015-09-18 18:46:28 -07003200 boolean isDragResizeChanged() {
Filip Gruszczynski3ddc5d62015-09-23 15:01:30 -07003201 return mDragResizing != computeDragResizing();
3202 }
3203
Wale Ogunwaled1c37912016-08-16 03:19:39 -07003204 @Override
Wale Ogunwale9bc47732016-08-10 14:44:22 -07003205 void setWaitingForDrawnIfResizingChanged() {
3206 if (isDragResizeChanged()) {
3207 mService.mWaitingForDrawn.add(this);
3208 }
Wale Ogunwaled1c37912016-08-16 03:19:39 -07003209 super.setWaitingForDrawnIfResizingChanged();
Wale Ogunwale9bc47732016-08-10 14:44:22 -07003210 }
3211
Jorim Jaggic662d8e2016-02-05 16:54:54 -08003212 /**
3213 * @return Whether we reported a drag resize change to the application or not already.
3214 */
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -07003215 private boolean isDragResizingChangeReported() {
Jorim Jaggic662d8e2016-02-05 16:54:54 -08003216 return mDragResizingChangeReported;
3217 }
3218
3219 /**
3220 * Resets the state whether we reported a drag resize change to the app.
3221 */
Wale Ogunwaled1c37912016-08-16 03:19:39 -07003222 @Override
Jorim Jaggic662d8e2016-02-05 16:54:54 -08003223 void resetDragResizingChangeReported() {
3224 mDragResizingChangeReported = false;
Wale Ogunwaled1c37912016-08-16 03:19:39 -07003225 super.resetDragResizingChangeReported();
Jorim Jaggic662d8e2016-02-05 16:54:54 -08003226 }
3227
Andrii Kulianeb1d3222016-05-16 15:17:55 -07003228 /**
3229 * Set whether we got resized but drag resizing flag was false.
3230 * @see #isResizedWhileNotDragResizing().
3231 */
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -07003232 private void setResizedWhileNotDragResizing(boolean resizedWhileNotDragResizing) {
Andrii Kulianeb1d3222016-05-16 15:17:55 -07003233 mResizedWhileNotDragResizing = resizedWhileNotDragResizing;
3234 mResizedWhileNotDragResizingReported = !resizedWhileNotDragResizing;
3235 }
3236
3237 /**
3238 * Indicates whether we got resized but drag resizing flag was false. In this case, we also
3239 * need to recreate the surface and defer surface bound updates in order to make sure the
3240 * buffer contents and the positioning/size stay in sync.
3241 */
3242 boolean isResizedWhileNotDragResizing() {
3243 return mResizedWhileNotDragResizing;
3244 }
3245
3246 /**
3247 * @return Whether we reported "resize while not drag resizing" to the application.
3248 * @see #isResizedWhileNotDragResizing()
3249 */
Wale Ogunwale360a8bc2016-10-10 13:25:26 -07003250 private boolean isResizedWhileNotDragResizingReported() {
Andrii Kulianeb1d3222016-05-16 15:17:55 -07003251 return mResizedWhileNotDragResizingReported;
3252 }
3253
Jorim Jaggidcf467c2015-11-05 13:59:32 +01003254 int getResizeMode() {
3255 return mResizeMode;
3256 }
3257
Wale Ogunwale360a8bc2016-10-10 13:25:26 -07003258 private boolean computeDragResizing() {
Wale Ogunwale5a2f2cb2015-09-17 12:31:55 -07003259 final Task task = getTask();
Filip Gruszczynski3ddc5d62015-09-23 15:01:30 -07003260 if (task == null) {
3261 return false;
3262 }
Winson Chung2af04b32017-01-24 16:21:13 -08003263 if (!StackId.isStackAffectedByDragResizing(getStackId())) {
3264 return false;
3265 }
Jorim Jaggidd6e4c12016-02-17 22:13:43 -08003266 if (mAttrs.width != MATCH_PARENT || mAttrs.height != MATCH_PARENT) {
Jorim Jaggidd6e4c12016-02-17 22:13:43 -08003267 // Floating windows never enter drag resize mode.
3268 return false;
3269 }
Filip Gruszczynski3ddc5d62015-09-23 15:01:30 -07003270 if (task.isDragResizing()) {
3271 return true;
3272 }
Jorim Jaggi0429f352015-12-22 16:29:16 +01003273
3274 // If the bounds are currently frozen, it means that the layout size that the app sees
3275 // and the bounds we clip this window to might be different. In order to avoid holes, we
3276 // simulate that we are still resizing so the app fills the hole with the resizing
3277 // background.
Wale Ogunwale360a8bc2016-10-10 13:25:26 -07003278 return (getDisplayContent().mDividerControllerLocked.isResizing()
Jorim Jaggi0429f352015-12-22 16:29:16 +01003279 || mAppToken != null && !mAppToken.mFrozenBounds.isEmpty()) &&
Jorim Jaggi899327f2016-02-25 20:44:18 -05003280 !task.inFreeformWorkspace() && !isGoneForLayoutLw();
Jorim Jaggi9511b0f2016-01-29 19:12:44 -08003281
Chong Zhang3005e752015-09-18 18:46:28 -07003282 }
3283
3284 void setDragResizing() {
Jorim Jaggic662d8e2016-02-05 16:54:54 -08003285 final boolean resizing = computeDragResizing();
3286 if (resizing == mDragResizing) {
3287 return;
3288 }
3289 mDragResizing = resizing;
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +01003290 final Task task = getTask();
3291 if (task != null && task.isDragResizing()) {
3292 mResizeMode = task.getDragResizeMode();
3293 } else {
Wale Ogunwale360a8bc2016-10-10 13:25:26 -07003294 mResizeMode = mDragResizing && getDisplayContent().mDividerControllerLocked.isResizing()
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +01003295 ? DRAG_RESIZE_MODE_DOCKED_DIVIDER
3296 : DRAG_RESIZE_MODE_FREEFORM;
3297 }
Chong Zhang3005e752015-09-18 18:46:28 -07003298 }
3299
3300 boolean isDragResizing() {
3301 return mDragResizing;
Skuhnef932e562015-08-20 12:07:30 -07003302 }
3303
Robert Carr2487ce72016-04-07 15:18:45 -07003304 boolean isDockedResizing() {
Robert Carrfbbde852016-10-18 11:02:28 -07003305 return (mDragResizing && getResizeMode() == DRAG_RESIZE_MODE_DOCKED_DIVIDER)
3306 || (isChildWindow() && getParentWindow().isDockedResizing());
Robert Carr2487ce72016-04-07 15:18:45 -07003307 }
3308
Dianne Hackborna44abeb2011-08-08 19:24:01 -07003309 void dump(PrintWriter pw, String prefix, boolean dumpAll) {
Wale Ogunwale30cc7bf2015-02-04 16:47:57 -08003310 final TaskStack stack = getStack();
Craig Mautnerdf88d732014-01-27 09:21:32 -08003311 pw.print(prefix); pw.print("mDisplayId="); pw.print(getDisplayId());
Wale Ogunwale30cc7bf2015-02-04 16:47:57 -08003312 if (stack != null) {
3313 pw.print(" stackId="); pw.print(stack.mStackId);
3314 }
Craig Mautner59c00972012-07-30 12:10:24 -07003315 pw.print(" mSession="); pw.print(mSession);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08003316 pw.print(" mClient="); pw.println(mClient.asBinder());
Craig Mautner88400d32012-09-30 12:35:45 -07003317 pw.print(prefix); pw.print("mOwnerUid="); pw.print(mOwnerUid);
Dianne Hackbornc2293022013-02-06 23:14:49 -08003318 pw.print(" mShowToOwnerOnly="); pw.print(mShowToOwnerOnly);
3319 pw.print(" package="); pw.print(mAttrs.packageName);
3320 pw.print(" appop="); pw.println(AppOpsManager.opToName(mAppOp));
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08003321 pw.print(prefix); pw.print("mAttrs="); pw.println(mAttrs);
Dianne Hackborna44abeb2011-08-08 19:24:01 -07003322 pw.print(prefix); pw.print("Requested w="); pw.print(mRequestedWidth);
3323 pw.print(" h="); pw.print(mRequestedHeight);
3324 pw.print(" mLayoutSeq="); pw.println(mLayoutSeq);
Dianne Hackborn1743b642012-03-12 17:04:43 -07003325 if (mRequestedWidth != mLastRequestedWidth || mRequestedHeight != mLastRequestedHeight) {
3326 pw.print(prefix); pw.print("LastRequested w="); pw.print(mLastRequestedWidth);
3327 pw.print(" h="); pw.println(mLastRequestedHeight);
3328 }
Wale Ogunwalee4343ef2016-07-19 08:00:46 -07003329 if (mIsChildWindow || mLayoutAttached) {
3330 pw.print(prefix); pw.print("mParentWindow="); pw.print(getParentWindow());
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08003331 pw.print(" mLayoutAttached="); pw.println(mLayoutAttached);
3332 }
3333 if (mIsImWindow || mIsWallpaper || mIsFloatingLayer) {
3334 pw.print(prefix); pw.print("mIsImWindow="); pw.print(mIsImWindow);
3335 pw.print(" mIsWallpaper="); pw.print(mIsWallpaper);
3336 pw.print(" mIsFloatingLayer="); pw.print(mIsFloatingLayer);
3337 pw.print(" mWallpaperVisible="); pw.println(mWallpaperVisible);
3338 }
Dianne Hackborna44abeb2011-08-08 19:24:01 -07003339 if (dumpAll) {
3340 pw.print(prefix); pw.print("mBaseLayer="); pw.print(mBaseLayer);
3341 pw.print(" mSubLayer="); pw.print(mSubLayer);
3342 pw.print(" mAnimLayer="); pw.print(mLayer); pw.print("+");
Wale Ogunwale455fac52016-07-21 07:24:49 -07003343 pw.print(getAnimLayerAdjustment());
Craig Mautnerc2f9be02012-03-27 17:32:29 -07003344 pw.print("="); pw.print(mWinAnimator.mAnimLayer);
3345 pw.print(" mLastLayer="); pw.println(mWinAnimator.mLastLayer);
Dianne Hackborn6d05fd32011-11-19 14:36:15 -08003346 }
Dianne Hackborna44abeb2011-08-08 19:24:01 -07003347 if (dumpAll) {
3348 pw.print(prefix); pw.print("mToken="); pw.println(mToken);
Dianne Hackborna44abeb2011-08-08 19:24:01 -07003349 if (mAppToken != null) {
Wale Ogunwale6bab4cf2016-04-07 12:23:08 -07003350 pw.print(prefix); pw.print("mAppToken="); pw.println(mAppToken);
3351 pw.print(prefix); pw.print(" isAnimatingWithSavedSurface()=");
Chong Zhangbfc2f8f2016-01-29 15:50:34 -08003352 pw.print(isAnimatingWithSavedSurface());
Chong Zhang112eb8c2015-11-02 11:17:00 -08003353 pw.print(" mAppDied=");pw.println(mAppDied);
Dianne Hackborna44abeb2011-08-08 19:24:01 -07003354 }
Dianne Hackborna44abeb2011-08-08 19:24:01 -07003355 pw.print(prefix); pw.print("mViewVisibility=0x");
3356 pw.print(Integer.toHexString(mViewVisibility));
Dianne Hackborna44abeb2011-08-08 19:24:01 -07003357 pw.print(" mHaveFrame="); pw.print(mHaveFrame);
3358 pw.print(" mObscured="); pw.println(mObscured);
Dianne Hackborn9a230e02011-10-06 11:51:27 -07003359 pw.print(prefix); pw.print("mSeq="); pw.print(mSeq);
3360 pw.print(" mSystemUiVisibility=0x");
3361 pw.println(Integer.toHexString(mSystemUiVisibility));
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08003362 }
Dianne Hackbornb6b23ec2013-02-11 19:29:06 -08003363 if (!mPolicyVisibility || !mPolicyVisibilityAfterAnim || !mAppOpVisibility
Svetoslav Ganov71c51022016-09-02 17:54:37 -07003364 || isParentWindowHidden()|| mPermanentlyHidden) {
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08003365 pw.print(prefix); pw.print("mPolicyVisibility=");
3366 pw.print(mPolicyVisibility);
3367 pw.print(" mPolicyVisibilityAfterAnim=");
3368 pw.print(mPolicyVisibilityAfterAnim);
Dianne Hackbornb6b23ec2013-02-11 19:29:06 -08003369 pw.print(" mAppOpVisibility=");
3370 pw.print(mAppOpVisibility);
Wale Ogunwale3c1170d2016-12-02 14:44:52 -08003371 pw.print(" parentHidden="); pw.print(isParentWindowHidden());
Svetoslav Ganovaa076532016-08-01 19:16:43 -07003372 pw.print(" mPermanentlyHidden="); pw.println(mPermanentlyHidden);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08003373 }
Dianne Hackbornb7ff51b2012-01-23 19:15:27 -08003374 if (!mRelayoutCalled || mLayoutNeeded) {
3375 pw.print(prefix); pw.print("mRelayoutCalled="); pw.print(mRelayoutCalled);
3376 pw.print(" mLayoutNeeded="); pw.println(mLayoutNeeded);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08003377 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08003378 if (mXOffset != 0 || mYOffset != 0) {
3379 pw.print(prefix); pw.print("Offsets x="); pw.print(mXOffset);
3380 pw.print(" y="); pw.println(mYOffset);
3381 }
Dianne Hackborna44abeb2011-08-08 19:24:01 -07003382 if (dumpAll) {
3383 pw.print(prefix); pw.print("mGivenContentInsets=");
3384 mGivenContentInsets.printShortString(pw);
3385 pw.print(" mGivenVisibleInsets=");
3386 mGivenVisibleInsets.printShortString(pw);
3387 pw.println();
3388 if (mTouchableInsets != 0 || mGivenInsetsPending) {
3389 pw.print(prefix); pw.print("mTouchableInsets="); pw.print(mTouchableInsets);
3390 pw.print(" mGivenInsetsPending="); pw.println(mGivenInsetsPending);
Dianne Hackborna4b7f2f2012-05-21 11:28:41 -07003391 Region region = new Region();
3392 getTouchableRegion(region);
3393 pw.print(prefix); pw.print("touchable region="); pw.println(region);
Dianne Hackborna44abeb2011-08-08 19:24:01 -07003394 }
Andrii Kulian9d91ca62016-09-29 22:28:09 -07003395 pw.print(prefix); pw.print("mFullConfiguration="); pw.println(getConfiguration());
3396 pw.print(prefix); pw.print("mLastReportedConfiguration=");
3397 pw.println(mLastReportedConfiguration);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08003398 }
Craig Mautnerc8bc97e2012-04-02 12:54:54 -07003399 pw.print(prefix); pw.print("mHasSurface="); pw.print(mHasSurface);
Filip Gruszczynski2a6a2c22015-10-14 12:00:53 -07003400 pw.print(" mShownPosition="); mShownPosition.printShortString(pw);
Chong Zhanga8975bd2016-01-28 17:13:47 -08003401 pw.print(" isReadyForDisplay()="); pw.print(isReadyForDisplay());
Wale Ogunwale9017ec02016-02-25 08:55:25 -08003402 pw.print(" hasSavedSurface()="); pw.print(hasSavedSurface());
3403 pw.print(" mWindowRemovalAllowed="); pw.println(mWindowRemovalAllowed);
Dianne Hackborna44abeb2011-08-08 19:24:01 -07003404 if (dumpAll) {
3405 pw.print(prefix); pw.print("mFrame="); mFrame.printShortString(pw);
3406 pw.print(" last="); mLastFrame.printShortString(pw);
3407 pw.println();
3408 }
Dianne Hackbornffb3d932011-05-17 17:44:51 -07003409 if (mEnforceSizeCompat) {
3410 pw.print(prefix); pw.print("mCompatFrame="); mCompatFrame.printShortString(pw);
Dianne Hackbornffb3d932011-05-17 17:44:51 -07003411 pw.println();
3412 }
Dianne Hackborna44abeb2011-08-08 19:24:01 -07003413 if (dumpAll) {
Dianne Hackborn5c58de32012-04-28 19:52:37 -07003414 pw.print(prefix); pw.print("Frames: containing=");
Dianne Hackborna44abeb2011-08-08 19:24:01 -07003415 mContainingFrame.printShortString(pw);
Dianne Hackborn5c58de32012-04-28 19:52:37 -07003416 pw.print(" parent="); mParentFrame.printShortString(pw);
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003417 pw.println();
3418 pw.print(prefix); pw.print(" display="); mDisplayFrame.printShortString(pw);
3419 pw.print(" overscan="); mOverscanFrame.printShortString(pw);
Dianne Hackborna44abeb2011-08-08 19:24:01 -07003420 pw.println();
Dianne Hackborn85afd1b2012-05-13 13:31:06 -07003421 pw.print(prefix); pw.print(" content="); mContentFrame.printShortString(pw);
Dianne Hackborn5c58de32012-04-28 19:52:37 -07003422 pw.print(" visible="); mVisibleFrame.printShortString(pw);
Dianne Hackborna44abeb2011-08-08 19:24:01 -07003423 pw.println();
John Spurlock46646232013-09-30 22:32:42 -04003424 pw.print(prefix); pw.print(" decor="); mDecorFrame.printShortString(pw);
3425 pw.println();
Filip Gruszczynski2217f612015-05-26 11:32:08 -07003426 pw.print(prefix); pw.print(" outset="); mOutsetFrame.printShortString(pw);
3427 pw.println();
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003428 pw.print(prefix); pw.print("Cur insets: overscan=");
3429 mOverscanInsets.printShortString(pw);
3430 pw.print(" content="); mContentInsets.printShortString(pw);
Dianne Hackborn5c58de32012-04-28 19:52:37 -07003431 pw.print(" visible="); mVisibleInsets.printShortString(pw);
Adrian Roosfa104232014-06-20 16:10:14 -07003432 pw.print(" stable="); mStableInsets.printShortString(pw);
Wale Ogunwale6bab4cf2016-04-07 12:23:08 -07003433 pw.print(" surface="); mAttrs.surfaceInsets.printShortString(pw);
Filip Gruszczynski2217f612015-05-26 11:32:08 -07003434 pw.print(" outsets="); mOutsets.printShortString(pw);
Dianne Hackborn5c58de32012-04-28 19:52:37 -07003435 pw.println();
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003436 pw.print(prefix); pw.print("Lst insets: overscan=");
3437 mLastOverscanInsets.printShortString(pw);
3438 pw.print(" content="); mLastContentInsets.printShortString(pw);
Dianne Hackborn5c58de32012-04-28 19:52:37 -07003439 pw.print(" visible="); mLastVisibleInsets.printShortString(pw);
Adrian Roosfa104232014-06-20 16:10:14 -07003440 pw.print(" stable="); mLastStableInsets.printShortString(pw);
Filip Gruszczynski2217f612015-05-26 11:32:08 -07003441 pw.print(" physical="); mLastOutsets.printShortString(pw);
3442 pw.print(" outset="); mLastOutsets.printShortString(pw);
Dianne Hackborna44abeb2011-08-08 19:24:01 -07003443 pw.println();
3444 }
Dianne Hackborn529e7442012-11-01 14:22:28 -07003445 pw.print(prefix); pw.print(mWinAnimator); pw.println(":");
3446 mWinAnimator.dump(pw, prefix + " ", dumpAll);
Wale Ogunwalec48a3542016-02-19 15:18:45 -08003447 if (mAnimatingExit || mRemoveOnExit || mDestroying || mRemoved) {
3448 pw.print(prefix); pw.print("mAnimatingExit="); pw.print(mAnimatingExit);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08003449 pw.print(" mRemoveOnExit="); pw.print(mRemoveOnExit);
3450 pw.print(" mDestroying="); pw.print(mDestroying);
3451 pw.print(" mRemoved="); pw.println(mRemoved);
3452 }
Bryce Lee31386ab2017-07-06 17:51:26 -07003453 if (mOrientationChanging || mAppFreezing || mTurnOnScreen
Andrii Kulianb2e37802017-01-11 00:36:44 -08003454 || mReportOrientationChanged) {
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08003455 pw.print(prefix); pw.print("mOrientationChanging=");
3456 pw.print(mOrientationChanging);
3457 pw.print(" mAppFreezing="); pw.print(mAppFreezing);
Wale Ogunwalebfa81ad2017-05-24 15:14:42 -07003458 pw.print(" mTurnOnScreen="); pw.print(mTurnOnScreen);
Andrii Kulianb2e37802017-01-11 00:36:44 -08003459 pw.print(" mReportOrientationChanged="); pw.println(mReportOrientationChanged);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08003460 }
Dianne Hackborna57c6952013-03-29 14:46:40 -07003461 if (mLastFreezeDuration != 0) {
3462 pw.print(prefix); pw.print("mLastFreezeDuration=");
3463 TimeUtils.formatDuration(mLastFreezeDuration, pw); pw.println();
3464 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08003465 if (mHScale != 1 || mVScale != 1) {
3466 pw.print(prefix); pw.print("mHScale="); pw.print(mHScale);
3467 pw.print(" mVScale="); pw.println(mVScale);
3468 }
3469 if (mWallpaperX != -1 || mWallpaperY != -1) {
3470 pw.print(prefix); pw.print("mWallpaperX="); pw.print(mWallpaperX);
3471 pw.print(" mWallpaperY="); pw.println(mWallpaperY);
3472 }
3473 if (mWallpaperXStep != -1 || mWallpaperYStep != -1) {
3474 pw.print(prefix); pw.print("mWallpaperXStep="); pw.print(mWallpaperXStep);
3475 pw.print(" mWallpaperYStep="); pw.println(mWallpaperYStep);
3476 }
Dianne Hackborn067e5f62014-09-07 23:14:30 -07003477 if (mWallpaperDisplayOffsetX != Integer.MIN_VALUE
3478 || mWallpaperDisplayOffsetY != Integer.MIN_VALUE) {
3479 pw.print(prefix); pw.print("mWallpaperDisplayOffsetX=");
3480 pw.print(mWallpaperDisplayOffsetX);
3481 pw.print(" mWallpaperDisplayOffsetY=");
3482 pw.println(mWallpaperDisplayOffsetY);
3483 }
Jeff Brownc2932a12014-11-20 18:04:05 -08003484 if (mDrawLock != null) {
Wale Ogunwale85b90ab2015-04-27 20:54:47 -07003485 pw.print(prefix); pw.println("mDrawLock=" + mDrawLock);
Jeff Brownc2932a12014-11-20 18:04:05 -08003486 }
Jorim Jaggi9511b0f2016-01-29 19:12:44 -08003487 if (isDragResizing()) {
3488 pw.print(prefix); pw.println("isDragResizing=" + isDragResizing());
3489 }
3490 if (computeDragResizing()) {
3491 pw.print(prefix); pw.println("computeDragResizing=" + computeDragResizing());
3492 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08003493 }
Craig Mautner164d4bb2012-11-26 13:51:23 -08003494
Wale Ogunwale9adfe572016-09-08 20:43:58 -07003495 @Override
3496 String getName() {
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08003497 return Integer.toHexString(System.identityHashCode(this))
Wale Ogunwalecad05a02015-09-25 10:41:44 -07003498 + " " + getWindowTag();
3499 }
3500
Robert Carra1eb4392015-12-10 12:43:51 -08003501 CharSequence getWindowTag() {
Wale Ogunwalecad05a02015-09-25 10:41:44 -07003502 CharSequence tag = mAttrs.getTitle();
3503 if (tag == null || tag.length() <= 0) {
3504 tag = mAttrs.packageName;
3505 }
3506 return tag;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08003507 }
3508
3509 @Override
3510 public String toString() {
Wale Ogunwalecad05a02015-09-25 10:41:44 -07003511 final CharSequence title = getWindowTag();
Wale Ogunwalec48a3542016-02-19 15:18:45 -08003512 if (mStringNameCache == null || mLastTitle != title || mWasExiting != mAnimatingExit) {
Dianne Hackbornc2293022013-02-06 23:14:49 -08003513 mLastTitle = title;
Wale Ogunwalec48a3542016-02-19 15:18:45 -08003514 mWasExiting = mAnimatingExit;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08003515 mStringNameCache = "Window{" + Integer.toHexString(System.identityHashCode(this))
Wale Ogunwalee4343ef2016-07-19 08:00:46 -07003516 + " u" + UserHandle.getUserId(mOwnerUid)
Wale Ogunwalec48a3542016-02-19 15:18:45 -08003517 + " " + mLastTitle + (mAnimatingExit ? " EXITING}" : "}");
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08003518 }
3519 return mStringNameCache;
3520 }
Robert Carr58f29132015-10-29 14:19:05 -07003521
Chia-I Wue6bcaf12016-05-27 10:58:48 +08003522 void transformClipRectFromScreenToSurfaceSpace(Rect clipRect) {
Robert Carr58f29132015-10-29 14:19:05 -07003523 if (mHScale >= 0) {
Chia-I Wue6bcaf12016-05-27 10:58:48 +08003524 clipRect.left = (int) (clipRect.left / mHScale);
3525 clipRect.right = (int) Math.ceil(clipRect.right / mHScale);
Robert Carr58f29132015-10-29 14:19:05 -07003526 }
3527 if (mVScale >= 0) {
Chia-I Wue6bcaf12016-05-27 10:58:48 +08003528 clipRect.top = (int) (clipRect.top / mVScale);
3529 clipRect.bottom = (int) Math.ceil(clipRect.bottom / mVScale);
Robert Carr58f29132015-10-29 14:19:05 -07003530 }
3531 }
Robert Carr31e28482015-12-02 16:53:18 -08003532
Jorim Jaggif5834272016-04-04 20:25:41 -07003533 void applyGravityAndUpdateFrame(Rect containingFrame, Rect displayFrame) {
3534 final int pw = containingFrame.width();
3535 final int ph = containingFrame.height();
Robert Carr31e28482015-12-02 16:53:18 -08003536 final Task task = getTask();
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -07003537 final boolean inNonFullscreenContainer = !inFullscreenContainer();
Jorim Jaggi5f23a572016-04-22 15:05:50 -07003538 final boolean noLimits = (mAttrs.flags & FLAG_LAYOUT_NO_LIMITS) != 0;
3539
3540 // We need to fit it to the display if either
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -07003541 // a) The window is in a fullscreen container, or we don't have a task (we assume fullscreen
3542 // for the taskless windows)
Robert Carr6f44db12016-07-21 14:54:43 -07003543 // 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 -07003544 // FLAG_LAYOUT_NO_LIMITS is set. This is so we place Popups, dialogs, and similar windows on
3545 // screen, but SurfaceViews want to be always at a specific location so we don't fit it to
3546 // the display.
3547 final boolean fitToDisplay = (task == null || !inNonFullscreenContainer)
Robert Carr6f44db12016-07-21 14:54:43 -07003548 || ((mAttrs.type != TYPE_BASE_APPLICATION) && !noLimits);
Robert Carr31e28482015-12-02 16:53:18 -08003549 float x, y;
3550 int w,h;
3551
3552 if ((mAttrs.flags & FLAG_SCALED) != 0) {
3553 if (mAttrs.width < 0) {
3554 w = pw;
3555 } else if (mEnforceSizeCompat) {
3556 w = (int)(mAttrs.width * mGlobalScale + .5f);
3557 } else {
3558 w = mAttrs.width;
3559 }
3560 if (mAttrs.height < 0) {
3561 h = ph;
3562 } else if (mEnforceSizeCompat) {
3563 h = (int)(mAttrs.height * mGlobalScale + .5f);
3564 } else {
3565 h = mAttrs.height;
3566 }
3567 } else {
3568 if (mAttrs.width == MATCH_PARENT) {
3569 w = pw;
3570 } else if (mEnforceSizeCompat) {
3571 w = (int)(mRequestedWidth * mGlobalScale + .5f);
3572 } else {
3573 w = mRequestedWidth;
3574 }
3575 if (mAttrs.height == MATCH_PARENT) {
3576 h = ph;
3577 } else if (mEnforceSizeCompat) {
3578 h = (int)(mRequestedHeight * mGlobalScale + .5f);
3579 } else {
3580 h = mRequestedHeight;
3581 }
3582 }
3583
3584 if (mEnforceSizeCompat) {
3585 x = mAttrs.x * mGlobalScale;
3586 y = mAttrs.y * mGlobalScale;
3587 } else {
3588 x = mAttrs.x;
3589 y = mAttrs.y;
3590 }
3591
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -07003592 if (inNonFullscreenContainer && !layoutInParentFrame()) {
Wale Ogunwale79f268d2015-12-18 08:25:47 -08003593 // Make sure window fits in containing frame since it is in a non-fullscreen task as
Robert Carr31e28482015-12-02 16:53:18 -08003594 // required by {@link Gravity#apply} call.
3595 w = Math.min(w, pw);
3596 h = Math.min(h, ph);
3597 }
3598
3599 // Set mFrame
Jorim Jaggif5834272016-04-04 20:25:41 -07003600 Gravity.apply(mAttrs.gravity, w, h, containingFrame,
Robert Carr31e28482015-12-02 16:53:18 -08003601 (int) (x + mAttrs.horizontalMargin * pw),
3602 (int) (y + mAttrs.verticalMargin * ph), mFrame);
3603
3604 // Now make sure the window fits in the overall display frame.
Robert Carre6275582016-02-29 15:45:45 -08003605 if (fitToDisplay) {
Jorim Jaggif5834272016-04-04 20:25:41 -07003606 Gravity.applyDisplay(mAttrs.gravity, displayFrame, mFrame);
Robert Carre6275582016-02-29 15:45:45 -08003607 }
Robert Carr6e18c5e2016-02-29 15:57:13 -08003608
3609 // We need to make sure we update the CompatFrame as it is used for
3610 // cropping decisions, etc, on systems where we lack a decor layer.
3611 mCompatFrame.set(mFrame);
3612 if (mEnforceSizeCompat) {
3613 // See comparable block in computeFrameLw.
3614 mCompatFrame.scale(mInvGlobalScale);
3615 }
Robert Carr31e28482015-12-02 16:53:18 -08003616 }
Robert Carr51a1b872015-12-08 14:03:13 -08003617
3618 boolean isChildWindow() {
Wale Ogunwalee4343ef2016-07-19 08:00:46 -07003619 return mIsChildWindow;
Wale Ogunwaleadde52e2016-07-16 13:11:55 -07003620 }
3621
Robert Carrf3b72c72016-03-21 18:16:39 -07003622 boolean layoutInParentFrame() {
Wale Ogunwalee4343ef2016-07-19 08:00:46 -07003623 return mIsChildWindow
3624 && (mAttrs.privateFlags & PRIVATE_FLAG_LAYOUT_CHILD_WINDOW_IN_PARENT_FRAME) != 0;
Robert Carrf3b72c72016-03-21 18:16:39 -07003625 }
3626
Wale Ogunwalecaa53af2016-07-17 14:50:26 -07003627 /** Returns the parent window if this is a child of another window, else null. */
3628 WindowState getParentWindow() {
Wale Ogunwalee4343ef2016-07-19 08:00:46 -07003629 // NOTE: We are not calling getParent() directly as the WindowState might be a child of a
3630 // WindowContainer that isn't a WindowState.
3631 return (mIsChildWindow) ? ((WindowState) super.getParent()) : null;
Wale Ogunwalecaa53af2016-07-17 14:50:26 -07003632 }
3633
3634 /** Returns the topmost parent window if this is a child of another window, else this. */
3635 WindowState getTopParentWindow() {
Wale Ogunwaleea92d972016-12-08 07:33:13 -08003636 WindowState current = this;
3637 WindowState topParent = current;
3638 while (current != null && current.mIsChildWindow) {
3639 current = current.getParentWindow();
3640 // Parent window can be null if the child is detached from it's parent already, but
3641 // someone still has a reference to access it. So, we return the top parent value we
3642 // already have instead of null.
3643 if (current != null) {
3644 topParent = current;
3645 }
Wale Ogunwalecaa53af2016-07-17 14:50:26 -07003646 }
Wale Ogunwaleea92d972016-12-08 07:33:13 -08003647 return topParent;
Wale Ogunwalecaa53af2016-07-17 14:50:26 -07003648 }
3649
Wale Ogunwale9d147902016-07-16 11:58:55 -07003650 boolean isParentWindowHidden() {
Wale Ogunwalee4343ef2016-07-19 08:00:46 -07003651 final WindowState parent = getParentWindow();
Wale Ogunwaleea92d972016-12-08 07:33:13 -08003652 return parent != null && parent.mHidden;
Wale Ogunwale9d147902016-07-16 11:58:55 -07003653 }
3654
Wale Ogunwale9bc47732016-08-10 14:44:22 -07003655 void setWillReplaceWindow(boolean animate) {
3656 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07003657 final WindowState c = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07003658 c.setWillReplaceWindow(animate);
3659 }
3660
Wale Ogunwale6d8e06b2016-01-05 10:43:25 -08003661 if ((mAttrs.privateFlags & PRIVATE_FLAG_WILL_NOT_REPLACE_ON_RELAUNCH) != 0
3662 || mAttrs.type == TYPE_APPLICATION_STARTING) {
3663 // We don't set replacing on starting windows since they are added by window manager and
3664 // not the client so won't be replaced by the client.
3665 return;
Robert Carra1eb4392015-12-10 12:43:51 -08003666 }
Wale Ogunwale6d8e06b2016-01-05 10:43:25 -08003667
3668 mWillReplaceWindow = true;
Wale Ogunwale9bc47732016-08-10 14:44:22 -07003669 mReplacementWindow = null;
Wale Ogunwale6d8e06b2016-01-05 10:43:25 -08003670 mAnimateReplacingWindow = animate;
Robert Carra1eb4392015-12-10 12:43:51 -08003671 }
Chong Zhangf596cd52016-01-05 13:42:44 -08003672
Wale Ogunwale9bc47732016-08-10 14:44:22 -07003673 void clearWillReplaceWindow() {
Chong Zhangf596cd52016-01-05 13:42:44 -08003674 mWillReplaceWindow = false;
Wale Ogunwale9bc47732016-08-10 14:44:22 -07003675 mReplacementWindow = null;
Chong Zhangf596cd52016-01-05 13:42:44 -08003676 mAnimateReplacingWindow = false;
Wale Ogunwale9bc47732016-08-10 14:44:22 -07003677
3678 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07003679 final WindowState c = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07003680 c.clearWillReplaceWindow();
3681 }
3682 }
3683
3684 boolean waitingForReplacement() {
3685 if (mWillReplaceWindow) {
3686 return true;
3687 }
3688
3689 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07003690 final WindowState c = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07003691 if (c.waitingForReplacement()) {
3692 return true;
3693 }
3694 }
3695 return false;
Chong Zhangf596cd52016-01-05 13:42:44 -08003696 }
Vladislav Kaznacheev989b58a2016-02-10 12:19:33 -08003697
Chong Zhang4d7369a2016-04-25 16:09:14 -07003698 void requestUpdateWallpaperIfNeeded() {
Wale Ogunwale360a8bc2016-10-10 13:25:26 -07003699 final DisplayContent dc = getDisplayContent();
3700 if (dc != null && (mAttrs.flags & FLAG_SHOW_WALLPAPER) != 0) {
3701 dc.pendingLayoutChanges |= FINISH_LAYOUT_REDO_WALLPAPER;
3702 dc.setLayoutNeeded();
Chong Zhang4d7369a2016-04-25 16:09:14 -07003703 mService.mWindowPlacerLocked.requestTraversal();
3704 }
Wale Ogunwale9bc47732016-08-10 14:44:22 -07003705
3706 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07003707 final WindowState c = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07003708 c.requestUpdateWallpaperIfNeeded();
3709 }
Chong Zhang4d7369a2016-04-25 16:09:14 -07003710 }
3711
Vladislav Kaznacheev989b58a2016-02-10 12:19:33 -08003712 float translateToWindowX(float x) {
3713 float winX = x - mFrame.left;
3714 if (mEnforceSizeCompat) {
3715 winX *= mGlobalScale;
3716 }
3717 return winX;
3718 }
3719
3720 float translateToWindowY(float y) {
3721 float winY = y - mFrame.top;
3722 if (mEnforceSizeCompat) {
3723 winY *= mGlobalScale;
3724 }
3725 return winY;
3726 }
Robert Carrd1a010f2016-04-07 22:36:22 -07003727
Wale Ogunwale360a8bc2016-10-10 13:25:26 -07003728 private void transferDimToReplacement() {
Robert Carr9fe459d2016-04-07 23:32:28 -07003729 final DimLayer.DimLayerUser dimLayerUser = getDimLayerUser();
Wale Ogunwale360a8bc2016-10-10 13:25:26 -07003730 final DisplayContent dc = getDisplayContent();
3731 if (dimLayerUser != null && dc != null) {
3732 dc.mDimLayerController.applyDim(dimLayerUser,
3733 mReplacementWindow.mWinAnimator, (mAttrs.flags & FLAG_DIM_BEHIND) != 0);
Robert Carr9fe459d2016-04-07 23:32:28 -07003734 }
3735 }
3736
Robert Carrd1a010f2016-04-07 22:36:22 -07003737 // During activity relaunch due to resize, we sometimes use window replacement
3738 // for only child windows (as the main window is handled by window preservation)
3739 // and the big surface.
3740 //
Chong Zhangfea963e2016-08-15 17:14:16 -07003741 // Though windows of TYPE_APPLICATION or TYPE_DRAWN_APPLICATION (as opposed to
3742 // TYPE_BASE_APPLICATION) are not children in the sense of an attached window,
3743 // we also want to replace them at such phases, as they won't be covered by window
3744 // preservation, and in general we expect them to return following relaunch.
Robert Carrd1a010f2016-04-07 22:36:22 -07003745 boolean shouldBeReplacedWithChildren() {
Chong Zhang921f8e32016-08-17 14:26:57 -07003746 return mIsChildWindow || mAttrs.type == TYPE_APPLICATION
Chong Zhangfea963e2016-08-15 17:14:16 -07003747 || mAttrs.type == TYPE_DRAWN_APPLICATION;
Robert Carrd1a010f2016-04-07 22:36:22 -07003748 }
Robert Carrfd10cd12016-06-29 16:41:50 -07003749
Wale Ogunwale9bc47732016-08-10 14:44:22 -07003750 void setWillReplaceChildWindows() {
3751 if (shouldBeReplacedWithChildren()) {
3752 setWillReplaceWindow(false /* animate */);
3753 }
3754 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07003755 final WindowState c = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07003756 c.setWillReplaceChildWindows();
3757 }
3758 }
3759
3760 WindowState getReplacingWindow() {
3761 if (mAnimatingExit && mWillReplaceWindow && mAnimateReplacingWindow) {
3762 return this;
3763 }
3764 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07003765 final WindowState c = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07003766 final WindowState replacing = c.getReplacingWindow();
3767 if (replacing != null) {
3768 return replacing;
3769 }
3770 }
3771 return null;
3772 }
3773
Jorim Jaggife762342016-10-13 14:33:27 +02003774 @Override
Robert Carrfd10cd12016-06-29 16:41:50 -07003775 public int getRotationAnimationHint() {
3776 if (mAppToken != null) {
3777 return mAppToken.mRotationAnimationHint;
3778 } else {
3779 return -1;
3780 }
3781 }
Wale Ogunwale9d147902016-07-16 11:58:55 -07003782
Jorim Jaggife762342016-10-13 14:33:27 +02003783 @Override
3784 public boolean isInputMethodWindow() {
3785 return mIsImWindow;
3786 }
3787
Wale Ogunwale9d147902016-07-16 11:58:55 -07003788 // This must be called while inside a transaction.
3789 boolean performShowLocked() {
3790 if (isHiddenFromUserLocked()) {
3791 if (DEBUG_VISIBILITY) Slog.w(TAG, "hiding " + this + ", belonging to " + mOwnerUid);
3792 hideLw(false);
3793 return false;
3794 }
3795
3796 logPerformShow("performShow on ");
3797
Jorim Jaggia50da602016-12-29 11:51:42 +01003798 final int drawState = mWinAnimator.mDrawState;
3799 if ((drawState == HAS_DRAWN || drawState == READY_TO_SHOW)
3800 && mAttrs.type != TYPE_APPLICATION_STARTING && mAppToken != null) {
3801 mAppToken.onFirstWindowDrawn(this, mWinAnimator);
3802 }
3803
Jorim Jaggib0d27342016-11-01 16:10:42 -07003804 if (mWinAnimator.mDrawState != READY_TO_SHOW || !isReadyForDisplay()) {
Wale Ogunwale9d147902016-07-16 11:58:55 -07003805 return false;
3806 }
3807
3808 logPerformShow("Showing ");
3809
3810 mService.enableScreenIfNeededLocked();
3811 mWinAnimator.applyEnterAnimationLocked();
3812
3813 // Force the show in the next prepareSurfaceLocked() call.
3814 mWinAnimator.mLastAlpha = -1;
3815 if (DEBUG_SURFACE_TRACE || DEBUG_ANIM) Slog.v(TAG,
3816 "performShowLocked: mDrawState=HAS_DRAWN in " + this);
3817 mWinAnimator.mDrawState = HAS_DRAWN;
3818 mService.scheduleAnimationLocked();
3819
3820 if (mHidden) {
3821 mHidden = false;
3822 final DisplayContent displayContent = getDisplayContent();
3823
Wale Ogunwalee4343ef2016-07-19 08:00:46 -07003824 for (int i = mChildren.size() - 1; i >= 0; --i) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07003825 final WindowState c = mChildren.get(i);
Wale Ogunwale9d147902016-07-16 11:58:55 -07003826 if (c.mWinAnimator.mSurfaceController != null) {
3827 c.performShowLocked();
3828 // It hadn't been shown, which means layout not performed on it, so now we
3829 // want to make sure to do a layout. If called from within the transaction
3830 // loop, this will cause it to restart with a new layout.
3831 if (displayContent != null) {
Wale Ogunwale2b06bfc2016-09-28 14:17:05 -07003832 displayContent.setLayoutNeeded();
Wale Ogunwale9d147902016-07-16 11:58:55 -07003833 }
3834 }
3835 }
3836 }
3837
Wale Ogunwale9d147902016-07-16 11:58:55 -07003838 if (mAttrs.type == TYPE_INPUT_METHOD) {
Wale Ogunwale360a8bc2016-10-10 13:25:26 -07003839 getDisplayContent().mDividerControllerLocked.resetImeHideRequested();
Wale Ogunwale9d147902016-07-16 11:58:55 -07003840 }
3841
3842 return true;
3843 }
3844
Wale Ogunwale360a8bc2016-10-10 13:25:26 -07003845 private void logPerformShow(String prefix) {
Wale Ogunwale9d147902016-07-16 11:58:55 -07003846 if (DEBUG_VISIBILITY
Jorim Jaggie4b0f282017-05-17 15:10:29 +02003847 || (DEBUG_STARTING_WINDOW_VERBOSE && mAttrs.type == TYPE_APPLICATION_STARTING)) {
Wale Ogunwale9d147902016-07-16 11:58:55 -07003848 Slog.v(TAG, prefix + this
3849 + ": mDrawState=" + mWinAnimator.drawStateToString()
Jorim Jaggib0d27342016-11-01 16:10:42 -07003850 + " readyForDisplay=" + isReadyForDisplay()
Wale Ogunwale9d147902016-07-16 11:58:55 -07003851 + " starting=" + (mAttrs.type == TYPE_APPLICATION_STARTING)
3852 + " during animation: policyVis=" + mPolicyVisibility
3853 + " parentHidden=" + isParentWindowHidden()
3854 + " tok.hiddenRequested="
Wale Ogunwale360a8bc2016-10-10 13:25:26 -07003855 + (mAppToken != null && mAppToken.hiddenRequested)
3856 + " tok.hidden=" + (mAppToken != null && mAppToken.hidden)
Wale Ogunwale9d147902016-07-16 11:58:55 -07003857 + " animating=" + mWinAnimator.mAnimating
3858 + " tok animating="
Wale Ogunwale360a8bc2016-10-10 13:25:26 -07003859 + (mWinAnimator.mAppAnimator != null && mWinAnimator.mAppAnimator.animating)
Wale Ogunwale9d147902016-07-16 11:58:55 -07003860 + " Callers=" + Debug.getCallers(4));
3861 }
3862 }
Wale Ogunwaleadde52e2016-07-16 13:11:55 -07003863
3864 WindowInfo getWindowInfo() {
3865 WindowInfo windowInfo = WindowInfo.obtain();
3866 windowInfo.type = mAttrs.type;
3867 windowInfo.layer = mLayer;
3868 windowInfo.token = mClient.asBinder();
3869 windowInfo.title = mAttrs.accessibilityTitle;
3870 windowInfo.accessibilityIdOfAnchor = mAttrs.accessibilityIdOfAnchor;
3871 windowInfo.focused = isFocused();
Phil Weaverf00cd142017-03-03 13:44:00 -08003872 Task task = getTask();
3873 windowInfo.inPictureInPicture = (task != null) && task.inPinnedWorkspace();
Wale Ogunwaleadde52e2016-07-16 13:11:55 -07003874
Wale Ogunwalee4343ef2016-07-19 08:00:46 -07003875 if (mIsChildWindow) {
3876 windowInfo.parentToken = getParentWindow().mClient.asBinder();
Wale Ogunwaleadde52e2016-07-16 13:11:55 -07003877 }
3878
Wale Ogunwalee4343ef2016-07-19 08:00:46 -07003879 final int childCount = mChildren.size();
Wale Ogunwaleadde52e2016-07-16 13:11:55 -07003880 if (childCount > 0) {
3881 if (windowInfo.childTokens == null) {
Wale Ogunwalee4343ef2016-07-19 08:00:46 -07003882 windowInfo.childTokens = new ArrayList(childCount);
Wale Ogunwaleadde52e2016-07-16 13:11:55 -07003883 }
3884 for (int j = 0; j < childCount; j++) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07003885 final WindowState child = mChildren.get(j);
Wale Ogunwaleadde52e2016-07-16 13:11:55 -07003886 windowInfo.childTokens.add(child.mClient.asBinder());
3887 }
3888 }
Wale Ogunwaleadde52e2016-07-16 13:11:55 -07003889 return windowInfo;
3890 }
3891
Wale Ogunwale9bc47732016-08-10 14:44:22 -07003892 int getHighestAnimLayer() {
3893 int highest = mWinAnimator.mAnimLayer;
3894 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07003895 final WindowState c = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07003896 final int childLayer = c.getHighestAnimLayer();
3897 if (childLayer > highest) {
3898 highest = childLayer;
3899 }
3900 }
3901 return highest;
3902 }
3903
Wale Ogunwale9adfe572016-09-08 20:43:58 -07003904 @Override
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08003905 boolean forAllWindows(ToBooleanFunction<WindowState> callback, boolean traverseTopToBottom) {
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07003906 if (mChildren.isEmpty()) {
3907 // The window has no children so we just return it.
Wale Ogunwale3c1170d2016-12-02 14:44:52 -08003908 return applyInOrderWithImeWindows(callback, traverseTopToBottom);
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07003909 }
3910
3911 if (traverseTopToBottom) {
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08003912 return forAllWindowTopToBottom(callback);
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07003913 } else {
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08003914 return forAllWindowBottomToTop(callback);
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07003915 }
3916 }
3917
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08003918 private boolean forAllWindowBottomToTop(ToBooleanFunction<WindowState> callback) {
Wale Ogunwale34247952017-02-19 11:57:53 -08003919 // We want to consume the negative sublayer children first because they need to appear
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07003920 // below the parent, then this window (the parent), and then the positive sublayer children
3921 // because they need to appear above the parent.
3922 int i = 0;
3923 final int count = mChildren.size();
3924 WindowState child = mChildren.get(i);
3925
3926 while (i < count && child.mSubLayer < 0) {
Wale Ogunwale34247952017-02-19 11:57:53 -08003927 if (child.applyInOrderWithImeWindows(callback, false /* traverseTopToBottom */)) {
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08003928 return true;
3929 }
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07003930 i++;
3931 if (i >= count) {
3932 break;
3933 }
3934 child = mChildren.get(i);
3935 }
3936
Wale Ogunwale3c1170d2016-12-02 14:44:52 -08003937 if (applyInOrderWithImeWindows(callback, false /* traverseTopToBottom */)) {
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08003938 return true;
3939 }
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07003940
3941 while (i < count) {
Wale Ogunwale34247952017-02-19 11:57:53 -08003942 if (child.applyInOrderWithImeWindows(callback, false /* traverseTopToBottom */)) {
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08003943 return true;
3944 }
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07003945 i++;
3946 if (i >= count) {
3947 break;
3948 }
3949 child = mChildren.get(i);
3950 }
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08003951
3952 return false;
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07003953 }
3954
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08003955 private boolean forAllWindowTopToBottom(ToBooleanFunction<WindowState> callback) {
Wale Ogunwale34247952017-02-19 11:57:53 -08003956 // We want to consume the positive sublayer children first because they need to appear
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07003957 // above the parent, then this window (the parent), and then the negative sublayer children
3958 // because they need to appear above the parent.
3959 int i = mChildren.size() - 1;
3960 WindowState child = mChildren.get(i);
3961
3962 while (i >= 0 && child.mSubLayer >= 0) {
Wale Ogunwale34247952017-02-19 11:57:53 -08003963 if (child.applyInOrderWithImeWindows(callback, true /* traverseTopToBottom */)) {
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08003964 return true;
3965 }
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07003966 --i;
3967 if (i < 0) {
3968 break;
3969 }
3970 child = mChildren.get(i);
3971 }
3972
Wale Ogunwale3c1170d2016-12-02 14:44:52 -08003973 if (applyInOrderWithImeWindows(callback, true /* traverseTopToBottom */)) {
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08003974 return true;
3975 }
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07003976
3977 while (i >= 0) {
Wale Ogunwale34247952017-02-19 11:57:53 -08003978 if (child.applyInOrderWithImeWindows(callback, true /* traverseTopToBottom */)) {
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08003979 return true;
3980 }
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07003981 --i;
3982 if (i < 0) {
3983 break;
3984 }
3985 child = mChildren.get(i);
3986 }
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08003987
3988 return false;
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07003989 }
3990
Wale Ogunwale3c1170d2016-12-02 14:44:52 -08003991 private boolean applyInOrderWithImeWindows(ToBooleanFunction<WindowState> callback,
3992 boolean traverseTopToBottom) {
3993 if (traverseTopToBottom) {
3994 if (mService.mInputMethodTarget == this) {
3995 // This window is the current IME target, so we need to process the IME windows
3996 // directly above it.
3997 if (getDisplayContent().forAllImeWindows(callback, traverseTopToBottom)) {
3998 return true;
3999 }
4000 }
4001 if (callback.apply(this)) {
4002 return true;
4003 }
4004 } else {
4005 if (callback.apply(this)) {
4006 return true;
4007 }
4008 if (mService.mInputMethodTarget == this) {
4009 // This window is the current IME target, so we need to process the IME windows
4010 // directly above it.
4011 if (getDisplayContent().forAllImeWindows(callback, traverseTopToBottom)) {
4012 return true;
4013 }
4014 }
4015 }
4016
4017 return false;
4018 }
4019
Wale Ogunwaled1880962016-11-08 10:31:59 -08004020 WindowState getWindow(Predicate<WindowState> callback) {
Wale Ogunwale34247952017-02-19 11:57:53 -08004021 if (mChildren.isEmpty()) {
4022 return callback.test(this) ? this : null;
4023 }
4024
4025 // We want to consume the positive sublayer children first because they need to appear
4026 // above the parent, then this window (the parent), and then the negative sublayer children
4027 // because they need to appear above the parent.
4028 int i = mChildren.size() - 1;
4029 WindowState child = mChildren.get(i);
4030
4031 while (i >= 0 && child.mSubLayer >= 0) {
4032 if (callback.test(child)) {
4033 return child;
4034 }
4035 --i;
4036 if (i < 0) {
4037 break;
4038 }
4039 child = mChildren.get(i);
4040 }
4041
Wale Ogunwaled1880962016-11-08 10:31:59 -08004042 if (callback.test(this)) {
4043 return this;
4044 }
Wale Ogunwale34247952017-02-19 11:57:53 -08004045
4046 while (i >= 0) {
4047 if (callback.test(child)) {
4048 return child;
4049 }
4050 --i;
4051 if (i < 0) {
4052 break;
4053 }
4054 child = mChildren.get(i);
4055 }
4056
4057 return null;
Wale Ogunwaled1880962016-11-08 10:31:59 -08004058 }
4059
Wale Ogunwale9bc47732016-08-10 14:44:22 -07004060 boolean isWindowAnimationSet() {
4061 if (mWinAnimator.isWindowAnimationSet()) {
4062 return true;
4063 }
4064 for (int i = mChildren.size() - 1; i >= 0; --i) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07004065 final WindowState c = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07004066 if (c.isWindowAnimationSet()) {
4067 return true;
4068 }
4069 }
4070 return false;
4071 }
4072
Wale Ogunwaleadde52e2016-07-16 13:11:55 -07004073 void onExitAnimationDone() {
4074 if (DEBUG_ANIM) Slog.v(TAG, "onExitAnimationDone in " + this
4075 + ": exiting=" + mAnimatingExit + " remove=" + mRemoveOnExit
4076 + " windowAnimating=" + mWinAnimator.isWindowAnimationSet());
4077
Wale Ogunwalee4343ef2016-07-19 08:00:46 -07004078 if (!mChildren.isEmpty()) {
Wale Ogunwaleadde52e2016-07-16 13:11:55 -07004079 // Copying to a different list as multiple children can be removed.
Wale Ogunwalee4343ef2016-07-19 08:00:46 -07004080 // TODO: Not sure if we really need to copy this into a different list.
Wale Ogunwaled90546a2016-09-09 23:28:03 -07004081 final LinkedList<WindowState> childWindows = new LinkedList(mChildren);
Wale Ogunwaleadde52e2016-07-16 13:11:55 -07004082 for (int i = childWindows.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07004083 childWindows.get(i).onExitAnimationDone();
Wale Ogunwaleadde52e2016-07-16 13:11:55 -07004084 }
4085 }
4086
4087 if (mWinAnimator.mEnteringAnimation) {
4088 mWinAnimator.mEnteringAnimation = false;
4089 mService.requestTraversal();
4090 // System windows don't have an activity and an app token as a result, but need a way
4091 // to be informed about their entrance animation end.
4092 if (mAppToken == null) {
4093 try {
4094 mClient.dispatchWindowShown();
4095 } catch (RemoteException e) {
4096 }
4097 }
4098 }
4099
4100 if (!mWinAnimator.isWindowAnimationSet()) {
4101 //TODO (multidisplay): Accessibility is supported only for the default display.
4102 if (mService.mAccessibilityController != null && getDisplayId() == DEFAULT_DISPLAY) {
4103 mService.mAccessibilityController.onSomeWindowResizedOrMovedLocked();
4104 }
4105 }
4106
4107 if (!mAnimatingExit) {
4108 return;
4109 }
4110
4111 if (mWinAnimator.isWindowAnimationSet()) {
4112 return;
4113 }
4114
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07004115 if (localLOGV || DEBUG_ADD_REMOVE) Slog.v(TAG,
Wale Ogunwaleadde52e2016-07-16 13:11:55 -07004116 "Exit animation finished in " + this + ": remove=" + mRemoveOnExit);
4117
4118 mDestroying = true;
4119
4120 final boolean hasSurface = mWinAnimator.hasSurface();
4121 if (hasSurface) {
4122 mWinAnimator.hide("onExitAnimationDone");
4123 }
4124
4125 // If we have an app token, we ask it to destroy the surface for us, so that it can take
4126 // care to ensure the activity has actually stopped and the surface is not still in use.
4127 // Otherwise we add the service to mDestroySurface and allow it to be processed in our next
4128 // transaction.
4129 if (mAppToken != null) {
4130 mAppToken.destroySurfaces();
4131 } else {
4132 if (hasSurface) {
4133 mService.mDestroySurface.add(this);
4134 }
4135 if (mRemoveOnExit) {
4136 mService.mPendingRemove.add(this);
4137 mRemoveOnExit = false;
4138 }
4139 }
4140 mAnimatingExit = false;
Wale Ogunwale0303c572016-10-20 10:16:29 -07004141 getDisplayContent().mWallpaperController.hideWallpapers(this);
Wale Ogunwaleadde52e2016-07-16 13:11:55 -07004142 }
Dan Willemsen117197f2016-07-30 13:02:59 -07004143
Wale Ogunwale9bc47732016-08-10 14:44:22 -07004144 boolean clearAnimatingFlags() {
4145 boolean didSomething = false;
4146 // We don't want to clear it out for windows that get replaced, because the
4147 // animation depends on the flag to remove the replaced window.
4148 //
4149 // We also don't clear the mAnimatingExit flag for windows which have the
4150 // mRemoveOnExit flag. This indicates an explicit remove request has been issued
4151 // by the client. We should let animation proceed and not clear this flag or
4152 // they won't eventually be removed by WindowStateAnimator#finishExit.
4153 if (!mWillReplaceWindow && !mRemoveOnExit) {
4154 // Clear mAnimating flag together with mAnimatingExit. When animation
4155 // changes from exiting to entering, we need to clear this flag until the
4156 // new animation gets applied, so that isAnimationStarting() becomes true
4157 // until then.
4158 // Otherwise applySurfaceChangesTransaction will fail to skip surface
4159 // placement for this window during this period, one or more frame will
4160 // show up with wrong position or scale.
4161 if (mAnimatingExit) {
4162 mAnimatingExit = false;
4163 didSomething = true;
4164 }
4165 if (mWinAnimator.mAnimating) {
4166 mWinAnimator.mAnimating = false;
4167 didSomething = true;
4168 }
4169 if (mDestroying) {
4170 mDestroying = false;
4171 mService.mDestroySurface.remove(this);
4172 didSomething = true;
4173 }
4174 }
4175
4176 for (int i = mChildren.size() - 1; i >= 0; --i) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07004177 didSomething |= (mChildren.get(i)).clearAnimatingFlags();
Wale Ogunwale9bc47732016-08-10 14:44:22 -07004178 }
4179
4180 return didSomething;
4181 }
4182
Winson4b4ba902016-07-27 19:45:52 -07004183 public boolean isRtl() {
Andrii Kulian9d91ca62016-09-29 22:28:09 -07004184 return getConfiguration().getLayoutDirection() == View.LAYOUT_DIRECTION_RTL;
Winson4b4ba902016-07-27 19:45:52 -07004185 }
Wale Ogunwalee4da0c12016-07-29 12:47:02 -07004186
4187 void hideWallpaperWindow(boolean wasDeferred, String reason) {
Wale Ogunwale9bc47732016-08-10 14:44:22 -07004188 for (int j = mChildren.size() - 1; j >= 0; --j) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07004189 final WindowState c = mChildren.get(j);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07004190 c.hideWallpaperWindow(wasDeferred, reason);
4191 }
Wale Ogunwalee4da0c12016-07-29 12:47:02 -07004192 if (!mWinAnimator.mLastHidden || wasDeferred) {
4193 mWinAnimator.hide(reason);
4194 dispatchWallpaperVisibility(false);
4195 final DisplayContent displayContent = getDisplayContent();
4196 if (displayContent != null) {
4197 displayContent.pendingLayoutChanges |= FINISH_LAYOUT_REDO_WALLPAPER;
4198 }
4199 }
4200 }
4201
4202 /**
4203 * Check wallpaper window for visibility change and notify window if so.
4204 * @param visible Current visibility.
4205 */
4206 void dispatchWallpaperVisibility(final boolean visible) {
4207 final boolean hideAllowed =
Wale Ogunwale0303c572016-10-20 10:16:29 -07004208 getDisplayContent().mWallpaperController.mDeferredHideWallpaper == null;
Wale Ogunwalee4da0c12016-07-29 12:47:02 -07004209
4210 // Only send notification if the visibility actually changed and we are not trying to hide
4211 // the wallpaper when we are deferring hiding of the wallpaper.
4212 if (mWallpaperVisible != visible && (hideAllowed || visible)) {
4213 mWallpaperVisible = visible;
4214 try {
4215 if (DEBUG_VISIBILITY || DEBUG_WALLPAPER_LIGHT) Slog.v(TAG,
4216 "Updating vis of wallpaper " + this
4217 + ": " + visible + " from:\n" + Debug.getCallers(4, " "));
4218 mClient.dispatchAppVisibility(visible);
4219 } catch (RemoteException e) {
4220 }
4221 }
4222 }
4223
Wale Ogunwale9bc47732016-08-10 14:44:22 -07004224 boolean hasVisibleNotDrawnWallpaper() {
4225 if (mWallpaperVisible && !isDrawnLw()) {
4226 return true;
4227 }
4228 for (int j = mChildren.size() - 1; j >= 0; --j) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07004229 final WindowState c = mChildren.get(j);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07004230 if (c.hasVisibleNotDrawnWallpaper()) {
4231 return true;
4232 }
4233 }
4234 return false;
4235 }
4236
Wale Ogunwale9bc47732016-08-10 14:44:22 -07004237 void updateReportedVisibility(UpdateReportedVisibilityResults results) {
4238 for (int i = mChildren.size() - 1; i >= 0; --i) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07004239 final WindowState c = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07004240 c.updateReportedVisibility(results);
4241 }
4242
4243 if (mAppFreezing || mViewVisibility != View.VISIBLE
4244 || mAttrs.type == TYPE_APPLICATION_STARTING
4245 || mDestroying) {
4246 return;
4247 }
4248 if (DEBUG_VISIBILITY) {
4249 Slog.v(TAG, "Win " + this + ": isDrawn=" + isDrawnLw()
4250 + ", isAnimationSet=" + mWinAnimator.isAnimationSet());
4251 if (!isDrawnLw()) {
4252 Slog.v(TAG, "Not displayed: s=" + mWinAnimator.mSurfaceController
4253 + " pv=" + mPolicyVisibility
4254 + " mDrawState=" + mWinAnimator.mDrawState
4255 + " ph=" + isParentWindowHidden()
4256 + " th=" + (mAppToken != null ? mAppToken.hiddenRequested : false)
4257 + " a=" + mWinAnimator.mAnimating);
4258 }
4259 }
4260
4261 results.numInteresting++;
4262 if (isDrawnLw()) {
4263 results.numDrawn++;
4264 if (!mWinAnimator.isAnimationSet()) {
4265 results.numVisible++;
4266 }
4267 results.nowGone = false;
4268 } else if (mWinAnimator.isAnimationSet()) {
4269 results.nowGone = false;
4270 }
4271 }
4272
Robert Carrfbbde852016-10-18 11:02:28 -07004273 /**
4274 * Calculate the window crop according to system decor policy. In general this is
4275 * the system decor rect (see #calculateSystemDecorRect), but we also have some
4276 * special cases. This rectangle is in screen space.
4277 */
4278 void calculatePolicyCrop(Rect policyCrop) {
4279 final DisplayContent displayContent = getDisplayContent();
4280 final DisplayInfo displayInfo = displayContent.getDisplayInfo();
4281
4282 if (!isDefaultDisplay()) {
4283 // On a different display there is no system decor. Crop the window
4284 // by the screen boundaries.
4285 // TODO(multi-display)
4286 policyCrop.set(0, 0, mCompatFrame.width(), mCompatFrame.height());
4287 policyCrop.intersect(-mCompatFrame.left, -mCompatFrame.top,
4288 displayInfo.logicalWidth - mCompatFrame.left,
4289 displayInfo.logicalHeight - mCompatFrame.top);
4290 } else if (mLayer >= mService.mSystemDecorLayer) {
4291 // Above the decor layer is easy, just use the entire window
4292 policyCrop.set(0, 0, mCompatFrame.width(), mCompatFrame.height());
4293 } else if (mDecorFrame.isEmpty()) {
4294 // Windows without policy decor aren't cropped.
4295 policyCrop.set(0, 0, mCompatFrame.width(), mCompatFrame.height());
4296 } else {
4297 // Crop to the system decor specified by policy.
4298 calculateSystemDecorRect(policyCrop);
4299 }
4300 }
4301
4302 /**
4303 * The system decor rect is the region of the window which is not covered
4304 * by system decorations.
4305 */
4306 private void calculateSystemDecorRect(Rect systemDecorRect) {
4307 final Rect decorRect = mDecorFrame;
4308 final int width = mFrame.width();
4309 final int height = mFrame.height();
4310
4311 // Compute the offset of the window in relation to the decor rect.
4312 final int left = mXOffset + mFrame.left;
4313 final int top = mYOffset + mFrame.top;
4314
4315 // Initialize the decor rect to the entire frame.
4316 if (isDockedResizing()) {
4317 // If we are resizing with the divider, the task bounds might be smaller than the
4318 // stack bounds. The system decor is used to clip to the task bounds, which we don't
4319 // want in this case in order to avoid holes.
4320 //
4321 // We take care to not shrink the width, for surfaces which are larger than
4322 // the display region. Of course this area will not eventually be visible
4323 // but if we truncate the width now, we will calculate incorrectly
4324 // when adjusting to the stack bounds.
4325 final DisplayInfo displayInfo = getDisplayContent().getDisplayInfo();
4326 systemDecorRect.set(0, 0,
4327 Math.max(width, displayInfo.logicalWidth),
4328 Math.max(height, displayInfo.logicalHeight));
4329 } else {
4330 systemDecorRect.set(0, 0, width, height);
4331 }
4332
4333 // If a freeform window is animating from a position where it would be cutoff, it would be
4334 // cutoff during the animation. We don't want that, so for the duration of the animation
4335 // we ignore the decor cropping and depend on layering to position windows correctly.
4336 final boolean cropToDecor = !(inFreeformWorkspace() && isAnimatingLw());
4337 if (cropToDecor) {
4338 // Intersect with the decor rect, offsetted by window position.
4339 systemDecorRect.intersect(decorRect.left - left, decorRect.top - top,
4340 decorRect.right - left, decorRect.bottom - top);
4341 }
4342
4343 // If size compatibility is being applied to the window, the
4344 // surface is scaled relative to the screen. Also apply this
4345 // scaling to the crop rect. We aren't using the standard rect
4346 // scale function because we want to round things to make the crop
4347 // always round to a larger rect to ensure we don't crop too
4348 // much and hide part of the window that should be seen.
4349 if (mEnforceSizeCompat && mInvGlobalScale != 1.0f) {
4350 final float scale = mInvGlobalScale;
4351 systemDecorRect.left = (int) (systemDecorRect.left * scale - 0.5f);
4352 systemDecorRect.top = (int) (systemDecorRect.top * scale - 0.5f);
4353 systemDecorRect.right = (int) ((systemDecorRect.right + 1) * scale - 0.5f);
4354 systemDecorRect.bottom = (int) ((systemDecorRect.bottom + 1) * scale - 0.5f);
4355 }
4356
4357 }
4358
4359 /**
4360 * Expand the given rectangle by this windows surface insets. This
4361 * takes you from the 'window size' to the 'surface size'.
4362 * The surface insets are positive in each direction, so we inset by
4363 * the inverse.
4364 */
4365 void expandForSurfaceInsets(Rect r) {
4366 r.inset(-mAttrs.surfaceInsets.left,
4367 -mAttrs.surfaceInsets.top,
4368 -mAttrs.surfaceInsets.right,
4369 -mAttrs.surfaceInsets.bottom);
4370 }
4371
Robert Carrc91d1c32017-02-15 19:37:46 -08004372 boolean surfaceInsetsChanging() {
4373 return !mLastSurfaceInsets.equals(mAttrs.surfaceInsets);
4374 }
4375
Bryce Leef858b572017-06-29 14:03:33 -07004376 int relayoutVisibleWindow(int result, int attrChanges, int oldVisibility) {
Robert Carrecc06b32017-04-18 14:25:10 -07004377 final boolean wasVisible = isVisibleLw();
4378
4379 result |= (!wasVisible || !isDrawnLw()) ? RELAYOUT_RES_FIRST_TIME : 0;
Robert Carrc91d1c32017-02-15 19:37:46 -08004380 if (mAnimatingExit) {
4381 Slog.d(TAG, "relayoutVisibleWindow: " + this + " mAnimatingExit=true, mRemoveOnExit="
4382 + mRemoveOnExit + ", mDestroying=" + mDestroying);
4383
4384 mWinAnimator.cancelExitAnimationForNextAnimationLocked();
4385 mAnimatingExit = false;
4386 }
4387 if (mDestroying) {
4388 mDestroying = false;
4389 mService.mDestroySurface.remove(this);
4390 }
4391 if (oldVisibility == View.GONE) {
4392 mWinAnimator.mEnterAnimationPending = true;
4393 }
4394
Andrii Kulian8ee72852017-03-10 10:36:45 -08004395 mLastVisibleLayoutRotation = getDisplayContent().getRotation();
Robert Carrc91d1c32017-02-15 19:37:46 -08004396
4397 mWinAnimator.mEnteringAnimation = true;
Bryce Leeae73ba42017-05-05 09:58:25 -07004398
Bryce Leef858b572017-06-29 14:03:33 -07004399 prepareWindowToDisplayDuringRelayout(wasVisible);
Bryce Leeae73ba42017-05-05 09:58:25 -07004400
Robert Carrc91d1c32017-02-15 19:37:46 -08004401 if ((attrChanges & FORMAT_CHANGED) != 0) {
4402 // If the format can't be changed in place, preserve the old surface until the app draws
4403 // on the new one. This prevents blinking when we change elevation of freeform and
4404 // pinned windows.
4405 if (!mWinAnimator.tryChangeFormatInPlaceLocked()) {
4406 mWinAnimator.preserveSurfaceLocked();
4407 result |= RELAYOUT_RES_SURFACE_CHANGED
4408 | RELAYOUT_RES_FIRST_TIME;
4409 }
4410 }
4411
4412 // When we change the Surface size, in scenarios which may require changing
4413 // the surface position in sync with the resize, we use a preserved surface
4414 // so we can freeze it while waiting for the client to report draw on the newly
Winson Chung8bca9e42017-04-16 15:59:43 -07004415 // sized surface. Don't preserve surfaces if the insets change while animating the pinned
4416 // stack since it can lead to issues if a new surface is created while calculating the
4417 // scale for the animation using the source hint rect
4418 // (see WindowStateAnimator#setSurfaceBoundariesLocked()).
Robert Carrc91d1c32017-02-15 19:37:46 -08004419 if (isDragResizeChanged() || isResizedWhileNotDragResizing()
Winson Chung8bca9e42017-04-16 15:59:43 -07004420 || (surfaceInsetsChanging() && !inPinnedWorkspace())) {
Robert Carrc91d1c32017-02-15 19:37:46 -08004421 mLastSurfaceInsets.set(mAttrs.surfaceInsets);
4422
4423 setDragResizing();
4424 setResizedWhileNotDragResizing(false);
4425 // We can only change top level windows to the full-screen surface when
4426 // resizing (as we only have one full-screen surface). So there is no need
4427 // to preserve and destroy windows which are attached to another, they
4428 // will keep their surface and its size may change over time.
4429 if (mHasSurface && !isChildWindow()) {
4430 mWinAnimator.preserveSurfaceLocked();
Robert Carrdb2f6e62017-03-01 20:17:58 -08004431 result |= RELAYOUT_RES_SURFACE_CHANGED |
4432 RELAYOUT_RES_FIRST_TIME;
Robert Carrc91d1c32017-02-15 19:37:46 -08004433 }
4434 }
4435 final boolean freeformResizing = isDragResizing()
4436 && getResizeMode() == DRAG_RESIZE_MODE_FREEFORM;
4437 final boolean dockedResizing = isDragResizing()
4438 && getResizeMode() == DRAG_RESIZE_MODE_DOCKED_DIVIDER;
4439 result |= freeformResizing ? RELAYOUT_RES_DRAG_RESIZING_FREEFORM : 0;
4440 result |= dockedResizing ? RELAYOUT_RES_DRAG_RESIZING_DOCKED : 0;
4441 if (isAnimatingWithSavedSurface()) {
4442 // If we're animating with a saved surface now, request client to report draw.
4443 // We still need to know when the real thing is drawn.
4444 result |= RELAYOUT_RES_FIRST_TIME;
4445 }
4446 return result;
4447 }
4448
Jorim Jaggidc9385a2017-05-13 02:00:31 +02004449 /**
4450 * @return True if this window has been laid out at least once; false otherwise.
4451 */
4452 boolean isLaidOut() {
4453 return mLayoutSeq != -1;
4454 }
4455
4456 /**
4457 * Updates the last inset values to the current ones.
4458 */
4459 void updateLastInsetValues() {
4460 mLastOverscanInsets.set(mOverscanInsets);
4461 mLastContentInsets.set(mContentInsets);
4462 mLastVisibleInsets.set(mVisibleInsets);
4463 mLastStableInsets.set(mStableInsets);
4464 mLastOutsets.set(mOutsets);
4465 }
4466
Wale Ogunwale9bc47732016-08-10 14:44:22 -07004467 // TODO: Hack to work around the number of states AppWindowToken needs to access without having
4468 // access to its windows children. Need to investigate re-writing
4469 // {@link AppWindowToken#updateReportedVisibilityLocked} so this can be removed.
4470 static final class UpdateReportedVisibilityResults {
4471 int numInteresting;
4472 int numVisible;
4473 int numDrawn;
4474 boolean nowGone = true;
4475
4476 void reset() {
4477 numInteresting = 0;
4478 numVisible = 0;
4479 numDrawn = 0;
4480 nowGone = true;
4481 }
4482 }
Robert Carraf422a82017-04-10 18:34:33 -07004483
Jorim Jaggi4448e1e2017-05-16 22:26:02 +02004484 private static final class WindowId extends IWindowId.Stub {
4485 private final WeakReference<WindowState> mOuter;
4486
4487 private WindowId(WindowState outer) {
4488
4489 // Use a weak reference for the outer class. This is important to prevent the following
4490 // leak: Since we send this class to the client process, binder will keep it alive as
4491 // long as the client keeps it alive. Now, if the window is removed, we need to clear
4492 // out our reference so even though this class is kept alive we don't leak WindowState,
4493 // which can keep a whole lot of classes alive.
4494 mOuter = new WeakReference<>(outer);
4495 }
4496
4497 @Override
4498 public void registerFocusObserver(IWindowFocusObserver observer) {
4499 final WindowState outer = mOuter.get();
4500 if (outer != null) {
4501 outer.registerFocusObserver(observer);
4502 }
4503 }
4504 @Override
4505 public void unregisterFocusObserver(IWindowFocusObserver observer) {
4506 final WindowState outer = mOuter.get();
4507 if (outer != null) {
4508 outer.unregisterFocusObserver(observer);
4509 }
4510 }
4511 @Override
4512 public boolean isFocused() {
4513 final WindowState outer = mOuter.get();
4514 return outer != null && outer.isFocused();
4515 }
4516 }
4517
Robert Carraf422a82017-04-10 18:34:33 -07004518 boolean usesRelativeZOrdering() {
4519 if (!isChildWindow()) {
4520 return false;
4521 } else if (mAttrs.type == TYPE_APPLICATION_MEDIA_OVERLAY) {
4522 return true;
4523 } else {
4524 return false;
4525 }
4526 }
satokcef37fb2011-10-24 21:49:38 +09004527}