blob: 99fec7bdb791ae079ca6866bc1919a2cbdad2611 [file] [log] [blame]
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001/*
2 * Copyright (C) 2011 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package com.android.server.wm;
18
Wale Ogunwale053c8e42015-11-16 14:27:21 -080019import android.app.ActivityManager;
20import android.app.AppOpsManager;
21import android.content.Context;
22import android.content.res.Configuration;
23import android.graphics.Matrix;
24import android.graphics.PixelFormat;
25import android.graphics.Point;
26import android.graphics.Rect;
27import android.graphics.Region;
28import android.os.IBinder;
29import android.os.PowerManager;
30import android.os.RemoteCallbackList;
31import android.os.RemoteException;
32import android.os.SystemClock;
33import android.os.Trace;
34import android.os.UserHandle;
35import android.os.WorkSource;
36import android.util.DisplayMetrics;
37import android.util.Slog;
38import android.util.TimeUtils;
39import android.view.Display;
40import android.view.DisplayInfo;
41import android.view.Gravity;
42import android.view.IApplicationToken;
43import android.view.IWindow;
44import android.view.IWindowFocusObserver;
45import android.view.IWindowId;
46import android.view.InputChannel;
47import android.view.InputEvent;
48import android.view.InputEventReceiver;
49import android.view.View;
50import android.view.ViewTreeObserver;
51import android.view.WindowManager;
52import android.view.WindowManagerPolicy;
53
Jorim Jaggi9511b0f2016-01-29 19:12:44 -080054import com.android.server.input.InputWindowHandle;
55
Wale Ogunwale053c8e42015-11-16 14:27:21 -080056import java.io.PrintWriter;
57import java.util.ArrayList;
58
Wale Ogunwaled045c822015-12-02 09:14:28 -080059import static android.app.ActivityManager.StackId;
Wale Ogunwalea9f9b372016-02-04 18:04:39 -080060import static android.app.ActivityManager.StackId.DOCKED_STACK_ID;
Filip Gruszczynski84fa3352016-01-25 16:28:49 -080061import static android.app.ActivityManager.StackId.INVALID_STACK_ID;
Wale Ogunwalecad05a02015-09-25 10:41:44 -070062import static android.os.Trace.TRACE_TAG_WINDOW_MANAGER;
Wale Ogunwale053c8e42015-11-16 14:27:21 -080063import static android.view.ViewTreeObserver.InternalInsetsInfo.TOUCHABLE_INSETS_CONTENT;
64import static android.view.ViewTreeObserver.InternalInsetsInfo.TOUCHABLE_INSETS_FRAME;
65import static android.view.ViewTreeObserver.InternalInsetsInfo.TOUCHABLE_INSETS_REGION;
66import static android.view.ViewTreeObserver.InternalInsetsInfo.TOUCHABLE_INSETS_VISIBLE;
Wale Ogunwalef9c81492015-02-25 18:06:17 -080067import static android.view.WindowManager.LayoutParams.FIRST_SUB_WINDOW;
Filip Gruszczynski84cc5e32015-11-03 18:05:47 -080068import static android.view.WindowManager.LayoutParams.FLAG_ALLOW_LOCK_WHILE_SCREEN_ON;
Filip Gruszczynski4501d232015-09-02 13:00:02 -070069import static android.view.WindowManager.LayoutParams.FLAG_DIM_BEHIND;
Filip Gruszczynski84cc5e32015-11-03 18:05:47 -080070import static android.view.WindowManager.LayoutParams.FLAG_DISMISS_KEYGUARD;
Jorim Jaggi5f23a572016-04-22 15:05:50 -070071import static android.view.WindowManager.LayoutParams.FLAG_LAYOUT_NO_LIMITS;
Wale Ogunwale053c8e42015-11-16 14:27:21 -080072import static android.view.WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE;
73import static android.view.WindowManager.LayoutParams.FLAG_NOT_TOUCH_MODAL;
Filip Gruszczynski84cc5e32015-11-03 18:05:47 -080074import static android.view.WindowManager.LayoutParams.FLAG_SCALED;
Wale Ogunwale945d1972016-03-23 13:16:41 -070075import static android.view.WindowManager.LayoutParams.FLAG_SECURE;
Chong Zhang4d7369a2016-04-25 16:09:14 -070076import static android.view.WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER;
Wale Ogunwale6dfdfd62015-04-15 12:01:38 -070077import static android.view.WindowManager.LayoutParams.FLAG_SHOW_WHEN_LOCKED;
Filip Gruszczynski84cc5e32015-11-03 18:05:47 -080078import static android.view.WindowManager.LayoutParams.FLAG_TURN_SCREEN_ON;
Wale Ogunwalef9c81492015-02-25 18:06:17 -080079import static android.view.WindowManager.LayoutParams.LAST_SUB_WINDOW;
Robert Carr31e28482015-12-02 16:53:18 -080080import static android.view.WindowManager.LayoutParams.MATCH_PARENT;
Wale Ogunwalef9c81492015-02-25 18:06:17 -080081import static android.view.WindowManager.LayoutParams.PRIVATE_FLAG_COMPATIBLE_WINDOW;
Wale Ogunwalef9c81492015-02-25 18:06:17 -080082import static android.view.WindowManager.LayoutParams.PRIVATE_FLAG_KEYGUARD;
Jorim Jaggi9511b0f2016-01-29 19:12:44 -080083import static android.view.WindowManager.LayoutParams.PRIVATE_FLAG_LAYOUT_CHILD_WINDOW_IN_PARENT_FRAME;
Robert Carra1eb4392015-12-10 12:43:51 -080084import static android.view.WindowManager.LayoutParams.PRIVATE_FLAG_WILL_NOT_REPLACE_ON_RELAUNCH;
Filip Gruszczynski84cc5e32015-11-03 18:05:47 -080085import static android.view.WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE;
86import static android.view.WindowManager.LayoutParams.SOFT_INPUT_MASK_ADJUST;
Robert Carrd1a010f2016-04-07 22:36:22 -070087import static android.view.WindowManager.LayoutParams.TYPE_APPLICATION;
Wale Ogunwalef9c81492015-02-25 18:06:17 -080088import static android.view.WindowManager.LayoutParams.TYPE_APPLICATION_STARTING;
Filip Gruszczynski84cc5e32015-11-03 18:05:47 -080089import static android.view.WindowManager.LayoutParams.TYPE_BASE_APPLICATION;
Filip Gruszczynski466f3212015-09-21 17:57:57 -070090import static android.view.WindowManager.LayoutParams.TYPE_DOCK_DIVIDER;
Wale Ogunwalef9c81492015-02-25 18:06:17 -080091import static android.view.WindowManager.LayoutParams.TYPE_INPUT_METHOD;
92import static android.view.WindowManager.LayoutParams.TYPE_INPUT_METHOD_DIALOG;
93import static android.view.WindowManager.LayoutParams.TYPE_WALLPAPER;
Chong Zhang4d7369a2016-04-25 16:09:14 -070094import static android.view.WindowManagerPolicy.FINISH_LAYOUT_REDO_WALLPAPER;
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +010095import static com.android.server.wm.DragResizeMode.DRAG_RESIZE_MODE_DOCKED_DIVIDER;
96import static com.android.server.wm.DragResizeMode.DRAG_RESIZE_MODE_FREEFORM;
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -080097import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_ADD_REMOVE;
98import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_ANIM;
99import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_APP_TRANSITIONS;
100import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_CONFIGURATION;
101import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_FOCUS_LIGHT;
102import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_LAYOUT;
103import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_ORIENTATION;
104import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_POWER;
105import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_RESIZE;
106import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_VISIBILITY;
107import static com.android.server.wm.WindowManagerDebugConfig.TAG_WITH_CLASS_NAME;
108import static com.android.server.wm.WindowManagerDebugConfig.TAG_WM;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800109
Craig Mautner59c00972012-07-30 12:10:24 -0700110class WindowList extends ArrayList<WindowState> {
Wale Ogunwale33fde7d2016-03-05 22:38:51 -0800111 WindowList() {}
112 WindowList(WindowList windowList) {
113 super(windowList);
114 }
Craig Mautner59c00972012-07-30 12:10:24 -0700115}
116
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800117/**
118 * A window in the window manager.
119 */
Craig Mautnere32c3072012-03-12 15:25:35 -0700120final class WindowState implements WindowManagerPolicy.WindowState {
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800121 static final String TAG = TAG_WITH_CLASS_NAME ? "WindowState" : TAG_WM;
Craig Mautner164d4bb2012-11-26 13:51:23 -0800122
Skuhne81c524a2015-08-12 13:34:14 -0700123 // The minimal size of a window within the usable area of the freeform stack.
Wale Ogunwale231b06e2015-09-16 12:03:09 -0700124 // TODO(multi-window): fix the min sizes when we have mininum width/height support,
125 // use hard-coded min sizes for now.
126 static final int MINIMUM_VISIBLE_WIDTH_IN_DP = 48;
127 static final int MINIMUM_VISIBLE_HEIGHT_IN_DP = 32;
Skuhnef932e562015-08-20 12:07:30 -0700128
129 // The thickness of a window resize handle outside the window bounds on the free form workspace
130 // to capture touch events in that area.
Wale Ogunwale231b06e2015-09-16 12:03:09 -0700131 static final int RESIZE_HANDLE_WIDTH_IN_DP = 30;
Skuhnef932e562015-08-20 12:07:30 -0700132
Robert Carr7098dbd2016-02-01 12:31:01 -0800133 static final boolean DEBUG_DISABLE_SAVING_SURFACES = false;
134
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800135 final WindowManagerService mService;
Craig Mautnere7ae2502012-03-26 17:11:19 -0700136 final WindowManagerPolicy mPolicy;
137 final Context mContext;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800138 final Session mSession;
139 final IWindow mClient;
Dianne Hackbornc2293022013-02-06 23:14:49 -0800140 final int mAppOp;
141 // UserId and appId of the owner. Don't display windows of non-current user.
142 final int mOwnerUid;
Dianne Hackborne3f23a32013-03-01 13:25:35 -0800143 final IWindowId mWindowId;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800144 WindowToken mToken;
145 WindowToken mRootToken;
146 AppWindowToken mAppToken;
147 AppWindowToken mTargetAppToken;
Craig Mautnerd09cc4b2012-04-04 10:23:31 -0700148
149 // mAttrs.flags is tested in animation without being locked. If the bits tested are ever
150 // modified they will need to be locked.
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800151 final WindowManager.LayoutParams mAttrs = new WindowManager.LayoutParams();
152 final DeathRecipient mDeathRecipient;
153 final WindowState mAttachedWindow;
Craig Mautner7b1aa772012-11-30 16:14:45 -0800154 final WindowList mChildWindows = new WindowList();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800155 final int mBaseLayer;
156 final int mSubLayer;
157 final boolean mLayoutAttached;
158 final boolean mIsImWindow;
159 final boolean mIsWallpaper;
160 final boolean mIsFloatingLayer;
Dianne Hackborn9a230e02011-10-06 11:51:27 -0700161 int mSeq;
Dianne Hackborn5fd21692011-06-07 14:09:47 -0700162 boolean mEnforceSizeCompat;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800163 int mViewVisibility;
Dianne Hackborn9a230e02011-10-06 11:51:27 -0700164 int mSystemUiVisibility;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800165 boolean mPolicyVisibility = true;
166 boolean mPolicyVisibilityAfterAnim = true;
Dianne Hackbornb6b23ec2013-02-11 19:29:06 -0800167 boolean mAppOpVisibility = true;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800168 boolean mAppFreezing;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800169 boolean mAttachedHidden; // is our parent window hidden?
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800170 boolean mWallpaperVisible; // for wallpaper, what was last vis report?
Chong Zhang0275e392015-09-17 10:41:44 -0700171 boolean mDragResizing;
Jorim Jaggic662d8e2016-02-05 16:54:54 -0800172 boolean mDragResizingChangeReported;
Jorim Jaggidcf467c2015-11-05 13:59:32 +0100173 int mResizeMode;
Dianne Hackbornffb3d932011-05-17 17:44:51 -0700174
Dianne Hackborne3f23a32013-03-01 13:25:35 -0800175 RemoteCallbackList<IWindowFocusObserver> mFocusCallbacks;
176
Dianne Hackbornffb3d932011-05-17 17:44:51 -0700177 /**
178 * The window size that was requested by the application. These are in
179 * the application's coordinate space (without compatibility scale applied).
180 */
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800181 int mRequestedWidth;
182 int mRequestedHeight;
Dianne Hackborn1743b642012-03-12 17:04:43 -0700183 int mLastRequestedWidth;
184 int mLastRequestedHeight;
Dianne Hackbornffb3d932011-05-17 17:44:51 -0700185
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800186 int mLayer;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800187 boolean mHaveFrame;
188 boolean mObscured;
189 boolean mTurnOnScreen;
190
191 int mLayoutSeq = -1;
Craig Mautnera2c77052012-03-26 12:14:43 -0700192
Jorim Jaggi26c8c422016-05-09 19:57:25 -0700193 private final Configuration mTmpConfig = new Configuration();
Robert Carrc24d8f92016-02-29 16:24:33 -0800194 // Represents the changes from our override configuration applied
195 // to the global configuration. This is the only form of configuration
196 // which is suitable for delivery to the client.
197 private Configuration mMergedConfiguration = new Configuration();
Craig Mautnere8552142012-11-07 13:55:47 -0800198 // Sticky answer to isConfigChanged(), remains true until new Configuration is assigned.
199 // Used only on {@link #TYPE_KEYGUARD}.
200 private boolean mConfigHasChanged;
Craig Mautnera2c77052012-03-26 12:14:43 -0700201
Dianne Hackbornffb3d932011-05-17 17:44:51 -0700202 /**
Filip Gruszczynski2a6a2c22015-10-14 12:00:53 -0700203 * Actual position of the surface shown on-screen (may be modified by animation). These are
204 * in the screen's coordinate space (WITH the compatibility scale applied).
Dianne Hackbornffb3d932011-05-17 17:44:51 -0700205 */
Filip Gruszczynski2a6a2c22015-10-14 12:00:53 -0700206 final Point mShownPosition = new Point();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800207
208 /**
Dianne Hackbornffb3d932011-05-17 17:44:51 -0700209 * Insets that determine the actually visible area. These are in the application's
210 * coordinate space (without compatibility scale applied).
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800211 */
212 final Rect mVisibleInsets = new Rect();
213 final Rect mLastVisibleInsets = new Rect();
214 boolean mVisibleInsetsChanged;
215
216 /**
Dianne Hackborn5c58de32012-04-28 19:52:37 -0700217 * Insets that are covered by system windows (such as the status bar) and
218 * transient docking windows (such as the IME). These are in the application's
Dianne Hackbornffb3d932011-05-17 17:44:51 -0700219 * coordinate space (without compatibility scale applied).
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800220 */
221 final Rect mContentInsets = new Rect();
222 final Rect mLastContentInsets = new Rect();
223 boolean mContentInsetsChanged;
224
225 /**
Dianne Hackbornc4aad012013-02-22 15:05:25 -0800226 * Insets that determine the area covered by the display overscan region. These are in the
227 * application's coordinate space (without compatibility scale applied).
228 */
229 final Rect mOverscanInsets = new Rect();
230 final Rect mLastOverscanInsets = new Rect();
231 boolean mOverscanInsetsChanged;
232
233 /**
Adrian Roosfa104232014-06-20 16:10:14 -0700234 * Insets that determine the area covered by the stable system windows. These are in the
235 * application's coordinate space (without compatibility scale applied).
236 */
237 final Rect mStableInsets = new Rect();
238 final Rect mLastStableInsets = new Rect();
239 boolean mStableInsetsChanged;
240
241 /**
Filip Gruszczynski2217f612015-05-26 11:32:08 -0700242 * Outsets determine the area outside of the surface where we want to pretend that it's possible
243 * to draw anyway.
244 */
245 final Rect mOutsets = new Rect();
246 final Rect mLastOutsets = new Rect();
247 boolean mOutsetsChanged = false;
248
249 /**
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800250 * Set to true if we are waiting for this window to receive its
251 * given internal insets before laying out other windows based on it.
252 */
253 boolean mGivenInsetsPending;
254
255 /**
256 * These are the content insets that were given during layout for
257 * this window, to be applied to windows behind it.
258 */
259 final Rect mGivenContentInsets = new Rect();
260
261 /**
262 * These are the visible insets that were given during layout for
263 * this window, to be applied to windows behind it.
264 */
265 final Rect mGivenVisibleInsets = new Rect();
266
267 /**
268 * This is the given touchable area relative to the window frame, or null if none.
269 */
270 final Region mGivenTouchableRegion = new Region();
271
272 /**
273 * Flag indicating whether the touchable region should be adjusted by
274 * the visible insets; if false the area outside the visible insets is
275 * NOT touchable, so we must use those to adjust the frame during hit
276 * tests.
277 */
278 int mTouchableInsets = ViewTreeObserver.InternalInsetsInfo.TOUCHABLE_INSETS_FRAME;
279
280 // Current transformation being applied.
Dianne Hackborne2515ee2011-04-27 18:52:56 -0400281 float mGlobalScale=1;
Dianne Hackbornffb3d932011-05-17 17:44:51 -0700282 float mInvGlobalScale=1;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800283 float mHScale=1, mVScale=1;
284 float mLastHScale=1, mLastVScale=1;
285 final Matrix mTmpMatrix = new Matrix();
286
Dianne Hackbornffb3d932011-05-17 17:44:51 -0700287 // "Real" frame that the application sees, in display coordinate space.
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800288 final Rect mFrame = new Rect();
289 final Rect mLastFrame = new Rect();
Dianne Hackbornffb3d932011-05-17 17:44:51 -0700290 // Frame that is scaled to the application's coordinate space when in
291 // screen size compatibility mode.
292 final Rect mCompatFrame = new Rect();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800293
294 final Rect mContainingFrame = new Rect();
Wale Ogunwalec6061fa2014-10-21 13:15:11 -0700295
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800296 final Rect mParentFrame = new Rect();
Wale Ogunwalec6061fa2014-10-21 13:15:11 -0700297
Wale Ogunwale94596652015-02-06 19:27:34 -0800298 // The entire screen area of the {@link TaskStack} this window is in. Usually equal to the
299 // screen area of the device.
Wale Ogunwalec6061fa2014-10-21 13:15:11 -0700300 final Rect mDisplayFrame = new Rect();
301
302 // The region of the display frame that the display type supports displaying content on. This
303 // is mostly a special case for TV where some displays don’t have the entire display usable.
304 // {@link WindowManager.LayoutParams#FLAG_LAYOUT_IN_OVERSCAN} flag can be used to allow
305 // window display contents to extend into the overscan region.
306 final Rect mOverscanFrame = new Rect();
307
308 // The display frame minus the stable insets. This value is always constant regardless of if
309 // the status bar or navigation bar is visible.
Adrian Roosfa104232014-06-20 16:10:14 -0700310 final Rect mStableFrame = new Rect();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800311
Wale Ogunwalec6061fa2014-10-21 13:15:11 -0700312 // The area not occupied by the status and navigation bars. So, if both status and navigation
313 // bars are visible, the decor frame is equal to the stable frame.
314 final Rect mDecorFrame = new Rect();
315
316 // Equal to the decor frame if the IME (e.g. keyboard) is not present. Equal to the decor frame
317 // minus the area occupied by the IME if the IME is present.
318 final Rect mContentFrame = new Rect();
319
320 // Legacy stuff. Generally equal to the content frame expect when the IME for older apps
321 // displays hint text.
322 final Rect mVisibleFrame = new Rect();
323
Filip Gruszczynski2217f612015-05-26 11:32:08 -0700324 // Frame that includes dead area outside of the surface but where we want to pretend that it's
325 // possible to draw.
326 final Rect mOutsetFrame = new Rect();
327
Jorim Jaggidc249c42015-12-15 14:57:31 -0800328 /**
329 * Usually empty. Set to the task's tempInsetFrame. See
330 *{@link android.app.IActivityManager#resizeDockedStack}.
331 */
332 final Rect mInsetFrame = new Rect();
333
Jorim Jaggif5834272016-04-04 20:25:41 -0700334 private static final Rect sTmpRect = new Rect();
335
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800336 boolean mContentChanged;
337
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800338 // If a window showing a wallpaper: the requested offset for the
339 // wallpaper; if a wallpaper window: the currently applied offset.
340 float mWallpaperX = -1;
341 float mWallpaperY = -1;
342
343 // If a window showing a wallpaper: what fraction of the offset
344 // range corresponds to a full virtual screen.
345 float mWallpaperXStep = -1;
346 float mWallpaperYStep = -1;
347
Dianne Hackborn067e5f62014-09-07 23:14:30 -0700348 // If a window showing a wallpaper: a raw pixel offset to forcibly apply
349 // to its window; if a wallpaper window: not used.
350 int mWallpaperDisplayOffsetX = Integer.MIN_VALUE;
351 int mWallpaperDisplayOffsetY = Integer.MIN_VALUE;
352
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800353 // Wallpaper windows: pixels offset based on above variables.
354 int mXOffset;
355 int mYOffset;
356
Craig Mautner2268e7e2012-12-13 15:40:00 -0800357 /**
358 * This is set after IWindowSession.relayout() has been called at
359 * least once for the window. It allows us to detect the situation
360 * where we don't yet have a surface, but should have one soon, so
361 * we can give the window focus before waiting for the relayout.
362 */
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800363 boolean mRelayoutCalled;
364
Robert Carrfed10072016-05-26 11:48:49 -0700365 boolean mInRelayout;
366
Craig Mautner0bf6ec92012-12-18 08:33:27 -0800367 /**
368 * If the application has called relayout() with changes that can
369 * impact its window's size, we need to perform a layout pass on it
370 * even if it is not currently visible for layout. This is set
371 * when in that case until the layout is done.
372 */
Dianne Hackbornb7ff51b2012-01-23 19:15:27 -0800373 boolean mLayoutNeeded;
374
Craig Mautner0bf6ec92012-12-18 08:33:27 -0800375 /** Currently running an exit animation? */
Wale Ogunwalec48a3542016-02-19 15:18:45 -0800376 boolean mAnimatingExit;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800377
Craig Mautner0bf6ec92012-12-18 08:33:27 -0800378 /** Currently on the mDestroySurface list? */
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800379 boolean mDestroying;
380
Craig Mautner0bf6ec92012-12-18 08:33:27 -0800381 /** Completely remove from window manager after exit animation? */
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800382 boolean mRemoveOnExit;
383
Craig Mautner0bf6ec92012-12-18 08:33:27 -0800384 /**
Chong Zhang112eb8c2015-11-02 11:17:00 -0800385 * Whether the app died while it was visible, if true we might need
386 * to continue to show it until it's restarted.
387 */
388 boolean mAppDied;
389
390 /**
Craig Mautner0bf6ec92012-12-18 08:33:27 -0800391 * Set when the orientation is changing and this window has not yet
392 * been updated for the new orientation.
393 */
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800394 boolean mOrientationChanging;
395
Dianne Hackborna57c6952013-03-29 14:46:40 -0700396 /**
397 * How long we last kept the screen frozen.
398 */
399 int mLastFreezeDuration;
400
Craig Mautner0bf6ec92012-12-18 08:33:27 -0800401 /** Is this window now (or just being) removed? */
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800402 boolean mRemoved;
403
Craig Mautner0bf6ec92012-12-18 08:33:27 -0800404 /**
Wale Ogunwalec48a3542016-02-19 15:18:45 -0800405 * It is save to remove the window and destroy the surface because the client requested removal
406 * or some other higher level component said so (e.g. activity manager).
407 * TODO: We should either have different booleans for the removal reason or use a bit-field.
Robert Carre12aece2016-02-02 22:43:27 -0800408 */
Wale Ogunwalec48a3542016-02-19 15:18:45 -0800409 boolean mWindowRemovalAllowed;
Robert Carre12aece2016-02-02 22:43:27 -0800410
411 /**
Craig Mautner0bf6ec92012-12-18 08:33:27 -0800412 * Temp for keeping track of windows that have been removed when
413 * rebuilding window list.
414 */
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800415 boolean mRebuilding;
416
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800417 // Input channel and input window handle used by the input dispatcher.
Jeff Brown9302c872011-07-13 22:51:29 -0700418 final InputWindowHandle mInputWindowHandle;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800419 InputChannel mInputChannel;
Chong Zhang112eb8c2015-11-02 11:17:00 -0800420 InputChannel mClientChannel;
Craig Mautner164d4bb2012-11-26 13:51:23 -0800421
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800422 // Used to improve performance of toString()
423 String mStringNameCache;
424 CharSequence mLastTitle;
Dianne Hackborn529e7442012-11-01 14:22:28 -0700425 boolean mWasExiting;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800426
Craig Mautnera2c77052012-03-26 12:14:43 -0700427 final WindowStateAnimator mWinAnimator;
428
Craig Mautnerc8bc97e2012-04-02 12:54:54 -0700429 boolean mHasSurface = false;
430
Craig Mautner19ab8282014-05-07 10:35:34 -0700431 boolean mNotOnAppsDisplay = false;
Craig Mautner59c00972012-07-30 12:10:24 -0700432 DisplayContent mDisplayContent;
Craig Mautner6881a102012-07-27 13:04:51 -0700433
Craig Mautner88400d32012-09-30 12:35:45 -0700434 /** When true this window can be displayed on screens owther than mOwnerUid's */
435 private boolean mShowToOwnerOnly;
Craig Mautner9dc52bc2012-08-06 14:15:42 -0700436
Robert Carr13f7be9e2015-12-02 18:39:45 -0800437 // Whether the window has a saved surface from last pause, which can be
438 // used to start an entering animation earlier.
Chong Zhang92147042016-05-09 12:47:11 -0700439 private boolean mSurfaceSaved = false;
440
Chong Zhang8e4bda92016-05-04 15:08:18 -0700441 // Whether we're performing an entering animation with a saved surface. This flag is
442 // true during the time we're showing a window with a previously saved surface. It's
443 // cleared when surface is destroyed, saved, or re-drawn by the app.
Chong Zhang92147042016-05-09 12:47:11 -0700444 private boolean mAnimatingWithSavedSurface;
445
446 // Whether the window was visible when we set the app to invisible last time. WM uses
447 // this as a hint to restore the surface (if available) for early animation next time
448 // the app is brought visible.
449 boolean mWasVisibleBeforeClientHidden;
Robert Carr13f7be9e2015-12-02 18:39:45 -0800450
Robert Carra1eb4392015-12-10 12:43:51 -0800451 // This window will be replaced due to relaunch. This allows window manager
452 // to differentiate between simple removal of a window and replacement. In the latter case it
453 // will preserve the old window until the new one is drawn.
454 boolean mWillReplaceWindow = false;
455 // If true, the replaced window was already requested to be removed.
456 boolean mReplacingRemoveRequested = false;
457 // Whether the replacement of the window should trigger app transition animation.
458 boolean mAnimateReplacingWindow = false;
459 // If not null, the window that will be used to replace the old one. This is being set when
460 // the window is added and unset when this window reports its first draw.
461 WindowState mReplacingWindow = null;
Robert Carrb439a632016-04-07 22:52:10 -0700462 // For the new window in the replacement transition, if we have
463 // requested to replace without animation, then we should
464 // make sure we also don't apply an enter animation for
465 // the new window.
466 boolean mSkipEnterAnimationForSeamlessReplacement = false;
Chong Zhangbd0d9372015-12-28 15:18:29 -0800467 // Whether this window is being moved via the resize API
468 boolean mMovedByResize;
Robert Carr0d00c2e2016-02-29 17:45:02 -0800469
Jeff Brownc2932a12014-11-20 18:04:05 -0800470 /**
471 * Wake lock for drawing.
472 * Even though it's slightly more expensive to do so, we will use a separate wake lock
473 * for each app that is requesting to draw while dozing so that we can accurately track
474 * who is preventing the system from suspending.
475 * This lock is only acquired on first use.
476 */
477 PowerManager.WakeLock mDrawLock;
478
Wale Ogunwale2b19b602015-09-18 15:14:59 -0700479 final private Rect mTmpRect = new Rect();
480
Jorim Jaggi8fa45222016-02-19 19:54:39 -0800481 /**
Jorim Jaggi5e6968d2016-02-19 18:02:13 -0800482 * See {@link #notifyMovedInStack}.
483 */
484 private boolean mJustMovedInStack;
485
486 /**
Jorim Jaggi8fa45222016-02-19 19:54:39 -0800487 * Whether the window was resized by us while it was gone for layout.
488 */
489 boolean mResizedWhileGone = false;
490
Andrii Kulianeb1d3222016-05-16 15:17:55 -0700491 /** @see #isResizedWhileNotDragResizing(). */
492 private boolean mResizedWhileNotDragResizing;
493
494 /** @see #isResizedWhileNotDragResizingReported(). */
495 private boolean mResizedWhileNotDragResizingReported;
Jorim Jaggif3df0aa2016-04-06 15:56:33 -0700496
Robert Carr6da3cc02016-06-16 15:17:07 -0700497 /**
498 * During seamless rotation we have two phases, first the old window contents
499 * are rotated to look as if they didn't move in the new coordinate system. Then we
500 * have to freeze updates to this layer (to preserve the transformation) until
501 * the resize actually occurs. This is true from when the transformation is set
502 * and false until the transaction to resize is sent.
503 */
504 boolean mSeamlesslyRotated = false;
505
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800506 WindowState(WindowManagerService service, Session s, IWindow c, WindowToken token,
Dianne Hackbornc2293022013-02-06 23:14:49 -0800507 WindowState attachedWindow, int appOp, int seq, WindowManager.LayoutParams a,
Craig Mautner59c00972012-07-30 12:10:24 -0700508 int viewVisibility, final DisplayContent displayContent) {
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800509 mService = service;
510 mSession = s;
511 mClient = c;
Dianne Hackbornc2293022013-02-06 23:14:49 -0800512 mAppOp = appOp;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800513 mToken = token;
Craig Mautnera2d7b112012-08-21 15:12:20 -0700514 mOwnerUid = s.mUid;
Dianne Hackborne3f23a32013-03-01 13:25:35 -0800515 mWindowId = new IWindowId.Stub() {
516 @Override
517 public void registerFocusObserver(IWindowFocusObserver observer) {
518 WindowState.this.registerFocusObserver(observer);
519 }
520 @Override
521 public void unregisterFocusObserver(IWindowFocusObserver observer) {
522 WindowState.this.unregisterFocusObserver(observer);
523 }
524 @Override
525 public boolean isFocused() {
526 return WindowState.this.isFocused();
527 }
528 };
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800529 mAttrs.copyFrom(a);
530 mViewVisibility = viewVisibility;
Craig Mautner59c00972012-07-30 12:10:24 -0700531 mDisplayContent = displayContent;
Craig Mautnere7ae2502012-03-26 17:11:19 -0700532 mPolicy = mService.mPolicy;
533 mContext = mService.mContext;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800534 DeathRecipient deathRecipient = new DeathRecipient();
Dianne Hackborn9a230e02011-10-06 11:51:27 -0700535 mSeq = seq;
Adam Lesinski95c42972013-10-02 10:13:27 -0700536 mEnforceSizeCompat = (mAttrs.privateFlags & PRIVATE_FLAG_COMPATIBLE_WINDOW) != 0;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800537 if (WindowManagerService.localLOGV) Slog.v(
Craig Mautnerd87946b2012-03-29 18:00:19 -0700538 TAG, "Window " + this + " client=" + c.asBinder()
Craig Mautnerad09bcc2012-10-08 13:33:11 -0700539 + " token=" + token + " (" + mAttrs.token + ")" + " params=" + a);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800540 try {
541 c.asBinder().linkToDeath(deathRecipient, 0);
542 } catch (RemoteException e) {
543 mDeathRecipient = null;
544 mAttachedWindow = null;
545 mLayoutAttached = false;
546 mIsImWindow = false;
547 mIsWallpaper = false;
548 mIsFloatingLayer = false;
549 mBaseLayer = 0;
550 mSubLayer = 0;
Jeff Brown9302c872011-07-13 22:51:29 -0700551 mInputWindowHandle = null;
Craig Mautnera2c77052012-03-26 12:14:43 -0700552 mWinAnimator = null;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800553 return;
554 }
555 mDeathRecipient = deathRecipient;
556
557 if ((mAttrs.type >= FIRST_SUB_WINDOW &&
558 mAttrs.type <= LAST_SUB_WINDOW)) {
559 // The multiplier here is to reserve space for multiple
560 // windows in the same type layer.
Craig Mautnere7ae2502012-03-26 17:11:19 -0700561 mBaseLayer = mPolicy.windowTypeToLayerLw(
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800562 attachedWindow.mAttrs.type) * WindowManagerService.TYPE_LAYER_MULTIPLIER
563 + WindowManagerService.TYPE_LAYER_OFFSET;
Craig Mautnere7ae2502012-03-26 17:11:19 -0700564 mSubLayer = mPolicy.subWindowTypeToLayerLw(a.type);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800565 mAttachedWindow = attachedWindow;
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800566 if (DEBUG_ADD_REMOVE) Slog.v(TAG, "Adding " + this + " to " + mAttachedWindow);
takeda.masayuki18735092012-12-12 11:06:24 +0900567
tiger_huange2a98a72014-11-13 19:46:28 +0800568 final WindowList childWindows = mAttachedWindow.mChildWindows;
569 final int numChildWindows = childWindows.size();
570 if (numChildWindows == 0) {
571 childWindows.add(this);
takeda.masayuki18735092012-12-12 11:06:24 +0900572 } else {
tiger_huange2a98a72014-11-13 19:46:28 +0800573 boolean added = false;
574 for (int i = 0; i < numChildWindows; i++) {
575 final int childSubLayer = childWindows.get(i).mSubLayer;
576 if (mSubLayer < childSubLayer
577 || (mSubLayer == childSubLayer && childSubLayer < 0)) {
578 // We insert the child window into the list ordered by the sub-layer. For
579 // same sub-layers, the negative one should go below others; the positive
580 // one should go above others.
581 childWindows.add(i, this);
582 added = true;
takeda.masayuki18735092012-12-12 11:06:24 +0900583 break;
takeda.masayuki18735092012-12-12 11:06:24 +0900584 }
585 }
tiger_huange2a98a72014-11-13 19:46:28 +0800586 if (!added) {
587 childWindows.add(this);
takeda.masayuki18735092012-12-12 11:06:24 +0900588 }
589 }
590
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800591 mLayoutAttached = mAttrs.type !=
592 WindowManager.LayoutParams.TYPE_APPLICATION_ATTACHED_DIALOG;
593 mIsImWindow = attachedWindow.mAttrs.type == TYPE_INPUT_METHOD
594 || attachedWindow.mAttrs.type == TYPE_INPUT_METHOD_DIALOG;
595 mIsWallpaper = attachedWindow.mAttrs.type == TYPE_WALLPAPER;
596 mIsFloatingLayer = mIsImWindow || mIsWallpaper;
597 } else {
598 // The multiplier here is to reserve space for multiple
599 // windows in the same type layer.
Craig Mautnere7ae2502012-03-26 17:11:19 -0700600 mBaseLayer = mPolicy.windowTypeToLayerLw(a.type)
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800601 * WindowManagerService.TYPE_LAYER_MULTIPLIER
602 + WindowManagerService.TYPE_LAYER_OFFSET;
603 mSubLayer = 0;
604 mAttachedWindow = null;
605 mLayoutAttached = false;
606 mIsImWindow = mAttrs.type == TYPE_INPUT_METHOD
607 || mAttrs.type == TYPE_INPUT_METHOD_DIALOG;
608 mIsWallpaper = mAttrs.type == TYPE_WALLPAPER;
609 mIsFloatingLayer = mIsImWindow || mIsWallpaper;
610 }
611
612 WindowState appWin = this;
Robert Carr51a1b872015-12-08 14:03:13 -0800613 while (appWin.isChildWindow()) {
Craig Mautnera2c77052012-03-26 12:14:43 -0700614 appWin = appWin.mAttachedWindow;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800615 }
616 WindowToken appToken = appWin.mToken;
617 while (appToken.appWindowToken == null) {
618 WindowToken parent = mService.mTokenMap.get(appToken.token);
619 if (parent == null || appToken == parent) {
620 break;
621 }
622 appToken = parent;
623 }
624 mRootToken = appToken;
625 mAppToken = appToken.appWindowToken;
Craig Mautner19ab8282014-05-07 10:35:34 -0700626 if (mAppToken != null) {
627 final DisplayContent appDisplay = getDisplayContent();
628 mNotOnAppsDisplay = displayContent != appDisplay;
Wale Ogunwale6dfdfd62015-04-15 12:01:38 -0700629
630 if (mAppToken.showForAllUsers) {
631 // Windows for apps that can show for all users should also show when the
632 // device is locked.
633 mAttrs.flags |= FLAG_SHOW_WHEN_LOCKED;
634 }
Craig Mautner19ab8282014-05-07 10:35:34 -0700635 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800636
Craig Mautner322e4032012-07-13 13:35:20 -0700637 mWinAnimator = new WindowStateAnimator(this);
638 mWinAnimator.mAlpha = a.alpha;
639
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800640 mRequestedWidth = 0;
641 mRequestedHeight = 0;
Dianne Hackborn1743b642012-03-12 17:04:43 -0700642 mLastRequestedWidth = 0;
643 mLastRequestedHeight = 0;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800644 mXOffset = 0;
645 mYOffset = 0;
646 mLayer = 0;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800647 mInputWindowHandle = new InputWindowHandle(
Craig Mautner59c00972012-07-30 12:10:24 -0700648 mAppToken != null ? mAppToken.mInputApplicationHandle : null, this,
649 displayContent.getDisplayId());
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800650 }
651
652 void attach() {
653 if (WindowManagerService.localLOGV) Slog.v(
Craig Mautnerd87946b2012-03-29 18:00:19 -0700654 TAG, "Attaching " + this + " token=" + mToken
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800655 + ", list=" + mToken.windows);
656 mSession.windowAddedLocked();
657 }
658
Craig Mautnera2c77052012-03-26 12:14:43 -0700659 @Override
Dianne Hackbornf265ea92013-01-31 15:00:51 -0800660 public int getOwningUid() {
Dianne Hackbornc2293022013-02-06 23:14:49 -0800661 return mOwnerUid;
Dianne Hackbornf265ea92013-01-31 15:00:51 -0800662 }
663
664 @Override
665 public String getOwningPackage() {
666 return mAttrs.packageName;
667 }
668
Jorim Jaggif5834272016-04-04 20:25:41 -0700669 /**
670 * Subtracts the insets calculated by intersecting {@param layoutFrame} with {@param insetFrame}
671 * from {@param frame}. In other words, it applies the insets that would result if
672 * {@param frame} would be shifted to {@param layoutFrame} and then applying the insets from
Andrii Kuliandaea3572016-04-08 13:20:51 -0700673 * {@param insetFrame}. Also it respects {@param displayFrame} in case window has minimum
674 * width/height applied and insets should be overridden.
Jorim Jaggif5834272016-04-04 20:25:41 -0700675 */
Andrii Kuliandaea3572016-04-08 13:20:51 -0700676 private void subtractInsets(Rect frame, Rect layoutFrame, Rect insetFrame, Rect displayFrame) {
677 final int left = Math.max(0, insetFrame.left - Math.max(layoutFrame.left, displayFrame.left));
678 final int top = Math.max(0, insetFrame.top - Math.max(layoutFrame.top, displayFrame.top));
679 final int right = Math.max(0, Math.min(layoutFrame.right, displayFrame.right) - insetFrame.right);
680 final int bottom = Math.max(0, Math.min(layoutFrame.bottom, displayFrame.bottom) - insetFrame.bottom);
Jorim Jaggif5834272016-04-04 20:25:41 -0700681 frame.inset(left, top, right, bottom);
682 }
683
Dianne Hackbornf265ea92013-01-31 15:00:51 -0800684 @Override
Filip Gruszczynski2217f612015-05-26 11:32:08 -0700685 public void computeFrameLw(Rect pf, Rect df, Rect of, Rect cf, Rect vf, Rect dcf, Rect sf,
686 Rect osf) {
Wale Ogunwalec48a3542016-02-19 15:18:45 -0800687 if (mWillReplaceWindow && (mAnimatingExit || !mReplacingRemoveRequested)) {
Filip Gruszczynski55a309f2015-09-04 17:15:01 -0700688 // This window is being replaced and either already got information that it's being
689 // removed or we are still waiting for some information. Because of this we don't
690 // want to apply any more changes to it, so it remains in this state until new window
691 // appears.
692 return;
693 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800694 mHaveFrame = true;
695
Wale Ogunwale5a2f2cb2015-09-17 12:31:55 -0700696 final Task task = getTask();
Andrii Kulian933076d2016-03-29 17:04:42 -0700697 final boolean fullscreenTask = !isInMultiWindowMode();
Robert Carre6275582016-02-29 15:45:45 -0800698 final boolean windowsAreFloating = task != null && task.isFloating();
Wale Ogunwale79f268d2015-12-18 08:25:47 -0800699
Chong Zhangae35fef2016-03-16 15:56:55 -0700700 // If the task has temp inset bounds set, we have to make sure all its windows uses
701 // the temp inset frame. Otherwise different display frames get applied to the main
702 // window and the child window, making them misaligned.
703 if (fullscreenTask) {
704 mInsetFrame.setEmpty();
705 } else {
706 task.getTempInsetBounds(mInsetFrame);
707 }
708
Jorim Jaggif5834272016-04-04 20:25:41 -0700709 // Denotes the actual frame used to calculate the insets and to perform the layout. When
710 // resizing in docked mode, we'd like to freeze the layout, so we also need to freeze the
711 // insets temporarily. By the notion of a task having a different layout frame, we can
712 // achieve that while still moving the task around.
713 final Rect layoutContainingFrame;
714 final Rect layoutDisplayFrame;
715
716 // The offset from the layout containing frame to the actual containing frame.
717 final int layoutXDiff;
718 final int layoutYDiff;
Wale Ogunwale7cd4b012016-05-07 12:41:22 -0700719 if (fullscreenTask || layoutInParentFrame()) {
Wale Ogunwale79f268d2015-12-18 08:25:47 -0800720 // We use the parent frame as the containing frame for fullscreen and child windows
721 mContainingFrame.set(pf);
722 mDisplayFrame.set(df);
Jorim Jaggif5834272016-04-04 20:25:41 -0700723 layoutDisplayFrame = df;
724 layoutContainingFrame = pf;
725 layoutXDiff = 0;
726 layoutYDiff = 0;
Wale Ogunwale79f268d2015-12-18 08:25:47 -0800727 } else {
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700728 task.getBounds(mContainingFrame);
Jorim Jaggi0429f352015-12-22 16:29:16 +0100729 if (mAppToken != null && !mAppToken.mFrozenBounds.isEmpty()) {
730
731 // If the bounds are frozen, we still want to translate the window freely and only
732 // freeze the size.
733 Rect frozen = mAppToken.mFrozenBounds.peek();
734 mContainingFrame.right = mContainingFrame.left + frozen.width();
735 mContainingFrame.bottom = mContainingFrame.top + frozen.height();
736 }
Wale Ogunwalef9c81492015-02-25 18:06:17 -0800737 final WindowState imeWin = mService.mInputMethodWindow;
Robert Carrfc03b2b2016-03-31 15:22:02 -0700738 // IME is up and obscuring this window. Adjust the window position so it is visible.
739 if (imeWin != null && imeWin.isVisibleNow() && mService.mInputMethodTarget == this) {
740 if (windowsAreFloating && mContainingFrame.bottom > cf.bottom) {
741 // In freeform we want to move the top up directly.
742 // TODO: Investigate why this is cf not pf.
743 mContainingFrame.top -= mContainingFrame.bottom - cf.bottom;
744 } else if (mContainingFrame.bottom > pf.bottom) {
745 // But in docked we want to behave like fullscreen
746 // and behave as if the task were given smaller bounds
747 // for the purposes of layout.
748 mContainingFrame.bottom = pf.bottom;
749 }
Craig Mautnerc5a6e442013-06-05 17:22:35 -0700750 }
Skuhne81c524a2015-08-12 13:34:14 -0700751
Robert Carre6275582016-02-29 15:45:45 -0800752 if (windowsAreFloating) {
Chong Zhang65d15d02016-03-14 13:59:32 -0700753 // In floating modes (e.g. freeform, pinned) we have only to set the rectangle
754 // if it wasn't set already. No need to intersect it with the (visible)
Robert Carre6275582016-02-29 15:45:45 -0800755 // "content frame" since it is allowed to be outside the visible desktop.
Skuhne81c524a2015-08-12 13:34:14 -0700756 if (mContainingFrame.isEmpty()) {
757 mContainingFrame.set(cf);
758 }
Doris Liu06d582d2015-06-01 13:18:43 -0700759 }
Wale Ogunwale94596652015-02-06 19:27:34 -0800760 mDisplayFrame.set(mContainingFrame);
Jorim Jaggif5834272016-04-04 20:25:41 -0700761 layoutXDiff = !mInsetFrame.isEmpty() ? mInsetFrame.left - mContainingFrame.left : 0;
762 layoutYDiff = !mInsetFrame.isEmpty() ? mInsetFrame.top - mContainingFrame.top : 0;
763 layoutContainingFrame = !mInsetFrame.isEmpty() ? mInsetFrame : mContainingFrame;
Andrii Kuliandaea3572016-04-08 13:20:51 -0700764 mTmpRect.set(0, 0, mDisplayContent.getDisplayInfo().logicalWidth,
765 mDisplayContent.getDisplayInfo().logicalHeight);
766 subtractInsets(mDisplayFrame, layoutContainingFrame, df, mTmpRect);
Robert Carrfd2bd1b2016-04-07 13:52:43 -0700767 if (!layoutInParentFrame()) {
Andrii Kuliandaea3572016-04-08 13:20:51 -0700768 subtractInsets(mContainingFrame, layoutContainingFrame, pf, mTmpRect);
769 subtractInsets(mInsetFrame, layoutContainingFrame, pf, mTmpRect);
Robert Carrfd2bd1b2016-04-07 13:52:43 -0700770 }
Jorim Jaggif5834272016-04-04 20:25:41 -0700771 layoutDisplayFrame = df;
772 layoutDisplayFrame.intersect(layoutContainingFrame);
Craig Mautner967212c2013-04-13 21:10:58 -0700773 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800774
Craig Mautner967212c2013-04-13 21:10:58 -0700775 final int pw = mContainingFrame.width();
776 final int ph = mContainingFrame.height();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800777
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800778 if (!mParentFrame.equals(pf)) {
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800779 //Slog.i(TAG_WM, "Window " + this + " content frame from " + mParentFrame
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800780 // + " to " + pf);
781 mParentFrame.set(pf);
782 mContentChanged = true;
783 }
Dianne Hackborn1743b642012-03-12 17:04:43 -0700784 if (mRequestedWidth != mLastRequestedWidth || mRequestedHeight != mLastRequestedHeight) {
785 mLastRequestedWidth = mRequestedWidth;
786 mLastRequestedHeight = mRequestedHeight;
787 mContentChanged = true;
788 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800789
Craig Mautnereda67292013-04-28 13:50:14 -0700790 mOverscanFrame.set(of);
791 mContentFrame.set(cf);
792 mVisibleFrame.set(vf);
John Spurlock46646232013-09-30 22:32:42 -0400793 mDecorFrame.set(dcf);
Adrian Roosfa104232014-06-20 16:10:14 -0700794 mStableFrame.set(sf);
Filip Gruszczynski2217f612015-05-26 11:32:08 -0700795 final boolean hasOutsets = osf != null;
796 if (hasOutsets) {
797 mOutsetFrame.set(osf);
798 }
Dianne Hackbornc4aad012013-02-22 15:05:25 -0800799
Craig Mautnereda67292013-04-28 13:50:14 -0700800 final int fw = mFrame.width();
801 final int fh = mFrame.height();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800802
Jorim Jaggif5834272016-04-04 20:25:41 -0700803 applyGravityAndUpdateFrame(layoutContainingFrame, layoutDisplayFrame);
804
Filip Gruszczynskiaaf18112015-06-05 13:37:40 -0700805 // Calculate the outsets before the content frame gets shrinked to the window frame.
806 if (hasOutsets) {
807 mOutsets.set(Math.max(mContentFrame.left - mOutsetFrame.left, 0),
808 Math.max(mContentFrame.top - mOutsetFrame.top, 0),
809 Math.max(mOutsetFrame.right - mContentFrame.right, 0),
810 Math.max(mOutsetFrame.bottom - mContentFrame.bottom, 0));
811 } else {
812 mOutsets.set(0, 0, 0, 0);
813 }
814
Craig Mautnera248eee2013-05-07 11:41:27 -0700815 // Make sure the content and visible frames are inside of the
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800816 // final window frame.
Robert Carre6275582016-02-29 15:45:45 -0800817 if (windowsAreFloating && !mFrame.isEmpty()) {
Skuhne81c524a2015-08-12 13:34:14 -0700818 // Keep the frame out of the blocked system area, limit it in size to the content area
819 // and make sure that there is always a minimum visible so that the user can drag it
820 // into a usable area..
821 final int height = Math.min(mFrame.height(), mContentFrame.height());
822 final int width = Math.min(mContentFrame.width(), mFrame.width());
Wale Ogunwale231b06e2015-09-16 12:03:09 -0700823 final DisplayMetrics displayMetrics = getDisplayContent().getDisplayMetrics();
Filip Gruszczynski0689ae92015-10-01 12:30:31 -0700824 final int minVisibleHeight = WindowManagerService.dipToPixel(
825 MINIMUM_VISIBLE_HEIGHT_IN_DP, displayMetrics);
826 final int minVisibleWidth = WindowManagerService.dipToPixel(
827 MINIMUM_VISIBLE_WIDTH_IN_DP, displayMetrics);
Skuhne81c524a2015-08-12 13:34:14 -0700828 final int top = Math.max(mContentFrame.top,
829 Math.min(mFrame.top, mContentFrame.bottom - minVisibleHeight));
830 final int left = Math.max(mContentFrame.left + minVisibleWidth - width,
831 Math.min(mFrame.left, mContentFrame.right - minVisibleWidth));
832 mFrame.set(left, top, left + width, top + height);
833 mContentFrame.set(mFrame);
834 mVisibleFrame.set(mContentFrame);
835 mStableFrame.set(mContentFrame);
Filip Gruszczynski466f3212015-09-21 17:57:57 -0700836 } else if (mAttrs.type == TYPE_DOCK_DIVIDER) {
Jorim Jaggi192086e2016-03-11 17:17:03 +0100837 mDisplayContent.getDockedDividerController().positionDockedStackedDivider(mFrame);
838 mContentFrame.set(mFrame);
839 if (!mFrame.equals(mLastFrame)) {
840 mMovedByResize = true;
Filip Gruszczynskiae100802015-11-11 15:58:03 -0800841 }
Skuhne81c524a2015-08-12 13:34:14 -0700842 } else {
Jorim Jaggi656f6502016-04-11 21:08:17 -0700843 mContentFrame.set(Math.max(mContentFrame.left, mFrame.left),
844 Math.max(mContentFrame.top, mFrame.top),
845 Math.min(mContentFrame.right, mFrame.right),
846 Math.min(mContentFrame.bottom, mFrame.bottom));
Dianne Hackbornc4aad012013-02-22 15:05:25 -0800847
Jorim Jaggi656f6502016-04-11 21:08:17 -0700848 mVisibleFrame.set(Math.max(mVisibleFrame.left, mFrame.left),
849 Math.max(mVisibleFrame.top, mFrame.top),
850 Math.min(mVisibleFrame.right, mFrame.right),
851 Math.min(mVisibleFrame.bottom, mFrame.bottom));
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800852
Jorim Jaggi656f6502016-04-11 21:08:17 -0700853 mStableFrame.set(Math.max(mStableFrame.left, mFrame.left),
854 Math.max(mStableFrame.top, mFrame.top),
855 Math.min(mStableFrame.right, mFrame.right),
856 Math.min(mStableFrame.bottom, mFrame.bottom));
Skuhne81c524a2015-08-12 13:34:14 -0700857 }
Adrian Roosfa104232014-06-20 16:10:14 -0700858
Jorim Jaggi899327f2016-02-25 20:44:18 -0500859 if (fullscreenTask && !windowsAreFloating) {
860 // Windows that are not fullscreen can be positioned outside of the display frame,
861 // but that is not a reason to provide them with overscan insets.
Jorim Jaggif5834272016-04-04 20:25:41 -0700862 mOverscanInsets.set(Math.max(mOverscanFrame.left - layoutContainingFrame.left, 0),
863 Math.max(mOverscanFrame.top - layoutContainingFrame.top, 0),
864 Math.max(layoutContainingFrame.right - mOverscanFrame.right, 0),
865 Math.max(layoutContainingFrame.bottom - mOverscanFrame.bottom, 0));
Filip Gruszczynski01ef404d52016-01-28 18:14:27 -0800866 }
Craig Mautnereda67292013-04-28 13:50:14 -0700867
Jorim Jaggi81fe2d12015-12-21 14:45:18 +0100868 if (mAttrs.type == TYPE_DOCK_DIVIDER) {
Jorim Jaggi81fe2d12015-12-21 14:45:18 +0100869 // For the docked divider, we calculate the stable insets like a full-screen window
870 // so it can use it to calculate the snap positions.
871 mStableInsets.set(Math.max(mStableFrame.left - mDisplayFrame.left, 0),
872 Math.max(mStableFrame.top - mDisplayFrame.top, 0),
873 Math.max(mDisplayFrame.right - mStableFrame.right, 0),
874 Math.max(mDisplayFrame.bottom - mStableFrame.bottom, 0));
Jorim Jaggi2e95a482016-01-14 17:36:55 -0800875
876 // The divider doesn't care about insets in any case, so set it to empty so we don't
877 // trigger a relayout when moving it.
878 mContentInsets.setEmpty();
879 mVisibleInsets.setEmpty();
Jorim Jaggi81fe2d12015-12-21 14:45:18 +0100880 } else {
Andrii Kuliand9003372016-04-04 17:46:59 -0700881 getDisplayContent().getLogicalDisplayRect(mTmpRect);
Andrii Kuliana9d168c2016-03-23 13:19:32 -0700882 // Override right and/or bottom insets in case if the frame doesn't fit the screen in
883 // non-fullscreen mode.
Jorim Jaggi656f6502016-04-11 21:08:17 -0700884 boolean overrideRightInset = !fullscreenTask && mFrame.right > mTmpRect.right;
885 boolean overrideBottomInset = !fullscreenTask && mFrame.bottom > mTmpRect.bottom;
886 mContentInsets.set(mContentFrame.left - mFrame.left,
887 mContentFrame.top - mFrame.top,
Andrii Kuliand9003372016-04-04 17:46:59 -0700888 overrideRightInset ? mTmpRect.right - mContentFrame.right
Jorim Jaggi656f6502016-04-11 21:08:17 -0700889 : mFrame.right - mContentFrame.right,
Andrii Kuliand9003372016-04-04 17:46:59 -0700890 overrideBottomInset ? mTmpRect.bottom - mContentFrame.bottom
Jorim Jaggi656f6502016-04-11 21:08:17 -0700891 : mFrame.bottom - mContentFrame.bottom);
Jorim Jaggi2e95a482016-01-14 17:36:55 -0800892
Jorim Jaggi656f6502016-04-11 21:08:17 -0700893 mVisibleInsets.set(mVisibleFrame.left - mFrame.left,
894 mVisibleFrame.top - mFrame.top,
Andrii Kuliand9003372016-04-04 17:46:59 -0700895 overrideRightInset ? mTmpRect.right - mVisibleFrame.right
Jorim Jaggi656f6502016-04-11 21:08:17 -0700896 : mFrame.right - mVisibleFrame.right,
Andrii Kuliand9003372016-04-04 17:46:59 -0700897 overrideBottomInset ? mTmpRect.bottom - mVisibleFrame.bottom
Jorim Jaggi656f6502016-04-11 21:08:17 -0700898 : mFrame.bottom - mVisibleFrame.bottom);
Jorim Jaggi2e95a482016-01-14 17:36:55 -0800899
Jorim Jaggi656f6502016-04-11 21:08:17 -0700900 mStableInsets.set(Math.max(mStableFrame.left - mFrame.left, 0),
901 Math.max(mStableFrame.top - mFrame.top, 0),
Andrii Kuliand9003372016-04-04 17:46:59 -0700902 overrideRightInset ? Math.max(mTmpRect.right - mStableFrame.right, 0)
Jorim Jaggi656f6502016-04-11 21:08:17 -0700903 : Math.max(mFrame.right - mStableFrame.right, 0),
Andrii Kuliand9003372016-04-04 17:46:59 -0700904 overrideBottomInset ? Math.max(mTmpRect.bottom - mStableFrame.bottom, 0)
Jorim Jaggi656f6502016-04-11 21:08:17 -0700905 : Math.max(mFrame.bottom - mStableFrame.bottom, 0));
Jorim Jaggi81fe2d12015-12-21 14:45:18 +0100906 }
Adrian Roosfa104232014-06-20 16:10:14 -0700907
Jorim Jaggi656f6502016-04-11 21:08:17 -0700908 // Offset the actual frame by the amount layout frame is off.
909 mFrame.offset(-layoutXDiff, -layoutYDiff);
910 mCompatFrame.offset(-layoutXDiff, -layoutYDiff);
Jorim Jaggif5834272016-04-04 20:25:41 -0700911 mContentFrame.offset(-layoutXDiff, -layoutYDiff);
912 mVisibleFrame.offset(-layoutXDiff, -layoutYDiff);
913 mStableFrame.offset(-layoutXDiff, -layoutYDiff);
914
Craig Mautnereda67292013-04-28 13:50:14 -0700915 mCompatFrame.set(mFrame);
Dianne Hackborne2515ee2011-04-27 18:52:56 -0400916 if (mEnforceSizeCompat) {
Dianne Hackbornffb3d932011-05-17 17:44:51 -0700917 // If there is a size compatibility scale being applied to the
918 // window, we need to apply this to its insets so that they are
919 // reported to the app in its coordinate space.
Craig Mautnereda67292013-04-28 13:50:14 -0700920 mOverscanInsets.scale(mInvGlobalScale);
921 mContentInsets.scale(mInvGlobalScale);
922 mVisibleInsets.scale(mInvGlobalScale);
Adrian Roosfa104232014-06-20 16:10:14 -0700923 mStableInsets.scale(mInvGlobalScale);
Filip Gruszczynski2217f612015-05-26 11:32:08 -0700924 mOutsets.scale(mInvGlobalScale);
Dianne Hackbornffb3d932011-05-17 17:44:51 -0700925
926 // Also the scaled frame that we report to the app needs to be
927 // adjusted to be in its coordinate space.
928 mCompatFrame.scale(mInvGlobalScale);
Dianne Hackborne2515ee2011-04-27 18:52:56 -0400929 }
930
Craig Mautnereda67292013-04-28 13:50:14 -0700931 if (mIsWallpaper && (fw != mFrame.width() || fh != mFrame.height())) {
Craig Mautnerdf88d732014-01-27 09:21:32 -0800932 final DisplayContent displayContent = getDisplayContent();
933 if (displayContent != null) {
934 final DisplayInfo displayInfo = displayContent.getDisplayInfo();
Wale Ogunwalee8069dc2015-08-18 09:52:01 -0700935 mService.mWallpaperControllerLocked.updateWallpaperOffset(
936 this, displayInfo.logicalWidth, displayInfo.logicalHeight, false);
Craig Mautnerdf88d732014-01-27 09:21:32 -0800937 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800938 }
939
Craig Mautnerb3b36ba2013-05-20 13:21:10 -0700940 if (DEBUG_LAYOUT || WindowManagerService.localLOGV) Slog.v(TAG,
941 "Resolving (mRequestedWidth="
942 + mRequestedWidth + ", mRequestedheight="
943 + mRequestedHeight + ") to" + " (pw=" + pw + ", ph=" + ph
944 + "): frame=" + mFrame.toShortString()
945 + " ci=" + mContentInsets.toShortString()
Adrian Roosfa104232014-06-20 16:10:14 -0700946 + " vi=" + mVisibleInsets.toShortString()
Andrii Kuliana9d168c2016-03-23 13:19:32 -0700947 + " si=" + mStableInsets.toShortString()
Filip Gruszczynski2217f612015-05-26 11:32:08 -0700948 + " of=" + mOutsets.toShortString());
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800949 }
950
Craig Mautnera2c77052012-03-26 12:14:43 -0700951 @Override
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800952 public Rect getFrameLw() {
953 return mFrame;
954 }
955
Craig Mautnera2c77052012-03-26 12:14:43 -0700956 @Override
Filip Gruszczynski2a6a2c22015-10-14 12:00:53 -0700957 public Point getShownPositionLw() {
958 return mShownPosition;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800959 }
960
Craig Mautnera2c77052012-03-26 12:14:43 -0700961 @Override
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800962 public Rect getDisplayFrameLw() {
963 return mDisplayFrame;
964 }
965
Craig Mautnera2c77052012-03-26 12:14:43 -0700966 @Override
Dianne Hackbornc4aad012013-02-22 15:05:25 -0800967 public Rect getOverscanFrameLw() {
968 return mOverscanFrame;
969 }
970
971 @Override
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800972 public Rect getContentFrameLw() {
973 return mContentFrame;
974 }
975
Craig Mautnera2c77052012-03-26 12:14:43 -0700976 @Override
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800977 public Rect getVisibleFrameLw() {
978 return mVisibleFrame;
979 }
980
Craig Mautnera2c77052012-03-26 12:14:43 -0700981 @Override
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800982 public boolean getGivenInsetsPendingLw() {
983 return mGivenInsetsPending;
984 }
985
Craig Mautnera2c77052012-03-26 12:14:43 -0700986 @Override
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800987 public Rect getGivenContentInsetsLw() {
988 return mGivenContentInsets;
989 }
990
Craig Mautnera2c77052012-03-26 12:14:43 -0700991 @Override
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800992 public Rect getGivenVisibleInsetsLw() {
993 return mGivenVisibleInsets;
994 }
995
Craig Mautnera2c77052012-03-26 12:14:43 -0700996 @Override
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800997 public WindowManager.LayoutParams getAttrs() {
998 return mAttrs;
999 }
1000
Craig Mautner812d2ca2012-09-27 15:35:34 -07001001 @Override
Dianne Hackborn73ab6a42011-12-13 11:16:23 -08001002 public boolean getNeedsMenuLw(WindowManagerPolicy.WindowState bottom) {
1003 int index = -1;
1004 WindowState ws = this;
Craig Mautner59c00972012-07-30 12:10:24 -07001005 WindowList windows = getWindowList();
Dianne Hackborn73ab6a42011-12-13 11:16:23 -08001006 while (true) {
Wale Ogunwale393b1c12014-10-18 16:22:01 -07001007 if (ws.mAttrs.needsMenuKey != WindowManager.LayoutParams.NEEDS_MENU_UNSET) {
1008 return ws.mAttrs.needsMenuKey == WindowManager.LayoutParams.NEEDS_MENU_SET_TRUE;
Dianne Hackborn73ab6a42011-12-13 11:16:23 -08001009 }
1010 // If we reached the bottom of the range of windows we are considering,
1011 // assume no menu is needed.
1012 if (ws == bottom) {
1013 return false;
1014 }
1015 // The current window hasn't specified whether menu key is needed;
1016 // look behind it.
1017 // First, we may need to determine the starting position.
1018 if (index < 0) {
Craig Mautner59c00972012-07-30 12:10:24 -07001019 index = windows.indexOf(ws);
Dianne Hackborn73ab6a42011-12-13 11:16:23 -08001020 }
1021 index--;
1022 if (index < 0) {
1023 return false;
1024 }
Craig Mautner59c00972012-07-30 12:10:24 -07001025 ws = windows.get(index);
Dianne Hackborn73ab6a42011-12-13 11:16:23 -08001026 }
1027 }
1028
Craig Mautner19d59bc2012-09-04 11:15:56 -07001029 @Override
Dianne Hackborn9a230e02011-10-06 11:51:27 -07001030 public int getSystemUiVisibility() {
1031 return mSystemUiVisibility;
1032 }
1033
Craig Mautner19d59bc2012-09-04 11:15:56 -07001034 @Override
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001035 public int getSurfaceLayer() {
1036 return mLayer;
1037 }
1038
Craig Mautner812d2ca2012-09-27 15:35:34 -07001039 @Override
Selim Cinekd6623612015-05-22 18:56:22 -07001040 public int getBaseType() {
1041 WindowState win = this;
Robert Carr51a1b872015-12-08 14:03:13 -08001042 while (win.isChildWindow()) {
Selim Cinekd6623612015-05-22 18:56:22 -07001043 win = win.mAttachedWindow;
1044 }
1045 return win.mAttrs.type;
1046 }
1047
1048 @Override
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001049 public IApplicationToken getAppToken() {
1050 return mAppToken != null ? mAppToken.appToken : null;
1051 }
Craig Mautner19d59bc2012-09-04 11:15:56 -07001052
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001053 @Override
1054 public boolean isVoiceInteraction() {
Filip Gruszczynski0689ae92015-10-01 12:30:31 -07001055 return mAppToken != null && mAppToken.voiceInteraction;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001056 }
1057
Craig Mautner4c5eb222013-11-18 12:59:05 -08001058 boolean setInsetsChanged() {
1059 mOverscanInsetsChanged |= !mLastOverscanInsets.equals(mOverscanInsets);
1060 mContentInsetsChanged |= !mLastContentInsets.equals(mContentInsets);
1061 mVisibleInsetsChanged |= !mLastVisibleInsets.equals(mVisibleInsets);
Adrian Roosfa104232014-06-20 16:10:14 -07001062 mStableInsetsChanged |= !mLastStableInsets.equals(mStableInsets);
Filip Gruszczynski2217f612015-05-26 11:32:08 -07001063 mOutsetsChanged |= !mLastOutsets.equals(mOutsets);
1064 return mOverscanInsetsChanged || mContentInsetsChanged || mVisibleInsetsChanged
1065 || mOutsetsChanged;
Craig Mautner4c5eb222013-11-18 12:59:05 -08001066 }
1067
Craig Mautnerdf88d732014-01-27 09:21:32 -08001068 public DisplayContent getDisplayContent() {
Chad Jonesf391ebc2014-06-12 17:45:05 -07001069 if (mAppToken == null || mNotOnAppsDisplay) {
Craig Mautnerbe634952014-06-12 13:39:24 -07001070 return mDisplayContent;
1071 }
1072 final TaskStack stack = getStack();
1073 return stack == null ? mDisplayContent : stack.getDisplayContent();
Craig Mautnerdf88d732014-01-27 09:21:32 -08001074 }
1075
Chong Zhang09b21ef2015-09-14 10:20:21 -07001076 public DisplayInfo getDisplayInfo() {
1077 final DisplayContent displayContent = getDisplayContent();
1078 return displayContent != null ? displayContent.getDisplayInfo() : null;
1079 }
1080
Craig Mautner19d59bc2012-09-04 11:15:56 -07001081 public int getDisplayId() {
Craig Mautnerdf88d732014-01-27 09:21:32 -08001082 final DisplayContent displayContent = getDisplayContent();
1083 if (displayContent == null) {
1084 return -1;
1085 }
1086 return displayContent.getDisplayId();
Craig Mautner19d59bc2012-09-04 11:15:56 -07001087 }
1088
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07001089 Task getTask() {
Wale Ogunwale5a2f2cb2015-09-17 12:31:55 -07001090 return mAppToken != null ? mAppToken.mTask : null;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07001091 }
1092
1093 TaskStack getStack() {
1094 Task task = getTask();
1095 if (task != null) {
1096 if (task.mStack != null) {
1097 return task.mStack;
Craig Mautnerf06b8c12013-04-18 14:27:28 -07001098 }
Craig Mautnerd9a22882013-03-16 15:00:36 -07001099 }
Filip Gruszczynski0689ae92015-10-01 12:30:31 -07001100 // Some system windows (e.g. "Power off" dialog) don't have a task, but we would still
1101 // associate them with some stack to enable dimming.
1102 return mAttrs.type >= WindowManager.LayoutParams.FIRST_SYSTEM_WINDOW
1103 && mDisplayContent != null ? mDisplayContent.getHomeStack() : null;
Craig Mautnerd9a22882013-03-16 15:00:36 -07001104 }
1105
Skuhnef932e562015-08-20 12:07:30 -07001106 /**
Wale Ogunwale61b009e2015-09-16 15:43:05 -07001107 * Retrieves the visible bounds of the window.
Skuhnef932e562015-08-20 12:07:30 -07001108 * @param bounds The rect which gets the bounds.
Skuhnef932e562015-08-20 12:07:30 -07001109 */
Chong Zhang4c9ba52a2015-11-10 18:36:33 -08001110 void getVisibleBounds(Rect bounds) {
Wale Ogunwaleb1faf602016-01-27 09:12:31 -08001111 final Task task = getTask();
1112 boolean intersectWithStackBounds = task != null && task.cropWindowsToStackBounds();
Wale Ogunwale61b009e2015-09-16 15:43:05 -07001113 bounds.setEmpty();
Wale Ogunwale2b19b602015-09-18 15:14:59 -07001114 mTmpRect.setEmpty();
1115 if (intersectWithStackBounds) {
Wale Ogunwaleb1faf602016-01-27 09:12:31 -08001116 final TaskStack stack = task.mStack;
Wale Ogunwale61b009e2015-09-16 15:43:05 -07001117 if (stack != null) {
Chong Zhang4c9ba52a2015-11-10 18:36:33 -08001118 stack.getDimBounds(mTmpRect);
Wale Ogunwale2b19b602015-09-18 15:14:59 -07001119 } else {
1120 intersectWithStackBounds = false;
Wale Ogunwale61b009e2015-09-16 15:43:05 -07001121 }
1122 }
Wale Ogunwale2b19b602015-09-18 15:14:59 -07001123
Chong Zhang9184ec62015-09-24 12:32:21 -07001124 bounds.set(mVisibleFrame);
1125 if (intersectWithStackBounds) {
1126 bounds.intersect(mTmpRect);
Wale Ogunwale2b19b602015-09-18 15:14:59 -07001127 }
1128
Wale Ogunwale61b009e2015-09-16 15:43:05 -07001129 if (bounds.isEmpty()) {
1130 bounds.set(mFrame);
Wale Ogunwale2b19b602015-09-18 15:14:59 -07001131 if (intersectWithStackBounds) {
1132 bounds.intersect(mTmpRect);
1133 }
Craig Mautnerbdc748af2013-12-02 14:08:25 -08001134 return;
Craig Mautner4cd0c13f2013-04-16 15:55:52 -07001135 }
Craig Mautner4cd0c13f2013-04-16 15:55:52 -07001136 }
1137
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001138 public long getInputDispatchingTimeoutNanos() {
1139 return mAppToken != null
1140 ? mAppToken.inputDispatchingTimeoutNanos
1141 : WindowManagerService.DEFAULT_INPUT_DISPATCHING_TIMEOUT_NANOS;
1142 }
1143
Craig Mautnere8552142012-11-07 13:55:47 -08001144 @Override
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001145 public boolean hasAppShownWindows() {
Craig Mautnerf4120952012-06-21 18:25:39 -07001146 return mAppToken != null && (mAppToken.firstWindowDrawn || mAppToken.startingDisplayed);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001147 }
1148
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001149 boolean isIdentityMatrix(float dsdx, float dtdx, float dsdy, float dtdy) {
1150 if (dsdx < .99999f || dsdx > 1.00001f) return false;
1151 if (dtdy < .99999f || dtdy > 1.00001f) return false;
1152 if (dtdx < -.000001f || dtdx > .000001f) return false;
1153 if (dsdy < -.000001f || dsdy > .000001f) return false;
1154 return true;
1155 }
1156
Dianne Hackborne2515ee2011-04-27 18:52:56 -04001157 void prelayout() {
1158 if (mEnforceSizeCompat) {
1159 mGlobalScale = mService.mCompatibleScreenScale;
Dianne Hackbornffb3d932011-05-17 17:44:51 -07001160 mInvGlobalScale = 1/mGlobalScale;
Dianne Hackborne2515ee2011-04-27 18:52:56 -04001161 } else {
Dianne Hackbornffb3d932011-05-17 17:44:51 -07001162 mGlobalScale = mInvGlobalScale = 1;
Dianne Hackborne2515ee2011-04-27 18:52:56 -04001163 }
1164 }
1165
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001166 /**
Wale Ogunwale329b7e52016-01-15 15:00:57 -08001167 * Does the minimal check for visibility. Callers generally want to use one of the public
1168 * methods as they perform additional checks on the app token.
1169 * TODO: See if there are other places we can use this check below instead of duplicating...
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001170 */
Wale Ogunwale329b7e52016-01-15 15:00:57 -08001171 private boolean isVisibleUnchecked() {
Craig Mautnerc8bc97e2012-04-02 12:54:54 -07001172 return mHasSurface && mPolicyVisibility && !mAttachedHidden
Wale Ogunwalec48a3542016-02-19 15:18:45 -08001173 && !mAnimatingExit && !mDestroying && (!mIsWallpaper || mWallpaperVisible);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001174 }
1175
1176 /**
Wale Ogunwale329b7e52016-01-15 15:00:57 -08001177 * Is this window visible? It is not visible if there is no surface, or we are in the process
1178 * of running an exit animation that will remove the surface, or its app token has been hidden.
1179 */
1180 @Override
1181 public boolean isVisibleLw() {
1182 return (mAppToken == null || !mAppToken.hiddenRequested) && isVisibleUnchecked();
1183 }
1184
1185 /**
1186 * Like {@link #isVisibleLw}, but also counts a window that is currently "hidden" behind the
1187 * keyguard as visible. This allows us to apply things like window flags that impact the
1188 * keyguard. XXX I am starting to think we need to have ANOTHER visibility flag for this
1189 * "hidden behind keyguard" state rather than overloading mPolicyVisibility. Ungh.
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001190 */
Craig Mautner88400d32012-09-30 12:35:45 -07001191 @Override
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001192 public boolean isVisibleOrBehindKeyguardLw() {
Wale Ogunwale329b7e52016-01-15 15:00:57 -08001193 if (mRootToken.waitingToShow && mService.mAppTransition.isTransitionSet()) {
Dianne Hackbornbc1aa7b2011-09-20 11:20:31 -07001194 return false;
1195 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001196 final AppWindowToken atoken = mAppToken;
Filip Gruszczynski0689ae92015-10-01 12:30:31 -07001197 final boolean animating = atoken != null && atoken.mAppAnimator.animation != null;
Wale Ogunwalec48a3542016-02-19 15:18:45 -08001198 return mHasSurface && !mDestroying && !mAnimatingExit
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001199 && (atoken == null ? mPolicyVisibility : !atoken.hiddenRequested)
Wale Ogunwale329b7e52016-01-15 15:00:57 -08001200 && ((!mAttachedHidden && mViewVisibility == View.VISIBLE && !mRootToken.hidden)
Craig Mautnera2c77052012-03-26 12:14:43 -07001201 || mWinAnimator.mAnimation != null || animating);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001202 }
1203
1204 /**
Wale Ogunwale329b7e52016-01-15 15:00:57 -08001205 * Is this window visible, ignoring its app token? It is not visible if there is no surface,
1206 * or we are in the process of running an exit animation that will remove the surface.
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001207 */
1208 public boolean isWinVisibleLw() {
Wale Ogunwale329b7e52016-01-15 15:00:57 -08001209 return (mAppToken == null || !mAppToken.hiddenRequested || mAppToken.mAppAnimator.animating)
1210 && isVisibleUnchecked();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001211 }
1212
1213 /**
Wale Ogunwale329b7e52016-01-15 15:00:57 -08001214 * The same as isVisible(), but follows the current hidden state of the associated app token,
1215 * not the pending requested hidden state.
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001216 */
1217 boolean isVisibleNow() {
Wale Ogunwale329b7e52016-01-15 15:00:57 -08001218 return (!mRootToken.hidden || mAttrs.type == TYPE_APPLICATION_STARTING)
1219 && isVisibleUnchecked();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001220 }
1221
1222 /**
1223 * Can this window possibly be a drag/drop target? The test here is
1224 * a combination of the above "visible now" with the check that the
1225 * Input Manager uses when discarding windows from input consideration.
1226 */
1227 boolean isPotentialDragTarget() {
Jeff Browncc4f7db2011-08-30 20:34:48 -07001228 return isVisibleNow() && !mRemoved
1229 && mInputChannel != null && mInputWindowHandle != null;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001230 }
1231
1232 /**
1233 * Same as isVisible(), but we also count it as visible between the
1234 * call to IWindowSession.add() and the first relayout().
1235 */
1236 boolean isVisibleOrAdding() {
1237 final AppWindowToken atoken = mAppToken;
Craig Mautnerbf08af32012-05-16 19:43:42 -07001238 return (mHasSurface || (!mRelayoutCalled && mViewVisibility == View.VISIBLE))
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001239 && mPolicyVisibility && !mAttachedHidden
1240 && (atoken == null || !atoken.hiddenRequested)
Wale Ogunwalec48a3542016-02-19 15:18:45 -08001241 && !mAnimatingExit && !mDestroying;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001242 }
1243
1244 /**
1245 * Is this window currently on-screen? It is on-screen either if it
1246 * is visible or it is currently running an animation before no longer
1247 * being visible.
1248 */
1249 boolean isOnScreen() {
Jorim Jaggi44f60cc2014-11-07 20:33:51 +01001250 return mPolicyVisibility && isOnScreenIgnoringKeyguard();
1251 }
1252
1253 /**
1254 * Like isOnScreen(), but ignores any force hiding of the window due
1255 * to the keyguard.
1256 */
1257 boolean isOnScreenIgnoringKeyguard() {
1258 if (!mHasSurface || mDestroying) {
Craig Mautnerc8bc97e2012-04-02 12:54:54 -07001259 return false;
1260 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001261 final AppWindowToken atoken = mAppToken;
1262 if (atoken != null) {
Craig Mautnerc8bc97e2012-04-02 12:54:54 -07001263 return ((!mAttachedHidden && !atoken.hiddenRequested)
Craig Mautnerccc9e9b2012-12-11 09:40:34 -08001264 || mWinAnimator.mAnimation != null || atoken.mAppAnimator.animation != null);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001265 }
Craig Mautnerc8bc97e2012-04-02 12:54:54 -07001266 return !mAttachedHidden || mWinAnimator.mAnimation != null;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001267 }
1268
1269 /**
Chong Zhang8e4bda92016-05-04 15:08:18 -07001270 * Whether this window's drawn state might affect the drawn states of the app token.
1271 *
1272 * @param visibleOnly Whether we should consider only the windows that's currently
1273 * visible in layout. If true, windows that has not relayout to VISIBLE
1274 * would always return false.
1275 *
1276 * @return true if the window should be considered while evaluating allDrawn flags.
1277 */
1278 boolean mightAffectAllDrawn(boolean visibleOnly) {
Chong Zhange292eb32016-05-21 09:23:55 -07001279 final boolean isViewVisible = (mAppToken == null || !mAppToken.clientHidden)
1280 && (mViewVisibility == View.VISIBLE) && !mWindowRemovalAllowed;
Chong Zhang8e4bda92016-05-04 15:08:18 -07001281 return (isOnScreenIgnoringKeyguard() && (!visibleOnly || isViewVisible)
1282 || mWinAnimator.mAttrType == TYPE_BASE_APPLICATION)
1283 && !mAnimatingExit && !mDestroying;
1284 }
1285
1286 /**
1287 * Whether this window is "interesting" when evaluating allDrawn. If it's interesting,
1288 * it must be drawn before allDrawn can become true.
1289 */
1290 boolean isInteresting() {
1291 return mAppToken != null && !mAppDied
1292 && (!mAppToken.mAppAnimator.freezingScreen || !mAppFreezing);
1293 }
1294
1295 /**
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001296 * Like isOnScreen(), but we don't return true if the window is part
1297 * of a transition that has not yet been started.
1298 */
1299 boolean isReadyForDisplay() {
Filip Gruszczynski0689ae92015-10-01 12:30:31 -07001300 if (mRootToken.waitingToShow && mService.mAppTransition.isTransitionSet()) {
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001301 return false;
1302 }
Craig Mautnerc8bc97e2012-04-02 12:54:54 -07001303 return mHasSurface && mPolicyVisibility && !mDestroying
Wale Ogunwale329b7e52016-01-15 15:00:57 -08001304 && ((!mAttachedHidden && mViewVisibility == View.VISIBLE && !mRootToken.hidden)
Craig Mautnera2c77052012-03-26 12:14:43 -07001305 || mWinAnimator.mAnimation != null
Craig Mautner59431632012-04-04 11:56:44 -07001306 || ((mAppToken != null) && (mAppToken.mAppAnimator.animation != null)));
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001307 }
1308
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001309 /**
Dianne Hackborn6e2281d2012-06-19 17:48:32 -07001310 * Like isReadyForDisplay(), but ignores any force hiding of the window due
1311 * to the keyguard.
1312 */
1313 boolean isReadyForDisplayIgnoringKeyguard() {
Craig Mautner164d4bb2012-11-26 13:51:23 -08001314 if (mRootToken.waitingToShow && mService.mAppTransition.isTransitionSet()) {
Dianne Hackborn6e2281d2012-06-19 17:48:32 -07001315 return false;
1316 }
1317 final AppWindowToken atoken = mAppToken;
1318 if (atoken == null && !mPolicyVisibility) {
1319 // If this is not an app window, and the policy has asked to force
1320 // hide, then we really do want to hide.
1321 return false;
1322 }
1323 return mHasSurface && !mDestroying
Wale Ogunwale329b7e52016-01-15 15:00:57 -08001324 && ((!mAttachedHidden && mViewVisibility == View.VISIBLE && !mRootToken.hidden)
Dianne Hackborn6e2281d2012-06-19 17:48:32 -07001325 || mWinAnimator.mAnimation != null
Craig Mautner9c5bf3b2012-06-22 15:19:13 -07001326 || ((atoken != null) && (atoken.mAppAnimator.animation != null)
1327 && !mWinAnimator.isDummyAnimation()));
Dianne Hackborn6e2281d2012-06-19 17:48:32 -07001328 }
1329
1330 /**
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001331 * Like isOnScreen, but returns false if the surface hasn't yet
1332 * been drawn.
1333 */
Craig Mautnere6f7d5052012-10-08 10:34:17 -07001334 @Override
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001335 public boolean isDisplayedLw() {
1336 final AppWindowToken atoken = mAppToken;
Craig Mautnerbf90eaa2012-03-15 11:28:53 -07001337 return isDrawnLw() && mPolicyVisibility
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001338 && ((!mAttachedHidden &&
1339 (atoken == null || !atoken.hiddenRequested))
Craig Mautnere6f7d5052012-10-08 10:34:17 -07001340 || mWinAnimator.mAnimating
1341 || (atoken != null && atoken.mAppAnimator.animation != null));
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001342 }
1343
Dianne Hackborn5c58de32012-04-28 19:52:37 -07001344 /**
Craig Mautnerae446592012-12-06 19:05:05 -08001345 * Return true if this window or its app token is currently animating.
Dianne Hackborn5c58de32012-04-28 19:52:37 -07001346 */
Craig Mautnere6f7d5052012-10-08 10:34:17 -07001347 @Override
Dianne Hackborn5c58de32012-04-28 19:52:37 -07001348 public boolean isAnimatingLw() {
Craig Mautnerae446592012-12-06 19:05:05 -08001349 return mWinAnimator.mAnimation != null
1350 || (mAppToken != null && mAppToken.mAppAnimator.animation != null);
Dianne Hackborn5c58de32012-04-28 19:52:37 -07001351 }
1352
Craig Mautner812d2ca2012-09-27 15:35:34 -07001353 @Override
Dianne Hackborncfbf7de2012-01-12 14:05:03 -08001354 public boolean isGoneForLayoutLw() {
1355 final AppWindowToken atoken = mAppToken;
1356 return mViewVisibility == View.GONE
1357 || !mRelayoutCalled
1358 || (atoken == null && mRootToken.hidden)
Jorim Jaggi8fa45222016-02-19 19:54:39 -08001359 || (atoken != null && atoken.hiddenRequested)
Dianne Hackborncfbf7de2012-01-12 14:05:03 -08001360 || mAttachedHidden
Wale Ogunwalec48a3542016-02-19 15:18:45 -08001361 || (mAnimatingExit && !isAnimatingLw())
Craig Mautner0e415c62013-04-29 16:10:58 -07001362 || mDestroying;
Dianne Hackborncfbf7de2012-01-12 14:05:03 -08001363 }
1364
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001365 /**
1366 * Returns true if the window has a surface that it has drawn a
1367 * complete UI in to.
1368 */
Craig Mautnerccc9e9b2012-12-11 09:40:34 -08001369 public boolean isDrawFinishedLw() {
1370 return mHasSurface && !mDestroying &&
1371 (mWinAnimator.mDrawState == WindowStateAnimator.COMMIT_DRAW_PENDING
1372 || mWinAnimator.mDrawState == WindowStateAnimator.READY_TO_SHOW
1373 || mWinAnimator.mDrawState == WindowStateAnimator.HAS_DRAWN);
1374 }
1375
1376 /**
1377 * Returns true if the window has a surface that it has drawn a
1378 * complete UI in to.
1379 */
Adrian Roos76d2fe42015-07-09 14:54:08 -07001380 @Override
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001381 public boolean isDrawnLw() {
Craig Mautnerc8bc97e2012-04-02 12:54:54 -07001382 return mHasSurface && !mDestroying &&
Craig Mautner749a7bb2012-04-02 13:49:53 -07001383 (mWinAnimator.mDrawState == WindowStateAnimator.READY_TO_SHOW
1384 || mWinAnimator.mDrawState == WindowStateAnimator.HAS_DRAWN);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001385 }
1386
1387 /**
1388 * Return true if the window is opaque and fully drawn. This indicates
1389 * it may obscure windows behind it.
1390 */
1391 boolean isOpaqueDrawn() {
Chong Zhang66bf071d2016-02-05 14:42:36 -08001392 // When there is keyguard, wallpaper could be placed over the secure app
1393 // window but invisible. We need to check wallpaper visibility explicitly
1394 // to determine if it's occluding apps.
1395 return ((!mIsWallpaper && mAttrs.format == PixelFormat.OPAQUE)
1396 || (mIsWallpaper && mWallpaperVisible))
Craig Mautnera2c77052012-03-26 12:14:43 -07001397 && isDrawnLw() && mWinAnimator.mAnimation == null
Craig Mautner59431632012-04-04 11:56:44 -07001398 && (mAppToken == null || mAppToken.mAppAnimator.animation == null);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001399 }
1400
1401 /**
Craig Mautner4557c082015-04-27 13:07:40 -07001402 * Return whether this window has moved. (Only makes
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001403 * sense to call from performLayoutAndPlaceSurfacesLockedInner().)
1404 */
Craig Mautner4557c082015-04-27 13:07:40 -07001405 boolean hasMoved() {
Chong Zhangbd0d9372015-12-28 15:18:29 -08001406 return mHasSurface && (mContentChanged || mMovedByResize)
Jorim Jaggi192086e2016-03-11 17:17:03 +01001407 && !mAnimatingExit && mService.okToDisplay()
Chong Zhangbd0d9372015-12-28 15:18:29 -08001408 && (mFrame.top != mLastFrame.top || mFrame.left != mLastFrame.left)
Craig Mautner4557c082015-04-27 13:07:40 -07001409 && (mAttachedWindow == null || !mAttachedWindow.hasMoved());
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001410 }
1411
Chong Zhang0abb20f2015-11-19 14:17:31 -08001412 boolean isObscuringFullscreen(final DisplayInfo displayInfo) {
1413 Task task = getTask();
1414 if (task != null && task.mStack != null && !task.mStack.isFullscreen()) {
1415 return false;
1416 }
1417 if (!isOpaqueDrawn() || !isFrameFullscreen(displayInfo)) {
1418 return false;
1419 }
1420 return true;
1421 }
1422
1423 boolean isFrameFullscreen(final DisplayInfo displayInfo) {
1424 return mFrame.left <= 0 && mFrame.top <= 0
1425 && mFrame.right >= displayInfo.appWidth && mFrame.bottom >= displayInfo.appHeight;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001426 }
1427
Craig Mautner812d2ca2012-09-27 15:35:34 -07001428 boolean isConfigChanged() {
Jorim Jaggi26c8c422016-05-09 19:57:25 -07001429 getMergedConfig(mTmpConfig);
1430
1431 // If the merged configuration is still empty, it means that we haven't issues the
1432 // configuration to the client yet and we need to return true so the configuration updates.
1433 boolean configChanged = mMergedConfiguration.equals(Configuration.EMPTY)
1434 || mTmpConfig.diff(mMergedConfiguration) != 0;
Craig Mautnere8552142012-11-07 13:55:47 -08001435
Jorim Jaggi380ecb82014-03-14 17:25:20 +01001436 if ((mAttrs.privateFlags & PRIVATE_FLAG_KEYGUARD) != 0) {
Craig Mautnere8552142012-11-07 13:55:47 -08001437 // Retain configuration changed status until resetConfiguration called.
1438 mConfigHasChanged |= configChanged;
1439 configChanged = mConfigHasChanged;
1440 }
1441
1442 return configChanged;
Craig Mautner812d2ca2012-09-27 15:35:34 -07001443 }
1444
Jorim Jaggib72c9ad2016-04-11 18:27:58 -07001445 boolean isAdjustedForMinimizedDock() {
1446 return mAppToken != null && mAppToken.mTask != null
1447 && mAppToken.mTask.mStack.isAdjustedForMinimizedDock();
1448 }
1449
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001450 void removeLocked() {
1451 disposeInputChannel();
Craig Mautner164d4bb2012-11-26 13:51:23 -08001452
Robert Carr51a1b872015-12-08 14:03:13 -08001453 if (isChildWindow()) {
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -08001454 if (DEBUG_ADD_REMOVE) Slog.v(TAG, "Removing " + this + " from " + mAttachedWindow);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001455 mAttachedWindow.mChildWindows.remove(this);
1456 }
Craig Mautner96868332012-12-04 14:29:11 -08001457 mWinAnimator.destroyDeferredSurfaceLocked();
1458 mWinAnimator.destroySurfaceLocked();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001459 mSession.windowRemovedLocked();
1460 try {
1461 mClient.asBinder().unlinkToDeath(mDeathRecipient, 0);
1462 } catch (RuntimeException e) {
1463 // Ignore if it has already been removed (usually because
1464 // we are doing this as part of processing a death note.)
1465 }
1466 }
Jeff Browncc4f7db2011-08-30 20:34:48 -07001467
Filip Gruszczynski10a80e02015-11-06 09:21:17 -08001468 void setHasSurface(boolean hasSurface) {
1469 mHasSurface = hasSurface;
1470 }
1471
Filip Gruszczynski92e432c2015-12-15 19:17:09 -08001472 int getAnimLayerAdjustment() {
1473 if (mTargetAppToken != null) {
1474 return mTargetAppToken.mAppAnimator.animLayerAdjustment;
1475 } else if (mAppToken != null) {
1476 return mAppToken.mAppAnimator.animLayerAdjustment;
1477 } else {
1478 // Nothing is animating, so there is no animation adjustment.
1479 return 0;
1480 }
1481 }
1482
1483 void scheduleAnimationIfDimming() {
1484 if (mDisplayContent == null) {
1485 return;
1486 }
1487 final DimLayer.DimLayerUser dimLayerUser = getDimLayerUser();
1488 if (dimLayerUser != null && mDisplayContent.mDimLayerController.isDimming(
1489 dimLayerUser, mWinAnimator)) {
1490 // Force an animation pass just to update the mDimLayer layer.
1491 mService.scheduleAnimationLocked();
1492 }
1493 }
1494
Jorim Jaggi5e6968d2016-02-19 18:02:13 -08001495 /**
1496 * Notifies this window that the corresponding task has just moved in the stack.
1497 * <p>
1498 * This is used to fix the following: If we moved in the stack, and if the last clip rect was
1499 * empty, meaning that our task was completely offscreen, we need to keep it invisible because
1500 * the actual app transition that updates the visibility is delayed by a few transactions.
1501 * Instead of messing around with the ordering and timing how transitions and transactions are
1502 * executed, we introduce this little hack which prevents this window of getting visible again
1503 * with the wrong bounds until the app transitions has started.
1504 * <p>
1505 * This method notifies the window about that we just moved in the stack so we can apply this
1506 * logic in {@link WindowStateAnimator#updateSurfaceWindowCrop}
1507 */
1508 void notifyMovedInStack() {
1509 mJustMovedInStack = true;
1510 }
1511
1512 /**
1513 * See {@link #notifyMovedInStack}.
1514 *
1515 * @return Whether we just got moved in the corresponding stack.
1516 */
1517 boolean hasJustMovedInStack() {
1518 return mJustMovedInStack;
1519 }
1520
1521 /**
1522 * Resets that we just moved in the corresponding stack. See {@link #notifyMovedInStack}.
1523 */
1524 void resetJustMovedInStack() {
1525 mJustMovedInStack = false;
1526 }
1527
Chong Zhangacf11402015-11-04 16:23:10 -08001528 private final class DeadWindowEventReceiver extends InputEventReceiver {
1529 DeadWindowEventReceiver(InputChannel inputChannel) {
1530 super(inputChannel, mService.mH.getLooper());
1531 }
1532 @Override
1533 public void onInputEvent(InputEvent event) {
1534 finishInputEvent(event, true);
1535 }
1536 }
1537 /**
1538 * Dummy event receiver for windows that died visible.
1539 */
1540 private DeadWindowEventReceiver mDeadWindowEventReceiver;
1541
Chong Zhang112eb8c2015-11-02 11:17:00 -08001542 void openInputChannel(InputChannel outInputChannel) {
Jeff Browncc4f7db2011-08-30 20:34:48 -07001543 if (mInputChannel != null) {
1544 throw new IllegalStateException("Window already has an input channel.");
1545 }
Chong Zhang112eb8c2015-11-02 11:17:00 -08001546 String name = makeInputChannelName();
1547 InputChannel[] inputChannels = InputChannel.openInputChannelPair(name);
1548 mInputChannel = inputChannels[0];
1549 mClientChannel = inputChannels[1];
1550 mInputWindowHandle.inputChannel = inputChannels[0];
1551 if (outInputChannel != null) {
1552 mClientChannel.transferTo(outInputChannel);
1553 mClientChannel.dispose();
1554 mClientChannel = null;
Chong Zhangacf11402015-11-04 16:23:10 -08001555 } else {
1556 // If the window died visible, we setup a dummy input channel, so that taps
1557 // can still detected by input monitor channel, and we can relaunch the app.
1558 // Create dummy event receiver that simply reports all events as handled.
1559 mDeadWindowEventReceiver = new DeadWindowEventReceiver(mClientChannel);
Chong Zhang112eb8c2015-11-02 11:17:00 -08001560 }
1561 mService.mInputManager.registerInputChannel(mInputChannel, mInputWindowHandle);
Jeff Browncc4f7db2011-08-30 20:34:48 -07001562 }
1563
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001564 void disposeInputChannel() {
Chong Zhangacf11402015-11-04 16:23:10 -08001565 if (mDeadWindowEventReceiver != null) {
1566 mDeadWindowEventReceiver.dispose();
1567 mDeadWindowEventReceiver = null;
1568 }
1569
1570 // unregister server channel first otherwise it complains about broken channel
1571 if (mInputChannel != null) {
1572 mService.mInputManager.unregisterInputChannel(mInputChannel);
1573 mInputChannel.dispose();
1574 mInputChannel = null;
1575 }
Chong Zhang112eb8c2015-11-02 11:17:00 -08001576 if (mClientChannel != null) {
1577 mClientChannel.dispose();
1578 mClientChannel = null;
1579 }
Jeff Browncc4f7db2011-08-30 20:34:48 -07001580 mInputWindowHandle.inputChannel = null;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001581 }
1582
Chong Zhang112eb8c2015-11-02 11:17:00 -08001583 void applyDimLayerIfNeeded() {
Chong Zhangeb917322015-11-10 14:05:40 -08001584 // When the app is terminated (eg. from Recents), the task might have already been
1585 // removed with the window pending removal. Don't apply dim in such cases, as there
1586 // will be no more updateDimLayer() calls, which leaves the dimlayer invalid.
1587 final AppWindowToken token = mAppToken;
1588 if (token != null && token.removed) {
1589 return;
1590 }
1591
Wale Ogunwalec48a3542016-02-19 15:18:45 -08001592 if (!mAnimatingExit && mAppDied) {
Chong Zhang112eb8c2015-11-02 11:17:00 -08001593 // If app died visible, apply a dim over the window to indicate that it's inactive
1594 mDisplayContent.mDimLayerController.applyDimAbove(getDimLayerUser(), mWinAnimator);
1595 } else if ((mAttrs.flags & FLAG_DIM_BEHIND) != 0
Robert Carr9fe459d2016-04-07 23:32:28 -07001596 && mDisplayContent != null && !mAnimatingExit && isVisibleUnchecked()) {
Chong Zhang112eb8c2015-11-02 11:17:00 -08001597 mDisplayContent.mDimLayerController.applyDimBehind(getDimLayerUser(), mWinAnimator);
Filip Gruszczynski4501d232015-09-02 13:00:02 -07001598 }
1599 }
1600
Filip Gruszczynski0689ae92015-10-01 12:30:31 -07001601 DimLayer.DimLayerUser getDimLayerUser() {
1602 Task task = getTask();
1603 if (task != null) {
1604 return task;
1605 }
1606 return getStack();
1607 }
1608
Filip Gruszczynski76cc44f2015-09-03 16:03:10 -07001609 void maybeRemoveReplacedWindow() {
Robert Carra1eb4392015-12-10 12:43:51 -08001610 if (mAppToken == null) {
1611 return;
1612 }
1613 for (int i = mAppToken.allAppWindows.size() - 1; i >= 0; i--) {
1614 final WindowState win = mAppToken.allAppWindows.get(i);
Robert Carrdcdca582016-04-07 22:59:24 -07001615 if (win.mWillReplaceWindow && win.mReplacingWindow == this && hasDrawnLw()) {
Chong Zhangbfc2f8f2016-01-29 15:50:34 -08001616 if (DEBUG_ADD_REMOVE) Slog.d(TAG, "Removing replaced window: " + win);
Robert Carr9fe459d2016-04-07 23:32:28 -07001617 if (win.isDimming()) {
1618 win.transferDimToReplacement();
1619 }
Robert Carra1eb4392015-12-10 12:43:51 -08001620 win.mWillReplaceWindow = false;
Wale Ogunwaled0a166a2016-05-09 11:18:18 -07001621 final boolean animateReplacingWindow = win.mAnimateReplacingWindow;
Robert Carra1eb4392015-12-10 12:43:51 -08001622 win.mAnimateReplacingWindow = false;
1623 win.mReplacingRemoveRequested = false;
1624 win.mReplacingWindow = null;
Robert Carrb439a632016-04-07 22:52:10 -07001625 mSkipEnterAnimationForSeamlessReplacement = false;
Wale Ogunwaled0a166a2016-05-09 11:18:18 -07001626 if (win.mAnimatingExit || !animateReplacingWindow) {
Filip Gruszczynski76cc44f2015-09-03 16:03:10 -07001627 mService.removeWindowInnerLocked(win);
1628 }
1629 }
1630 }
1631 }
1632
Filip Gruszczynskie92179d2015-09-26 16:12:30 -07001633 void setDisplayLayoutNeeded() {
1634 if (mDisplayContent != null) {
1635 mDisplayContent.layoutNeeded = true;
1636 }
1637 }
1638
Filip Gruszczynski955b2fc2015-10-15 14:46:07 -07001639 boolean inDockedWorkspace() {
Chong Zhang2a88fc32016-01-11 17:14:24 -08001640 final Task task = getTask();
Chong Zhangb15758a2015-11-17 12:12:03 -08001641 return task != null && task.inDockedWorkspace();
1642 }
1643
Robert Carrfed10072016-05-26 11:48:49 -07001644 // TODO: Strange usage of word workspace here and above.
1645 boolean inPinnedWorkspace() {
1646 final Task task = getTask();
1647 return task != null && task.inPinnedWorkspace();
1648 }
1649
Chong Zhangb15758a2015-11-17 12:12:03 -08001650 boolean isDockedInEffect() {
Chong Zhang2a88fc32016-01-11 17:14:24 -08001651 final Task task = getTask();
Chong Zhangb15758a2015-11-17 12:12:03 -08001652 return task != null && task.isDockedInEffect();
Filip Gruszczynski955b2fc2015-10-15 14:46:07 -07001653 }
1654
Chong Zhang2a88fc32016-01-11 17:14:24 -08001655 void applyScrollIfNeeded() {
1656 final Task task = getTask();
Chong Zhangf66db432016-01-13 10:39:51 -08001657 if (task != null) {
1658 task.applyScrollToWindowIfNeeded(this);
Chong Zhang2a88fc32016-01-11 17:14:24 -08001659 }
1660 }
1661
Chong Zhang5117e272016-05-03 12:47:34 -07001662 void applyAdjustForImeIfNeeded() {
1663 final Task task = getTask();
1664 if (task != null && task.mStack != null && task.mStack.isAdjustedForIme()) {
1665 task.mStack.applyAdjustForImeIfNeeded(task);
1666 }
1667 }
1668
Wale Ogunwale053c8e42015-11-16 14:27:21 -08001669 int getTouchableRegion(Region region, int flags) {
1670 final boolean modal = (flags & (FLAG_NOT_TOUCH_MODAL | FLAG_NOT_FOCUSABLE)) == 0;
Filip Gruszczynski9cac3b42015-10-30 14:20:37 -07001671 if (modal && mAppToken != null) {
1672 // Limit the outer touch to the activity stack region.
Wale Ogunwale053c8e42015-11-16 14:27:21 -08001673 flags |= FLAG_NOT_TOUCH_MODAL;
Chong Zhang4c9ba52a2015-11-10 18:36:33 -08001674 // If this is a modal window we need to dismiss it if it's not full screen and the
1675 // touch happens outside of the frame that displays the content. This means we
1676 // need to intercept touches outside of that window. The dim layer user
1677 // associated with the window (task or stack) will give us the good bounds, as
1678 // they would be used to display the dim layer.
1679 final DimLayer.DimLayerUser dimLayerUser = getDimLayerUser();
1680 if (dimLayerUser != null) {
1681 dimLayerUser.getDimBounds(mTmpRect);
Filip Gruszczynski9cac3b42015-10-30 14:20:37 -07001682 } else {
Chong Zhang4c9ba52a2015-11-10 18:36:33 -08001683 getVisibleBounds(mTmpRect);
1684 }
1685 if (inFreeformWorkspace()) {
Filip Gruszczynski9cac3b42015-10-30 14:20:37 -07001686 // For freeform windows we the touch region to include the whole surface for the
1687 // shadows.
Chong Zhang4c9ba52a2015-11-10 18:36:33 -08001688 final DisplayMetrics displayMetrics = getDisplayContent().getDisplayMetrics();
1689 final int delta = WindowManagerService.dipToPixel(
1690 RESIZE_HANDLE_WIDTH_IN_DP, displayMetrics);
1691 mTmpRect.inset(-delta, -delta);
Filip Gruszczynski9cac3b42015-10-30 14:20:37 -07001692 }
1693 region.set(mTmpRect);
Wale Ogunwale053c8e42015-11-16 14:27:21 -08001694 cropRegionToStackBoundsIfNeeded(region);
Filip Gruszczynski9cac3b42015-10-30 14:20:37 -07001695 } else {
1696 // Not modal or full screen modal
1697 getTouchableRegion(region);
1698 }
1699 return flags;
1700 }
1701
Filip Gruszczynski14b4e572015-11-03 15:53:55 -08001702 void checkPolicyVisibilityChange() {
1703 if (mPolicyVisibility != mPolicyVisibilityAfterAnim) {
1704 if (DEBUG_VISIBILITY) {
1705 Slog.v(TAG, "Policy visibility changing after anim in " +
1706 mWinAnimator + ": " + mPolicyVisibilityAfterAnim);
1707 }
1708 mPolicyVisibility = mPolicyVisibilityAfterAnim;
Filip Gruszczynski63a35e22015-11-05 15:38:59 -08001709 setDisplayLayoutNeeded();
Filip Gruszczynski14b4e572015-11-03 15:53:55 -08001710 if (!mPolicyVisibility) {
1711 if (mService.mCurrentFocus == this) {
1712 if (DEBUG_FOCUS_LIGHT) Slog.i(TAG,
1713 "setAnimationLocked: setting mFocusMayChange true");
1714 mService.mFocusMayChange = true;
1715 }
1716 // Window is no longer visible -- make sure if we were waiting
1717 // for it to be displayed before enabling the display, that
1718 // we allow the display to be enabled now.
1719 mService.enableScreenIfNeededLocked();
1720 }
1721 }
1722 }
1723
1724 void setRequestedSize(int requestedWidth, int requestedHeight) {
1725 if ((mRequestedWidth != requestedWidth || mRequestedHeight != requestedHeight)) {
1726 mLayoutNeeded = true;
1727 mRequestedWidth = requestedWidth;
1728 mRequestedHeight = requestedHeight;
1729 }
1730 }
1731
Filip Gruszczynski84cc5e32015-11-03 18:05:47 -08001732 void prepareWindowToDisplayDuringRelayout(Configuration outConfig) {
1733 if ((mAttrs.softInputMode & SOFT_INPUT_MASK_ADJUST)
1734 == SOFT_INPUT_ADJUST_RESIZE) {
1735 mLayoutNeeded = true;
1736 }
1737 if (isDrawnLw() && mService.okToDisplay()) {
1738 mWinAnimator.applyEnterAnimationLocked();
1739 }
1740 if ((mAttrs.flags & FLAG_TURN_SCREEN_ON) != 0) {
1741 if (DEBUG_VISIBILITY) Slog.v(TAG, "Relayout window turning screen on: " + this);
1742 mTurnOnScreen = true;
1743 }
1744 if (isConfigChanged()) {
Robert Carrc24d8f92016-02-29 16:24:33 -08001745 final Configuration newConfig = updateConfiguration();
Filip Gruszczynski84cc5e32015-11-03 18:05:47 -08001746 if (DEBUG_CONFIGURATION) Slog.i(TAG, "Window " + this + " visible with new config: "
Robert Carrc24d8f92016-02-29 16:24:33 -08001747 + newConfig);
1748 outConfig.setTo(newConfig);
Filip Gruszczynski84cc5e32015-11-03 18:05:47 -08001749 }
1750 }
1751
1752 void adjustStartingWindowFlags() {
1753 if (mAttrs.type == TYPE_BASE_APPLICATION && mAppToken != null
1754 && mAppToken.startingWindow != null) {
1755 // Special handling of starting window over the base
1756 // window of the app: propagate lock screen flags to it,
1757 // to provide the correct semantics while starting.
1758 final int mask = FLAG_SHOW_WHEN_LOCKED | FLAG_DISMISS_KEYGUARD
1759 | FLAG_ALLOW_LOCK_WHILE_SCREEN_ON;
1760 WindowManager.LayoutParams sa = mAppToken.startingWindow.mAttrs;
1761 sa.flags = (sa.flags & ~mask) | (mAttrs.flags & mask);
1762 }
1763 }
1764
1765 void setWindowScale(int requestedWidth, int requestedHeight) {
1766 final boolean scaledWindow = (mAttrs.flags & FLAG_SCALED) != 0;
1767
1768 if (scaledWindow) {
1769 // requested{Width|Height} Surface's physical size
1770 // attrs.{width|height} Size on screen
1771 // TODO: We don't check if attrs != null here. Is it implicitly checked?
1772 mHScale = (mAttrs.width != requestedWidth) ?
1773 (mAttrs.width / (float)requestedWidth) : 1.0f;
1774 mVScale = (mAttrs.height != requestedHeight) ?
1775 (mAttrs.height / (float)requestedHeight) : 1.0f;
1776 } else {
1777 mHScale = mVScale = 1;
1778 }
1779 }
1780
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001781 private class DeathRecipient implements IBinder.DeathRecipient {
Craig Mautnere8552142012-11-07 13:55:47 -08001782 @Override
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001783 public void binderDied() {
1784 try {
1785 synchronized(mService.mWindowMap) {
1786 WindowState win = mService.windowForClientLocked(mSession, mClient, false);
Craig Mautnerd87946b2012-03-29 18:00:19 -07001787 Slog.i(TAG, "WIN DEATH: " + win);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001788 if (win != null) {
Wale Ogunwalee42d0e12016-05-02 16:40:59 -07001789 mService.removeWindowLocked(win, shouldKeepVisibleDeadAppWindow());
Wale Ogunwalea9f9b372016-02-04 18:04:39 -08001790 if (win.mAttrs.type == TYPE_DOCK_DIVIDER) {
1791 // The owner of the docked divider died :( We reset the docked stack,
Jorim Jaggidcb68142016-02-09 21:51:30 -08001792 // just in case they have the divider at an unstable position. Better
1793 // also reset drag resizing state, because the owner can't do it
1794 // anymore.
Wale Ogunwalea9f9b372016-02-04 18:04:39 -08001795 final TaskStack stack = mService.mStackIdToStack.get(DOCKED_STACK_ID);
1796 if (stack != null) {
1797 stack.resetDockedStackToMiddle();
1798 }
Jorim Jaggidcb68142016-02-09 21:51:30 -08001799 mService.setDockedStackResizing(false);
Wale Ogunwalea9f9b372016-02-04 18:04:39 -08001800 }
Craig Mautnerb3b36ba2013-05-20 13:21:10 -07001801 } else if (mHasSurface) {
Craig Mautnera99764e2013-03-06 10:22:16 -08001802 Slog.e(TAG, "!!! LEAK !!! Window removed but surface still valid.");
Wale Ogunwalea6ab5c42015-04-24 09:00:25 -07001803 mService.removeWindowLocked(WindowState.this);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001804 }
1805 }
1806 } catch (IllegalArgumentException ex) {
Wale Ogunwalee42d0e12016-05-02 16:40:59 -07001807 // This will happen if the window has already been removed.
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001808 }
1809 }
1810 }
1811
Wale Ogunwale3fd20fe2016-01-23 17:41:28 -08001812 /**
1813 * Returns true if this window is visible and belongs to a dead app and shouldn't be removed,
1814 * because we want to preserve its location on screen to be re-activated later when the user
1815 * interacts with it.
1816 */
1817 boolean shouldKeepVisibleDeadAppWindow() {
Wale Ogunwalee42d0e12016-05-02 16:40:59 -07001818 if (!isWinVisibleLw() || mAppToken == null || mAppToken.clientHidden) {
Wale Ogunwale3fd20fe2016-01-23 17:41:28 -08001819 // Not a visible app window or the app isn't dead.
1820 return false;
1821 }
1822
Wale Ogunwale51d1d912016-05-04 13:27:18 -07001823 if (mAttrs.token != mClient.asBinder()) {
1824 // The window was add by a client using another client's app token. We don't want to
1825 // keep the dead window around for this case since this is meant for 'real' apps.
1826 return false;
1827 }
1828
Wale Ogunwale3fd20fe2016-01-23 17:41:28 -08001829 if (mAttrs.type == TYPE_APPLICATION_STARTING) {
1830 // We don't keep starting windows since they were added by the window manager before
1831 // the app even launched.
1832 return false;
1833 }
1834
1835 final TaskStack stack = getStack();
1836 return stack != null && StackId.keepVisibleDeadAppWindowOnScreen(stack.mStackId);
1837 }
1838
Wale Ogunwaled045c822015-12-02 09:14:28 -08001839 /** @return true if this window desires key events. */
1840 boolean canReceiveKeys() {
Craig Mautner58106812012-12-28 12:27:40 -08001841 return isVisibleOrAdding()
Chong Zhange292eb32016-05-21 09:23:55 -07001842 && (mViewVisibility == View.VISIBLE) && !mRemoveOnExit
Wale Ogunwaled045c822015-12-02 09:14:28 -08001843 && ((mAttrs.flags & WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE) == 0)
Jorim Jaggib72c9ad2016-04-11 18:27:58 -07001844 && (mAppToken == null || mAppToken.windowsAreFocusable())
1845 && !isAdjustedForMinimizedDock();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001846 }
1847
Craig Mautner749a7bb2012-04-02 13:49:53 -07001848 @Override
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001849 public boolean hasDrawnLw() {
Craig Mautner749a7bb2012-04-02 13:49:53 -07001850 return mWinAnimator.mDrawState == WindowStateAnimator.HAS_DRAWN;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001851 }
1852
Craig Mautner749a7bb2012-04-02 13:49:53 -07001853 @Override
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001854 public boolean showLw(boolean doAnimation) {
1855 return showLw(doAnimation, true);
1856 }
1857
1858 boolean showLw(boolean doAnimation, boolean requestAnim) {
Craig Mautner5962b122012-10-05 14:45:52 -07001859 if (isHiddenFromUserLocked()) {
Craig Mautner9dc52bc2012-08-06 14:15:42 -07001860 return false;
1861 }
Dianne Hackbornb6b23ec2013-02-11 19:29:06 -08001862 if (!mAppOpVisibility) {
1863 // Being hidden due to app op request.
1864 return false;
1865 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001866 if (mPolicyVisibility && mPolicyVisibilityAfterAnim) {
Craig Mautnere32c3072012-03-12 15:25:35 -07001867 // Already showing.
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001868 return false;
1869 }
Craig Mautnerd87946b2012-03-29 18:00:19 -07001870 if (DEBUG_VISIBILITY) Slog.v(TAG, "Policy visibility true: " + this);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001871 if (doAnimation) {
Craig Mautnerd87946b2012-03-29 18:00:19 -07001872 if (DEBUG_VISIBILITY) Slog.v(TAG, "doAnimation: mPolicyVisibility="
Craig Mautnera2c77052012-03-26 12:14:43 -07001873 + mPolicyVisibility + " mAnimation=" + mWinAnimator.mAnimation);
Craig Mautner2fb98b12012-03-20 17:24:00 -07001874 if (!mService.okToDisplay()) {
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001875 doAnimation = false;
Craig Mautnera2c77052012-03-26 12:14:43 -07001876 } else if (mPolicyVisibility && mWinAnimator.mAnimation == null) {
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001877 // Check for the case where we are currently visible and
1878 // not animating; we do not want to do animation at such a
1879 // point to become visible when we already are.
1880 doAnimation = false;
1881 }
1882 }
1883 mPolicyVisibility = true;
1884 mPolicyVisibilityAfterAnim = true;
1885 if (doAnimation) {
Craig Mautnerc2f9be02012-03-27 17:32:29 -07001886 mWinAnimator.applyAnimationLocked(WindowManagerPolicy.TRANSIT_ENTER, true);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001887 }
1888 if (requestAnim) {
Craig Mautner96868332012-12-04 14:29:11 -08001889 mService.scheduleAnimationLocked();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001890 }
1891 return true;
1892 }
1893
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001894 @Override
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001895 public boolean hideLw(boolean doAnimation) {
1896 return hideLw(doAnimation, true);
1897 }
1898
1899 boolean hideLw(boolean doAnimation, boolean requestAnim) {
1900 if (doAnimation) {
Craig Mautner2fb98b12012-03-20 17:24:00 -07001901 if (!mService.okToDisplay()) {
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001902 doAnimation = false;
1903 }
1904 }
Filip Gruszczynski19723a42015-11-25 15:01:48 -08001905 boolean current = doAnimation ? mPolicyVisibilityAfterAnim
1906 : mPolicyVisibility;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001907 if (!current) {
Craig Mautnere32c3072012-03-12 15:25:35 -07001908 // Already hiding.
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001909 return false;
1910 }
1911 if (doAnimation) {
Craig Mautnerc2f9be02012-03-27 17:32:29 -07001912 mWinAnimator.applyAnimationLocked(WindowManagerPolicy.TRANSIT_EXIT, false);
Craig Mautnera2c77052012-03-26 12:14:43 -07001913 if (mWinAnimator.mAnimation == null) {
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001914 doAnimation = false;
1915 }
1916 }
Filip Gruszczynski19723a42015-11-25 15:01:48 -08001917 if (doAnimation) {
1918 mPolicyVisibilityAfterAnim = false;
1919 } else {
Craig Mautnerd87946b2012-03-29 18:00:19 -07001920 if (DEBUG_VISIBILITY) Slog.v(TAG, "Policy visibility false: " + this);
Filip Gruszczynski19723a42015-11-25 15:01:48 -08001921 mPolicyVisibilityAfterAnim = false;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001922 mPolicyVisibility = false;
1923 // Window is no longer visible -- make sure if we were waiting
1924 // for it to be displayed before enabling the display, that
1925 // we allow the display to be enabled now.
1926 mService.enableScreenIfNeededLocked();
1927 if (mService.mCurrentFocus == this) {
Filip Gruszczynski14b4e572015-11-03 15:53:55 -08001928 if (DEBUG_FOCUS_LIGHT) Slog.i(TAG,
Craig Mautner58458122013-09-14 14:59:50 -07001929 "WindowState.hideLw: setting mFocusMayChange true");
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001930 mService.mFocusMayChange = true;
1931 }
1932 }
1933 if (requestAnim) {
Craig Mautner96868332012-12-04 14:29:11 -08001934 mService.scheduleAnimationLocked();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001935 }
1936 return true;
1937 }
1938
Craig Mautnerfb32c6e2013-02-12 15:08:44 -08001939 public void setAppOpVisibilityLw(boolean state) {
Dianne Hackbornb6b23ec2013-02-11 19:29:06 -08001940 if (mAppOpVisibility != state) {
1941 mAppOpVisibility = state;
1942 if (state) {
1943 // If the policy visibility had last been to hide, then this
1944 // will incorrectly show at this point since we lost that
1945 // information. Not a big deal -- for the windows that have app
1946 // ops modifies they should only be hidden by policy due to the
1947 // lock screen, and the user won't be changing this if locked.
1948 // Plus it will quickly be fixed the next time we do a layout.
Craig Mautnerfb32c6e2013-02-12 15:08:44 -08001949 showLw(true, true);
Dianne Hackbornb6b23ec2013-02-11 19:29:06 -08001950 } else {
Craig Mautnerfb32c6e2013-02-12 15:08:44 -08001951 hideLw(true, true);
Dianne Hackbornb6b23ec2013-02-11 19:29:06 -08001952 }
Dianne Hackbornb6b23ec2013-02-11 19:29:06 -08001953 }
Dianne Hackbornb6b23ec2013-02-11 19:29:06 -08001954 }
1955
Jeff Brownc2932a12014-11-20 18:04:05 -08001956 public void pokeDrawLockLw(long timeout) {
1957 if (isVisibleOrAdding()) {
1958 if (mDrawLock == null) {
1959 // We want the tag name to be somewhat stable so that it is easier to correlate
1960 // in wake lock statistics. So in particular, we don't want to include the
1961 // window's hash code as in toString().
Wale Ogunwalecad05a02015-09-25 10:41:44 -07001962 final CharSequence tag = getWindowTag();
Jeff Brownc2932a12014-11-20 18:04:05 -08001963 mDrawLock = mService.mPowerManager.newWakeLock(
1964 PowerManager.DRAW_WAKE_LOCK, "Window:" + tag);
1965 mDrawLock.setReferenceCounted(false);
1966 mDrawLock.setWorkSource(new WorkSource(mOwnerUid, mAttrs.packageName));
1967 }
1968 // Each call to acquire resets the timeout.
1969 if (DEBUG_POWER) {
1970 Slog.d(TAG, "pokeDrawLock: poking draw lock on behalf of visible window owned by "
1971 + mAttrs.packageName);
1972 }
1973 mDrawLock.acquire(timeout);
1974 } else if (DEBUG_POWER) {
1975 Slog.d(TAG, "pokeDrawLock: suppressed draw lock request for invisible window "
1976 + "owned by " + mAttrs.packageName);
1977 }
1978 }
1979
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001980 @Override
1981 public boolean isAlive() {
1982 return mClient.asBinder().isBinderAlive();
1983 }
1984
Craig Mautnera987d432012-10-11 14:07:58 -07001985 boolean isClosing() {
Wale Ogunwalec48a3542016-02-19 15:18:45 -08001986 return mAnimatingExit || (mService.mClosingApps.contains(mAppToken));
Craig Mautnera987d432012-10-11 14:07:58 -07001987 }
1988
Chong Zhangbef461f2015-10-27 11:38:24 -07001989 boolean isAnimatingWithSavedSurface() {
Chong Zhang92147042016-05-09 12:47:11 -07001990 return mAnimatingWithSavedSurface;
1991 }
1992
Chong Zhang8e4bda92016-05-04 15:08:18 -07001993 boolean isAnimatingInvisibleWithSavedSurface() {
1994 return mAnimatingWithSavedSurface
1995 && (mViewVisibility != View.VISIBLE || mWindowRemovalAllowed);
1996 }
1997
Chong Zhang92147042016-05-09 12:47:11 -07001998 public void setVisibleBeforeClientHidden() {
1999 mWasVisibleBeforeClientHidden |=
2000 (mViewVisibility == View.VISIBLE || mAnimatingWithSavedSurface);
2001 }
2002
2003 public void clearVisibleBeforeClientHidden() {
2004 mWasVisibleBeforeClientHidden = false;
2005 }
2006
2007 public boolean wasVisibleBeforeClientHidden() {
2008 return mWasVisibleBeforeClientHidden;
Chong Zhangbef461f2015-10-27 11:38:24 -07002009 }
2010
Chong Zhangeb22e8e2016-01-20 19:52:22 -08002011 private boolean shouldSaveSurface() {
Chong Zhang6c71c0b2016-04-01 15:10:31 -07002012 if (mWinAnimator.mSurfaceController == null) {
2013 // Don't bother if the surface controller is gone for any reason.
2014 return false;
2015 }
2016
Chong Zhang92147042016-05-09 12:47:11 -07002017 if (!mWasVisibleBeforeClientHidden) {
2018 return false;
2019 }
2020
Wale Ogunwale945d1972016-03-23 13:16:41 -07002021 if ((mAttrs.flags & FLAG_SECURE) != 0) {
2022 // We don't save secure surfaces since their content shouldn't be shown while the app
2023 // isn't on screen and content might leak through during the transition animation with
2024 // saved surface.
2025 return false;
2026 }
2027
Chong Zhangdb20b5f2015-10-23 14:01:43 -07002028 if (ActivityManager.isLowRamDeviceStatic()) {
2029 // Don't save surfaces on Svelte devices.
Chong Zhangeb22e8e2016-01-20 19:52:22 -08002030 return false;
2031 }
2032
Chong Zhangeb22e8e2016-01-20 19:52:22 -08002033 Task task = getTask();
2034 if (task == null || task.inHomeStack()) {
Chong Zhangdb20b5f2015-10-23 14:01:43 -07002035 // Don't save surfaces for home stack apps. These usually resume and draw
2036 // first frame very fast. Saving surfaces are mostly a waste of memory.
Chong Zhangeb22e8e2016-01-20 19:52:22 -08002037 return false;
Chong Zhangdb20b5f2015-10-23 14:01:43 -07002038 }
Chong Zhangeb22e8e2016-01-20 19:52:22 -08002039
2040 final AppWindowToken taskTop = task.getTopVisibleAppToken();
2041 if (taskTop != null && taskTop != mAppToken) {
2042 // Don't save if the window is not the topmost window.
2043 return false;
2044 }
2045
Jorim Jaggi8fa45222016-02-19 19:54:39 -08002046 if (mResizedWhileGone) {
2047 // Somebody resized our window while we were gone for layout, which means that the
2048 // client got an old size, so we have an outdated surface here.
2049 return false;
2050 }
2051
Robert Carr7098dbd2016-02-01 12:31:01 -08002052 if (DEBUG_DISABLE_SAVING_SURFACES) {
2053 return false;
2054 }
2055
Chong Zhangeb22e8e2016-01-20 19:52:22 -08002056 return mAppToken.shouldSaveSurface();
2057 }
2058
Chris Craik3131bde2016-05-06 13:39:08 -07002059 static final Region sEmptyRegion = new Region();
2060
Chong Zhangeb22e8e2016-01-20 19:52:22 -08002061 void destroyOrSaveSurface() {
2062 mSurfaceSaved = shouldSaveSurface();
2063 if (mSurfaceSaved) {
2064 if (DEBUG_APP_TRANSITIONS || DEBUG_ANIM) {
2065 Slog.v(TAG, "Saving surface: " + this);
2066 }
Chris Craik3131bde2016-05-06 13:39:08 -07002067 // Previous user of the surface may have set a transparent region signaling a portion
2068 // doesn't need to be composited, so reset to default empty state.
2069 mSession.setTransparentRegion(mClient, sEmptyRegion);
Chong Zhangeb22e8e2016-01-20 19:52:22 -08002070
2071 mWinAnimator.hide("saved surface");
2072 mWinAnimator.mDrawState = WindowStateAnimator.NO_SURFACE;
2073 setHasSurface(false);
Chong Zhang47e36a32016-02-29 16:44:33 -08002074 // The client should have disconnected at this point, but if it doesn't,
2075 // we need to make sure it's disconnected. Otherwise when we reuse the surface
2076 // the client can't reconnect to the buffer queue, and rendering will fail.
2077 if (mWinAnimator.mSurfaceController != null) {
2078 mWinAnimator.mSurfaceController.disconnectInTransaction();
2079 }
Chong Zhang8e4bda92016-05-04 15:08:18 -07002080 mAnimatingWithSavedSurface = false;
Chong Zhangeb22e8e2016-01-20 19:52:22 -08002081 } else {
Robert Carr13f7be9e2015-12-02 18:39:45 -08002082 mWinAnimator.destroySurfaceLocked();
2083 }
Chong Zhang92147042016-05-09 12:47:11 -07002084 // Clear animating flags now, since the surface is now gone. (Note this is true even
2085 // if the surface is saved, to outside world the surface is still NO_SURFACE.)
2086 mAnimatingExit = false;
Robert Carr13f7be9e2015-12-02 18:39:45 -08002087 }
Chong Zhangdb20b5f2015-10-23 14:01:43 -07002088
Chong Zhang92147042016-05-09 12:47:11 -07002089 void destroySavedSurface() {
Robert Carr13f7be9e2015-12-02 18:39:45 -08002090 if (mSurfaceSaved) {
Chong Zhangeb22e8e2016-01-20 19:52:22 -08002091 if (DEBUG_APP_TRANSITIONS || DEBUG_ANIM) {
2092 Slog.v(TAG, "Destroying saved surface: " + this);
2093 }
Robert Carr13f7be9e2015-12-02 18:39:45 -08002094 mWinAnimator.destroySurfaceLocked();
2095 }
Chong Zhang92147042016-05-09 12:47:11 -07002096 mWasVisibleBeforeClientHidden = false;
Robert Carr13f7be9e2015-12-02 18:39:45 -08002097 }
2098
Chong Zhang92147042016-05-09 12:47:11 -07002099 void restoreSavedSurface() {
Chong Zhang4113ffa2016-02-18 12:39:13 -08002100 if (!mSurfaceSaved) {
2101 return;
2102 }
Chong Zhangeb22e8e2016-01-20 19:52:22 -08002103 mSurfaceSaved = false;
Chong Zhang6c71c0b2016-04-01 15:10:31 -07002104 if (mWinAnimator.mSurfaceController != null) {
2105 setHasSurface(true);
2106 mWinAnimator.mDrawState = WindowStateAnimator.READY_TO_SHOW;
Chong Zhang92147042016-05-09 12:47:11 -07002107 mAnimatingWithSavedSurface = true;
Chong Zhang6c71c0b2016-04-01 15:10:31 -07002108
2109 if (DEBUG_APP_TRANSITIONS || DEBUG_ANIM) {
2110 Slog.v(TAG, "Restoring saved surface: " + this);
2111 }
2112 } else {
2113 // mSurfaceController shouldn't be null if mSurfaceSaved was still true at
2114 // this point. Even if we destroyed the saved surface because of rotation
2115 // or resize, mSurfaceSaved flag should have been cleared. So this is a wtf.
2116 Slog.wtf(TAG, "Failed to restore saved surface: surface gone! " + this);
Chong Zhangeb22e8e2016-01-20 19:52:22 -08002117 }
2118 }
2119
Chong Zhang92147042016-05-09 12:47:11 -07002120 boolean canRestoreSurface() {
2121 return mWasVisibleBeforeClientHidden && mSurfaceSaved;
2122 }
2123
2124 boolean hasSavedSurface() {
Robert Carr13f7be9e2015-12-02 18:39:45 -08002125 return mSurfaceSaved;
2126 }
2127
Chong Zhang92147042016-05-09 12:47:11 -07002128 void clearHasSavedSurface() {
2129 mSurfaceSaved = false;
2130 mAnimatingWithSavedSurface = false;
Chong Zhangf58631a2016-05-24 16:02:10 -07002131 if (mWasVisibleBeforeClientHidden) {
2132 mAppToken.destroySavedSurfaces();
2133 }
Chong Zhang92147042016-05-09 12:47:11 -07002134 }
2135
Chong Zhangcbbcc0f2016-05-17 20:46:58 -07002136 boolean clearAnimatingWithSavedSurface() {
Chong Zhang92147042016-05-09 12:47:11 -07002137 if (mAnimatingWithSavedSurface) {
2138 // App has drawn something to its windows, we're no longer animating with
2139 // the saved surfaces.
2140 if (DEBUG_ANIM) Slog.d(TAG,
2141 "clearAnimatingWithSavedSurface(): win=" + this);
2142 mAnimatingWithSavedSurface = false;
Chong Zhangcbbcc0f2016-05-17 20:46:58 -07002143 return true;
Chong Zhang92147042016-05-09 12:47:11 -07002144 }
Chong Zhangcbbcc0f2016-05-17 20:46:58 -07002145 return false;
Chong Zhang92147042016-05-09 12:47:11 -07002146 }
2147
Craig Mautner69b08182012-09-05 13:07:13 -07002148 @Override
2149 public boolean isDefaultDisplay() {
Craig Mautnerdf88d732014-01-27 09:21:32 -08002150 final DisplayContent displayContent = getDisplayContent();
2151 if (displayContent == null) {
2152 // Only a window that was on a non-default display can be detached from it.
2153 return false;
2154 }
Winson Chung47a3e652014-05-21 16:03:42 -07002155 return displayContent.isDefaultDisplay;
Craig Mautner69b08182012-09-05 13:07:13 -07002156 }
2157
Adrian Rooscd3884d2015-02-18 17:25:23 +01002158 @Override
2159 public boolean isDimming() {
Filip Gruszczynski0689ae92015-10-01 12:30:31 -07002160 final DimLayer.DimLayerUser dimLayerUser = getDimLayerUser();
2161 return dimLayerUser != null && mDisplayContent != null &&
Chong Zhang112eb8c2015-11-02 11:17:00 -08002162 mDisplayContent.mDimLayerController.isDimming(dimLayerUser, mWinAnimator);
Adrian Rooscd3884d2015-02-18 17:25:23 +01002163 }
2164
Craig Mautner88400d32012-09-30 12:35:45 -07002165 public void setShowToOwnerOnlyLocked(boolean showToOwnerOnly) {
2166 mShowToOwnerOnly = showToOwnerOnly;
2167 }
2168
Craig Mautner5962b122012-10-05 14:45:52 -07002169 boolean isHiddenFromUserLocked() {
Craig Mautner341220f2012-10-16 15:20:09 -07002170 // Attached windows are evaluated based on the window that they are attached to.
2171 WindowState win = this;
Robert Carr51a1b872015-12-08 14:03:13 -08002172 while (win.isChildWindow()) {
Craig Mautner341220f2012-10-16 15:20:09 -07002173 win = win.mAttachedWindow;
2174 }
2175 if (win.mAttrs.type < WindowManager.LayoutParams.FIRST_SYSTEM_WINDOW
Wale Ogunwale6dfdfd62015-04-15 12:01:38 -07002176 && win.mAppToken != null && win.mAppToken.showForAllUsers) {
Jorim Jaggidbe44ac2016-04-22 19:50:13 -07002177
2178 // All window frames that are fullscreen extend above status bar, but some don't extend
2179 // below navigation bar. Thus, check for display frame for top/left and stable frame for
2180 // bottom right.
2181 if (win.mFrame.left <= win.mDisplayFrame.left
2182 && win.mFrame.top <= win.mDisplayFrame.top
2183 && win.mFrame.right >= win.mStableFrame.right
2184 && win.mFrame.bottom >= win.mStableFrame.bottom) {
Craig Mautner5962b122012-10-05 14:45:52 -07002185 // Is a fullscreen window, like the clock alarm. Show to everyone.
2186 return false;
2187 }
2188 }
2189
Craig Mautner341220f2012-10-16 15:20:09 -07002190 return win.mShowToOwnerOnly
Kenny Guy2a764942014-04-02 13:29:20 +01002191 && !mService.isCurrentProfileLocked(UserHandle.getUserId(win.mOwnerUid));
Craig Mautner9dc52bc2012-08-06 14:15:42 -07002192 }
2193
Dianne Hackbornffb3d932011-05-17 17:44:51 -07002194 private static void applyInsets(Region outRegion, Rect frame, Rect inset) {
2195 outRegion.set(
2196 frame.left + inset.left, frame.top + inset.top,
2197 frame.right - inset.right, frame.bottom - inset.bottom);
Dianne Hackborne2515ee2011-04-27 18:52:56 -04002198 }
2199
Wale Ogunwale053c8e42015-11-16 14:27:21 -08002200 void getTouchableRegion(Region outRegion) {
Dianne Hackbornffb3d932011-05-17 17:44:51 -07002201 final Rect frame = mFrame;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002202 switch (mTouchableInsets) {
2203 default:
Wale Ogunwale053c8e42015-11-16 14:27:21 -08002204 case TOUCHABLE_INSETS_FRAME:
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002205 outRegion.set(frame);
2206 break;
Wale Ogunwale053c8e42015-11-16 14:27:21 -08002207 case TOUCHABLE_INSETS_CONTENT:
Dianne Hackbornffb3d932011-05-17 17:44:51 -07002208 applyInsets(outRegion, frame, mGivenContentInsets);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002209 break;
Wale Ogunwale053c8e42015-11-16 14:27:21 -08002210 case TOUCHABLE_INSETS_VISIBLE:
Dianne Hackbornffb3d932011-05-17 17:44:51 -07002211 applyInsets(outRegion, frame, mGivenVisibleInsets);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002212 break;
Wale Ogunwale053c8e42015-11-16 14:27:21 -08002213 case TOUCHABLE_INSETS_REGION: {
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002214 final Region givenTouchableRegion = mGivenTouchableRegion;
2215 outRegion.set(givenTouchableRegion);
2216 outRegion.translate(frame.left, frame.top);
2217 break;
2218 }
2219 }
Wale Ogunwale053c8e42015-11-16 14:27:21 -08002220 cropRegionToStackBoundsIfNeeded(outRegion);
2221 }
2222
2223 void cropRegionToStackBoundsIfNeeded(Region region) {
Wale Ogunwaleb1faf602016-01-27 09:12:31 -08002224 final Task task = getTask();
2225 if (task == null || !task.cropWindowsToStackBounds()) {
Wale Ogunwale053c8e42015-11-16 14:27:21 -08002226 return;
2227 }
2228
Wale Ogunwaleb1faf602016-01-27 09:12:31 -08002229 final TaskStack stack = task.mStack;
Wale Ogunwale053c8e42015-11-16 14:27:21 -08002230 if (stack == null) {
2231 return;
2232 }
2233
2234 stack.getDimBounds(mTmpRect);
2235 region.op(mTmpRect, Region.Op.INTERSECT);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002236 }
2237
Craig Mautner59c00972012-07-30 12:10:24 -07002238 WindowList getWindowList() {
Craig Mautnerdf88d732014-01-27 09:21:32 -08002239 final DisplayContent displayContent = getDisplayContent();
2240 return displayContent == null ? null : displayContent.getWindowList();
Craig Mautner59c00972012-07-30 12:10:24 -07002241 }
2242
Dianne Hackborne3f23a32013-03-01 13:25:35 -08002243 /**
2244 * Report a focus change. Must be called with no locks held, and consistently
2245 * from the same serialized thread (such as dispatched from a handler).
2246 */
2247 public void reportFocusChangedSerialized(boolean focused, boolean inTouchMode) {
2248 try {
2249 mClient.windowFocusChanged(focused, inTouchMode);
2250 } catch (RemoteException e) {
2251 }
2252 if (mFocusCallbacks != null) {
2253 final int N = mFocusCallbacks.beginBroadcast();
2254 for (int i=0; i<N; i++) {
2255 IWindowFocusObserver obs = mFocusCallbacks.getBroadcastItem(i);
2256 try {
2257 if (focused) {
2258 obs.focusGained(mWindowId.asBinder());
2259 } else {
2260 obs.focusLost(mWindowId.asBinder());
2261 }
2262 } catch (RemoteException e) {
2263 }
2264 }
2265 mFocusCallbacks.finishBroadcast();
2266 }
2267 }
2268
Robert Carrc24d8f92016-02-29 16:24:33 -08002269 /**
2270 * Update our current configurations, based on task configuration.
2271 *
2272 * @return A configuration suitable for sending to the client.
2273 */
2274 private Configuration updateConfiguration() {
Robert Carrc24d8f92016-02-29 16:24:33 -08002275 final boolean configChanged = isConfigChanged();
Jorim Jaggi26c8c422016-05-09 19:57:25 -07002276 getMergedConfig(mMergedConfiguration);
2277 mConfigHasChanged = false;
Robert Carrc24d8f92016-02-29 16:24:33 -08002278 if ((DEBUG_RESIZE || DEBUG_ORIENTATION || DEBUG_CONFIGURATION) && configChanged) {
2279 Slog.i(TAG, "Sending new config to window " + this + ": " +
Jorim Jaggi26c8c422016-05-09 19:57:25 -07002280 " / mergedConfig=" + mMergedConfiguration);
Robert Carrc24d8f92016-02-29 16:24:33 -08002281 }
Robert Carrc24d8f92016-02-29 16:24:33 -08002282 return mMergedConfiguration;
2283 }
2284
Jorim Jaggi26c8c422016-05-09 19:57:25 -07002285 private void getMergedConfig(Configuration outConfig) {
2286 if (mAppToken != null && mAppToken.mFrozenMergedConfig.size() > 0) {
2287 outConfig.setTo(mAppToken.mFrozenMergedConfig.peek());
2288 return;
2289 }
2290 final Task task = getTask();
2291 final Configuration overrideConfig = task != null
2292 ? task.mOverrideConfig
2293 : Configuration.EMPTY;
2294 final Configuration serviceConfig = mService.mCurConfiguration;
2295 outConfig.setTo(serviceConfig);
2296 if (overrideConfig != Configuration.EMPTY) {
2297 outConfig.updateFrom(overrideConfig);
2298 }
2299 }
2300
Craig Mautnerdf88d732014-01-27 09:21:32 -08002301 void reportResized() {
Wale Ogunwalecad05a02015-09-25 10:41:44 -07002302 Trace.traceBegin(TRACE_TAG_WINDOW_MANAGER, "wm.reportResized_" + getWindowTag());
Craig Mautnerdf88d732014-01-27 09:21:32 -08002303 try {
Craig Mautnerd1c2c542014-02-06 10:31:41 -08002304 if (DEBUG_RESIZE || DEBUG_ORIENTATION) Slog.v(TAG, "Reporting new frame to " + this
2305 + ": " + mCompatFrame);
Robert Carrc24d8f92016-02-29 16:24:33 -08002306 final Configuration newConfig = isConfigChanged() ? updateConfiguration() : null;
Craig Mautnerd1c2c542014-02-06 10:31:41 -08002307 if (DEBUG_ORIENTATION && mWinAnimator.mDrawState == WindowStateAnimator.DRAW_PENDING)
2308 Slog.i(TAG, "Resizing " + this + " WITH DRAW PENDING");
2309
Craig Mautnerdf88d732014-01-27 09:21:32 -08002310 final Rect frame = mFrame;
2311 final Rect overscanInsets = mLastOverscanInsets;
2312 final Rect contentInsets = mLastContentInsets;
2313 final Rect visibleInsets = mLastVisibleInsets;
Adrian Roosfa104232014-06-20 16:10:14 -07002314 final Rect stableInsets = mLastStableInsets;
Filip Gruszczynski2217f612015-05-26 11:32:08 -07002315 final Rect outsets = mLastOutsets;
Craig Mautnerd1c2c542014-02-06 10:31:41 -08002316 final boolean reportDraw = mWinAnimator.mDrawState == WindowStateAnimator.DRAW_PENDING;
Chet Haase8eb48d22014-09-24 07:31:29 -07002317 if (mAttrs.type != WindowManager.LayoutParams.TYPE_APPLICATION_STARTING
2318 && mClient instanceof IWindow.Stub) {
Craig Mautnerdf88d732014-01-27 09:21:32 -08002319 // To prevent deadlock simulate one-way call if win.mClient is a local object.
2320 mService.mH.post(new Runnable() {
2321 @Override
2322 public void run() {
2323 try {
Jorim Jaggi253a20f2015-11-03 12:38:42 +01002324 dispatchResized(frame, overscanInsets, contentInsets, visibleInsets,
2325 stableInsets, outsets, reportDraw, newConfig);
Craig Mautnerdf88d732014-01-27 09:21:32 -08002326 } catch (RemoteException e) {
2327 // Not a remote call, RemoteException won't be raised.
2328 }
2329 }
2330 });
2331 } else {
Jorim Jaggi253a20f2015-11-03 12:38:42 +01002332 dispatchResized(frame, overscanInsets, contentInsets, visibleInsets, stableInsets,
Filip Gruszczynski2217f612015-05-26 11:32:08 -07002333 outsets, reportDraw, newConfig);
Craig Mautnerdf88d732014-01-27 09:21:32 -08002334 }
Svetoslav4604abc2014-06-10 18:59:30 -07002335
2336 //TODO (multidisplay): Accessibility supported only for the default display.
2337 if (mService.mAccessibilityController != null
2338 && getDisplayId() == Display.DEFAULT_DISPLAY) {
Svetoslavf7174e82014-06-12 11:29:35 -07002339 mService.mAccessibilityController.onSomeWindowResizedOrMovedLocked();
Svetoslav4604abc2014-06-10 18:59:30 -07002340 }
2341
Craig Mautnerdf88d732014-01-27 09:21:32 -08002342 mOverscanInsetsChanged = false;
2343 mContentInsetsChanged = false;
2344 mVisibleInsetsChanged = false;
Adrian Roosfa104232014-06-20 16:10:14 -07002345 mStableInsetsChanged = false;
Filip Gruszczynski2217f612015-05-26 11:32:08 -07002346 mOutsetsChanged = false;
Andrii Kulianeb1d3222016-05-16 15:17:55 -07002347 mResizedWhileNotDragResizingReported = true;
Craig Mautnerdf88d732014-01-27 09:21:32 -08002348 mWinAnimator.mSurfaceResized = false;
2349 } catch (RemoteException e) {
2350 mOrientationChanging = false;
2351 mLastFreezeDuration = (int)(SystemClock.elapsedRealtime()
2352 - mService.mDisplayFreezeTime);
tiger_huang950ee772014-07-11 18:41:48 +08002353 // We are assuming the hosting process is dead or in a zombie state.
2354 Slog.w(TAG, "Failed to report 'resized' to the client of " + this
2355 + ", removing this window.");
2356 mService.mPendingRemove.add(this);
Filip Gruszczynski24966d42015-09-05 15:00:00 -07002357 mService.mWindowPlacerLocked.requestTraversal();
Craig Mautnerdf88d732014-01-27 09:21:32 -08002358 }
Wale Ogunwalecad05a02015-09-25 10:41:44 -07002359 Trace.traceEnd(TRACE_TAG_WINDOW_MANAGER);
Craig Mautnerdf88d732014-01-27 09:21:32 -08002360 }
2361
Jorim Jaggi2e95a482016-01-14 17:36:55 -08002362 Rect getBackdropFrame(Rect frame) {
Chong Zhangd153c4f2015-11-06 20:26:40 -08002363 // When the task is docked, we send fullscreen sized backDropFrame as soon as resizing
2364 // start even if we haven't received the relayout window, so that the client requests
2365 // the relayout sooner. When dragging stops, backDropFrame needs to stay fullscreen
2366 // until the window to small size, otherwise the multithread renderer will shift last
2367 // one or more frame to wrong offset. So here we send fullscreen backdrop if either
2368 // isDragResizing() or isDragResizeChanged() is true.
Filip Gruszczynski84fa3352016-01-25 16:28:49 -08002369 boolean resizing = isDragResizing() || isDragResizeChanged();
2370 if (StackId.useWindowFrameForBackdrop(getStackId()) || !resizing) {
2371 return frame;
2372 }
Jorim Jaggi2e95a482016-01-14 17:36:55 -08002373 DisplayInfo displayInfo = getDisplayInfo();
2374 mTmpRect.set(0, 0, displayInfo.logicalWidth, displayInfo.logicalHeight);
Filip Gruszczynski84fa3352016-01-25 16:28:49 -08002375 return mTmpRect;
2376 }
2377
Jorim Jaggi86905582016-02-09 21:36:09 -08002378 @Override
2379 public int getStackId() {
Filip Gruszczynski84fa3352016-01-25 16:28:49 -08002380 final TaskStack stack = getStack();
2381 if (stack == null) {
2382 return INVALID_STACK_ID;
2383 }
2384 return stack.mStackId;
Jorim Jaggi2e95a482016-01-14 17:36:55 -08002385 }
2386
2387 private void dispatchResized(Rect frame, Rect overscanInsets, Rect contentInsets,
2388 Rect visibleInsets, Rect stableInsets, Rect outsets, boolean reportDraw,
2389 Configuration newConfig) throws RemoteException {
Chong Zhangedaf3052016-04-22 15:04:31 -07002390 final boolean forceRelayout = isDragResizeChanged() || mResizedWhileNotDragResizing;
2391
Jorim Jaggidc249c42015-12-15 14:57:31 -08002392 mClient.resized(frame, overscanInsets, contentInsets, visibleInsets, stableInsets, outsets,
Jorim Jaggia4a58ef2016-01-27 02:10:08 -08002393 reportDraw, newConfig, getBackdropFrame(frame),
Chong Zhangedaf3052016-04-22 15:04:31 -07002394 forceRelayout, mPolicy.isNavBarForcedShownLw(this));
Jorim Jaggic662d8e2016-02-05 16:54:54 -08002395 mDragResizingChangeReported = true;
Jorim Jaggi253a20f2015-11-03 12:38:42 +01002396 }
2397
Dianne Hackborne3f23a32013-03-01 13:25:35 -08002398 public void registerFocusObserver(IWindowFocusObserver observer) {
2399 synchronized(mService.mWindowMap) {
2400 if (mFocusCallbacks == null) {
2401 mFocusCallbacks = new RemoteCallbackList<IWindowFocusObserver>();
2402 }
2403 mFocusCallbacks.register(observer);
2404 }
2405 }
2406
2407 public void unregisterFocusObserver(IWindowFocusObserver observer) {
2408 synchronized(mService.mWindowMap) {
2409 if (mFocusCallbacks != null) {
2410 mFocusCallbacks.unregister(observer);
2411 }
2412 }
2413 }
2414
2415 public boolean isFocused() {
2416 synchronized(mService.mWindowMap) {
2417 return mService.mCurrentFocus == this;
2418 }
2419 }
2420
Filip Gruszczynski1a1d8312015-08-26 17:00:47 -07002421 boolean inFreeformWorkspace() {
Wale Ogunwale5a2f2cb2015-09-17 12:31:55 -07002422 final Task task = getTask();
Chong Zhang09b21ef2015-09-14 10:20:21 -07002423 return task != null && task.inFreeformWorkspace();
2424 }
2425
Wale Ogunwale9185fb02016-03-11 18:06:14 -08002426 @Override
Andrii Kulian933076d2016-03-29 17:04:42 -07002427 public boolean isInMultiWindowMode() {
Wale Ogunwale9185fb02016-03-11 18:06:14 -08002428 final Task task = getTask();
2429 return task != null && !task.isFullscreen();
2430 }
2431
Chong Zhang3005e752015-09-18 18:46:28 -07002432 boolean isDragResizeChanged() {
Filip Gruszczynski3ddc5d62015-09-23 15:01:30 -07002433 return mDragResizing != computeDragResizing();
2434 }
2435
Jorim Jaggic662d8e2016-02-05 16:54:54 -08002436 /**
2437 * @return Whether we reported a drag resize change to the application or not already.
2438 */
2439 boolean isDragResizingChangeReported() {
2440 return mDragResizingChangeReported;
2441 }
2442
2443 /**
2444 * Resets the state whether we reported a drag resize change to the app.
2445 */
2446 void resetDragResizingChangeReported() {
2447 mDragResizingChangeReported = false;
2448 }
2449
Andrii Kulianeb1d3222016-05-16 15:17:55 -07002450 /**
2451 * Set whether we got resized but drag resizing flag was false.
2452 * @see #isResizedWhileNotDragResizing().
2453 */
2454 void setResizedWhileNotDragResizing(boolean resizedWhileNotDragResizing) {
2455 mResizedWhileNotDragResizing = resizedWhileNotDragResizing;
2456 mResizedWhileNotDragResizingReported = !resizedWhileNotDragResizing;
2457 }
2458
2459 /**
2460 * Indicates whether we got resized but drag resizing flag was false. In this case, we also
2461 * need to recreate the surface and defer surface bound updates in order to make sure the
2462 * buffer contents and the positioning/size stay in sync.
2463 */
2464 boolean isResizedWhileNotDragResizing() {
2465 return mResizedWhileNotDragResizing;
2466 }
2467
2468 /**
2469 * @return Whether we reported "resize while not drag resizing" to the application.
2470 * @see #isResizedWhileNotDragResizing()
2471 */
2472 boolean isResizedWhileNotDragResizingReported() {
2473 return mResizedWhileNotDragResizingReported;
2474 }
2475
Jorim Jaggidcf467c2015-11-05 13:59:32 +01002476 int getResizeMode() {
2477 return mResizeMode;
2478 }
2479
Jorim Jaggi192086e2016-03-11 17:17:03 +01002480 boolean computeDragResizing() {
Wale Ogunwale5a2f2cb2015-09-17 12:31:55 -07002481 final Task task = getTask();
Filip Gruszczynski3ddc5d62015-09-23 15:01:30 -07002482 if (task == null) {
2483 return false;
2484 }
Jorim Jaggidd6e4c12016-02-17 22:13:43 -08002485 if (mAttrs.width != MATCH_PARENT || mAttrs.height != MATCH_PARENT) {
2486
2487 // Floating windows never enter drag resize mode.
2488 return false;
2489 }
Filip Gruszczynski3ddc5d62015-09-23 15:01:30 -07002490 if (task.isDragResizing()) {
2491 return true;
2492 }
Jorim Jaggi0429f352015-12-22 16:29:16 +01002493
2494 // If the bounds are currently frozen, it means that the layout size that the app sees
2495 // and the bounds we clip this window to might be different. In order to avoid holes, we
2496 // simulate that we are still resizing so the app fills the hole with the resizing
2497 // background.
2498 return (mDisplayContent.mDividerControllerLocked.isResizing()
2499 || mAppToken != null && !mAppToken.mFrozenBounds.isEmpty()) &&
Jorim Jaggi899327f2016-02-25 20:44:18 -05002500 !task.inFreeformWorkspace() && !isGoneForLayoutLw();
Jorim Jaggi9511b0f2016-01-29 19:12:44 -08002501
Chong Zhang3005e752015-09-18 18:46:28 -07002502 }
2503
2504 void setDragResizing() {
Jorim Jaggic662d8e2016-02-05 16:54:54 -08002505 final boolean resizing = computeDragResizing();
2506 if (resizing == mDragResizing) {
2507 return;
2508 }
2509 mDragResizing = resizing;
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +01002510 final Task task = getTask();
2511 if (task != null && task.isDragResizing()) {
2512 mResizeMode = task.getDragResizeMode();
2513 } else {
2514 mResizeMode = mDragResizing && mDisplayContent.mDividerControllerLocked.isResizing()
2515 ? DRAG_RESIZE_MODE_DOCKED_DIVIDER
2516 : DRAG_RESIZE_MODE_FREEFORM;
2517 }
Chong Zhang3005e752015-09-18 18:46:28 -07002518 }
2519
2520 boolean isDragResizing() {
2521 return mDragResizing;
Skuhnef932e562015-08-20 12:07:30 -07002522 }
2523
Robert Carr2487ce72016-04-07 15:18:45 -07002524 boolean isDockedResizing() {
2525 return mDragResizing && getResizeMode() == DRAG_RESIZE_MODE_DOCKED_DIVIDER;
2526 }
2527
Dianne Hackborna44abeb2011-08-08 19:24:01 -07002528 void dump(PrintWriter pw, String prefix, boolean dumpAll) {
Wale Ogunwale30cc7bf2015-02-04 16:47:57 -08002529 final TaskStack stack = getStack();
Craig Mautnerdf88d732014-01-27 09:21:32 -08002530 pw.print(prefix); pw.print("mDisplayId="); pw.print(getDisplayId());
Wale Ogunwale30cc7bf2015-02-04 16:47:57 -08002531 if (stack != null) {
2532 pw.print(" stackId="); pw.print(stack.mStackId);
2533 }
Wale Ogunwale4c5aa5172016-04-19 11:29:05 -07002534 if (mNotOnAppsDisplay) {
2535 pw.print(" mNotOnAppsDisplay="); pw.print(mNotOnAppsDisplay);
2536 }
Craig Mautner59c00972012-07-30 12:10:24 -07002537 pw.print(" mSession="); pw.print(mSession);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002538 pw.print(" mClient="); pw.println(mClient.asBinder());
Craig Mautner88400d32012-09-30 12:35:45 -07002539 pw.print(prefix); pw.print("mOwnerUid="); pw.print(mOwnerUid);
Dianne Hackbornc2293022013-02-06 23:14:49 -08002540 pw.print(" mShowToOwnerOnly="); pw.print(mShowToOwnerOnly);
2541 pw.print(" package="); pw.print(mAttrs.packageName);
2542 pw.print(" appop="); pw.println(AppOpsManager.opToName(mAppOp));
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002543 pw.print(prefix); pw.print("mAttrs="); pw.println(mAttrs);
Dianne Hackborna44abeb2011-08-08 19:24:01 -07002544 pw.print(prefix); pw.print("Requested w="); pw.print(mRequestedWidth);
2545 pw.print(" h="); pw.print(mRequestedHeight);
2546 pw.print(" mLayoutSeq="); pw.println(mLayoutSeq);
Dianne Hackborn1743b642012-03-12 17:04:43 -07002547 if (mRequestedWidth != mLastRequestedWidth || mRequestedHeight != mLastRequestedHeight) {
2548 pw.print(prefix); pw.print("LastRequested w="); pw.print(mLastRequestedWidth);
2549 pw.print(" h="); pw.println(mLastRequestedHeight);
2550 }
Robert Carr51a1b872015-12-08 14:03:13 -08002551 if (isChildWindow() || mLayoutAttached) {
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002552 pw.print(prefix); pw.print("mAttachedWindow="); pw.print(mAttachedWindow);
2553 pw.print(" mLayoutAttached="); pw.println(mLayoutAttached);
2554 }
2555 if (mIsImWindow || mIsWallpaper || mIsFloatingLayer) {
2556 pw.print(prefix); pw.print("mIsImWindow="); pw.print(mIsImWindow);
2557 pw.print(" mIsWallpaper="); pw.print(mIsWallpaper);
2558 pw.print(" mIsFloatingLayer="); pw.print(mIsFloatingLayer);
2559 pw.print(" mWallpaperVisible="); pw.println(mWallpaperVisible);
2560 }
Dianne Hackborna44abeb2011-08-08 19:24:01 -07002561 if (dumpAll) {
2562 pw.print(prefix); pw.print("mBaseLayer="); pw.print(mBaseLayer);
2563 pw.print(" mSubLayer="); pw.print(mSubLayer);
2564 pw.print(" mAnimLayer="); pw.print(mLayer); pw.print("+");
Craig Mautner59431632012-04-04 11:56:44 -07002565 pw.print((mTargetAppToken != null ?
2566 mTargetAppToken.mAppAnimator.animLayerAdjustment
2567 : (mAppToken != null ? mAppToken.mAppAnimator.animLayerAdjustment : 0)));
Craig Mautnerc2f9be02012-03-27 17:32:29 -07002568 pw.print("="); pw.print(mWinAnimator.mAnimLayer);
2569 pw.print(" mLastLayer="); pw.println(mWinAnimator.mLastLayer);
Dianne Hackborn6d05fd32011-11-19 14:36:15 -08002570 }
Dianne Hackborna44abeb2011-08-08 19:24:01 -07002571 if (dumpAll) {
2572 pw.print(prefix); pw.print("mToken="); pw.println(mToken);
2573 pw.print(prefix); pw.print("mRootToken="); pw.println(mRootToken);
2574 if (mAppToken != null) {
Wale Ogunwale6bab4cf2016-04-07 12:23:08 -07002575 pw.print(prefix); pw.print("mAppToken="); pw.println(mAppToken);
2576 pw.print(prefix); pw.print(" isAnimatingWithSavedSurface()=");
Chong Zhangbfc2f8f2016-01-29 15:50:34 -08002577 pw.print(isAnimatingWithSavedSurface());
Chong Zhang112eb8c2015-11-02 11:17:00 -08002578 pw.print(" mAppDied=");pw.println(mAppDied);
Dianne Hackborna44abeb2011-08-08 19:24:01 -07002579 }
2580 if (mTargetAppToken != null) {
2581 pw.print(prefix); pw.print("mTargetAppToken="); pw.println(mTargetAppToken);
2582 }
2583 pw.print(prefix); pw.print("mViewVisibility=0x");
2584 pw.print(Integer.toHexString(mViewVisibility));
Dianne Hackborna44abeb2011-08-08 19:24:01 -07002585 pw.print(" mHaveFrame="); pw.print(mHaveFrame);
2586 pw.print(" mObscured="); pw.println(mObscured);
Dianne Hackborn9a230e02011-10-06 11:51:27 -07002587 pw.print(prefix); pw.print("mSeq="); pw.print(mSeq);
2588 pw.print(" mSystemUiVisibility=0x");
2589 pw.println(Integer.toHexString(mSystemUiVisibility));
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002590 }
Dianne Hackbornb6b23ec2013-02-11 19:29:06 -08002591 if (!mPolicyVisibility || !mPolicyVisibilityAfterAnim || !mAppOpVisibility
2592 || mAttachedHidden) {
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002593 pw.print(prefix); pw.print("mPolicyVisibility=");
2594 pw.print(mPolicyVisibility);
2595 pw.print(" mPolicyVisibilityAfterAnim=");
2596 pw.print(mPolicyVisibilityAfterAnim);
Dianne Hackbornb6b23ec2013-02-11 19:29:06 -08002597 pw.print(" mAppOpVisibility=");
2598 pw.print(mAppOpVisibility);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002599 pw.print(" mAttachedHidden="); pw.println(mAttachedHidden);
2600 }
Dianne Hackbornb7ff51b2012-01-23 19:15:27 -08002601 if (!mRelayoutCalled || mLayoutNeeded) {
2602 pw.print(prefix); pw.print("mRelayoutCalled="); pw.print(mRelayoutCalled);
2603 pw.print(" mLayoutNeeded="); pw.println(mLayoutNeeded);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002604 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002605 if (mXOffset != 0 || mYOffset != 0) {
2606 pw.print(prefix); pw.print("Offsets x="); pw.print(mXOffset);
2607 pw.print(" y="); pw.println(mYOffset);
2608 }
Dianne Hackborna44abeb2011-08-08 19:24:01 -07002609 if (dumpAll) {
2610 pw.print(prefix); pw.print("mGivenContentInsets=");
2611 mGivenContentInsets.printShortString(pw);
2612 pw.print(" mGivenVisibleInsets=");
2613 mGivenVisibleInsets.printShortString(pw);
2614 pw.println();
2615 if (mTouchableInsets != 0 || mGivenInsetsPending) {
2616 pw.print(prefix); pw.print("mTouchableInsets="); pw.print(mTouchableInsets);
2617 pw.print(" mGivenInsetsPending="); pw.println(mGivenInsetsPending);
Dianne Hackborna4b7f2f2012-05-21 11:28:41 -07002618 Region region = new Region();
2619 getTouchableRegion(region);
2620 pw.print(prefix); pw.print("touchable region="); pw.println(region);
Dianne Hackborna44abeb2011-08-08 19:24:01 -07002621 }
Jorim Jaggi26c8c422016-05-09 19:57:25 -07002622 pw.print(prefix); pw.print("mMergedConfiguration="); pw.println(mMergedConfiguration);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002623 }
Craig Mautnerc8bc97e2012-04-02 12:54:54 -07002624 pw.print(prefix); pw.print("mHasSurface="); pw.print(mHasSurface);
Filip Gruszczynski2a6a2c22015-10-14 12:00:53 -07002625 pw.print(" mShownPosition="); mShownPosition.printShortString(pw);
Chong Zhanga8975bd2016-01-28 17:13:47 -08002626 pw.print(" isReadyForDisplay()="); pw.print(isReadyForDisplay());
Wale Ogunwale9017ec02016-02-25 08:55:25 -08002627 pw.print(" hasSavedSurface()="); pw.print(hasSavedSurface());
2628 pw.print(" mWindowRemovalAllowed="); pw.println(mWindowRemovalAllowed);
Dianne Hackborna44abeb2011-08-08 19:24:01 -07002629 if (dumpAll) {
2630 pw.print(prefix); pw.print("mFrame="); mFrame.printShortString(pw);
2631 pw.print(" last="); mLastFrame.printShortString(pw);
2632 pw.println();
2633 }
Dianne Hackbornffb3d932011-05-17 17:44:51 -07002634 if (mEnforceSizeCompat) {
2635 pw.print(prefix); pw.print("mCompatFrame="); mCompatFrame.printShortString(pw);
Dianne Hackbornffb3d932011-05-17 17:44:51 -07002636 pw.println();
2637 }
Dianne Hackborna44abeb2011-08-08 19:24:01 -07002638 if (dumpAll) {
Dianne Hackborn5c58de32012-04-28 19:52:37 -07002639 pw.print(prefix); pw.print("Frames: containing=");
Dianne Hackborna44abeb2011-08-08 19:24:01 -07002640 mContainingFrame.printShortString(pw);
Dianne Hackborn5c58de32012-04-28 19:52:37 -07002641 pw.print(" parent="); mParentFrame.printShortString(pw);
Dianne Hackbornc4aad012013-02-22 15:05:25 -08002642 pw.println();
2643 pw.print(prefix); pw.print(" display="); mDisplayFrame.printShortString(pw);
2644 pw.print(" overscan="); mOverscanFrame.printShortString(pw);
Dianne Hackborna44abeb2011-08-08 19:24:01 -07002645 pw.println();
Dianne Hackborn85afd1b2012-05-13 13:31:06 -07002646 pw.print(prefix); pw.print(" content="); mContentFrame.printShortString(pw);
Dianne Hackborn5c58de32012-04-28 19:52:37 -07002647 pw.print(" visible="); mVisibleFrame.printShortString(pw);
Dianne Hackborna44abeb2011-08-08 19:24:01 -07002648 pw.println();
John Spurlock46646232013-09-30 22:32:42 -04002649 pw.print(prefix); pw.print(" decor="); mDecorFrame.printShortString(pw);
2650 pw.println();
Filip Gruszczynski2217f612015-05-26 11:32:08 -07002651 pw.print(prefix); pw.print(" outset="); mOutsetFrame.printShortString(pw);
2652 pw.println();
Dianne Hackbornc4aad012013-02-22 15:05:25 -08002653 pw.print(prefix); pw.print("Cur insets: overscan=");
2654 mOverscanInsets.printShortString(pw);
2655 pw.print(" content="); mContentInsets.printShortString(pw);
Dianne Hackborn5c58de32012-04-28 19:52:37 -07002656 pw.print(" visible="); mVisibleInsets.printShortString(pw);
Adrian Roosfa104232014-06-20 16:10:14 -07002657 pw.print(" stable="); mStableInsets.printShortString(pw);
Wale Ogunwale6bab4cf2016-04-07 12:23:08 -07002658 pw.print(" surface="); mAttrs.surfaceInsets.printShortString(pw);
Filip Gruszczynski2217f612015-05-26 11:32:08 -07002659 pw.print(" outsets="); mOutsets.printShortString(pw);
Dianne Hackborn5c58de32012-04-28 19:52:37 -07002660 pw.println();
Dianne Hackbornc4aad012013-02-22 15:05:25 -08002661 pw.print(prefix); pw.print("Lst insets: overscan=");
2662 mLastOverscanInsets.printShortString(pw);
2663 pw.print(" content="); mLastContentInsets.printShortString(pw);
Dianne Hackborn5c58de32012-04-28 19:52:37 -07002664 pw.print(" visible="); mLastVisibleInsets.printShortString(pw);
Adrian Roosfa104232014-06-20 16:10:14 -07002665 pw.print(" stable="); mLastStableInsets.printShortString(pw);
Filip Gruszczynski2217f612015-05-26 11:32:08 -07002666 pw.print(" physical="); mLastOutsets.printShortString(pw);
2667 pw.print(" outset="); mLastOutsets.printShortString(pw);
Dianne Hackborna44abeb2011-08-08 19:24:01 -07002668 pw.println();
2669 }
Dianne Hackborn529e7442012-11-01 14:22:28 -07002670 pw.print(prefix); pw.print(mWinAnimator); pw.println(":");
2671 mWinAnimator.dump(pw, prefix + " ", dumpAll);
Wale Ogunwalec48a3542016-02-19 15:18:45 -08002672 if (mAnimatingExit || mRemoveOnExit || mDestroying || mRemoved) {
2673 pw.print(prefix); pw.print("mAnimatingExit="); pw.print(mAnimatingExit);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002674 pw.print(" mRemoveOnExit="); pw.print(mRemoveOnExit);
2675 pw.print(" mDestroying="); pw.print(mDestroying);
2676 pw.print(" mRemoved="); pw.println(mRemoved);
2677 }
2678 if (mOrientationChanging || mAppFreezing || mTurnOnScreen) {
2679 pw.print(prefix); pw.print("mOrientationChanging=");
2680 pw.print(mOrientationChanging);
2681 pw.print(" mAppFreezing="); pw.print(mAppFreezing);
2682 pw.print(" mTurnOnScreen="); pw.println(mTurnOnScreen);
2683 }
Dianne Hackborna57c6952013-03-29 14:46:40 -07002684 if (mLastFreezeDuration != 0) {
2685 pw.print(prefix); pw.print("mLastFreezeDuration=");
2686 TimeUtils.formatDuration(mLastFreezeDuration, pw); pw.println();
2687 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002688 if (mHScale != 1 || mVScale != 1) {
2689 pw.print(prefix); pw.print("mHScale="); pw.print(mHScale);
2690 pw.print(" mVScale="); pw.println(mVScale);
2691 }
2692 if (mWallpaperX != -1 || mWallpaperY != -1) {
2693 pw.print(prefix); pw.print("mWallpaperX="); pw.print(mWallpaperX);
2694 pw.print(" mWallpaperY="); pw.println(mWallpaperY);
2695 }
2696 if (mWallpaperXStep != -1 || mWallpaperYStep != -1) {
2697 pw.print(prefix); pw.print("mWallpaperXStep="); pw.print(mWallpaperXStep);
2698 pw.print(" mWallpaperYStep="); pw.println(mWallpaperYStep);
2699 }
Dianne Hackborn067e5f62014-09-07 23:14:30 -07002700 if (mWallpaperDisplayOffsetX != Integer.MIN_VALUE
2701 || mWallpaperDisplayOffsetY != Integer.MIN_VALUE) {
2702 pw.print(prefix); pw.print("mWallpaperDisplayOffsetX=");
2703 pw.print(mWallpaperDisplayOffsetX);
2704 pw.print(" mWallpaperDisplayOffsetY=");
2705 pw.println(mWallpaperDisplayOffsetY);
2706 }
Jeff Brownc2932a12014-11-20 18:04:05 -08002707 if (mDrawLock != null) {
Wale Ogunwale85b90ab2015-04-27 20:54:47 -07002708 pw.print(prefix); pw.println("mDrawLock=" + mDrawLock);
Jeff Brownc2932a12014-11-20 18:04:05 -08002709 }
Jorim Jaggi9511b0f2016-01-29 19:12:44 -08002710 if (isDragResizing()) {
2711 pw.print(prefix); pw.println("isDragResizing=" + isDragResizing());
2712 }
2713 if (computeDragResizing()) {
2714 pw.print(prefix); pw.println("computeDragResizing=" + computeDragResizing());
2715 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002716 }
Craig Mautner164d4bb2012-11-26 13:51:23 -08002717
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002718 String makeInputChannelName() {
2719 return Integer.toHexString(System.identityHashCode(this))
Wale Ogunwalecad05a02015-09-25 10:41:44 -07002720 + " " + getWindowTag();
2721 }
2722
Robert Carra1eb4392015-12-10 12:43:51 -08002723 CharSequence getWindowTag() {
Wale Ogunwalecad05a02015-09-25 10:41:44 -07002724 CharSequence tag = mAttrs.getTitle();
2725 if (tag == null || tag.length() <= 0) {
2726 tag = mAttrs.packageName;
2727 }
2728 return tag;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002729 }
2730
2731 @Override
2732 public String toString() {
Wale Ogunwalecad05a02015-09-25 10:41:44 -07002733 final CharSequence title = getWindowTag();
Wale Ogunwalec48a3542016-02-19 15:18:45 -08002734 if (mStringNameCache == null || mLastTitle != title || mWasExiting != mAnimatingExit) {
Dianne Hackbornc2293022013-02-06 23:14:49 -08002735 mLastTitle = title;
Wale Ogunwalec48a3542016-02-19 15:18:45 -08002736 mWasExiting = mAnimatingExit;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002737 mStringNameCache = "Window{" + Integer.toHexString(System.identityHashCode(this))
Dianne Hackborn5fe7e2a2012-10-04 11:58:16 -07002738 + " u" + UserHandle.getUserId(mSession.mUid)
Wale Ogunwalec48a3542016-02-19 15:18:45 -08002739 + " " + mLastTitle + (mAnimatingExit ? " EXITING}" : "}");
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002740 }
2741 return mStringNameCache;
2742 }
Robert Carr58f29132015-10-29 14:19:05 -07002743
Chia-I Wue6bcaf12016-05-27 10:58:48 +08002744 void transformClipRectFromScreenToSurfaceSpace(Rect clipRect) {
Robert Carr58f29132015-10-29 14:19:05 -07002745 if (mHScale >= 0) {
Chia-I Wue6bcaf12016-05-27 10:58:48 +08002746 clipRect.left = (int) (clipRect.left / mHScale);
2747 clipRect.right = (int) Math.ceil(clipRect.right / mHScale);
Robert Carr58f29132015-10-29 14:19:05 -07002748 }
2749 if (mVScale >= 0) {
Chia-I Wue6bcaf12016-05-27 10:58:48 +08002750 clipRect.top = (int) (clipRect.top / mVScale);
2751 clipRect.bottom = (int) Math.ceil(clipRect.bottom / mVScale);
Robert Carr58f29132015-10-29 14:19:05 -07002752 }
2753 }
Robert Carr31e28482015-12-02 16:53:18 -08002754
Jorim Jaggif5834272016-04-04 20:25:41 -07002755 void applyGravityAndUpdateFrame(Rect containingFrame, Rect displayFrame) {
2756 final int pw = containingFrame.width();
2757 final int ph = containingFrame.height();
Robert Carr31e28482015-12-02 16:53:18 -08002758 final Task task = getTask();
Andrii Kulian933076d2016-03-29 17:04:42 -07002759 final boolean nonFullscreenTask = isInMultiWindowMode();
Jorim Jaggi5f23a572016-04-22 15:05:50 -07002760 final boolean noLimits = (mAttrs.flags & FLAG_LAYOUT_NO_LIMITS) != 0;
2761
2762 // We need to fit it to the display if either
2763 // a) The task is fullscreen, or we don't have a task (we assume fullscreen for the taskless
2764 // windows)
2765 // b) If it's a child window, we also need to fit it to the display unless
2766 // FLAG_LAYOUT_NO_LIMITS is set. This is so we place Popup and similar windows on screen,
2767 // but SurfaceViews want to be always at a specific location so we don't fit it to the
2768 // display.
2769 final boolean fitToDisplay = (task == null || !nonFullscreenTask)
2770 || (isChildWindow() && !noLimits);
Robert Carr31e28482015-12-02 16:53:18 -08002771 float x, y;
2772 int w,h;
2773
2774 if ((mAttrs.flags & FLAG_SCALED) != 0) {
2775 if (mAttrs.width < 0) {
2776 w = pw;
2777 } else if (mEnforceSizeCompat) {
2778 w = (int)(mAttrs.width * mGlobalScale + .5f);
2779 } else {
2780 w = mAttrs.width;
2781 }
2782 if (mAttrs.height < 0) {
2783 h = ph;
2784 } else if (mEnforceSizeCompat) {
2785 h = (int)(mAttrs.height * mGlobalScale + .5f);
2786 } else {
2787 h = mAttrs.height;
2788 }
2789 } else {
2790 if (mAttrs.width == MATCH_PARENT) {
2791 w = pw;
2792 } else if (mEnforceSizeCompat) {
2793 w = (int)(mRequestedWidth * mGlobalScale + .5f);
2794 } else {
2795 w = mRequestedWidth;
2796 }
2797 if (mAttrs.height == MATCH_PARENT) {
2798 h = ph;
2799 } else if (mEnforceSizeCompat) {
2800 h = (int)(mRequestedHeight * mGlobalScale + .5f);
2801 } else {
2802 h = mRequestedHeight;
2803 }
2804 }
2805
2806 if (mEnforceSizeCompat) {
2807 x = mAttrs.x * mGlobalScale;
2808 y = mAttrs.y * mGlobalScale;
2809 } else {
2810 x = mAttrs.x;
2811 y = mAttrs.y;
2812 }
2813
Robert Carr1d2bacb2016-03-30 14:29:35 -07002814 if (nonFullscreenTask && !layoutInParentFrame()) {
Wale Ogunwale79f268d2015-12-18 08:25:47 -08002815 // Make sure window fits in containing frame since it is in a non-fullscreen task as
Robert Carr31e28482015-12-02 16:53:18 -08002816 // required by {@link Gravity#apply} call.
2817 w = Math.min(w, pw);
2818 h = Math.min(h, ph);
2819 }
2820
2821 // Set mFrame
Jorim Jaggif5834272016-04-04 20:25:41 -07002822 Gravity.apply(mAttrs.gravity, w, h, containingFrame,
Robert Carr31e28482015-12-02 16:53:18 -08002823 (int) (x + mAttrs.horizontalMargin * pw),
2824 (int) (y + mAttrs.verticalMargin * ph), mFrame);
2825
2826 // Now make sure the window fits in the overall display frame.
Robert Carre6275582016-02-29 15:45:45 -08002827 if (fitToDisplay) {
Jorim Jaggif5834272016-04-04 20:25:41 -07002828 Gravity.applyDisplay(mAttrs.gravity, displayFrame, mFrame);
Robert Carre6275582016-02-29 15:45:45 -08002829 }
Robert Carr6e18c5e2016-02-29 15:57:13 -08002830
2831 // We need to make sure we update the CompatFrame as it is used for
2832 // cropping decisions, etc, on systems where we lack a decor layer.
2833 mCompatFrame.set(mFrame);
2834 if (mEnforceSizeCompat) {
2835 // See comparable block in computeFrameLw.
2836 mCompatFrame.scale(mInvGlobalScale);
2837 }
Robert Carr31e28482015-12-02 16:53:18 -08002838 }
Robert Carr51a1b872015-12-08 14:03:13 -08002839
2840 boolean isChildWindow() {
2841 return mAttachedWindow != null;
2842 }
Robert Carra1eb4392015-12-10 12:43:51 -08002843
Robert Carrf3b72c72016-03-21 18:16:39 -07002844 boolean layoutInParentFrame() {
2845 return isChildWindow() && (mAttrs.privateFlags & PRIVATE_FLAG_LAYOUT_CHILD_WINDOW_IN_PARENT_FRAME) != 0;
2846 }
2847
Robert Carra1eb4392015-12-10 12:43:51 -08002848 void setReplacing(boolean animate) {
Wale Ogunwale6d8e06b2016-01-05 10:43:25 -08002849 if ((mAttrs.privateFlags & PRIVATE_FLAG_WILL_NOT_REPLACE_ON_RELAUNCH) != 0
2850 || mAttrs.type == TYPE_APPLICATION_STARTING) {
2851 // We don't set replacing on starting windows since they are added by window manager and
2852 // not the client so won't be replaced by the client.
2853 return;
Robert Carra1eb4392015-12-10 12:43:51 -08002854 }
Wale Ogunwale6d8e06b2016-01-05 10:43:25 -08002855
2856 mWillReplaceWindow = true;
2857 mReplacingWindow = null;
2858 mAnimateReplacingWindow = animate;
Robert Carra1eb4392015-12-10 12:43:51 -08002859 }
Chong Zhangf596cd52016-01-05 13:42:44 -08002860
2861 void resetReplacing() {
2862 mWillReplaceWindow = false;
2863 mReplacingWindow = null;
2864 mAnimateReplacingWindow = false;
2865 }
Vladislav Kaznacheev989b58a2016-02-10 12:19:33 -08002866
Chong Zhang4d7369a2016-04-25 16:09:14 -07002867 void requestUpdateWallpaperIfNeeded() {
2868 if (mDisplayContent != null && (mAttrs.flags & FLAG_SHOW_WALLPAPER) != 0) {
2869 mDisplayContent.pendingLayoutChanges |= FINISH_LAYOUT_REDO_WALLPAPER;
2870 mDisplayContent.layoutNeeded = true;
2871 mService.mWindowPlacerLocked.requestTraversal();
2872 }
2873 }
2874
Vladislav Kaznacheev989b58a2016-02-10 12:19:33 -08002875 float translateToWindowX(float x) {
2876 float winX = x - mFrame.left;
2877 if (mEnforceSizeCompat) {
2878 winX *= mGlobalScale;
2879 }
2880 return winX;
2881 }
2882
2883 float translateToWindowY(float y) {
2884 float winY = y - mFrame.top;
2885 if (mEnforceSizeCompat) {
2886 winY *= mGlobalScale;
2887 }
2888 return winY;
2889 }
Robert Carrd1a010f2016-04-07 22:36:22 -07002890
Robert Carr9fe459d2016-04-07 23:32:28 -07002891 void transferDimToReplacement() {
2892 final DimLayer.DimLayerUser dimLayerUser = getDimLayerUser();
2893 if (dimLayerUser != null && mDisplayContent != null) {
2894 mDisplayContent.mDimLayerController.applyDim(dimLayerUser,
2895 mReplacingWindow.mWinAnimator,
2896 (mAttrs.flags & FLAG_DIM_BEHIND) != 0 ? true : false);
2897 }
2898 }
2899
Robert Carrd1a010f2016-04-07 22:36:22 -07002900 // During activity relaunch due to resize, we sometimes use window replacement
2901 // for only child windows (as the main window is handled by window preservation)
2902 // and the big surface.
2903 //
2904 // Though windows of TYPE_APPLICATION (as opposed to TYPE_BASE_APPLICATION)
2905 // are not children in the sense of an attached window, we also want to replace
2906 // them at such phases, as they won't be covered by window preservation,
2907 // and in general we expect them to return following relaunch.
2908 boolean shouldBeReplacedWithChildren() {
2909 return isChildWindow() || mAttrs.type == TYPE_APPLICATION;
2910 }
satokcef37fb2011-10-24 21:49:38 +09002911}