blob: a3f9e1b923867256d6697008fb007ecbb0a2354c [file] [log] [blame]
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001/*
2 * Copyright (C) 2011 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package com.android.server.wm;
18
Jorim Jaggi02886a82016-12-06 09:10:06 -080019import static android.app.ActivityManager.StackId.INVALID_STACK_ID;
Svet Ganovf7b47252018-02-26 11:11:27 -080020import static android.app.AppOpsManager.MODE_ALLOWED;
21import static android.app.AppOpsManager.MODE_DEFAULT;
22import static android.app.AppOpsManager.OP_NONE;
chaviw40234662018-02-07 09:37:16 -080023import static android.os.PowerManager.DRAW_WAKE_LOCK;
Jorim Jaggi02886a82016-12-06 09:10:06 -080024import static android.os.Trace.TRACE_TAG_WINDOW_MANAGER;
25import static android.view.Display.DEFAULT_DISPLAY;
Jorim Jaggia5e10572017-11-15 14:36:26 +010026import static android.view.SurfaceControl.Transaction;
Adrian Roos4d18a2e2017-12-19 19:08:05 +010027import static android.view.View.SYSTEM_UI_FLAG_FULLSCREEN;
Jorim Jaggi02886a82016-12-06 09:10:06 -080028import static android.view.ViewTreeObserver.InternalInsetsInfo.TOUCHABLE_INSETS_CONTENT;
29import static android.view.ViewTreeObserver.InternalInsetsInfo.TOUCHABLE_INSETS_FRAME;
30import static android.view.ViewTreeObserver.InternalInsetsInfo.TOUCHABLE_INSETS_REGION;
31import static android.view.ViewTreeObserver.InternalInsetsInfo.TOUCHABLE_INSETS_VISIBLE;
32import static android.view.WindowManager.LayoutParams.FIRST_SUB_WINDOW;
33import static android.view.WindowManager.LayoutParams.FIRST_SYSTEM_WINDOW;
34import static android.view.WindowManager.LayoutParams.FLAG_ALLOW_LOCK_WHILE_SCREEN_ON;
35import static android.view.WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM;
36import static android.view.WindowManager.LayoutParams.FLAG_DIM_BEHIND;
37import static android.view.WindowManager.LayoutParams.FLAG_DISMISS_KEYGUARD;
Adrian Roos4d18a2e2017-12-19 19:08:05 +010038import static android.view.WindowManager.LayoutParams.FLAG_FULLSCREEN;
Jorim Jaggi02886a82016-12-06 09:10:06 -080039import static android.view.WindowManager.LayoutParams.FLAG_LAYOUT_NO_LIMITS;
40import static android.view.WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE;
41import static android.view.WindowManager.LayoutParams.FLAG_NOT_TOUCH_MODAL;
42import static android.view.WindowManager.LayoutParams.FLAG_SCALED;
Jorim Jaggi02886a82016-12-06 09:10:06 -080043import static android.view.WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER;
44import static android.view.WindowManager.LayoutParams.FLAG_SHOW_WHEN_LOCKED;
45import static android.view.WindowManager.LayoutParams.FLAG_TURN_SCREEN_ON;
Robert Carrc91d1c32017-02-15 19:37:46 -080046import static android.view.WindowManager.LayoutParams.FORMAT_CHANGED;
Jorim Jaggi02886a82016-12-06 09:10:06 -080047import static android.view.WindowManager.LayoutParams.LAST_SUB_WINDOW;
Adrian Roosfa02da62018-01-15 16:01:18 +010048import static android.view.WindowManager.LayoutParams.LAYOUT_IN_DISPLAY_CUTOUT_MODE_ALWAYS;
49import static android.view.WindowManager.LayoutParams.LAYOUT_IN_DISPLAY_CUTOUT_MODE_NEVER;
Jorim Jaggi02886a82016-12-06 09:10:06 -080050import static android.view.WindowManager.LayoutParams.MATCH_PARENT;
51import static android.view.WindowManager.LayoutParams.PRIVATE_FLAG_COMPATIBLE_WINDOW;
Wale Ogunwale01ad4342017-06-30 07:07:01 -070052import static android.view.WindowManager.LayoutParams.PRIVATE_FLAG_HIDE_NON_SYSTEM_OVERLAY_WINDOWS;
Jorim Jaggi02886a82016-12-06 09:10:06 -080053import static android.view.WindowManager.LayoutParams.PRIVATE_FLAG_LAYOUT_CHILD_WINDOW_IN_PARENT_FRAME;
54import static android.view.WindowManager.LayoutParams.PRIVATE_FLAG_NO_MOVE_ANIMATION;
55import static android.view.WindowManager.LayoutParams.PRIVATE_FLAG_WILL_NOT_REPLACE_ON_RELAUNCH;
56import static android.view.WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE;
57import static android.view.WindowManager.LayoutParams.SOFT_INPUT_MASK_ADJUST;
58import static android.view.WindowManager.LayoutParams.TYPE_APPLICATION;
Robert Carr0eff1872017-12-01 14:27:04 -080059import static android.view.WindowManager.LayoutParams.TYPE_APPLICATION_MEDIA;
Vishnu Nair1d0fa072018-01-04 07:53:00 -080060import static android.view.WindowManager.LayoutParams.TYPE_APPLICATION_MEDIA_OVERLAY;
Jorim Jaggi02886a82016-12-06 09:10:06 -080061import static android.view.WindowManager.LayoutParams.TYPE_APPLICATION_STARTING;
62import static android.view.WindowManager.LayoutParams.TYPE_BASE_APPLICATION;
63import static android.view.WindowManager.LayoutParams.TYPE_DOCK_DIVIDER;
64import static android.view.WindowManager.LayoutParams.TYPE_DRAWN_APPLICATION;
65import static android.view.WindowManager.LayoutParams.TYPE_INPUT_METHOD;
66import static android.view.WindowManager.LayoutParams.TYPE_INPUT_METHOD_DIALOG;
Robert Carrb1579c82017-09-05 14:54:47 -070067import static android.view.WindowManager.LayoutParams.TYPE_MAGNIFICATION_OVERLAY;
68import static android.view.WindowManager.LayoutParams.TYPE_NAVIGATION_BAR;
Robert Carree4d4b92017-11-22 12:21:46 -080069import static android.view.WindowManager.LayoutParams.TYPE_NAVIGATION_BAR_PANEL;
Robert Carrb1579c82017-09-05 14:54:47 -070070import static android.view.WindowManager.LayoutParams.TYPE_STATUS_BAR;
Wale Ogunwale01ad4342017-06-30 07:07:01 -070071import static android.view.WindowManager.LayoutParams.TYPE_TOAST;
Jorim Jaggi02886a82016-12-06 09:10:06 -080072import static android.view.WindowManager.LayoutParams.TYPE_WALLPAPER;
Wale Ogunwale01ad4342017-06-30 07:07:01 -070073import static android.view.WindowManager.LayoutParams.isSystemAlertWindowType;
Robert Carrc91d1c32017-02-15 19:37:46 -080074import static android.view.WindowManagerGlobal.RELAYOUT_RES_DRAG_RESIZING_DOCKED;
75import static android.view.WindowManagerGlobal.RELAYOUT_RES_DRAG_RESIZING_FREEFORM;
76import static android.view.WindowManagerGlobal.RELAYOUT_RES_FIRST_TIME;
77import static android.view.WindowManagerGlobal.RELAYOUT_RES_SURFACE_CHANGED;
Adrian Roose99bc052017-11-20 17:55:31 +010078import static com.android.server.policy.WindowManagerPolicy.FINISH_LAYOUT_REDO_WALLPAPER;
79import static com.android.server.policy.WindowManagerPolicy.TRANSIT_ENTER;
80import static com.android.server.policy.WindowManagerPolicy.TRANSIT_EXIT;
81import static com.android.server.policy.WindowManagerPolicy.TRANSIT_PREVIEW_DONE;
Jorim Jaggi02886a82016-12-06 09:10:06 -080082import static com.android.server.wm.DragResizeMode.DRAG_RESIZE_MODE_DOCKED_DIVIDER;
83import static com.android.server.wm.DragResizeMode.DRAG_RESIZE_MODE_FREEFORM;
84import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_ADD_REMOVE;
85import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_ANIM;
86import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_APP_TRANSITIONS;
87import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_CONFIGURATION;
88import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_FOCUS;
89import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_FOCUS_LIGHT;
90import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_INPUT_METHOD;
Jorim Jaggi02886a82016-12-06 09:10:06 -080091import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_LAYOUT;
92import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_ORIENTATION;
93import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_POWER;
94import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_RESIZE;
95import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_STARTING_WINDOW;
Jorim Jaggie4b0f282017-05-17 15:10:29 +020096import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_STARTING_WINDOW_VERBOSE;
Jorim Jaggi02886a82016-12-06 09:10:06 -080097import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_VISIBILITY;
Jorim Jaggi02886a82016-12-06 09:10:06 -080098import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_WALLPAPER_LIGHT;
99import static com.android.server.wm.WindowManagerDebugConfig.TAG_WITH_CLASS_NAME;
100import static com.android.server.wm.WindowManagerDebugConfig.TAG_WM;
101import static com.android.server.wm.WindowManagerService.H.SEND_NEW_CONFIGURATION;
Jorim Jaggia5e10572017-11-15 14:36:26 +0100102import static com.android.server.wm.WindowManagerService.MAX_ANIMATION_DURATION;
Jorim Jaggi02886a82016-12-06 09:10:06 -0800103import static com.android.server.wm.WindowManagerService.TYPE_LAYER_MULTIPLIER;
104import static com.android.server.wm.WindowManagerService.TYPE_LAYER_OFFSET;
105import static com.android.server.wm.WindowManagerService.UPDATE_FOCUS_NORMAL;
106import static com.android.server.wm.WindowManagerService.UPDATE_FOCUS_WILL_PLACE_SURFACES;
107import static com.android.server.wm.WindowManagerService.WINDOWS_FREEZING_SCREENS_TIMEOUT;
108import static com.android.server.wm.WindowManagerService.localLOGV;
109import static com.android.server.wm.WindowStateAnimator.COMMIT_DRAW_PENDING;
110import static com.android.server.wm.WindowStateAnimator.DRAW_PENDING;
111import static com.android.server.wm.WindowStateAnimator.HAS_DRAWN;
112import static com.android.server.wm.WindowStateAnimator.READY_TO_SHOW;
Yi Jin6c6e9ca2018-03-20 16:53:35 -0700113import static com.android.server.wm.IdentifierProto.HASH_CODE;
114import static com.android.server.wm.IdentifierProto.TITLE;
115import static com.android.server.wm.IdentifierProto.USER_ID;
116import static com.android.server.wm.AnimationSpecProto.MOVE;
117import static com.android.server.wm.MoveAnimationSpecProto.DURATION;
118import static com.android.server.wm.MoveAnimationSpecProto.FROM;
119import static com.android.server.wm.MoveAnimationSpecProto.TO;
120import static com.android.server.wm.WindowStateProto.ANIMATING_EXIT;
121import static com.android.server.wm.WindowStateProto.ANIMATOR;
122import static com.android.server.wm.WindowStateProto.ATTRIBUTES;
123import static com.android.server.wm.WindowStateProto.CHILD_WINDOWS;
124import static com.android.server.wm.WindowStateProto.CONTAINING_FRAME;
125import static com.android.server.wm.WindowStateProto.CONTENT_FRAME;
126import static com.android.server.wm.WindowStateProto.CONTENT_INSETS;
127import static com.android.server.wm.WindowStateProto.CUTOUT;
128import static com.android.server.wm.WindowStateProto.DECOR_FRAME;
129import static com.android.server.wm.WindowStateProto.DESTROYING;
130import static com.android.server.wm.WindowStateProto.DISPLAY_FRAME;
131import static com.android.server.wm.WindowStateProto.DISPLAY_ID;
132import static com.android.server.wm.WindowStateProto.FRAME;
133import static com.android.server.wm.WindowStateProto.GIVEN_CONTENT_INSETS;
134import static com.android.server.wm.WindowStateProto.HAS_SURFACE;
135import static com.android.server.wm.WindowStateProto.IDENTIFIER;
136import static com.android.server.wm.WindowStateProto.IS_ON_SCREEN;
137import static com.android.server.wm.WindowStateProto.IS_READY_FOR_DISPLAY;
138import static com.android.server.wm.WindowStateProto.IS_VISIBLE;
139import static com.android.server.wm.WindowStateProto.OUTSETS;
140import static com.android.server.wm.WindowStateProto.OUTSET_FRAME;
141import static com.android.server.wm.WindowStateProto.OVERSCAN_FRAME;
142import static com.android.server.wm.WindowStateProto.OVERSCAN_INSETS;
143import static com.android.server.wm.WindowStateProto.PARENT_FRAME;
144import static com.android.server.wm.WindowStateProto.REMOVED;
145import static com.android.server.wm.WindowStateProto.REMOVE_ON_EXIT;
146import static com.android.server.wm.WindowStateProto.REQUESTED_HEIGHT;
147import static com.android.server.wm.WindowStateProto.REQUESTED_WIDTH;
148import static com.android.server.wm.WindowStateProto.STABLE_INSETS;
149import static com.android.server.wm.WindowStateProto.STACK_ID;
150import static com.android.server.wm.WindowStateProto.SURFACE_INSETS;
151import static com.android.server.wm.WindowStateProto.SURFACE_POSITION;
152import static com.android.server.wm.WindowStateProto.SYSTEM_UI_VISIBILITY;
153import static com.android.server.wm.WindowStateProto.VIEW_VISIBILITY;
154import static com.android.server.wm.WindowStateProto.VISIBLE_FRAME;
155import static com.android.server.wm.WindowStateProto.VISIBLE_INSETS;
156import static com.android.server.wm.WindowStateProto.WINDOW_CONTAINER;
Jorim Jaggi02886a82016-12-06 09:10:06 -0800157
Wale Ogunwale0d5609b2017-09-13 05:55:07 -0700158import android.annotation.CallSuper;
Wale Ogunwale053c8e42015-11-16 14:27:21 -0800159import android.app.AppOpsManager;
160import android.content.Context;
161import android.content.res.Configuration;
162import android.graphics.Matrix;
163import android.graphics.PixelFormat;
164import android.graphics.Point;
165import android.graphics.Rect;
166import android.graphics.Region;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700167import android.os.Binder;
Wale Ogunwale9d147902016-07-16 11:58:55 -0700168import android.os.Debug;
Wale Ogunwale053c8e42015-11-16 14:27:21 -0800169import android.os.IBinder;
170import android.os.PowerManager;
171import android.os.RemoteCallbackList;
172import android.os.RemoteException;
173import android.os.SystemClock;
174import android.os.Trace;
175import android.os.UserHandle;
176import android.os.WorkSource;
chaviw40234662018-02-07 09:37:16 -0800177import android.provider.Settings;
Phil Weaverbb2f28a2017-12-22 09:44:28 -0800178import android.text.TextUtils;
Wale Ogunwale053c8e42015-11-16 14:27:21 -0800179import android.util.DisplayMetrics;
Jorim Jaggie7d2b852017-08-28 17:55:15 +0200180import android.util.MergedConfiguration;
Wale Ogunwale053c8e42015-11-16 14:27:21 -0800181import android.util.Slog;
182import android.util.TimeUtils;
Steven Timotiusaf03df62017-07-18 16:56:43 -0700183import android.util.proto.ProtoOutputStream;
Adrian Roos5c6b6222017-11-07 17:36:10 +0100184import android.view.DisplayCutout;
Wale Ogunwale053c8e42015-11-16 14:27:21 -0800185import android.view.DisplayInfo;
186import android.view.Gravity;
187import android.view.IApplicationToken;
188import android.view.IWindow;
189import android.view.IWindowFocusObserver;
190import android.view.IWindowId;
191import android.view.InputChannel;
192import android.view.InputEvent;
193import android.view.InputEventReceiver;
Robert Carrb1579c82017-09-05 14:54:47 -0700194import android.view.SurfaceControl;
195import android.view.SurfaceSession;
Wale Ogunwale053c8e42015-11-16 14:27:21 -0800196import android.view.View;
197import android.view.ViewTreeObserver;
Wale Ogunwaleadde52e2016-07-16 13:11:55 -0700198import android.view.WindowInfo;
Wale Ogunwale053c8e42015-11-16 14:27:21 -0800199import android.view.WindowManager;
Jorim Jaggia5e10572017-11-15 14:36:26 +0100200import android.view.animation.Animation;
201import android.view.animation.AnimationUtils;
202import android.view.animation.Interpolator;
Wale Ogunwale053c8e42015-11-16 14:27:21 -0800203
Jorim Jaggi4876b4a2018-01-11 15:43:49 +0100204import com.android.internal.annotations.VisibleForTesting;
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -0800205import com.android.internal.util.ToBooleanFunction;
Jorim Jaggi9511b0f2016-01-29 19:12:44 -0800206import com.android.server.input.InputWindowHandle;
Adrian Roose99bc052017-11-20 17:55:31 +0100207import com.android.server.policy.WindowManagerPolicy;
Jorim Jaggia5e10572017-11-15 14:36:26 +0100208import com.android.server.wm.LocalAnimationAdapter.AnimationSpec;
Adrian Roos6a4fa0e2018-03-05 19:50:16 +0100209import com.android.server.wm.utils.WmDisplayCutout;
Jorim Jaggi9511b0f2016-01-29 19:12:44 -0800210
Wale Ogunwale053c8e42015-11-16 14:27:21 -0800211import java.io.PrintWriter;
Jorim Jaggi4448e1e2017-05-16 22:26:02 +0200212import java.lang.ref.WeakReference;
Wale Ogunwale053c8e42015-11-16 14:27:21 -0800213import java.util.ArrayList;
Wale Ogunwalee4343ef2016-07-19 08:00:46 -0700214import java.util.Comparator;
Wale Ogunwaled1880962016-11-08 10:31:59 -0800215import java.util.function.Predicate;
Wale Ogunwale053c8e42015-11-16 14:27:21 -0800216
Wale Ogunwaled90546a2016-09-09 23:28:03 -0700217/** A window in the window manager. */
218class WindowState extends WindowContainer<WindowState> implements WindowManagerPolicy.WindowState {
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800219 static final String TAG = TAG_WITH_CLASS_NAME ? "WindowState" : TAG_WM;
Craig Mautner164d4bb2012-11-26 13:51:23 -0800220
Skuhne81c524a2015-08-12 13:34:14 -0700221 // The minimal size of a window within the usable area of the freeform stack.
Wale Ogunwale231b06e2015-09-16 12:03:09 -0700222 // TODO(multi-window): fix the min sizes when we have mininum width/height support,
223 // use hard-coded min sizes for now.
224 static final int MINIMUM_VISIBLE_WIDTH_IN_DP = 48;
225 static final int MINIMUM_VISIBLE_HEIGHT_IN_DP = 32;
Skuhnef932e562015-08-20 12:07:30 -0700226
227 // The thickness of a window resize handle outside the window bounds on the free form workspace
228 // to capture touch events in that area.
Wale Ogunwale231b06e2015-09-16 12:03:09 -0700229 static final int RESIZE_HANDLE_WIDTH_IN_DP = 30;
Skuhnef932e562015-08-20 12:07:30 -0700230
Craig Mautnere7ae2502012-03-26 17:11:19 -0700231 final WindowManagerPolicy mPolicy;
232 final Context mContext;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800233 final Session mSession;
234 final IWindow mClient;
Dianne Hackbornc2293022013-02-06 23:14:49 -0800235 final int mAppOp;
236 // UserId and appId of the owner. Don't display windows of non-current user.
237 final int mOwnerUid;
Wale Ogunwale5cd907d2017-01-26 14:14:08 -0800238 /** The owner has {@link android.Manifest.permission#INTERNAL_SYSTEM_WINDOW} */
239 final boolean mOwnerCanAddInternalSystemWindow;
Jorim Jaggi4448e1e2017-05-16 22:26:02 +0200240 final WindowId mWindowId;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800241 WindowToken mToken;
Wale Ogunwalea6cc3612016-08-04 07:25:33 -0700242 // The same object as mToken if this is an app window and null for non-app windows.
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800243 AppWindowToken mAppToken;
Craig Mautnerd09cc4b2012-04-04 10:23:31 -0700244
245 // mAttrs.flags is tested in animation without being locked. If the bits tested are ever
246 // modified they will need to be locked.
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800247 final WindowManager.LayoutParams mAttrs = new WindowManager.LayoutParams();
248 final DeathRecipient mDeathRecipient;
Wale Ogunwalee4343ef2016-07-19 08:00:46 -0700249 private boolean mIsChildWindow;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800250 final int mBaseLayer;
251 final int mSubLayer;
252 final boolean mLayoutAttached;
253 final boolean mIsImWindow;
254 final boolean mIsWallpaper;
Wale Ogunwaled4a00a02016-10-10 11:29:17 -0700255 private final boolean mIsFloatingLayer;
Dianne Hackborn9a230e02011-10-06 11:51:27 -0700256 int mSeq;
Dianne Hackborn5fd21692011-06-07 14:09:47 -0700257 boolean mEnforceSizeCompat;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800258 int mViewVisibility;
Dianne Hackborn9a230e02011-10-06 11:51:27 -0700259 int mSystemUiVisibility;
Wale Ogunwale571771c2016-08-26 13:18:50 -0700260 /**
261 * The visibility of the window based on policy like {@link WindowManagerPolicy}.
262 * Normally set by calling {@link #showLw} and {@link #hideLw}.
263 */
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800264 boolean mPolicyVisibility = true;
Wale Ogunwale571771c2016-08-26 13:18:50 -0700265 /**
266 * What {@link #mPolicyVisibility} should be set to after a transition animation.
267 * For example, {@link #mPolicyVisibility} might true during an exit animation to hide it and
268 * then set to the value of {@link #mPolicyVisibilityAfterAnim} which is false after the exit
269 * animation is done.
270 */
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800271 boolean mPolicyVisibilityAfterAnim = true;
Wale Ogunwaled4a00a02016-10-10 11:29:17 -0700272 private boolean mAppOpVisibility = true;
Svetoslav Ganovaa076532016-08-01 19:16:43 -0700273 boolean mPermanentlyHidden; // the window should never be shown again
Wale Ogunwale01ad4342017-06-30 07:07:01 -0700274 // This is a non-system overlay window that is currently force hidden.
275 private boolean mForceHideNonSystemOverlayWindow;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800276 boolean mAppFreezing;
chaviwebcbc342018-02-07 13:19:00 -0800277 boolean mHidden = true; // Used to determine if to show child windows.
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800278 boolean mWallpaperVisible; // for wallpaper, what was last vis report?
Wale Ogunwaled4a00a02016-10-10 11:29:17 -0700279 private boolean mDragResizing;
Jorim Jaggidc9385a2017-05-13 02:00:31 +0200280 private boolean mDragResizingChangeReported = true;
Wale Ogunwaled4a00a02016-10-10 11:29:17 -0700281 private int mResizeMode;
Dianne Hackbornffb3d932011-05-17 17:44:51 -0700282
Wale Ogunwaled4a00a02016-10-10 11:29:17 -0700283 private RemoteCallbackList<IWindowFocusObserver> mFocusCallbacks;
Dianne Hackborne3f23a32013-03-01 13:25:35 -0800284
Dianne Hackbornffb3d932011-05-17 17:44:51 -0700285 /**
286 * The window size that was requested by the application. These are in
287 * the application's coordinate space (without compatibility scale applied).
288 */
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800289 int mRequestedWidth;
290 int mRequestedHeight;
Wale Ogunwaled4a00a02016-10-10 11:29:17 -0700291 private int mLastRequestedWidth;
292 private int mLastRequestedHeight;
Dianne Hackbornffb3d932011-05-17 17:44:51 -0700293
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800294 int mLayer;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800295 boolean mHaveFrame;
296 boolean mObscured;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800297
298 int mLayoutSeq = -1;
Craig Mautnera2c77052012-03-26 12:14:43 -0700299
Andrii Kulian9d91ca62016-09-29 22:28:09 -0700300 /**
301 * Used to store last reported to client configuration and check if we have newer available.
302 * We'll send configuration to client only if it is different from the last applied one and
303 * client won't perform unnecessary updates.
304 */
Bryce Lee2b17afd2017-09-21 10:38:20 -0700305 private final MergedConfiguration mLastReportedConfiguration = new MergedConfiguration();
Craig Mautnera2c77052012-03-26 12:14:43 -0700306
Dianne Hackbornffb3d932011-05-17 17:44:51 -0700307 /**
Dianne Hackbornffb3d932011-05-17 17:44:51 -0700308 * Insets that determine the actually visible area. These are in the application's
309 * coordinate space (without compatibility scale applied).
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800310 */
311 final Rect mVisibleInsets = new Rect();
Wale Ogunwaled4a00a02016-10-10 11:29:17 -0700312 private final Rect mLastVisibleInsets = new Rect();
313 private boolean mVisibleInsetsChanged;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800314
315 /**
Dianne Hackborn5c58de32012-04-28 19:52:37 -0700316 * Insets that are covered by system windows (such as the status bar) and
317 * transient docking windows (such as the IME). These are in the application's
Dianne Hackbornffb3d932011-05-17 17:44:51 -0700318 * coordinate space (without compatibility scale applied).
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800319 */
320 final Rect mContentInsets = new Rect();
321 final Rect mLastContentInsets = new Rect();
Robert Carr18f622f2017-05-08 11:20:43 -0700322
323 /**
324 * The last content insets returned to the client in relayout. We use
325 * these in the bounds animation to ensure we only observe inset changes
326 * at the same time that a client resizes it's surface so that we may use
327 * the geometryAppliesWithResize synchronization mechanism to keep
328 * the contents in place.
329 */
330 final Rect mLastRelayoutContentInsets = new Rect();
331
Wale Ogunwaled4a00a02016-10-10 11:29:17 -0700332 private boolean mContentInsetsChanged;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800333
334 /**
Dianne Hackbornc4aad012013-02-22 15:05:25 -0800335 * Insets that determine the area covered by the display overscan region. These are in the
336 * application's coordinate space (without compatibility scale applied).
337 */
338 final Rect mOverscanInsets = new Rect();
Wale Ogunwaled4a00a02016-10-10 11:29:17 -0700339 private final Rect mLastOverscanInsets = new Rect();
340 private boolean mOverscanInsetsChanged;
Dianne Hackbornc4aad012013-02-22 15:05:25 -0800341
342 /**
Adrian Roosfa104232014-06-20 16:10:14 -0700343 * Insets that determine the area covered by the stable system windows. These are in the
344 * application's coordinate space (without compatibility scale applied).
345 */
346 final Rect mStableInsets = new Rect();
Wale Ogunwaled4a00a02016-10-10 11:29:17 -0700347 private final Rect mLastStableInsets = new Rect();
348 private boolean mStableInsetsChanged;
Adrian Roosfa104232014-06-20 16:10:14 -0700349
350 /**
Filip Gruszczynski2217f612015-05-26 11:32:08 -0700351 * Outsets determine the area outside of the surface where we want to pretend that it's possible
352 * to draw anyway.
353 */
354 final Rect mOutsets = new Rect();
Wale Ogunwaled4a00a02016-10-10 11:29:17 -0700355 private final Rect mLastOutsets = new Rect();
356 private boolean mOutsetsChanged = false;
Filip Gruszczynski2217f612015-05-26 11:32:08 -0700357
Adrian Roos5c6b6222017-11-07 17:36:10 +0100358 /** Part of the display that has been cut away. See {@link DisplayCutout}. */
Adrian Roos6a4fa0e2018-03-05 19:50:16 +0100359 WmDisplayCutout mDisplayCutout = WmDisplayCutout.NO_CUTOUT;
360 private WmDisplayCutout mLastDisplayCutout = WmDisplayCutout.NO_CUTOUT;
Adrian Roos5c6b6222017-11-07 17:36:10 +0100361 private boolean mDisplayCutoutChanged;
362
Filip Gruszczynski2217f612015-05-26 11:32:08 -0700363 /**
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800364 * Set to true if we are waiting for this window to receive its
365 * given internal insets before laying out other windows based on it.
366 */
367 boolean mGivenInsetsPending;
368
369 /**
370 * These are the content insets that were given during layout for
371 * this window, to be applied to windows behind it.
372 */
373 final Rect mGivenContentInsets = new Rect();
374
375 /**
376 * These are the visible insets that were given during layout for
377 * this window, to be applied to windows behind it.
378 */
379 final Rect mGivenVisibleInsets = new Rect();
380
381 /**
382 * This is the given touchable area relative to the window frame, or null if none.
383 */
384 final Region mGivenTouchableRegion = new Region();
385
386 /**
387 * Flag indicating whether the touchable region should be adjusted by
388 * the visible insets; if false the area outside the visible insets is
389 * NOT touchable, so we must use those to adjust the frame during hit
390 * tests.
391 */
392 int mTouchableInsets = ViewTreeObserver.InternalInsetsInfo.TOUCHABLE_INSETS_FRAME;
393
394 // Current transformation being applied.
Dianne Hackborne2515ee2011-04-27 18:52:56 -0400395 float mGlobalScale=1;
Dianne Hackbornffb3d932011-05-17 17:44:51 -0700396 float mInvGlobalScale=1;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800397 float mHScale=1, mVScale=1;
398 float mLastHScale=1, mLastVScale=1;
399 final Matrix mTmpMatrix = new Matrix();
400
Dianne Hackbornffb3d932011-05-17 17:44:51 -0700401 // "Real" frame that the application sees, in display coordinate space.
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800402 final Rect mFrame = new Rect();
403 final Rect mLastFrame = new Rect();
Wale Ogunwaled4a00a02016-10-10 11:29:17 -0700404 private boolean mFrameSizeChanged = false;
Dianne Hackbornffb3d932011-05-17 17:44:51 -0700405 // Frame that is scaled to the application's coordinate space when in
406 // screen size compatibility mode.
407 final Rect mCompatFrame = new Rect();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800408
409 final Rect mContainingFrame = new Rect();
Wale Ogunwalec6061fa2014-10-21 13:15:11 -0700410
Wale Ogunwaled4a00a02016-10-10 11:29:17 -0700411 private final Rect mParentFrame = new Rect();
Wale Ogunwalec6061fa2014-10-21 13:15:11 -0700412
Wale Ogunwale94596652015-02-06 19:27:34 -0800413 // The entire screen area of the {@link TaskStack} this window is in. Usually equal to the
414 // screen area of the device.
Wale Ogunwalec6061fa2014-10-21 13:15:11 -0700415 final Rect mDisplayFrame = new Rect();
416
417 // The region of the display frame that the display type supports displaying content on. This
418 // is mostly a special case for TV where some displays don’t have the entire display usable.
419 // {@link WindowManager.LayoutParams#FLAG_LAYOUT_IN_OVERSCAN} flag can be used to allow
420 // window display contents to extend into the overscan region.
Wale Ogunwaled4a00a02016-10-10 11:29:17 -0700421 private final Rect mOverscanFrame = new Rect();
Wale Ogunwalec6061fa2014-10-21 13:15:11 -0700422
423 // The display frame minus the stable insets. This value is always constant regardless of if
424 // the status bar or navigation bar is visible.
Wale Ogunwaled4a00a02016-10-10 11:29:17 -0700425 private final Rect mStableFrame = new Rect();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800426
Wale Ogunwalec6061fa2014-10-21 13:15:11 -0700427 // The area not occupied by the status and navigation bars. So, if both status and navigation
428 // bars are visible, the decor frame is equal to the stable frame.
429 final Rect mDecorFrame = new Rect();
430
431 // Equal to the decor frame if the IME (e.g. keyboard) is not present. Equal to the decor frame
432 // minus the area occupied by the IME if the IME is present.
Wale Ogunwaled4a00a02016-10-10 11:29:17 -0700433 private final Rect mContentFrame = new Rect();
Wale Ogunwalec6061fa2014-10-21 13:15:11 -0700434
435 // Legacy stuff. Generally equal to the content frame expect when the IME for older apps
436 // displays hint text.
437 final Rect mVisibleFrame = new Rect();
438
Filip Gruszczynski2217f612015-05-26 11:32:08 -0700439 // Frame that includes dead area outside of the surface but where we want to pretend that it's
440 // possible to draw.
Wale Ogunwaled4a00a02016-10-10 11:29:17 -0700441 private final Rect mOutsetFrame = new Rect();
Filip Gruszczynski2217f612015-05-26 11:32:08 -0700442
Jorim Jaggidc249c42015-12-15 14:57:31 -0800443 /**
444 * Usually empty. Set to the task's tempInsetFrame. See
445 *{@link android.app.IActivityManager#resizeDockedStack}.
446 */
Wale Ogunwaled4a00a02016-10-10 11:29:17 -0700447 private final Rect mInsetFrame = new Rect();
Jorim Jaggidc249c42015-12-15 14:57:31 -0800448
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800449 boolean mContentChanged;
450
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800451 // If a window showing a wallpaper: the requested offset for the
452 // wallpaper; if a wallpaper window: the currently applied offset.
453 float mWallpaperX = -1;
454 float mWallpaperY = -1;
455
456 // If a window showing a wallpaper: what fraction of the offset
457 // range corresponds to a full virtual screen.
458 float mWallpaperXStep = -1;
459 float mWallpaperYStep = -1;
460
Dianne Hackborn067e5f62014-09-07 23:14:30 -0700461 // If a window showing a wallpaper: a raw pixel offset to forcibly apply
462 // to its window; if a wallpaper window: not used.
463 int mWallpaperDisplayOffsetX = Integer.MIN_VALUE;
464 int mWallpaperDisplayOffsetY = Integer.MIN_VALUE;
465
Craig Mautner2268e7e2012-12-13 15:40:00 -0800466 /**
467 * This is set after IWindowSession.relayout() has been called at
468 * least once for the window. It allows us to detect the situation
469 * where we don't yet have a surface, but should have one soon, so
470 * we can give the window focus before waiting for the relayout.
471 */
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800472 boolean mRelayoutCalled;
473
Robert Carrfed10072016-05-26 11:48:49 -0700474 boolean mInRelayout;
475
Craig Mautner0bf6ec92012-12-18 08:33:27 -0800476 /**
477 * If the application has called relayout() with changes that can
478 * impact its window's size, we need to perform a layout pass on it
479 * even if it is not currently visible for layout. This is set
480 * when in that case until the layout is done.
481 */
Dianne Hackbornb7ff51b2012-01-23 19:15:27 -0800482 boolean mLayoutNeeded;
483
Craig Mautner0bf6ec92012-12-18 08:33:27 -0800484 /** Currently running an exit animation? */
Wale Ogunwalec48a3542016-02-19 15:18:45 -0800485 boolean mAnimatingExit;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800486
Craig Mautner0bf6ec92012-12-18 08:33:27 -0800487 /** Currently on the mDestroySurface list? */
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800488 boolean mDestroying;
489
Craig Mautner0bf6ec92012-12-18 08:33:27 -0800490 /** Completely remove from window manager after exit animation? */
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800491 boolean mRemoveOnExit;
492
Craig Mautner0bf6ec92012-12-18 08:33:27 -0800493 /**
Chong Zhang112eb8c2015-11-02 11:17:00 -0800494 * Whether the app died while it was visible, if true we might need
495 * to continue to show it until it's restarted.
496 */
497 boolean mAppDied;
498
499 /**
Craig Mautner0bf6ec92012-12-18 08:33:27 -0800500 * Set when the orientation is changing and this window has not yet
501 * been updated for the new orientation.
502 */
Bryce Lee8c3cf382017-07-06 19:47:10 -0700503 private boolean mOrientationChanging;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800504
Dianne Hackborna57c6952013-03-29 14:46:40 -0700505 /**
Robert Carr9c1c3a02017-08-08 12:59:01 -0700506 * Sometimes in addition to the mOrientationChanging
507 * flag we report that the orientation is changing
508 * due to a mismatch in current and reported configuration.
509 *
510 * In the case of timeout we still need to make sure we
511 * leave the orientation changing state though, so we
512 * use this as a special time out escape hatch.
513 */
514 private boolean mOrientationChangeTimedOut;
515
516 /**
Robert Carr237028a2016-07-26 10:39:45 -0700517 * The orientation during the last visible call to relayout. If our
518 * current orientation is different, the window can't be ready
519 * to be shown.
520 */
521 int mLastVisibleLayoutRotation = -1;
522
523 /**
Andrii Kulianb2e37802017-01-11 00:36:44 -0800524 * Set when we need to report the orientation change to client to trigger a relayout.
525 */
526 boolean mReportOrientationChanged;
527
528 /**
Dianne Hackborna57c6952013-03-29 14:46:40 -0700529 * How long we last kept the screen frozen.
530 */
531 int mLastFreezeDuration;
532
Craig Mautner0bf6ec92012-12-18 08:33:27 -0800533 /** Is this window now (or just being) removed? */
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800534 boolean mRemoved;
535
Craig Mautner0bf6ec92012-12-18 08:33:27 -0800536 /**
Wale Ogunwalec48a3542016-02-19 15:18:45 -0800537 * It is save to remove the window and destroy the surface because the client requested removal
538 * or some other higher level component said so (e.g. activity manager).
539 * TODO: We should either have different booleans for the removal reason or use a bit-field.
Robert Carre12aece2016-02-02 22:43:27 -0800540 */
Svetoslav Ganov200adfb2016-10-18 13:29:27 -0700541 boolean mWindowRemovalAllowed;
Robert Carre12aece2016-02-02 22:43:27 -0800542
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800543 // Input channel and input window handle used by the input dispatcher.
Jeff Brown9302c872011-07-13 22:51:29 -0700544 final InputWindowHandle mInputWindowHandle;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800545 InputChannel mInputChannel;
Wale Ogunwaled4a00a02016-10-10 11:29:17 -0700546 private InputChannel mClientChannel;
Craig Mautner164d4bb2012-11-26 13:51:23 -0800547
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800548 // Used to improve performance of toString()
Wale Ogunwaled4a00a02016-10-10 11:29:17 -0700549 private String mStringNameCache;
550 private CharSequence mLastTitle;
551 private boolean mWasExiting;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800552
Craig Mautnera2c77052012-03-26 12:14:43 -0700553 final WindowStateAnimator mWinAnimator;
554
Craig Mautnerc8bc97e2012-04-02 12:54:54 -0700555 boolean mHasSurface = false;
556
Craig Mautner88400d32012-09-30 12:35:45 -0700557 /** When true this window can be displayed on screens owther than mOwnerUid's */
558 private boolean mShowToOwnerOnly;
Craig Mautner9dc52bc2012-08-06 14:15:42 -0700559
Chong Zhang92147042016-05-09 12:47:11 -0700560 // Whether the window was visible when we set the app to invisible last time. WM uses
561 // this as a hint to restore the surface (if available) for early animation next time
562 // the app is brought visible.
Wale Ogunwaled4a00a02016-10-10 11:29:17 -0700563 private boolean mWasVisibleBeforeClientHidden;
Robert Carr13f7be9e2015-12-02 18:39:45 -0800564
Robert Carra1eb4392015-12-10 12:43:51 -0800565 // This window will be replaced due to relaunch. This allows window manager
566 // to differentiate between simple removal of a window and replacement. In the latter case it
567 // will preserve the old window until the new one is drawn.
568 boolean mWillReplaceWindow = false;
569 // If true, the replaced window was already requested to be removed.
Wale Ogunwaled4a00a02016-10-10 11:29:17 -0700570 private boolean mReplacingRemoveRequested = false;
Robert Carra1eb4392015-12-10 12:43:51 -0800571 // Whether the replacement of the window should trigger app transition animation.
Wale Ogunwaled4a00a02016-10-10 11:29:17 -0700572 private boolean mAnimateReplacingWindow = false;
Robert Carra1eb4392015-12-10 12:43:51 -0800573 // If not null, the window that will be used to replace the old one. This is being set when
574 // the window is added and unset when this window reports its first draw.
Wale Ogunwaled4a00a02016-10-10 11:29:17 -0700575 private WindowState mReplacementWindow = null;
Robert Carrb439a632016-04-07 22:52:10 -0700576 // For the new window in the replacement transition, if we have
577 // requested to replace without animation, then we should
578 // make sure we also don't apply an enter animation for
579 // the new window.
580 boolean mSkipEnterAnimationForSeamlessReplacement = false;
Chong Zhangbd0d9372015-12-28 15:18:29 -0800581 // Whether this window is being moved via the resize API
Wale Ogunwaled4a00a02016-10-10 11:29:17 -0700582 private boolean mMovedByResize;
Robert Carr0d00c2e2016-02-29 17:45:02 -0800583
Jeff Brownc2932a12014-11-20 18:04:05 -0800584 /**
585 * Wake lock for drawing.
586 * Even though it's slightly more expensive to do so, we will use a separate wake lock
587 * for each app that is requesting to draw while dozing so that we can accurately track
588 * who is preventing the system from suspending.
589 * This lock is only acquired on first use.
590 */
Wale Ogunwaled4a00a02016-10-10 11:29:17 -0700591 private PowerManager.WakeLock mDrawLock;
Jeff Brownc2932a12014-11-20 18:04:05 -0800592
Wale Ogunwale2b19b602015-09-18 15:14:59 -0700593 final private Rect mTmpRect = new Rect();
594
Jorim Jaggi8fa45222016-02-19 19:54:39 -0800595 /**
596 * Whether the window was resized by us while it was gone for layout.
597 */
598 boolean mResizedWhileGone = false;
599
Robert Carr6da3cc02016-06-16 15:17:07 -0700600 /**
601 * During seamless rotation we have two phases, first the old window contents
602 * are rotated to look as if they didn't move in the new coordinate system. Then we
603 * have to freeze updates to this layer (to preserve the transformation) until
604 * the resize actually occurs. This is true from when the transformation is set
605 * and false until the transaction to resize is sent.
606 */
607 boolean mSeamlesslyRotated = false;
608
Wale Ogunwalee4343ef2016-07-19 08:00:46 -0700609 /**
Robert Carrc91d1c32017-02-15 19:37:46 -0800610 * Surface insets from the previous call to relayout(), used to track
611 * if we are changing the Surface insets.
612 */
613 final Rect mLastSurfaceInsets = new Rect();
614
615 /**
Bryce Leed390deb2017-06-22 13:14:28 -0700616 * A flag set by the {@link WindowState} parent to indicate that the parent has examined this
617 * {@link WindowState} in its overall drawing context. This book-keeping allows the parent to
618 * make sure all children have been considered.
619 */
620 private boolean mDrawnStateEvaluated;
621
Jorim Jaggia5e10572017-11-15 14:36:26 +0100622 private final Point mSurfacePosition = new Point();
623
Bryce Leed390deb2017-06-22 13:14:28 -0700624 /**
Andrii Kulian4b6599e2018-01-15 17:24:08 -0800625 * A region inside of this window to be excluded from touch-related focus switches.
626 */
627 private TapExcludeRegionHolder mTapExcludeRegionHolder;
628
629 /**
chaviw40234662018-02-07 09:37:16 -0800630 * Used for testing because the real PowerManager is final.
631 */
632 private PowerManagerWrapper mPowerManagerWrapper;
633
634 /**
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -0700635 * Compares two window sub-layers and returns -1 if the first is lesser than the second in terms
Wale Ogunwalee4343ef2016-07-19 08:00:46 -0700636 * of z-order and 1 otherwise.
637 */
Griff Hazen51d00d82016-11-22 15:39:24 -0800638 private static final Comparator<WindowState> sWindowSubLayerComparator =
639 new Comparator<WindowState>() {
640 @Override
641 public int compare(WindowState w1, WindowState w2) {
642 final int layer1 = w1.mSubLayer;
643 final int layer2 = w2.mSubLayer;
644 if (layer1 < layer2 || (layer1 == layer2 && layer2 < 0 )) {
645 // We insert the child window into the list ordered by
646 // the sub-layer. For same sub-layers, the negative one
647 // should go below others; the positive one should go
648 // above others.
649 return -1;
650 }
651 return 1;
652 };
653 };
Wale Ogunwalee4343ef2016-07-19 08:00:46 -0700654
Robert Carrf59b8dd2017-10-02 18:58:36 -0700655 /**
656 * Indicates whether we have requested a Dim (in the sense of {@link Dimmer}) from our host
657 * container.
658 */
659 private boolean mIsDimming = false;
660
661 private static final float DEFAULT_DIM_AMOUNT_DEAD_WINDOW = 0.5f;
662
chaviw40234662018-02-07 09:37:16 -0800663 interface PowerManagerWrapper {
664 void wakeUp(long time, String reason);
665
666 boolean isInteractive();
667
668 }
669
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800670 WindowState(WindowManagerService service, Session s, IWindow c, WindowToken token,
chaviw40234662018-02-07 09:37:16 -0800671 WindowState parentWindow, int appOp, int seq, WindowManager.LayoutParams a,
672 int viewVisibility, int ownerId, boolean ownerCanAddInternalSystemWindow) {
673 this(service, s, c, token, parentWindow, appOp, seq, a, viewVisibility, ownerId,
674 ownerCanAddInternalSystemWindow, new PowerManagerWrapper() {
675 @Override
676 public void wakeUp(long time, String reason) {
677 service.mPowerManager.wakeUp(time, reason);
678 }
679
680 @Override
681 public boolean isInteractive() {
682 return service.mPowerManager.isInteractive();
683 }
684 });
685 }
686
687 WindowState(WindowManagerService service, Session s, IWindow c, WindowToken token,
688 WindowState parentWindow, int appOp, int seq, WindowManager.LayoutParams a,
689 int viewVisibility, int ownerId, boolean ownerCanAddInternalSystemWindow,
690 PowerManagerWrapper powerManagerWrapper) {
Jorim Jaggiffe128d2017-11-30 13:54:36 +0100691 super(service);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800692 mSession = s;
693 mClient = c;
Dianne Hackbornc2293022013-02-06 23:14:49 -0800694 mAppOp = appOp;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800695 mToken = token;
Wale Ogunwalea6cc3612016-08-04 07:25:33 -0700696 mAppToken = mToken.asAppWindowToken();
Wale Ogunwaleb699ce02016-07-18 12:05:30 -0700697 mOwnerUid = ownerId;
Wale Ogunwale5cd907d2017-01-26 14:14:08 -0800698 mOwnerCanAddInternalSystemWindow = ownerCanAddInternalSystemWindow;
Jorim Jaggi4448e1e2017-05-16 22:26:02 +0200699 mWindowId = new WindowId(this);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800700 mAttrs.copyFrom(a);
Robert Carrb08ed042018-03-12 15:49:08 -0700701 mLastSurfaceInsets.set(mAttrs.surfaceInsets);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800702 mViewVisibility = viewVisibility;
Craig Mautnere7ae2502012-03-26 17:11:19 -0700703 mPolicy = mService.mPolicy;
704 mContext = mService.mContext;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800705 DeathRecipient deathRecipient = new DeathRecipient();
Dianne Hackborn9a230e02011-10-06 11:51:27 -0700706 mSeq = seq;
Adam Lesinski95c42972013-10-02 10:13:27 -0700707 mEnforceSizeCompat = (mAttrs.privateFlags & PRIVATE_FLAG_COMPATIBLE_WINDOW) != 0;
chaviw40234662018-02-07 09:37:16 -0800708 mPowerManagerWrapper = powerManagerWrapper;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700709 if (localLOGV) Slog.v(
Craig Mautnerd87946b2012-03-29 18:00:19 -0700710 TAG, "Window " + this + " client=" + c.asBinder()
Craig Mautnerad09bcc2012-10-08 13:33:11 -0700711 + " token=" + token + " (" + mAttrs.token + ")" + " params=" + a);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800712 try {
713 c.asBinder().linkToDeath(deathRecipient, 0);
714 } catch (RemoteException e) {
715 mDeathRecipient = null;
Wale Ogunwalee4343ef2016-07-19 08:00:46 -0700716 mIsChildWindow = false;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800717 mLayoutAttached = false;
718 mIsImWindow = false;
719 mIsWallpaper = false;
720 mIsFloatingLayer = false;
721 mBaseLayer = 0;
722 mSubLayer = 0;
Jeff Brown9302c872011-07-13 22:51:29 -0700723 mInputWindowHandle = null;
Craig Mautnera2c77052012-03-26 12:14:43 -0700724 mWinAnimator = null;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800725 return;
726 }
727 mDeathRecipient = deathRecipient;
728
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700729 if (mAttrs.type >= FIRST_SUB_WINDOW && mAttrs.type <= LAST_SUB_WINDOW) {
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800730 // The multiplier here is to reserve space for multiple
731 // windows in the same type layer.
Wale Ogunwale5cd907d2017-01-26 14:14:08 -0800732 mBaseLayer = mPolicy.getWindowLayerLw(parentWindow)
Wale Ogunwalee4343ef2016-07-19 08:00:46 -0700733 * TYPE_LAYER_MULTIPLIER + TYPE_LAYER_OFFSET;
Wale Ogunwale5cd907d2017-01-26 14:14:08 -0800734 mSubLayer = mPolicy.getSubWindowLayerFromTypeLw(a.type);
Wale Ogunwalee4343ef2016-07-19 08:00:46 -0700735 mIsChildWindow = true;
takeda.masayuki18735092012-12-12 11:06:24 +0900736
Wale Ogunwalee4343ef2016-07-19 08:00:46 -0700737 if (DEBUG_ADD_REMOVE) Slog.v(TAG, "Adding " + this + " to " + parentWindow);
738 parentWindow.addChild(this, sWindowSubLayerComparator);
takeda.masayuki18735092012-12-12 11:06:24 +0900739
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800740 mLayoutAttached = mAttrs.type !=
741 WindowManager.LayoutParams.TYPE_APPLICATION_ATTACHED_DIALOG;
Wale Ogunwale7ed4d372016-07-09 15:28:55 -0700742 mIsImWindow = parentWindow.mAttrs.type == TYPE_INPUT_METHOD
743 || parentWindow.mAttrs.type == TYPE_INPUT_METHOD_DIALOG;
744 mIsWallpaper = parentWindow.mAttrs.type == TYPE_WALLPAPER;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800745 } else {
746 // The multiplier here is to reserve space for multiple
747 // windows in the same type layer.
Wale Ogunwale5cd907d2017-01-26 14:14:08 -0800748 mBaseLayer = mPolicy.getWindowLayerLw(this)
Wale Ogunwalee4343ef2016-07-19 08:00:46 -0700749 * TYPE_LAYER_MULTIPLIER + TYPE_LAYER_OFFSET;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800750 mSubLayer = 0;
Wale Ogunwalee4343ef2016-07-19 08:00:46 -0700751 mIsChildWindow = false;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800752 mLayoutAttached = false;
753 mIsImWindow = mAttrs.type == TYPE_INPUT_METHOD
754 || mAttrs.type == TYPE_INPUT_METHOD_DIALOG;
755 mIsWallpaper = mAttrs.type == TYPE_WALLPAPER;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800756 }
Wale Ogunwalee4343ef2016-07-19 08:00:46 -0700757 mIsFloatingLayer = mIsImWindow || mIsWallpaper;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800758
Wale Ogunwale72919d22016-12-08 18:58:50 -0800759 if (mAppToken != null && mAppToken.mShowForAllUsers) {
Wale Ogunwale360a8bc2016-10-10 13:25:26 -0700760 // Windows for apps that can show for all users should also show when the device is
761 // locked.
762 mAttrs.flags |= FLAG_SHOW_WHEN_LOCKED;
Craig Mautner19ab8282014-05-07 10:35:34 -0700763 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800764
Craig Mautner322e4032012-07-13 13:35:20 -0700765 mWinAnimator = new WindowStateAnimator(this);
766 mWinAnimator.mAlpha = a.alpha;
767
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800768 mRequestedWidth = 0;
769 mRequestedHeight = 0;
Dianne Hackborn1743b642012-03-12 17:04:43 -0700770 mLastRequestedWidth = 0;
771 mLastRequestedHeight = 0;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800772 mLayer = 0;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800773 mInputWindowHandle = new InputWindowHandle(
Vladislav Kaznacheev3787de12016-12-21 10:36:35 -0800774 mAppToken != null ? mAppToken.mInputApplicationHandle : null, this, c,
775 getDisplayId());
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800776 }
777
778 void attach() {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -0700779 if (localLOGV) Slog.v(TAG, "Attaching " + this + " token=" + mToken);
Wale Ogunwale387e4c62017-02-13 09:50:02 -0800780 mSession.windowAddedLocked(mAttrs.packageName);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800781 }
782
Bryce Leed390deb2017-06-22 13:14:28 -0700783 /**
784 * Returns whether this {@link WindowState} has been considered for drawing by its parent.
785 */
Bryce Lee6311c4b2017-07-06 14:09:29 -0700786 boolean getDrawnStateEvaluated() {
Bryce Leed390deb2017-06-22 13:14:28 -0700787 return mDrawnStateEvaluated;
788 }
789
790 /**
791 * Sets whether this {@link WindowState} has been considered for drawing by its parent. Should
792 * be cleared when detached from parent.
793 */
794 void setDrawnStateEvaluated(boolean evaluated) {
795 mDrawnStateEvaluated = evaluated;
796 }
797
798 @Override
799 void onParentSet() {
800 super.onParentSet();
801 setDrawnStateEvaluated(false /*evaluated*/);
802 }
803
Craig Mautnera2c77052012-03-26 12:14:43 -0700804 @Override
Dianne Hackbornf265ea92013-01-31 15:00:51 -0800805 public int getOwningUid() {
Dianne Hackbornc2293022013-02-06 23:14:49 -0800806 return mOwnerUid;
Dianne Hackbornf265ea92013-01-31 15:00:51 -0800807 }
808
809 @Override
810 public String getOwningPackage() {
811 return mAttrs.packageName;
812 }
813
Wale Ogunwale5cd907d2017-01-26 14:14:08 -0800814 @Override
815 public boolean canAddInternalSystemWindow() {
816 return mOwnerCanAddInternalSystemWindow;
817 }
818
Jorim Jaggif12ec0f2017-08-23 16:14:10 +0200819 @Override
820 public boolean canAcquireSleepToken() {
821 return mSession.mCanAcquireSleepToken;
822 }
823
Jorim Jaggif5834272016-04-04 20:25:41 -0700824 /**
825 * Subtracts the insets calculated by intersecting {@param layoutFrame} with {@param insetFrame}
826 * from {@param frame}. In other words, it applies the insets that would result if
827 * {@param frame} would be shifted to {@param layoutFrame} and then applying the insets from
Andrii Kuliandaea3572016-04-08 13:20:51 -0700828 * {@param insetFrame}. Also it respects {@param displayFrame} in case window has minimum
829 * width/height applied and insets should be overridden.
Jorim Jaggif5834272016-04-04 20:25:41 -0700830 */
Andrii Kuliandaea3572016-04-08 13:20:51 -0700831 private void subtractInsets(Rect frame, Rect layoutFrame, Rect insetFrame, Rect displayFrame) {
832 final int left = Math.max(0, insetFrame.left - Math.max(layoutFrame.left, displayFrame.left));
833 final int top = Math.max(0, insetFrame.top - Math.max(layoutFrame.top, displayFrame.top));
834 final int right = Math.max(0, Math.min(layoutFrame.right, displayFrame.right) - insetFrame.right);
835 final int bottom = Math.max(0, Math.min(layoutFrame.bottom, displayFrame.bottom) - insetFrame.bottom);
Jorim Jaggif5834272016-04-04 20:25:41 -0700836 frame.inset(left, top, right, bottom);
837 }
838
Dianne Hackbornf265ea92013-01-31 15:00:51 -0800839 @Override
Robert Carr43521762016-10-28 13:15:04 -0700840 public void computeFrameLw(Rect parentFrame, Rect displayFrame, Rect overscanFrame,
841 Rect contentFrame, Rect visibleFrame, Rect decorFrame, Rect stableFrame,
Adrian Roos6a4fa0e2018-03-05 19:50:16 +0100842 Rect outsetFrame, WmDisplayCutout displayCutout) {
Wale Ogunwalec48a3542016-02-19 15:18:45 -0800843 if (mWillReplaceWindow && (mAnimatingExit || !mReplacingRemoveRequested)) {
Filip Gruszczynski55a309f2015-09-04 17:15:01 -0700844 // This window is being replaced and either already got information that it's being
845 // removed or we are still waiting for some information. Because of this we don't
846 // want to apply any more changes to it, so it remains in this state until new window
847 // appears.
848 return;
849 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800850 mHaveFrame = true;
851
Wale Ogunwale5a2f2cb2015-09-17 12:31:55 -0700852 final Task task = getTask();
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -0700853 final boolean inFullscreenContainer = inFullscreenContainer();
Robert Carre6275582016-02-29 15:45:45 -0800854 final boolean windowsAreFloating = task != null && task.isFloating();
Wale Ogunwale360a8bc2016-10-10 13:25:26 -0700855 final DisplayContent dc = getDisplayContent();
Wale Ogunwale79f268d2015-12-18 08:25:47 -0800856
Chong Zhangae35fef2016-03-16 15:56:55 -0700857 // If the task has temp inset bounds set, we have to make sure all its windows uses
858 // the temp inset frame. Otherwise different display frames get applied to the main
859 // window and the child window, making them misaligned.
Andrii Kulianc24f3732017-08-08 19:35:17 -0700860 if (inFullscreenContainer || isLetterboxedAppWindow()) {
Chong Zhangae35fef2016-03-16 15:56:55 -0700861 mInsetFrame.setEmpty();
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -0700862 } else if (task != null && isInMultiWindowMode()) {
Chong Zhangae35fef2016-03-16 15:56:55 -0700863 task.getTempInsetBounds(mInsetFrame);
864 }
865
Jorim Jaggif5834272016-04-04 20:25:41 -0700866 // Denotes the actual frame used to calculate the insets and to perform the layout. When
867 // resizing in docked mode, we'd like to freeze the layout, so we also need to freeze the
868 // insets temporarily. By the notion of a task having a different layout frame, we can
869 // achieve that while still moving the task around.
870 final Rect layoutContainingFrame;
871 final Rect layoutDisplayFrame;
872
873 // The offset from the layout containing frame to the actual containing frame.
874 final int layoutXDiff;
875 final int layoutYDiff;
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -0700876 if (inFullscreenContainer || layoutInParentFrame()) {
Wale Ogunwale79f268d2015-12-18 08:25:47 -0800877 // We use the parent frame as the containing frame for fullscreen and child windows
Robert Carr43521762016-10-28 13:15:04 -0700878 mContainingFrame.set(parentFrame);
879 mDisplayFrame.set(displayFrame);
880 layoutDisplayFrame = displayFrame;
881 layoutContainingFrame = parentFrame;
Jorim Jaggif5834272016-04-04 20:25:41 -0700882 layoutXDiff = 0;
883 layoutYDiff = 0;
Wale Ogunwale79f268d2015-12-18 08:25:47 -0800884 } else {
Bryce Leef3c6a472017-11-14 14:53:06 -0800885 getBounds(mContainingFrame);
Jorim Jaggi0429f352015-12-22 16:29:16 +0100886 if (mAppToken != null && !mAppToken.mFrozenBounds.isEmpty()) {
887
888 // If the bounds are frozen, we still want to translate the window freely and only
889 // freeze the size.
890 Rect frozen = mAppToken.mFrozenBounds.peek();
891 mContainingFrame.right = mContainingFrame.left + frozen.width();
892 mContainingFrame.bottom = mContainingFrame.top + frozen.height();
893 }
Wale Ogunwalef9c81492015-02-25 18:06:17 -0800894 final WindowState imeWin = mService.mInputMethodWindow;
Robert Carrfc03b2b2016-03-31 15:22:02 -0700895 // IME is up and obscuring this window. Adjust the window position so it is visible.
896 if (imeWin != null && imeWin.isVisibleNow() && mService.mInputMethodTarget == this) {
Wale Ogunwale44f036f2017-09-29 05:09:09 -0700897 if (inFreeformWindowingMode()
Winson Chungd73e94b2017-05-31 16:25:30 -0700898 && mContainingFrame.bottom > contentFrame.bottom) {
899 // In freeform we want to move the top up directly.
900 // TODO: Investigate why this is contentFrame not parentFrame.
901 mContainingFrame.top -= mContainingFrame.bottom - contentFrame.bottom;
Wale Ogunwale44f036f2017-09-29 05:09:09 -0700902 } else if (!inPinnedWindowingMode()
Winson Chungd73e94b2017-05-31 16:25:30 -0700903 && mContainingFrame.bottom > parentFrame.bottom) {
904 // But in docked we want to behave like fullscreen and behave as if the task
905 // were given smaller bounds for the purposes of layout. Skip adjustments for
906 // the pinned stack, they are handled separately in the PinnedStackController.
907 mContainingFrame.bottom = parentFrame.bottom;
908 }
Craig Mautnerc5a6e442013-06-05 17:22:35 -0700909 }
Skuhne81c524a2015-08-12 13:34:14 -0700910
Robert Carre6275582016-02-29 15:45:45 -0800911 if (windowsAreFloating) {
Chong Zhang65d15d02016-03-14 13:59:32 -0700912 // In floating modes (e.g. freeform, pinned) we have only to set the rectangle
913 // if it wasn't set already. No need to intersect it with the (visible)
Robert Carre6275582016-02-29 15:45:45 -0800914 // "content frame" since it is allowed to be outside the visible desktop.
Skuhne81c524a2015-08-12 13:34:14 -0700915 if (mContainingFrame.isEmpty()) {
Robert Carr43521762016-10-28 13:15:04 -0700916 mContainingFrame.set(contentFrame);
Skuhne81c524a2015-08-12 13:34:14 -0700917 }
Doris Liu06d582d2015-06-01 13:18:43 -0700918 }
Wale Ogunwale94596652015-02-06 19:27:34 -0800919 mDisplayFrame.set(mContainingFrame);
Jorim Jaggif5834272016-04-04 20:25:41 -0700920 layoutXDiff = !mInsetFrame.isEmpty() ? mInsetFrame.left - mContainingFrame.left : 0;
921 layoutYDiff = !mInsetFrame.isEmpty() ? mInsetFrame.top - mContainingFrame.top : 0;
922 layoutContainingFrame = !mInsetFrame.isEmpty() ? mInsetFrame : mContainingFrame;
Wale Ogunwale360a8bc2016-10-10 13:25:26 -0700923 mTmpRect.set(0, 0, dc.getDisplayInfo().logicalWidth, dc.getDisplayInfo().logicalHeight);
Robert Carr43521762016-10-28 13:15:04 -0700924 subtractInsets(mDisplayFrame, layoutContainingFrame, displayFrame, mTmpRect);
Robert Carrfd2bd1b2016-04-07 13:52:43 -0700925 if (!layoutInParentFrame()) {
Robert Carr43521762016-10-28 13:15:04 -0700926 subtractInsets(mContainingFrame, layoutContainingFrame, parentFrame, mTmpRect);
927 subtractInsets(mInsetFrame, layoutContainingFrame, parentFrame, mTmpRect);
Robert Carrfd2bd1b2016-04-07 13:52:43 -0700928 }
Robert Carr43521762016-10-28 13:15:04 -0700929 layoutDisplayFrame = displayFrame;
Jorim Jaggif5834272016-04-04 20:25:41 -0700930 layoutDisplayFrame.intersect(layoutContainingFrame);
Craig Mautner967212c2013-04-13 21:10:58 -0700931 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800932
Craig Mautner967212c2013-04-13 21:10:58 -0700933 final int pw = mContainingFrame.width();
934 final int ph = mContainingFrame.height();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800935
Robert Carr43521762016-10-28 13:15:04 -0700936 if (!mParentFrame.equals(parentFrame)) {
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800937 //Slog.i(TAG_WM, "Window " + this + " content frame from " + mParentFrame
Robert Carr43521762016-10-28 13:15:04 -0700938 // + " to " + parentFrame);
939 mParentFrame.set(parentFrame);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800940 mContentChanged = true;
941 }
Dianne Hackborn1743b642012-03-12 17:04:43 -0700942 if (mRequestedWidth != mLastRequestedWidth || mRequestedHeight != mLastRequestedHeight) {
943 mLastRequestedWidth = mRequestedWidth;
944 mLastRequestedHeight = mRequestedHeight;
945 mContentChanged = true;
946 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800947
Robert Carr43521762016-10-28 13:15:04 -0700948 mOverscanFrame.set(overscanFrame);
949 mContentFrame.set(contentFrame);
950 mVisibleFrame.set(visibleFrame);
951 mDecorFrame.set(decorFrame);
952 mStableFrame.set(stableFrame);
953 final boolean hasOutsets = outsetFrame != null;
Filip Gruszczynski2217f612015-05-26 11:32:08 -0700954 if (hasOutsets) {
Robert Carr43521762016-10-28 13:15:04 -0700955 mOutsetFrame.set(outsetFrame);
Filip Gruszczynski2217f612015-05-26 11:32:08 -0700956 }
Dianne Hackbornc4aad012013-02-22 15:05:25 -0800957
Craig Mautnereda67292013-04-28 13:50:14 -0700958 final int fw = mFrame.width();
959 final int fh = mFrame.height();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800960
Jorim Jaggif5834272016-04-04 20:25:41 -0700961 applyGravityAndUpdateFrame(layoutContainingFrame, layoutDisplayFrame);
962
Filip Gruszczynskiaaf18112015-06-05 13:37:40 -0700963 // Calculate the outsets before the content frame gets shrinked to the window frame.
964 if (hasOutsets) {
965 mOutsets.set(Math.max(mContentFrame.left - mOutsetFrame.left, 0),
966 Math.max(mContentFrame.top - mOutsetFrame.top, 0),
967 Math.max(mOutsetFrame.right - mContentFrame.right, 0),
968 Math.max(mOutsetFrame.bottom - mContentFrame.bottom, 0));
969 } else {
970 mOutsets.set(0, 0, 0, 0);
971 }
972
Craig Mautnera248eee2013-05-07 11:41:27 -0700973 // Make sure the content and visible frames are inside of the
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800974 // final window frame.
Robert Carre6275582016-02-29 15:45:45 -0800975 if (windowsAreFloating && !mFrame.isEmpty()) {
Robert Carre65a1c42017-02-28 16:52:59 -0800976 // For pinned workspace the frame isn't limited in any particular
977 // way since SystemUI controls the bounds. For freeform however
978 // we want to keep things inside the content frame.
Wale Ogunwale44f036f2017-09-29 05:09:09 -0700979 final Rect limitFrame = task.inPinnedWindowingMode() ? mFrame : mContentFrame;
Skuhne81c524a2015-08-12 13:34:14 -0700980 // Keep the frame out of the blocked system area, limit it in size to the content area
981 // and make sure that there is always a minimum visible so that the user can drag it
982 // into a usable area..
Robert Carre65a1c42017-02-28 16:52:59 -0800983 final int height = Math.min(mFrame.height(), limitFrame.height());
984 final int width = Math.min(limitFrame.width(), mFrame.width());
Wale Ogunwale231b06e2015-09-16 12:03:09 -0700985 final DisplayMetrics displayMetrics = getDisplayContent().getDisplayMetrics();
Kazuhiro Inaba63e24d12016-07-14 13:02:55 +0900986 final int minVisibleHeight = Math.min(height, WindowManagerService.dipToPixel(
987 MINIMUM_VISIBLE_HEIGHT_IN_DP, displayMetrics));
988 final int minVisibleWidth = Math.min(width, WindowManagerService.dipToPixel(
989 MINIMUM_VISIBLE_WIDTH_IN_DP, displayMetrics));
Robert Carre65a1c42017-02-28 16:52:59 -0800990 final int top = Math.max(limitFrame.top,
991 Math.min(mFrame.top, limitFrame.bottom - minVisibleHeight));
992 final int left = Math.max(limitFrame.left + minVisibleWidth - width,
993 Math.min(mFrame.left, limitFrame.right - minVisibleWidth));
Skuhne81c524a2015-08-12 13:34:14 -0700994 mFrame.set(left, top, left + width, top + height);
995 mContentFrame.set(mFrame);
996 mVisibleFrame.set(mContentFrame);
997 mStableFrame.set(mContentFrame);
Filip Gruszczynski466f3212015-09-21 17:57:57 -0700998 } else if (mAttrs.type == TYPE_DOCK_DIVIDER) {
Wale Ogunwale360a8bc2016-10-10 13:25:26 -0700999 dc.getDockedDividerController().positionDockedStackedDivider(mFrame);
Jorim Jaggi192086e2016-03-11 17:17:03 +01001000 mContentFrame.set(mFrame);
1001 if (!mFrame.equals(mLastFrame)) {
1002 mMovedByResize = true;
Filip Gruszczynskiae100802015-11-11 15:58:03 -08001003 }
Skuhne81c524a2015-08-12 13:34:14 -07001004 } else {
Jorim Jaggi656f6502016-04-11 21:08:17 -07001005 mContentFrame.set(Math.max(mContentFrame.left, mFrame.left),
1006 Math.max(mContentFrame.top, mFrame.top),
1007 Math.min(mContentFrame.right, mFrame.right),
1008 Math.min(mContentFrame.bottom, mFrame.bottom));
Dianne Hackbornc4aad012013-02-22 15:05:25 -08001009
Jorim Jaggi656f6502016-04-11 21:08:17 -07001010 mVisibleFrame.set(Math.max(mVisibleFrame.left, mFrame.left),
1011 Math.max(mVisibleFrame.top, mFrame.top),
1012 Math.min(mVisibleFrame.right, mFrame.right),
1013 Math.min(mVisibleFrame.bottom, mFrame.bottom));
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001014
Jorim Jaggi656f6502016-04-11 21:08:17 -07001015 mStableFrame.set(Math.max(mStableFrame.left, mFrame.left),
1016 Math.max(mStableFrame.top, mFrame.top),
1017 Math.min(mStableFrame.right, mFrame.right),
1018 Math.min(mStableFrame.bottom, mFrame.bottom));
Skuhne81c524a2015-08-12 13:34:14 -07001019 }
Adrian Roosfa104232014-06-20 16:10:14 -07001020
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -07001021 if (inFullscreenContainer && !windowsAreFloating) {
Jorim Jaggi899327f2016-02-25 20:44:18 -05001022 // Windows that are not fullscreen can be positioned outside of the display frame,
1023 // but that is not a reason to provide them with overscan insets.
Jorim Jaggif5834272016-04-04 20:25:41 -07001024 mOverscanInsets.set(Math.max(mOverscanFrame.left - layoutContainingFrame.left, 0),
1025 Math.max(mOverscanFrame.top - layoutContainingFrame.top, 0),
1026 Math.max(layoutContainingFrame.right - mOverscanFrame.right, 0),
1027 Math.max(layoutContainingFrame.bottom - mOverscanFrame.bottom, 0));
Filip Gruszczynski01ef404d52016-01-28 18:14:27 -08001028 }
Craig Mautnereda67292013-04-28 13:50:14 -07001029
Jorim Jaggi81fe2d12015-12-21 14:45:18 +01001030 if (mAttrs.type == TYPE_DOCK_DIVIDER) {
Jorim Jaggi81fe2d12015-12-21 14:45:18 +01001031 // For the docked divider, we calculate the stable insets like a full-screen window
1032 // so it can use it to calculate the snap positions.
1033 mStableInsets.set(Math.max(mStableFrame.left - mDisplayFrame.left, 0),
1034 Math.max(mStableFrame.top - mDisplayFrame.top, 0),
1035 Math.max(mDisplayFrame.right - mStableFrame.right, 0),
1036 Math.max(mDisplayFrame.bottom - mStableFrame.bottom, 0));
Jorim Jaggi2e95a482016-01-14 17:36:55 -08001037
1038 // The divider doesn't care about insets in any case, so set it to empty so we don't
1039 // trigger a relayout when moving it.
1040 mContentInsets.setEmpty();
1041 mVisibleInsets.setEmpty();
Jorim Jaggi81fe2d12015-12-21 14:45:18 +01001042 } else {
Bryce Leef3c6a472017-11-14 14:53:06 -08001043 getDisplayContent().getBounds(mTmpRect);
Andrii Kuliana9d168c2016-03-23 13:19:32 -07001044 // Override right and/or bottom insets in case if the frame doesn't fit the screen in
1045 // non-fullscreen mode.
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -07001046 boolean overrideRightInset = !windowsAreFloating && !inFullscreenContainer
1047 && mFrame.right > mTmpRect.right;
1048 boolean overrideBottomInset = !windowsAreFloating && !inFullscreenContainer
1049 && mFrame.bottom > mTmpRect.bottom;
Jorim Jaggi656f6502016-04-11 21:08:17 -07001050 mContentInsets.set(mContentFrame.left - mFrame.left,
1051 mContentFrame.top - mFrame.top,
Andrii Kuliand9003372016-04-04 17:46:59 -07001052 overrideRightInset ? mTmpRect.right - mContentFrame.right
Jorim Jaggi656f6502016-04-11 21:08:17 -07001053 : mFrame.right - mContentFrame.right,
Andrii Kuliand9003372016-04-04 17:46:59 -07001054 overrideBottomInset ? mTmpRect.bottom - mContentFrame.bottom
Jorim Jaggi656f6502016-04-11 21:08:17 -07001055 : mFrame.bottom - mContentFrame.bottom);
Jorim Jaggi2e95a482016-01-14 17:36:55 -08001056
Jorim Jaggi656f6502016-04-11 21:08:17 -07001057 mVisibleInsets.set(mVisibleFrame.left - mFrame.left,
1058 mVisibleFrame.top - mFrame.top,
Andrii Kuliand9003372016-04-04 17:46:59 -07001059 overrideRightInset ? mTmpRect.right - mVisibleFrame.right
Jorim Jaggi656f6502016-04-11 21:08:17 -07001060 : mFrame.right - mVisibleFrame.right,
Andrii Kuliand9003372016-04-04 17:46:59 -07001061 overrideBottomInset ? mTmpRect.bottom - mVisibleFrame.bottom
Jorim Jaggi656f6502016-04-11 21:08:17 -07001062 : mFrame.bottom - mVisibleFrame.bottom);
Jorim Jaggi2e95a482016-01-14 17:36:55 -08001063
Jorim Jaggi656f6502016-04-11 21:08:17 -07001064 mStableInsets.set(Math.max(mStableFrame.left - mFrame.left, 0),
1065 Math.max(mStableFrame.top - mFrame.top, 0),
Andrii Kuliand9003372016-04-04 17:46:59 -07001066 overrideRightInset ? Math.max(mTmpRect.right - mStableFrame.right, 0)
Jorim Jaggi656f6502016-04-11 21:08:17 -07001067 : Math.max(mFrame.right - mStableFrame.right, 0),
Andrii Kuliand9003372016-04-04 17:46:59 -07001068 overrideBottomInset ? Math.max(mTmpRect.bottom - mStableFrame.bottom, 0)
Jorim Jaggi656f6502016-04-11 21:08:17 -07001069 : Math.max(mFrame.bottom - mStableFrame.bottom, 0));
Jorim Jaggi81fe2d12015-12-21 14:45:18 +01001070 }
Adrian Roosfa104232014-06-20 16:10:14 -07001071
Jorim Jaggi656f6502016-04-11 21:08:17 -07001072 // Offset the actual frame by the amount layout frame is off.
1073 mFrame.offset(-layoutXDiff, -layoutYDiff);
1074 mCompatFrame.offset(-layoutXDiff, -layoutYDiff);
Jorim Jaggif5834272016-04-04 20:25:41 -07001075 mContentFrame.offset(-layoutXDiff, -layoutYDiff);
1076 mVisibleFrame.offset(-layoutXDiff, -layoutYDiff);
1077 mStableFrame.offset(-layoutXDiff, -layoutYDiff);
1078
Adrian Roos5c6b6222017-11-07 17:36:10 +01001079 // TODO(roosa): Figure out what frame exactly this needs to be calculated with.
1080 mDisplayCutout = displayCutout.calculateRelativeTo(mFrame);
1081
1082
Craig Mautnereda67292013-04-28 13:50:14 -07001083 mCompatFrame.set(mFrame);
Dianne Hackborne2515ee2011-04-27 18:52:56 -04001084 if (mEnforceSizeCompat) {
Dianne Hackbornffb3d932011-05-17 17:44:51 -07001085 // If there is a size compatibility scale being applied to the
1086 // window, we need to apply this to its insets so that they are
1087 // reported to the app in its coordinate space.
Craig Mautnereda67292013-04-28 13:50:14 -07001088 mOverscanInsets.scale(mInvGlobalScale);
1089 mContentInsets.scale(mInvGlobalScale);
1090 mVisibleInsets.scale(mInvGlobalScale);
Adrian Roosfa104232014-06-20 16:10:14 -07001091 mStableInsets.scale(mInvGlobalScale);
Filip Gruszczynski2217f612015-05-26 11:32:08 -07001092 mOutsets.scale(mInvGlobalScale);
Dianne Hackbornffb3d932011-05-17 17:44:51 -07001093
1094 // Also the scaled frame that we report to the app needs to be
1095 // adjusted to be in its coordinate space.
1096 mCompatFrame.scale(mInvGlobalScale);
Dianne Hackborne2515ee2011-04-27 18:52:56 -04001097 }
1098
Craig Mautnereda67292013-04-28 13:50:14 -07001099 if (mIsWallpaper && (fw != mFrame.width() || fh != mFrame.height())) {
Craig Mautnerdf88d732014-01-27 09:21:32 -08001100 final DisplayContent displayContent = getDisplayContent();
1101 if (displayContent != null) {
1102 final DisplayInfo displayInfo = displayContent.getDisplayInfo();
Wale Ogunwale0303c572016-10-20 10:16:29 -07001103 getDisplayContent().mWallpaperController.updateWallpaperOffset(
Wale Ogunwalee8069dc2015-08-18 09:52:01 -07001104 this, displayInfo.logicalWidth, displayInfo.logicalHeight, false);
Craig Mautnerdf88d732014-01-27 09:21:32 -08001105 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001106 }
1107
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001108 if (DEBUG_LAYOUT || localLOGV) Slog.v(TAG,
Craig Mautnerb3b36ba2013-05-20 13:21:10 -07001109 "Resolving (mRequestedWidth="
1110 + mRequestedWidth + ", mRequestedheight="
1111 + mRequestedHeight + ") to" + " (pw=" + pw + ", ph=" + ph
1112 + "): frame=" + mFrame.toShortString()
1113 + " ci=" + mContentInsets.toShortString()
Adrian Roosfa104232014-06-20 16:10:14 -07001114 + " vi=" + mVisibleInsets.toShortString()
Andrii Kuliana9d168c2016-03-23 13:19:32 -07001115 + " si=" + mStableInsets.toShortString()
Filip Gruszczynski2217f612015-05-26 11:32:08 -07001116 + " of=" + mOutsets.toShortString());
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001117 }
1118
Bryce Leef3c6a472017-11-14 14:53:06 -08001119 // TODO: Look into whether this override is still necessary.
1120 @Override
1121 public Rect getBounds() {
1122 if (isInMultiWindowMode()) {
1123 return getTask().getBounds();
1124 } else if (mAppToken != null){
1125 return mAppToken.getBounds();
1126 } else {
1127 return super.getBounds();
1128 }
1129 }
1130
Craig Mautnera2c77052012-03-26 12:14:43 -07001131 @Override
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001132 public Rect getFrameLw() {
1133 return mFrame;
1134 }
1135
Craig Mautnera2c77052012-03-26 12:14:43 -07001136 @Override
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001137 public Rect getDisplayFrameLw() {
1138 return mDisplayFrame;
1139 }
1140
Craig Mautnera2c77052012-03-26 12:14:43 -07001141 @Override
Dianne Hackbornc4aad012013-02-22 15:05:25 -08001142 public Rect getOverscanFrameLw() {
1143 return mOverscanFrame;
1144 }
1145
1146 @Override
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001147 public Rect getContentFrameLw() {
1148 return mContentFrame;
1149 }
1150
Craig Mautnera2c77052012-03-26 12:14:43 -07001151 @Override
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001152 public Rect getVisibleFrameLw() {
1153 return mVisibleFrame;
1154 }
1155
Robert Carre4ee8f8a2016-10-31 12:40:15 -07001156 Rect getStableFrameLw() {
1157 return mStableFrame;
1158 }
1159
Craig Mautnera2c77052012-03-26 12:14:43 -07001160 @Override
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001161 public boolean getGivenInsetsPendingLw() {
1162 return mGivenInsetsPending;
1163 }
1164
Craig Mautnera2c77052012-03-26 12:14:43 -07001165 @Override
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001166 public Rect getGivenContentInsetsLw() {
1167 return mGivenContentInsets;
1168 }
1169
Craig Mautnera2c77052012-03-26 12:14:43 -07001170 @Override
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001171 public Rect getGivenVisibleInsetsLw() {
1172 return mGivenVisibleInsets;
1173 }
1174
Craig Mautnera2c77052012-03-26 12:14:43 -07001175 @Override
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001176 public WindowManager.LayoutParams getAttrs() {
1177 return mAttrs;
1178 }
1179
Craig Mautner812d2ca2012-09-27 15:35:34 -07001180 @Override
Dianne Hackborn73ab6a42011-12-13 11:16:23 -08001181 public boolean getNeedsMenuLw(WindowManagerPolicy.WindowState bottom) {
Wale Ogunwaleae9adbf2016-10-18 15:17:06 -07001182 return getDisplayContent().getNeedsMenu(this, bottom);
Dianne Hackborn73ab6a42011-12-13 11:16:23 -08001183 }
1184
Craig Mautner19d59bc2012-09-04 11:15:56 -07001185 @Override
Dianne Hackborn9a230e02011-10-06 11:51:27 -07001186 public int getSystemUiVisibility() {
1187 return mSystemUiVisibility;
1188 }
1189
Craig Mautner19d59bc2012-09-04 11:15:56 -07001190 @Override
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001191 public int getSurfaceLayer() {
1192 return mLayer;
1193 }
1194
Craig Mautner812d2ca2012-09-27 15:35:34 -07001195 @Override
Selim Cinekd6623612015-05-22 18:56:22 -07001196 public int getBaseType() {
Wale Ogunwalecaa53af2016-07-17 14:50:26 -07001197 return getTopParentWindow().mAttrs.type;
Selim Cinekd6623612015-05-22 18:56:22 -07001198 }
1199
1200 @Override
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001201 public IApplicationToken getAppToken() {
1202 return mAppToken != null ? mAppToken.appToken : null;
1203 }
Craig Mautner19d59bc2012-09-04 11:15:56 -07001204
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001205 @Override
1206 public boolean isVoiceInteraction() {
Wale Ogunwale72919d22016-12-08 18:58:50 -08001207 return mAppToken != null && mAppToken.mVoiceInteraction;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001208 }
1209
Robert Carr31aa98b2016-07-20 15:29:03 -07001210 boolean setReportResizeHints() {
Craig Mautner4c5eb222013-11-18 12:59:05 -08001211 mOverscanInsetsChanged |= !mLastOverscanInsets.equals(mOverscanInsets);
1212 mContentInsetsChanged |= !mLastContentInsets.equals(mContentInsets);
1213 mVisibleInsetsChanged |= !mLastVisibleInsets.equals(mVisibleInsets);
Adrian Roosfa104232014-06-20 16:10:14 -07001214 mStableInsetsChanged |= !mLastStableInsets.equals(mStableInsets);
Filip Gruszczynski2217f612015-05-26 11:32:08 -07001215 mOutsetsChanged |= !mLastOutsets.equals(mOutsets);
Robert Carr31aa98b2016-07-20 15:29:03 -07001216 mFrameSizeChanged |= (mLastFrame.width() != mFrame.width()) ||
1217 (mLastFrame.height() != mFrame.height());
Adrian Roos5c6b6222017-11-07 17:36:10 +01001218 mDisplayCutoutChanged |= !mLastDisplayCutout.equals(mDisplayCutout);
Filip Gruszczynski2217f612015-05-26 11:32:08 -07001219 return mOverscanInsetsChanged || mContentInsetsChanged || mVisibleInsetsChanged
Adrian Roos5c6b6222017-11-07 17:36:10 +01001220 || mOutsetsChanged || mFrameSizeChanged || mDisplayCutoutChanged;
Craig Mautner4c5eb222013-11-18 12:59:05 -08001221 }
1222
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001223 /**
1224 * Adds the window to the resizing list if any of the parameters we use to track the window
1225 * dimensions or insets have changed.
1226 */
1227 void updateResizingWindowIfNeeded() {
1228 final WindowStateAnimator winAnimator = mWinAnimator;
1229 if (!mHasSurface || mService.mLayoutSeq != mLayoutSeq || isGoneForLayoutLw()) {
1230 return;
1231 }
1232
1233 final Task task = getTask();
1234 // In the case of stack bound animations, the window frames will update (unlike other
1235 // animations which just modify various transformation properties). We don't want to
1236 // notify the client of frame changes in this case. Not only is it a lot of churn, but
1237 // the frame may not correspond to the surface size or the onscreen area at various
1238 // phases in the animation, and the client will become sad and confused.
Winson Chung40a5f932017-04-13 16:39:36 -07001239 if (task != null && task.mStack.isAnimatingBounds()) {
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001240 return;
1241 }
1242
1243 setReportResizeHints();
1244 boolean configChanged = isConfigChanged();
1245 if (DEBUG_CONFIGURATION && configChanged) {
1246 Slog.v(TAG_WM, "Win " + this + " config changed: " + getConfiguration());
1247 }
1248
1249 final boolean dragResizingChanged = isDragResizeChanged()
1250 && !isDragResizingChangeReported();
1251
1252 if (localLOGV) Slog.v(TAG_WM, "Resizing " + this + ": configChanged=" + configChanged
1253 + " dragResizingChanged=" + dragResizingChanged + " last=" + mLastFrame
1254 + " frame=" + mFrame);
1255
1256 // We update mLastFrame always rather than in the conditional with the last inset
1257 // variables, because mFrameSizeChanged only tracks the width and height changing.
1258 mLastFrame.set(mFrame);
1259
1260 if (mContentInsetsChanged
1261 || mVisibleInsetsChanged
1262 || winAnimator.mSurfaceResized
1263 || mOutsetsChanged
1264 || mFrameSizeChanged
Adrian Roos5c6b6222017-11-07 17:36:10 +01001265 || mDisplayCutoutChanged
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001266 || configChanged
1267 || dragResizingChanged
Andrii Kulianb2e37802017-01-11 00:36:44 -08001268 || mReportOrientationChanged) {
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001269 if (DEBUG_RESIZE || DEBUG_ORIENTATION) {
1270 Slog.v(TAG_WM, "Resize reasons for w=" + this + ": "
1271 + " contentInsetsChanged=" + mContentInsetsChanged
1272 + " " + mContentInsets.toShortString()
1273 + " visibleInsetsChanged=" + mVisibleInsetsChanged
1274 + " " + mVisibleInsets.toShortString()
1275 + " stableInsetsChanged=" + mStableInsetsChanged
1276 + " " + mStableInsets.toShortString()
1277 + " outsetsChanged=" + mOutsetsChanged
1278 + " " + mOutsets.toShortString()
1279 + " surfaceResized=" + winAnimator.mSurfaceResized
1280 + " configChanged=" + configChanged
1281 + " dragResizingChanged=" + dragResizingChanged
Adrian Roos5c6b6222017-11-07 17:36:10 +01001282 + " reportOrientationChanged=" + mReportOrientationChanged
1283 + " displayCutoutChanged=" + mDisplayCutoutChanged);
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001284 }
1285
1286 // If it's a dead window left on screen, and the configuration changed, there is nothing
1287 // we can do about it. Remove the window now.
1288 if (mAppToken != null && mAppDied) {
1289 mAppToken.removeDeadWindows();
1290 return;
1291 }
1292
Jorim Jaggidc9385a2017-05-13 02:00:31 +02001293 updateLastInsetValues();
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001294 mService.makeWindowFreezingScreenIfNeededLocked(this);
1295
1296 // If the orientation is changing, or we're starting or ending a drag resizing action,
1297 // then we need to hold off on unfreezing the display until this window has been
1298 // redrawn; to do that, we need to go through the process of getting informed by the
1299 // application when it has finished drawing.
Robert Carr09286c92018-02-15 13:52:31 -08001300 if (getOrientationChanging() || dragResizingChanged) {
Robert Carre13b58e2017-08-31 14:50:44 -07001301 if (DEBUG_ANIM || DEBUG_ORIENTATION || DEBUG_RESIZE) {
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001302 Slog.v(TAG_WM, "Orientation or resize start waiting for draw"
1303 + ", mDrawState=DRAW_PENDING in " + this
1304 + ", surfaceController " + winAnimator.mSurfaceController);
1305 }
1306 winAnimator.mDrawState = DRAW_PENDING;
1307 if (mAppToken != null) {
1308 mAppToken.clearAllDrawn();
1309 }
1310 }
1311 if (!mService.mResizingWindows.contains(this)) {
1312 if (DEBUG_RESIZE || DEBUG_ORIENTATION) Slog.v(TAG_WM, "Resizing window " + this);
1313 mService.mResizingWindows.add(this);
1314 }
Bryce Lee8c3cf382017-07-06 19:47:10 -07001315 } else if (getOrientationChanging()) {
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001316 if (isDrawnLw()) {
1317 if (DEBUG_ORIENTATION) Slog.v(TAG_WM, "Orientation not waiting for draw in "
1318 + this + ", surfaceController " + winAnimator.mSurfaceController);
Bryce Lee8c3cf382017-07-06 19:47:10 -07001319 setOrientationChanging(false);
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001320 mLastFreezeDuration = (int)(SystemClock.elapsedRealtime()
1321 - mService.mDisplayFreezeTime);
1322 }
1323 }
1324 }
1325
Bryce Lee8c3cf382017-07-06 19:47:10 -07001326 boolean getOrientationChanging() {
1327 // In addition to the local state flag, we must also consider the difference in the last
1328 // reported configuration vs. the current state. If the client code has not been informed of
1329 // the change, logic dependent on having finished processing the orientation, such as
1330 // unfreezing, could be improperly triggered.
1331 // TODO(b/62846907): Checking against {@link mLastReportedConfiguration} could be flaky as
1332 // this is not necessarily what the client has processed yet. Find a
1333 // better indicator consistent with the client.
Robert Carr926643f2017-08-02 12:01:12 -07001334 return (mOrientationChanging || (isVisible()
Bryce Lee2b17afd2017-09-21 10:38:20 -07001335 && getConfiguration().orientation != getLastReportedConfiguration().orientation))
Robert Carr9c1c3a02017-08-08 12:59:01 -07001336 && !mSeamlesslyRotated
1337 && !mOrientationChangeTimedOut;
Bryce Lee8c3cf382017-07-06 19:47:10 -07001338 }
1339
1340 void setOrientationChanging(boolean changing) {
1341 mOrientationChanging = changing;
Robert Carr9c1c3a02017-08-08 12:59:01 -07001342 mOrientationChangeTimedOut = false;
1343 }
1344
1345 void orientationChangeTimedOut() {
1346 mOrientationChangeTimedOut = true;
Bryce Lee8c3cf382017-07-06 19:47:10 -07001347 }
1348
Wale Ogunwale360a8bc2016-10-10 13:25:26 -07001349 DisplayContent getDisplayContent() {
1350 return mToken.getDisplayContent();
Craig Mautnerdf88d732014-01-27 09:21:32 -08001351 }
1352
Wale Ogunwale360a8bc2016-10-10 13:25:26 -07001353 DisplayInfo getDisplayInfo() {
Chong Zhang09b21ef2015-09-14 10:20:21 -07001354 final DisplayContent displayContent = getDisplayContent();
1355 return displayContent != null ? displayContent.getDisplayInfo() : null;
1356 }
1357
Jorim Jaggife762342016-10-13 14:33:27 +02001358 @Override
1359 public int getDisplayId() {
Craig Mautnerdf88d732014-01-27 09:21:32 -08001360 final DisplayContent displayContent = getDisplayContent();
1361 if (displayContent == null) {
1362 return -1;
1363 }
1364 return displayContent.getDisplayId();
Craig Mautner19d59bc2012-09-04 11:15:56 -07001365 }
1366
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07001367 Task getTask() {
Bryce Lee6d410262017-02-28 15:30:17 -08001368 return mAppToken != null ? mAppToken.getTask() : null;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07001369 }
1370
1371 TaskStack getStack() {
1372 Task task = getTask();
1373 if (task != null) {
1374 if (task.mStack != null) {
1375 return task.mStack;
Craig Mautnerf06b8c12013-04-18 14:27:28 -07001376 }
Craig Mautnerd9a22882013-03-16 15:00:36 -07001377 }
Filip Gruszczynski0689ae92015-10-01 12:30:31 -07001378 // Some system windows (e.g. "Power off" dialog) don't have a task, but we would still
1379 // associate them with some stack to enable dimming.
Wale Ogunwale360a8bc2016-10-10 13:25:26 -07001380 final DisplayContent dc = getDisplayContent();
1381 return mAttrs.type >= FIRST_SYSTEM_WINDOW && dc != null ? dc.getHomeStack() : null;
Craig Mautnerd9a22882013-03-16 15:00:36 -07001382 }
1383
Skuhnef932e562015-08-20 12:07:30 -07001384 /**
Wale Ogunwale61b009e2015-09-16 15:43:05 -07001385 * Retrieves the visible bounds of the window.
Skuhnef932e562015-08-20 12:07:30 -07001386 * @param bounds The rect which gets the bounds.
Skuhnef932e562015-08-20 12:07:30 -07001387 */
Chong Zhang4c9ba52a2015-11-10 18:36:33 -08001388 void getVisibleBounds(Rect bounds) {
Wale Ogunwaleb1faf602016-01-27 09:12:31 -08001389 final Task task = getTask();
1390 boolean intersectWithStackBounds = task != null && task.cropWindowsToStackBounds();
Wale Ogunwale61b009e2015-09-16 15:43:05 -07001391 bounds.setEmpty();
Wale Ogunwale2b19b602015-09-18 15:14:59 -07001392 mTmpRect.setEmpty();
1393 if (intersectWithStackBounds) {
Wale Ogunwaleb1faf602016-01-27 09:12:31 -08001394 final TaskStack stack = task.mStack;
Wale Ogunwale61b009e2015-09-16 15:43:05 -07001395 if (stack != null) {
Chong Zhang4c9ba52a2015-11-10 18:36:33 -08001396 stack.getDimBounds(mTmpRect);
Wale Ogunwale2b19b602015-09-18 15:14:59 -07001397 } else {
1398 intersectWithStackBounds = false;
Wale Ogunwale61b009e2015-09-16 15:43:05 -07001399 }
1400 }
Wale Ogunwale2b19b602015-09-18 15:14:59 -07001401
Chong Zhang9184ec62015-09-24 12:32:21 -07001402 bounds.set(mVisibleFrame);
1403 if (intersectWithStackBounds) {
1404 bounds.intersect(mTmpRect);
Wale Ogunwale2b19b602015-09-18 15:14:59 -07001405 }
1406
Wale Ogunwale61b009e2015-09-16 15:43:05 -07001407 if (bounds.isEmpty()) {
1408 bounds.set(mFrame);
Wale Ogunwale2b19b602015-09-18 15:14:59 -07001409 if (intersectWithStackBounds) {
1410 bounds.intersect(mTmpRect);
1411 }
Craig Mautnerbdc748af2013-12-02 14:08:25 -08001412 return;
Craig Mautner4cd0c13f2013-04-16 15:55:52 -07001413 }
Craig Mautner4cd0c13f2013-04-16 15:55:52 -07001414 }
1415
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001416 public long getInputDispatchingTimeoutNanos() {
1417 return mAppToken != null
Wale Ogunwale72919d22016-12-08 18:58:50 -08001418 ? mAppToken.mInputDispatchingTimeoutNanos
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001419 : WindowManagerService.DEFAULT_INPUT_DISPATCHING_TIMEOUT_NANOS;
1420 }
1421
Craig Mautnere8552142012-11-07 13:55:47 -08001422 @Override
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001423 public boolean hasAppShownWindows() {
Craig Mautnerf4120952012-06-21 18:25:39 -07001424 return mAppToken != null && (mAppToken.firstWindowDrawn || mAppToken.startingDisplayed);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001425 }
1426
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001427 boolean isIdentityMatrix(float dsdx, float dtdx, float dsdy, float dtdy) {
1428 if (dsdx < .99999f || dsdx > 1.00001f) return false;
1429 if (dtdy < .99999f || dtdy > 1.00001f) return false;
1430 if (dtdx < -.000001f || dtdx > .000001f) return false;
1431 if (dsdy < -.000001f || dsdy > .000001f) return false;
1432 return true;
1433 }
1434
Dianne Hackborne2515ee2011-04-27 18:52:56 -04001435 void prelayout() {
1436 if (mEnforceSizeCompat) {
Andrii Kulian06d07d62017-03-14 11:11:47 -07001437 mGlobalScale = getDisplayContent().mCompatibleScreenScale;
1438 mInvGlobalScale = 1 / mGlobalScale;
Dianne Hackborne2515ee2011-04-27 18:52:56 -04001439 } else {
Dianne Hackbornffb3d932011-05-17 17:44:51 -07001440 mGlobalScale = mInvGlobalScale = 1;
Dianne Hackborne2515ee2011-04-27 18:52:56 -04001441 }
1442 }
1443
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001444 @Override
Wale Ogunwale44f21802016-09-02 12:49:48 -07001445 boolean hasContentToDisplay() {
Jorim Jaggie7d2b852017-08-28 17:55:15 +02001446 if (!mAppFreezing && isDrawnLw() && (mViewVisibility == View.VISIBLE
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001447 || (mWinAnimator.isAnimationSet() && !mService.mAppTransition.isTransitionSet()))) {
1448 return true;
1449 }
1450
Wale Ogunwale44f21802016-09-02 12:49:48 -07001451 return super.hasContentToDisplay();
1452 }
1453
1454 @Override
1455 boolean isVisible() {
Jorim Jaggic6ae42a2017-05-08 23:42:02 +02001456 return wouldBeVisibleIfPolicyIgnored() && mPolicyVisibility;
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001457 }
1458
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001459 /**
Jorim Jaggic6ae42a2017-05-08 23:42:02 +02001460 * @return True if the window would be visible if we'd ignore policy visibility, false
1461 * otherwise.
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001462 */
Jorim Jaggic6ae42a2017-05-08 23:42:02 +02001463 boolean wouldBeVisibleIfPolicyIgnored() {
Jorim Jaggi43530c92017-05-18 01:53:56 +02001464 return mHasSurface && !isParentWindowHidden()
Wale Ogunwalec48a3542016-02-19 15:18:45 -08001465 && !mAnimatingExit && !mDestroying && (!mIsWallpaper || mWallpaperVisible);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001466 }
1467
Wale Ogunwale329b7e52016-01-15 15:00:57 -08001468 @Override
1469 public boolean isVisibleLw() {
Wale Ogunwale44f21802016-09-02 12:49:48 -07001470 return isVisible();
Wale Ogunwale329b7e52016-01-15 15:00:57 -08001471 }
1472
1473 /**
Wale Ogunwale329b7e52016-01-15 15:00:57 -08001474 * Is this window visible, ignoring its app token? It is not visible if there is no surface,
1475 * or we are in the process of running an exit animation that will remove the surface.
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001476 */
Wale Ogunwale44f21802016-09-02 12:49:48 -07001477 // TODO: Can we consolidate this with #isVisible() or have a more appropriate name for this?
1478 boolean isWinVisibleLw() {
Jorim Jaggif5f9e122017-10-24 18:21:09 +02001479 return (mAppToken == null || !mAppToken.hiddenRequested || mAppToken.isSelfAnimating())
Jorim Jaggic6ae42a2017-05-08 23:42:02 +02001480 && isVisible();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001481 }
1482
1483 /**
Wale Ogunwale329b7e52016-01-15 15:00:57 -08001484 * The same as isVisible(), but follows the current hidden state of the associated app token,
1485 * not the pending requested hidden state.
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001486 */
1487 boolean isVisibleNow() {
Jorim Jaggif5f9e122017-10-24 18:21:09 +02001488 return (!mToken.isHidden() || mAttrs.type == TYPE_APPLICATION_STARTING)
Jorim Jaggic6ae42a2017-05-08 23:42:02 +02001489 && isVisible();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001490 }
1491
1492 /**
1493 * Can this window possibly be a drag/drop target? The test here is
1494 * a combination of the above "visible now" with the check that the
1495 * Input Manager uses when discarding windows from input consideration.
1496 */
1497 boolean isPotentialDragTarget() {
Jeff Browncc4f7db2011-08-30 20:34:48 -07001498 return isVisibleNow() && !mRemoved
1499 && mInputChannel != null && mInputWindowHandle != null;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001500 }
1501
1502 /**
1503 * Same as isVisible(), but we also count it as visible between the
1504 * call to IWindowSession.add() and the first relayout().
1505 */
1506 boolean isVisibleOrAdding() {
1507 final AppWindowToken atoken = mAppToken;
Craig Mautnerbf08af32012-05-16 19:43:42 -07001508 return (mHasSurface || (!mRelayoutCalled && mViewVisibility == View.VISIBLE))
Wale Ogunwale9d147902016-07-16 11:58:55 -07001509 && mPolicyVisibility && !isParentWindowHidden()
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001510 && (atoken == null || !atoken.hiddenRequested)
Wale Ogunwalec48a3542016-02-19 15:18:45 -08001511 && !mAnimatingExit && !mDestroying;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001512 }
1513
1514 /**
1515 * Is this window currently on-screen? It is on-screen either if it
1516 * is visible or it is currently running an animation before no longer
1517 * being visible.
1518 */
1519 boolean isOnScreen() {
Jorim Jaggiaf221d12016-11-15 14:59:57 -08001520 if (!mHasSurface || mDestroying || !mPolicyVisibility) {
Craig Mautnerc8bc97e2012-04-02 12:54:54 -07001521 return false;
1522 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001523 final AppWindowToken atoken = mAppToken;
1524 if (atoken != null) {
Wale Ogunwale9d147902016-07-16 11:58:55 -07001525 return ((!isParentWindowHidden() && !atoken.hiddenRequested)
Jorim Jaggif5f9e122017-10-24 18:21:09 +02001526 || mWinAnimator.isAnimationSet());
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001527 }
Jorim Jaggia5e10572017-11-15 14:36:26 +01001528 return !isParentWindowHidden() || mWinAnimator.isAnimationSet();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001529 }
1530
1531 /**
Chong Zhang8e4bda92016-05-04 15:08:18 -07001532 * Whether this window's drawn state might affect the drawn states of the app token.
1533 *
Chong Zhang8e4bda92016-05-04 15:08:18 -07001534 * @return true if the window should be considered while evaluating allDrawn flags.
1535 */
Jorim Jaggie7d2b852017-08-28 17:55:15 +02001536 boolean mightAffectAllDrawn() {
1537 final boolean isAppType = mWinAnimator.mAttrType == TYPE_BASE_APPLICATION
1538 || mWinAnimator.mAttrType == TYPE_DRAWN_APPLICATION;
1539 return (isOnScreen() || isAppType) && !mAnimatingExit && !mDestroying;
Chong Zhang8e4bda92016-05-04 15:08:18 -07001540 }
1541
1542 /**
1543 * Whether this window is "interesting" when evaluating allDrawn. If it's interesting,
1544 * it must be drawn before allDrawn can become true.
1545 */
1546 boolean isInteresting() {
1547 return mAppToken != null && !mAppDied
Jorim Jaggib0fc8172017-11-23 17:04:08 +00001548 && (!mAppToken.isFreezingScreen() || !mAppFreezing);
Chong Zhang8e4bda92016-05-04 15:08:18 -07001549 }
1550
1551 /**
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001552 * Like isOnScreen(), but we don't return true if the window is part
1553 * of a transition that has not yet been started.
1554 */
1555 boolean isReadyForDisplay() {
Wale Ogunwalea6cc3612016-08-04 07:25:33 -07001556 if (mToken.waitingToShow && mService.mAppTransition.isTransitionSet()) {
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001557 return false;
1558 }
Craig Mautnerc8bc97e2012-04-02 12:54:54 -07001559 return mHasSurface && mPolicyVisibility && !mDestroying
Jorim Jaggif5f9e122017-10-24 18:21:09 +02001560 && ((!isParentWindowHidden() && mViewVisibility == View.VISIBLE && !mToken.isHidden())
1561 || mWinAnimator.isAnimationSet());
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001562 }
1563
Jorim Jaggi23cc9aa2017-05-23 16:05:35 +02001564 // TODO: Another visibility method that was added late in the release to minimize risk.
1565 @Override
1566 public boolean canAffectSystemUiFlags() {
Jorim Jaggi23cc9aa2017-05-23 16:05:35 +02001567 final boolean translucent = mAttrs.alpha == 0.0f;
Jorim Jaggi72207752018-01-08 13:16:59 +01001568 if (translucent) {
1569 return false;
1570 }
Jorim Jaggif5f9e122017-10-24 18:21:09 +02001571 if (mAppToken == null) {
1572 final boolean shown = mWinAnimator.getShown();
1573 final boolean exiting = mAnimatingExit || mDestroying;
Jorim Jaggi72207752018-01-08 13:16:59 +01001574 return shown && !exiting;
Jorim Jaggif5f9e122017-10-24 18:21:09 +02001575 } else {
Jorim Jaggi50bf59c2018-03-09 17:29:48 +01001576 final Task task = getTask();
1577 final boolean canFromTask = task != null && task.canAffectSystemUiFlags();
1578 return canFromTask && !mAppToken.isHidden();
Jorim Jaggif5f9e122017-10-24 18:21:09 +02001579 }
Jorim Jaggi23cc9aa2017-05-23 16:05:35 +02001580 }
1581
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001582 /**
1583 * Like isOnScreen, but returns false if the surface hasn't yet
1584 * been drawn.
1585 */
Craig Mautnere6f7d5052012-10-08 10:34:17 -07001586 @Override
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001587 public boolean isDisplayedLw() {
1588 final AppWindowToken atoken = mAppToken;
Craig Mautnerbf90eaa2012-03-15 11:28:53 -07001589 return isDrawnLw() && mPolicyVisibility
Jorim Jaggif5f9e122017-10-24 18:21:09 +02001590 && ((!isParentWindowHidden() && (atoken == null || !atoken.hiddenRequested))
1591 || mWinAnimator.isAnimationSet());
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001592 }
1593
Dianne Hackborn5c58de32012-04-28 19:52:37 -07001594 /**
Craig Mautnerae446592012-12-06 19:05:05 -08001595 * Return true if this window or its app token is currently animating.
Dianne Hackborn5c58de32012-04-28 19:52:37 -07001596 */
Craig Mautnere6f7d5052012-10-08 10:34:17 -07001597 @Override
Dianne Hackborn5c58de32012-04-28 19:52:37 -07001598 public boolean isAnimatingLw() {
Jorim Jaggif5f9e122017-10-24 18:21:09 +02001599 return isAnimating();
Dianne Hackborn5c58de32012-04-28 19:52:37 -07001600 }
1601
Craig Mautner812d2ca2012-09-27 15:35:34 -07001602 @Override
Dianne Hackborncfbf7de2012-01-12 14:05:03 -08001603 public boolean isGoneForLayoutLw() {
1604 final AppWindowToken atoken = mAppToken;
1605 return mViewVisibility == View.GONE
1606 || !mRelayoutCalled
Jorim Jaggif5f9e122017-10-24 18:21:09 +02001607 || (atoken == null && mToken.isHidden())
Jorim Jaggi8fa45222016-02-19 19:54:39 -08001608 || (atoken != null && atoken.hiddenRequested)
Wale Ogunwale9d147902016-07-16 11:58:55 -07001609 || isParentWindowHidden()
Wale Ogunwalec48a3542016-02-19 15:18:45 -08001610 || (mAnimatingExit && !isAnimatingLw())
Craig Mautner0e415c62013-04-29 16:10:58 -07001611 || mDestroying;
Dianne Hackborncfbf7de2012-01-12 14:05:03 -08001612 }
1613
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001614 /**
1615 * Returns true if the window has a surface that it has drawn a
1616 * complete UI in to.
1617 */
Craig Mautnerccc9e9b2012-12-11 09:40:34 -08001618 public boolean isDrawFinishedLw() {
1619 return mHasSurface && !mDestroying &&
Wale Ogunwale9d147902016-07-16 11:58:55 -07001620 (mWinAnimator.mDrawState == COMMIT_DRAW_PENDING
1621 || mWinAnimator.mDrawState == READY_TO_SHOW
1622 || mWinAnimator.mDrawState == HAS_DRAWN);
Craig Mautnerccc9e9b2012-12-11 09:40:34 -08001623 }
1624
1625 /**
1626 * Returns true if the window has a surface that it has drawn a
1627 * complete UI in to.
1628 */
Adrian Roos76d2fe42015-07-09 14:54:08 -07001629 @Override
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001630 public boolean isDrawnLw() {
Craig Mautnerc8bc97e2012-04-02 12:54:54 -07001631 return mHasSurface && !mDestroying &&
Wale Ogunwale571771c2016-08-26 13:18:50 -07001632 (mWinAnimator.mDrawState == READY_TO_SHOW || mWinAnimator.mDrawState == HAS_DRAWN);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001633 }
1634
1635 /**
1636 * Return true if the window is opaque and fully drawn. This indicates
1637 * it may obscure windows behind it.
1638 */
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001639 private boolean isOpaqueDrawn() {
Chong Zhang66bf071d2016-02-05 14:42:36 -08001640 // When there is keyguard, wallpaper could be placed over the secure app
1641 // window but invisible. We need to check wallpaper visibility explicitly
1642 // to determine if it's occluding apps.
1643 return ((!mIsWallpaper && mAttrs.format == PixelFormat.OPAQUE)
1644 || (mIsWallpaper && mWallpaperVisible))
Jorim Jaggif5f9e122017-10-24 18:21:09 +02001645 && isDrawnLw() && !mWinAnimator.isAnimationSet();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001646 }
1647
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001648 @Override
1649 void onMovedByResize() {
1650 if (DEBUG_RESIZE) Slog.d(TAG, "onMovedByResize: Moving " + this);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001651 mMovedByResize = true;
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001652 super.onMovedByResize();
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001653 }
1654
1655 boolean onAppVisibilityChanged(boolean visible, boolean runningAppAnimation) {
1656 boolean changed = false;
1657
1658 for (int i = mChildren.size() - 1; i >= 0; --i) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07001659 final WindowState c = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001660 changed |= c.onAppVisibilityChanged(visible, runningAppAnimation);
1661 }
1662
1663 if (mAttrs.type == TYPE_APPLICATION_STARTING) {
1664 // Starting window that's exiting will be removed when the animation finishes.
1665 // Mark all relevant flags for that onExitAnimationDone will proceed all the way
1666 // to actually remove it.
Jorim Jaggif5f9e122017-10-24 18:21:09 +02001667 if (!visible && isVisibleNow() && mAppToken.isSelfAnimating()) {
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001668 mAnimatingExit = true;
1669 mRemoveOnExit = true;
1670 mWindowRemovalAllowed = true;
1671 }
1672 return changed;
1673 }
1674
Robert Carrd5c7dd62017-03-08 10:39:30 -08001675 // Next up we will notify the client that it's visibility has changed.
1676 // We need to prevent it from destroying child surfaces until
1677 // the animation has finished.
1678 if (!visible && isVisibleNow()) {
1679 mWinAnimator.detachChildren();
1680 }
1681
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001682 if (visible != isVisibleNow()) {
1683 if (!runningAppAnimation) {
1684 final AccessibilityController accessibilityController =
1685 mService.mAccessibilityController;
1686 final int winTransit = visible ? TRANSIT_ENTER : TRANSIT_EXIT;
1687 mWinAnimator.applyAnimationLocked(winTransit, visible);
1688 //TODO (multidisplay): Magnification is supported only for the default
1689 if (accessibilityController != null && getDisplayId() == DEFAULT_DISPLAY) {
1690 accessibilityController.onWindowTransitionLocked(this, winTransit);
1691 }
1692 }
1693 changed = true;
1694 setDisplayLayoutNeeded();
1695 }
1696
1697 return changed;
1698 }
1699
1700 boolean onSetAppExiting() {
1701 final DisplayContent displayContent = getDisplayContent();
1702 boolean changed = false;
1703
1704 if (isVisibleNow()) {
1705 mWinAnimator.applyAnimationLocked(TRANSIT_EXIT, false);
1706 //TODO (multidisplay): Magnification is supported only for the default
1707 if (mService.mAccessibilityController != null && isDefaultDisplay()) {
1708 mService.mAccessibilityController.onWindowTransitionLocked(this, TRANSIT_EXIT);
1709 }
1710 changed = true;
1711 if (displayContent != null) {
Wale Ogunwale2b06bfc2016-09-28 14:17:05 -07001712 displayContent.setLayoutNeeded();
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001713 }
1714 }
1715
1716 for (int i = mChildren.size() - 1; i >= 0; --i) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07001717 final WindowState c = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001718 changed |= c.onSetAppExiting();
1719 }
1720
1721 return changed;
1722 }
1723
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001724 @Override
1725 void onResize() {
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001726 final ArrayList<WindowState> resizingWindows = mService.mResizingWindows;
1727 if (mHasSurface && !resizingWindows.contains(this)) {
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001728 if (DEBUG_RESIZE) Slog.d(TAG, "onResize: Resizing " + this);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001729 resizingWindows.add(this);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001730 }
1731 if (isGoneForLayoutLw()) {
1732 mResizedWhileGone = true;
1733 }
1734
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001735 super.onResize();
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001736 }
1737
1738 void onUnfreezeBounds() {
1739 for (int i = mChildren.size() - 1; i >= 0; --i) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07001740 final WindowState c = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001741 c.onUnfreezeBounds();
1742 }
1743
1744 if (!mHasSurface) {
1745 return;
1746 }
1747
1748 mLayoutNeeded = true;
1749 setDisplayLayoutNeeded();
1750 if (!mService.mResizingWindows.contains(this)) {
1751 mService.mResizingWindows.add(this);
1752 }
1753 }
1754
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001755 /**
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001756 * If the window has moved due to its containing content frame changing, then notify the
1757 * listeners and optionally animate it. Simply checking a change of position is not enough,
1758 * because being move due to dock divider is not a trigger for animation.
1759 */
chaviw161ea3e2018-01-31 12:01:12 -08001760 void handleWindowMovedIfNeeded() {
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001761 if (!hasMoved()) {
1762 return;
1763 }
1764
1765 // Frame has moved, containing content frame has also moved, and we're not currently
1766 // animating... let's do something.
1767 final int left = mFrame.left;
1768 final int top = mFrame.top;
1769 final Task task = getTask();
1770 final boolean adjustedForMinimizedDockOrIme = task != null
1771 && (task.mStack.isAdjustedForMinimizedDockedStack()
1772 || task.mStack.isAdjustedForIme());
David Stevens9440dc82017-03-16 19:00:20 -07001773 if (mToken.okToAnimate()
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001774 && (mAttrs.privateFlags & PRIVATE_FLAG_NO_MOVE_ANIMATION) == 0
1775 && !isDragResizing() && !adjustedForMinimizedDockOrIme
Wale Ogunwale3382ab12017-07-27 08:55:03 -07001776 && getWindowConfiguration().hasMovementAnimations()
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001777 && !mWinAnimator.mLastHidden) {
chaviw161ea3e2018-01-31 12:01:12 -08001778 startMoveAnimation(left, top);
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001779 }
1780
1781 //TODO (multidisplay): Accessibility supported only for the default display.
1782 if (mService.mAccessibilityController != null
Andrii Kulian5406e7a2016-10-21 11:55:23 -07001783 && getDisplayContent().getDisplayId() == DEFAULT_DISPLAY) {
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001784 mService.mAccessibilityController.onSomeWindowResizedOrMovedLocked();
1785 }
1786
1787 try {
1788 mClient.moved(left, top);
1789 } catch (RemoteException e) {
1790 }
1791 mMovedByResize = false;
1792 }
1793
1794 /**
Craig Mautner4557c082015-04-27 13:07:40 -07001795 * Return whether this window has moved. (Only makes
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001796 * sense to call from performLayoutAndPlaceSurfacesLockedInner().)
1797 */
Wale Ogunwale9d9d8f12016-09-28 15:29:59 -07001798 private boolean hasMoved() {
Chong Zhangbd0d9372015-12-28 15:18:29 -08001799 return mHasSurface && (mContentChanged || mMovedByResize)
Robert Carrc67c2a92016-09-22 13:25:45 -07001800 && !mAnimatingExit
Chong Zhangbd0d9372015-12-28 15:18:29 -08001801 && (mFrame.top != mLastFrame.top || mFrame.left != mLastFrame.left)
Wale Ogunwalee4343ef2016-07-19 08:00:46 -07001802 && (!mIsChildWindow || !getParentWindow().hasMoved());
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001803 }
1804
Wale Ogunwaleca9e0612016-12-02 07:45:59 -08001805 boolean isObscuringDisplay() {
Chong Zhang0abb20f2015-11-19 14:17:31 -08001806 Task task = getTask();
Wale Ogunwale14a3fb92016-09-11 15:19:05 -07001807 if (task != null && task.mStack != null && !task.mStack.fillsParent()) {
Chong Zhang0abb20f2015-11-19 14:17:31 -08001808 return false;
1809 }
Wale Ogunwaleca9e0612016-12-02 07:45:59 -08001810 return isOpaqueDrawn() && fillsDisplay();
Chong Zhang0abb20f2015-11-19 14:17:31 -08001811 }
1812
Wale Ogunwaleca9e0612016-12-02 07:45:59 -08001813 boolean fillsDisplay() {
1814 final DisplayInfo displayInfo = getDisplayInfo();
Chong Zhang0abb20f2015-11-19 14:17:31 -08001815 return mFrame.left <= 0 && mFrame.top <= 0
1816 && mFrame.right >= displayInfo.appWidth && mFrame.bottom >= displayInfo.appHeight;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001817 }
1818
Andrii Kulian9d91ca62016-09-29 22:28:09 -07001819 /** Returns true if last applied config was not yet requested by client. */
Craig Mautner812d2ca2012-09-27 15:35:34 -07001820 boolean isConfigChanged() {
Bryce Lee2b17afd2017-09-21 10:38:20 -07001821 return !getLastReportedConfiguration().equals(getConfiguration());
Craig Mautner812d2ca2012-09-27 15:35:34 -07001822 }
1823
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001824 void onWindowReplacementTimeout() {
1825 if (mWillReplaceWindow) {
1826 // Since the window already timed out, remove it immediately now.
Wale Ogunwale571771c2016-08-26 13:18:50 -07001827 // Use WindowState#removeImmediately() instead of WindowState#removeIfPossible(), as the latter
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001828 // delays removal on certain conditions, which will leave the stale window in the
1829 // stack and marked mWillReplaceWindow=false, so the window will never be removed.
1830 //
1831 // Also removes child windows.
Wale Ogunwale571771c2016-08-26 13:18:50 -07001832 removeImmediately();
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001833 } else {
1834 for (int i = mChildren.size() - 1; i >= 0; --i) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07001835 final WindowState c = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001836 c.onWindowReplacementTimeout();
1837 }
1838 }
1839 }
1840
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001841 @Override
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001842 void forceWindowsScaleableInTransaction(boolean force) {
1843 if (mWinAnimator != null && mWinAnimator.hasSurface()) {
1844 mWinAnimator.mSurfaceController.forceScaleableInTransaction(force);
1845 }
1846
Wale Ogunwaled1c37912016-08-16 03:19:39 -07001847 super.forceWindowsScaleableInTransaction(force);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001848 }
1849
Wale Ogunwalee4343ef2016-07-19 08:00:46 -07001850 @Override
Wale Ogunwale571771c2016-08-26 13:18:50 -07001851 void removeImmediately() {
1852 super.removeImmediately();
Wale Ogunwalee4343ef2016-07-19 08:00:46 -07001853
Wale Ogunwaleadde52e2016-07-16 13:11:55 -07001854 if (mRemoved) {
1855 // Nothing to do.
Wale Ogunwale571771c2016-08-26 13:18:50 -07001856 if (DEBUG_ADD_REMOVE) Slog.v(TAG_WM,
1857 "WS.removeImmediately: " + this + " Already removed...");
Wale Ogunwaleadde52e2016-07-16 13:11:55 -07001858 return;
1859 }
1860
Wale Ogunwaleadde52e2016-07-16 13:11:55 -07001861 mRemoved = true;
1862
Wale Ogunwale9bc47732016-08-10 14:44:22 -07001863 mWillReplaceWindow = false;
1864 if (mReplacementWindow != null) {
1865 mReplacementWindow.mSkipEnterAnimationForSeamlessReplacement = false;
1866 }
1867
Wale Ogunwaleae9adbf2016-10-18 15:17:06 -07001868 final DisplayContent dc = getDisplayContent();
Wale Ogunwaleadde52e2016-07-16 13:11:55 -07001869 if (mService.mInputMethodTarget == this) {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00001870 dc.computeImeTarget(true /* updateImeTarget */);
Wale Ogunwaleadde52e2016-07-16 13:11:55 -07001871 }
1872
1873 final int type = mAttrs.type;
1874 if (WindowManagerService.excludeWindowTypeFromTapOutTask(type)) {
Wale Ogunwaleae9adbf2016-10-18 15:17:06 -07001875 dc.mTapExcludedWindows.remove(this);
Wale Ogunwaleadde52e2016-07-16 13:11:55 -07001876 }
Andrii Kulian4b6599e2018-01-15 17:24:08 -08001877 if (mTapExcludeRegionHolder != null) {
1878 // If a tap exclude region container was initialized for this window, then it should've
1879 // also been registered in display.
1880 dc.mTapExcludeProvidingWindows.remove(this);
1881 }
Wale Ogunwaleadde52e2016-07-16 13:11:55 -07001882 mPolicy.removeWindowLw(this);
1883
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001884 disposeInputChannel();
Craig Mautner164d4bb2012-11-26 13:51:23 -08001885
Craig Mautner96868332012-12-04 14:29:11 -08001886 mWinAnimator.destroyDeferredSurfaceLocked();
1887 mWinAnimator.destroySurfaceLocked();
Wale Ogunwale943002b2017-02-15 19:34:01 -08001888 mSession.windowRemovedLocked();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001889 try {
1890 mClient.asBinder().unlinkToDeath(mDeathRecipient, 0);
1891 } catch (RuntimeException e) {
1892 // Ignore if it has already been removed (usually because
1893 // we are doing this as part of processing a death note.)
1894 }
Wale Ogunwaleadde52e2016-07-16 13:11:55 -07001895
1896 mService.postWindowRemoveCleanupLocked(this);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001897 }
Jeff Browncc4f7db2011-08-30 20:34:48 -07001898
Wale Ogunwale571771c2016-08-26 13:18:50 -07001899 @Override
Wale Ogunwale92fc3722016-08-05 12:19:08 -07001900 void removeIfPossible() {
Wale Ogunwale571771c2016-08-26 13:18:50 -07001901 super.removeIfPossible();
Wale Ogunwale92fc3722016-08-05 12:19:08 -07001902 removeIfPossible(false /*keepVisibleDeadWindow*/);
1903 }
1904
Wale Ogunwale571771c2016-08-26 13:18:50 -07001905 private void removeIfPossible(boolean keepVisibleDeadWindow) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001906 mWindowRemovalAllowed = true;
1907 if (DEBUG_ADD_REMOVE) Slog.v(TAG,
1908 "removeIfPossible: " + this + " callers=" + Debug.getCallers(5));
1909
1910 final boolean startingWindow = mAttrs.type == TYPE_APPLICATION_STARTING;
1911 if (startingWindow && DEBUG_STARTING_WINDOW) Slog.d(TAG_WM,
1912 "Starting window removed " + this);
1913
1914 if (localLOGV || DEBUG_FOCUS || DEBUG_FOCUS_LIGHT && this == mService.mCurrentFocus)
1915 Slog.v(TAG_WM, "Remove " + this + " client="
1916 + Integer.toHexString(System.identityHashCode(mClient.asBinder()))
1917 + ", surfaceController=" + mWinAnimator.mSurfaceController + " Callers="
1918 + Debug.getCallers(5));
1919
1920 final long origId = Binder.clearCallingIdentity();
1921
Peter Visontay3556a3b2017-11-01 17:23:17 +00001922 try {
1923 disposeInputChannel();
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001924
Peter Visontay3556a3b2017-11-01 17:23:17 +00001925 if (DEBUG_APP_TRANSITIONS) Slog.v(TAG_WM, "Remove " + this
1926 + ": mSurfaceController=" + mWinAnimator.mSurfaceController
1927 + " mAnimatingExit=" + mAnimatingExit
1928 + " mRemoveOnExit=" + mRemoveOnExit
1929 + " mHasSurface=" + mHasSurface
1930 + " surfaceShowing=" + mWinAnimator.getShown()
1931 + " isAnimationSet=" + mWinAnimator.isAnimationSet()
1932 + " app-animation="
Jorim Jaggif5f9e122017-10-24 18:21:09 +02001933 + (mAppToken != null ? mAppToken.isSelfAnimating() : "false")
Peter Visontay3556a3b2017-11-01 17:23:17 +00001934 + " mWillReplaceWindow=" + mWillReplaceWindow
1935 + " inPendingTransaction="
1936 + (mAppToken != null ? mAppToken.inPendingTransaction : false)
1937 + " mDisplayFrozen=" + mService.mDisplayFrozen
1938 + " callers=" + Debug.getCallers(6));
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001939
Peter Visontay3556a3b2017-11-01 17:23:17 +00001940 // Visibility of the removed window. Will be used later to update orientation later on.
1941 boolean wasVisible = false;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001942
Peter Visontay3556a3b2017-11-01 17:23:17 +00001943 final int displayId = getDisplayId();
Andrii Kulian5406e7a2016-10-21 11:55:23 -07001944
Peter Visontay3556a3b2017-11-01 17:23:17 +00001945 // First, see if we need to run an animation. If we do, we have to hold off on removing the
1946 // window until the animation is done. If the display is frozen, just remove immediately,
1947 // since the animation wouldn't be seen.
1948 if (mHasSurface && mToken.okToAnimate()) {
1949 if (mWillReplaceWindow) {
1950 // This window is going to be replaced. We need to keep it around until the new one
1951 // gets added, then we will get rid of this one.
1952 if (DEBUG_ADD_REMOVE) Slog.v(TAG_WM,
1953 "Preserving " + this + " until the new one is " + "added");
1954 // TODO: We are overloading mAnimatingExit flag to prevent the window state from
1955 // been removed. We probably need another flag to indicate that window removal
1956 // should be deffered vs. overloading the flag that says we are playing an exit
1957 // animation.
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001958 mAnimatingExit = true;
Peter Visontay3556a3b2017-11-01 17:23:17 +00001959 mReplacingRemoveRequested = true;
1960 return;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001961 }
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07001962
Peter Visontay3556a3b2017-11-01 17:23:17 +00001963 // If we are not currently running the exit animation, we need to see about starting one
1964 wasVisible = isWinVisibleLw();
1965
1966 if (keepVisibleDeadWindow) {
1967 if (DEBUG_ADD_REMOVE) Slog.v(TAG_WM,
1968 "Not removing " + this + " because app died while it's visible");
1969
1970 mAppDied = true;
1971 setDisplayLayoutNeeded();
1972 mService.mWindowPlacerLocked.performSurfacePlacement();
1973
1974 // Set up a replacement input channel since the app is now dead.
1975 // We need to catch tapping on the dead window to restart the app.
1976 openInputChannel(null);
1977 mService.mInputMonitor.updateInputWindowsLw(true /*force*/);
1978 return;
1979 }
1980
1981 if (wasVisible) {
1982 final int transit = (!startingWindow) ? TRANSIT_EXIT : TRANSIT_PREVIEW_DONE;
1983
1984 // Try starting an animation.
1985 if (mWinAnimator.applyAnimationLocked(transit, false)) {
1986 mAnimatingExit = true;
1987 }
1988 //TODO (multidisplay): Magnification is supported only for the default display.
1989 if (mService.mAccessibilityController != null && displayId == DEFAULT_DISPLAY) {
1990 mService.mAccessibilityController.onWindowTransitionLocked(this, transit);
1991 }
1992 }
Jorim Jaggif5f9e122017-10-24 18:21:09 +02001993 final boolean isAnimating = mWinAnimator.isAnimationSet()
1994 && (mAppToken == null || !mAppToken.isWaitingForTransitionStart());
Peter Visontay3556a3b2017-11-01 17:23:17 +00001995 final boolean lastWindowIsStartingWindow = startingWindow && mAppToken != null
1996 && mAppToken.isLastWindow(this);
1997 // We delay the removal of a window if it has a showing surface that can be used to run
1998 // exit animation and it is marked as exiting.
1999 // Also, If isn't the an animating starting window that is the last window in the app.
2000 // We allow the removal of the non-animating starting window now as there is no
2001 // additional window or animation that will trigger its removal.
2002 if (mWinAnimator.getShown() && mAnimatingExit
2003 && (!lastWindowIsStartingWindow || isAnimating)) {
2004 // The exit animation is running or should run... wait for it!
2005 if (DEBUG_ADD_REMOVE) Slog.v(TAG_WM,
2006 "Not removing " + this + " due to exit animation ");
2007 setupWindowForRemoveOnExit();
2008 if (mAppToken != null) {
2009 mAppToken.updateReportedVisibilityLocked();
2010 }
2011 return;
2012 }
2013 }
2014
2015 removeImmediately();
2016 // Removing a visible window will effect the computed orientation
2017 // So just update orientation if needed.
Robert Carrae606b42018-02-15 15:36:23 -08002018 if (wasVisible && mService.updateOrientationFromAppTokensLocked(displayId)) {
Peter Visontay3556a3b2017-11-01 17:23:17 +00002019 mService.mH.obtainMessage(SEND_NEW_CONFIGURATION, displayId).sendToTarget();
2020 }
2021 mService.updateFocusedWindowLocked(UPDATE_FOCUS_NORMAL, true /*updateInputWindows*/);
2022 } finally {
2023 Binder.restoreCallingIdentity(origId);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07002024 }
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07002025 }
2026
2027 private void setupWindowForRemoveOnExit() {
2028 mRemoveOnExit = true;
2029 setDisplayLayoutNeeded();
2030 // Request a focus update as this window's input channel is already gone. Otherwise
2031 // we could have no focused window in input manager.
2032 final boolean focusChanged = mService.updateFocusedWindowLocked(
2033 UPDATE_FOCUS_WILL_PLACE_SURFACES, false /*updateInputWindows*/);
2034 mService.mWindowPlacerLocked.performSurfacePlacement();
2035 if (focusChanged) {
2036 mService.mInputMonitor.updateInputWindowsLw(false /*force*/);
2037 }
2038 }
2039
Filip Gruszczynski10a80e02015-11-06 09:21:17 -08002040 void setHasSurface(boolean hasSurface) {
2041 mHasSurface = hasSurface;
2042 }
2043
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002044 boolean canBeImeTarget() {
Wale Ogunwale805d9ec2016-12-07 12:22:08 -08002045 if (mIsImWindow) {
2046 // IME windows can't be IME targets. IME targets are required to be below the IME
2047 // windows and that wouldn't be possible if the IME window is its own target...silly.
2048 return false;
2049 }
2050
Winson Chung3d0a74a2017-07-12 12:37:19 -07002051 final boolean windowsAreFocusable = mAppToken == null || mAppToken.windowsAreFocusable();
Winson Chungb1549342017-07-11 09:59:56 -07002052 if (!windowsAreFocusable) {
2053 // This window can't be an IME target if the app's windows should not be focusable.
2054 return false;
2055 }
2056
Wale Ogunwale805d9ec2016-12-07 12:22:08 -08002057 final int fl = mAttrs.flags & (FLAG_NOT_FOCUSABLE | FLAG_ALT_FOCUSABLE_IM);
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002058 final int type = mAttrs.type;
2059
Wale Ogunwale805d9ec2016-12-07 12:22:08 -08002060 // Can only be an IME target if both FLAG_NOT_FOCUSABLE and FLAG_ALT_FOCUSABLE_IM are set or
2061 // both are cleared...and not a starting window.
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002062 if (fl != 0 && fl != (FLAG_NOT_FOCUSABLE | FLAG_ALT_FOCUSABLE_IM)
2063 && type != TYPE_APPLICATION_STARTING) {
2064 return false;
2065 }
2066
2067 if (DEBUG_INPUT_METHOD) {
2068 Slog.i(TAG_WM, "isVisibleOrAdding " + this + ": " + isVisibleOrAdding());
2069 if (!isVisibleOrAdding()) {
2070 Slog.i(TAG_WM, " mSurfaceController=" + mWinAnimator.mSurfaceController
2071 + " relayoutCalled=" + mRelayoutCalled
2072 + " viewVis=" + mViewVisibility
2073 + " policyVis=" + mPolicyVisibility
2074 + " policyVisAfterAnim=" + mPolicyVisibilityAfterAnim
2075 + " parentHidden=" + isParentWindowHidden()
2076 + " exiting=" + mAnimatingExit + " destroying=" + mDestroying);
2077 if (mAppToken != null) {
2078 Slog.i(TAG_WM, " mAppToken.hiddenRequested=" + mAppToken.hiddenRequested);
2079 }
2080 }
2081 }
2082 return isVisibleOrAdding();
2083 }
2084
Chong Zhangacf11402015-11-04 16:23:10 -08002085 private final class DeadWindowEventReceiver extends InputEventReceiver {
2086 DeadWindowEventReceiver(InputChannel inputChannel) {
2087 super(inputChannel, mService.mH.getLooper());
2088 }
2089 @Override
Tarandeep Singhe1cfcf42017-07-10 18:50:00 -07002090 public void onInputEvent(InputEvent event, int displayId) {
Chong Zhangacf11402015-11-04 16:23:10 -08002091 finishInputEvent(event, true);
2092 }
2093 }
2094 /**
2095 * Dummy event receiver for windows that died visible.
2096 */
2097 private DeadWindowEventReceiver mDeadWindowEventReceiver;
2098
Chong Zhang112eb8c2015-11-02 11:17:00 -08002099 void openInputChannel(InputChannel outInputChannel) {
Jeff Browncc4f7db2011-08-30 20:34:48 -07002100 if (mInputChannel != null) {
2101 throw new IllegalStateException("Window already has an input channel.");
2102 }
Wale Ogunwale9adfe572016-09-08 20:43:58 -07002103 String name = getName();
Chong Zhang112eb8c2015-11-02 11:17:00 -08002104 InputChannel[] inputChannels = InputChannel.openInputChannelPair(name);
2105 mInputChannel = inputChannels[0];
2106 mClientChannel = inputChannels[1];
2107 mInputWindowHandle.inputChannel = inputChannels[0];
2108 if (outInputChannel != null) {
2109 mClientChannel.transferTo(outInputChannel);
2110 mClientChannel.dispose();
2111 mClientChannel = null;
Chong Zhangacf11402015-11-04 16:23:10 -08002112 } else {
2113 // If the window died visible, we setup a dummy input channel, so that taps
2114 // can still detected by input monitor channel, and we can relaunch the app.
2115 // Create dummy event receiver that simply reports all events as handled.
2116 mDeadWindowEventReceiver = new DeadWindowEventReceiver(mClientChannel);
Chong Zhang112eb8c2015-11-02 11:17:00 -08002117 }
2118 mService.mInputManager.registerInputChannel(mInputChannel, mInputWindowHandle);
Jeff Browncc4f7db2011-08-30 20:34:48 -07002119 }
2120
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002121 void disposeInputChannel() {
Chong Zhangacf11402015-11-04 16:23:10 -08002122 if (mDeadWindowEventReceiver != null) {
2123 mDeadWindowEventReceiver.dispose();
2124 mDeadWindowEventReceiver = null;
2125 }
2126
2127 // unregister server channel first otherwise it complains about broken channel
2128 if (mInputChannel != null) {
2129 mService.mInputManager.unregisterInputChannel(mInputChannel);
2130 mInputChannel.dispose();
2131 mInputChannel = null;
2132 }
Chong Zhang112eb8c2015-11-02 11:17:00 -08002133 if (mClientChannel != null) {
2134 mClientChannel.dispose();
2135 mClientChannel = null;
2136 }
Jeff Browncc4f7db2011-08-30 20:34:48 -07002137 mInputWindowHandle.inputChannel = null;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002138 }
2139
Wale Ogunwale9bc47732016-08-10 14:44:22 -07002140 /** Returns true if the replacement window was removed. */
2141 boolean removeReplacedWindowIfNeeded(WindowState replacement) {
2142 if (mWillReplaceWindow && mReplacementWindow == replacement && replacement.hasDrawnLw()) {
2143 replacement.mSkipEnterAnimationForSeamlessReplacement = false;
2144 removeReplacedWindow();
2145 return true;
2146 }
2147
2148 for (int i = mChildren.size() - 1; i >= 0; --i) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07002149 final WindowState c = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07002150 if (c.removeReplacedWindowIfNeeded(replacement)) {
2151 return true;
2152 }
2153 }
2154 return false;
2155 }
2156
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002157 private void removeReplacedWindow() {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07002158 if (DEBUG_ADD_REMOVE) Slog.d(TAG, "Removing replaced window: " + this);
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07002159 mWillReplaceWindow = false;
2160 mAnimateReplacingWindow = false;
2161 mReplacingRemoveRequested = false;
Wale Ogunwale9bc47732016-08-10 14:44:22 -07002162 mReplacementWindow = null;
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07002163 if (mAnimatingExit || !mAnimateReplacingWindow) {
Wale Ogunwale571771c2016-08-26 13:18:50 -07002164 removeImmediately();
Filip Gruszczynski76cc44f2015-09-03 16:03:10 -07002165 }
2166 }
2167
Wale Ogunwale9bc47732016-08-10 14:44:22 -07002168 boolean setReplacementWindowIfNeeded(WindowState replacementCandidate) {
2169 boolean replacementSet = false;
2170
2171 if (mWillReplaceWindow && mReplacementWindow == null
2172 && getWindowTag().toString().equals(replacementCandidate.getWindowTag().toString())) {
2173
2174 mReplacementWindow = replacementCandidate;
2175 replacementCandidate.mSkipEnterAnimationForSeamlessReplacement = !mAnimateReplacingWindow;
2176 replacementSet = true;
2177 }
2178
2179 for (int i = mChildren.size() - 1; i >= 0; --i) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07002180 final WindowState c = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07002181 replacementSet |= c.setReplacementWindowIfNeeded(replacementCandidate);
2182 }
2183
2184 return replacementSet;
2185 }
2186
Filip Gruszczynskie92179d2015-09-26 16:12:30 -07002187 void setDisplayLayoutNeeded() {
Wale Ogunwale360a8bc2016-10-10 13:25:26 -07002188 final DisplayContent dc = getDisplayContent();
2189 if (dc != null) {
2190 dc.setLayoutNeeded();
Filip Gruszczynskie92179d2015-09-26 16:12:30 -07002191 }
2192 }
2193
Chong Zhang5117e272016-05-03 12:47:34 -07002194 void applyAdjustForImeIfNeeded() {
2195 final Task task = getTask();
2196 if (task != null && task.mStack != null && task.mStack.isAdjustedForIme()) {
2197 task.mStack.applyAdjustForImeIfNeeded(task);
2198 }
2199 }
2200
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002201 @Override
2202 void switchUser() {
2203 super.switchUser();
2204 if (isHiddenFromUserLocked()) {
2205 if (DEBUG_VISIBILITY) Slog.w(TAG_WM, "user changing, hiding " + this
2206 + ", attrs=" + mAttrs.type + ", belonging to " + mOwnerUid);
2207 hideLw(false);
2208 }
2209 }
2210
Wale Ogunwale053c8e42015-11-16 14:27:21 -08002211 int getTouchableRegion(Region region, int flags) {
2212 final boolean modal = (flags & (FLAG_NOT_TOUCH_MODAL | FLAG_NOT_FOCUSABLE)) == 0;
Filip Gruszczynski9cac3b42015-10-30 14:20:37 -07002213 if (modal && mAppToken != null) {
2214 // Limit the outer touch to the activity stack region.
Wale Ogunwale053c8e42015-11-16 14:27:21 -08002215 flags |= FLAG_NOT_TOUCH_MODAL;
Chong Zhang4c9ba52a2015-11-10 18:36:33 -08002216 // If this is a modal window we need to dismiss it if it's not full screen and the
2217 // touch happens outside of the frame that displays the content. This means we
2218 // need to intercept touches outside of that window. The dim layer user
2219 // associated with the window (task or stack) will give us the good bounds, as
2220 // they would be used to display the dim layer.
Robert Carrf59b8dd2017-10-02 18:58:36 -07002221 final Task task = getTask();
2222 if (task != null) {
2223 task.getDimBounds(mTmpRect);
Filip Gruszczynski9cac3b42015-10-30 14:20:37 -07002224 } else {
Robert Carrf59b8dd2017-10-02 18:58:36 -07002225 getStack().getDimBounds(mTmpRect);
Chong Zhang4c9ba52a2015-11-10 18:36:33 -08002226 }
Wale Ogunwale44f036f2017-09-29 05:09:09 -07002227 if (inFreeformWindowingMode()) {
Filip Gruszczynski9cac3b42015-10-30 14:20:37 -07002228 // For freeform windows we the touch region to include the whole surface for the
2229 // shadows.
Chong Zhang4c9ba52a2015-11-10 18:36:33 -08002230 final DisplayMetrics displayMetrics = getDisplayContent().getDisplayMetrics();
2231 final int delta = WindowManagerService.dipToPixel(
2232 RESIZE_HANDLE_WIDTH_IN_DP, displayMetrics);
2233 mTmpRect.inset(-delta, -delta);
Filip Gruszczynski9cac3b42015-10-30 14:20:37 -07002234 }
2235 region.set(mTmpRect);
Wale Ogunwale053c8e42015-11-16 14:27:21 -08002236 cropRegionToStackBoundsIfNeeded(region);
Filip Gruszczynski9cac3b42015-10-30 14:20:37 -07002237 } else {
2238 // Not modal or full screen modal
2239 getTouchableRegion(region);
2240 }
2241 return flags;
2242 }
2243
Filip Gruszczynski14b4e572015-11-03 15:53:55 -08002244 void checkPolicyVisibilityChange() {
2245 if (mPolicyVisibility != mPolicyVisibilityAfterAnim) {
2246 if (DEBUG_VISIBILITY) {
2247 Slog.v(TAG, "Policy visibility changing after anim in " +
2248 mWinAnimator + ": " + mPolicyVisibilityAfterAnim);
2249 }
2250 mPolicyVisibility = mPolicyVisibilityAfterAnim;
Filip Gruszczynski14b4e572015-11-03 15:53:55 -08002251 if (!mPolicyVisibility) {
Jorim Jaggi2e05af22017-12-28 15:15:11 +01002252 mWinAnimator.hide("checkPolicyVisibilityChange");
Filip Gruszczynski14b4e572015-11-03 15:53:55 -08002253 if (mService.mCurrentFocus == this) {
2254 if (DEBUG_FOCUS_LIGHT) Slog.i(TAG,
2255 "setAnimationLocked: setting mFocusMayChange true");
2256 mService.mFocusMayChange = true;
Jorim Jaggi2e05af22017-12-28 15:15:11 +01002257 setDisplayLayoutNeeded();
Filip Gruszczynski14b4e572015-11-03 15:53:55 -08002258 }
2259 // Window is no longer visible -- make sure if we were waiting
2260 // for it to be displayed before enabling the display, that
2261 // we allow the display to be enabled now.
2262 mService.enableScreenIfNeededLocked();
2263 }
2264 }
2265 }
2266
2267 void setRequestedSize(int requestedWidth, int requestedHeight) {
2268 if ((mRequestedWidth != requestedWidth || mRequestedHeight != requestedHeight)) {
2269 mLayoutNeeded = true;
2270 mRequestedWidth = requestedWidth;
2271 mRequestedHeight = requestedHeight;
2272 }
2273 }
2274
Bryce Leef858b572017-06-29 14:03:33 -07002275 void prepareWindowToDisplayDuringRelayout(boolean wasVisible) {
Bryce Leeae73ba42017-05-05 09:58:25 -07002276 // We need to turn on screen regardless of visibility.
chaviw40234662018-02-07 09:37:16 -08002277 boolean hasTurnScreenOnFlag = (mAttrs.flags & FLAG_TURN_SCREEN_ON) != 0;
2278 boolean allowTheaterMode =
2279 mService.mAllowTheaterModeWakeFromLayout || Settings.Global.getInt(
2280 mService.mContext.getContentResolver(), Settings.Global.THEATER_MODE_ON, 0)
2281 == 0;
2282 boolean canTurnScreenOn = mAppToken == null || mAppToken.canTurnScreenOn();
2283
2284 // The screen will turn on if the following conditions are met
2285 // 1. The window has the flag FLAG_TURN_SCREEN_ON
2286 // 2. The WMS allows theater mode.
2287 // 3. No AWT or the AWT allows the screen to be turned on. This should only be true once
2288 // per resume to prevent the screen getting getting turned on for each relayout. Set
2289 // canTurnScreenOn will be set to false so the window doesn't turn the screen on again
2290 // during this resume.
2291 // 4. When the screen is not interactive. This is because when the screen is already
2292 // interactive, the value may persist until the next animation, which could potentially
2293 // be occurring while turning off the screen. This would lead to the screen incorrectly
2294 // turning back on.
chaviw474093d2018-03-07 15:03:38 -08002295 if (hasTurnScreenOnFlag) {
2296 if (allowTheaterMode && canTurnScreenOn && !mPowerManagerWrapper.isInteractive()) {
2297 if (DEBUG_VISIBILITY || DEBUG_POWER) {
2298 Slog.v(TAG, "Relayout window turning screen on: " + this);
2299 }
2300 mPowerManagerWrapper.wakeUp(SystemClock.uptimeMillis(),
2301 "android.server.wm:TURN_ON");
chaviw40234662018-02-07 09:37:16 -08002302 }
chaviwb28de1f2018-03-02 10:42:36 -08002303
2304 if (mAppToken != null) {
2305 mAppToken.setCanTurnScreenOn(false);
2306 }
Filip Gruszczynski84cc5e32015-11-03 18:05:47 -08002307 }
Bryce Leeae73ba42017-05-05 09:58:25 -07002308
2309 // If we were already visible, skip rest of preparation.
2310 if (wasVisible) {
2311 if (DEBUG_VISIBILITY) Slog.v(TAG,
2312 "Already visible and does not turn on screen, skip preparing: " + this);
2313 return;
2314 }
2315
2316 if ((mAttrs.softInputMode & SOFT_INPUT_MASK_ADJUST)
2317 == SOFT_INPUT_ADJUST_RESIZE) {
2318 mLayoutNeeded = true;
2319 }
2320
David Stevens9440dc82017-03-16 19:00:20 -07002321 if (isDrawnLw() && mToken.okToAnimate()) {
Bryce Leeae73ba42017-05-05 09:58:25 -07002322 mWinAnimator.applyEnterAnimationLocked();
2323 }
Bryce Leef858b572017-06-29 14:03:33 -07002324 }
Bryce Leeae73ba42017-05-05 09:58:25 -07002325
Bryce Leef858b572017-06-29 14:03:33 -07002326 void getMergedConfiguration(MergedConfiguration outConfiguration) {
2327 final Configuration globalConfig = mService.mRoot.getConfiguration();
2328 final Configuration overrideConfig = getMergedOverrideConfiguration();
2329 outConfiguration.setConfiguration(globalConfig, overrideConfig);
2330 }
2331
Bryce Lee2b17afd2017-09-21 10:38:20 -07002332 void setLastReportedMergedConfiguration(MergedConfiguration config) {
2333 mLastReportedConfiguration.setTo(config);
2334 }
2335
2336 void getLastReportedMergedConfiguration(MergedConfiguration config) {
2337 config.setTo(mLastReportedConfiguration);
2338 }
2339
2340 private Configuration getLastReportedConfiguration() {
2341 return mLastReportedConfiguration.getMergedConfiguration();
Filip Gruszczynski84cc5e32015-11-03 18:05:47 -08002342 }
2343
2344 void adjustStartingWindowFlags() {
2345 if (mAttrs.type == TYPE_BASE_APPLICATION && mAppToken != null
2346 && mAppToken.startingWindow != null) {
2347 // Special handling of starting window over the base
2348 // window of the app: propagate lock screen flags to it,
2349 // to provide the correct semantics while starting.
2350 final int mask = FLAG_SHOW_WHEN_LOCKED | FLAG_DISMISS_KEYGUARD
2351 | FLAG_ALLOW_LOCK_WHILE_SCREEN_ON;
2352 WindowManager.LayoutParams sa = mAppToken.startingWindow.mAttrs;
2353 sa.flags = (sa.flags & ~mask) | (mAttrs.flags & mask);
2354 }
2355 }
2356
2357 void setWindowScale(int requestedWidth, int requestedHeight) {
2358 final boolean scaledWindow = (mAttrs.flags & FLAG_SCALED) != 0;
2359
2360 if (scaledWindow) {
2361 // requested{Width|Height} Surface's physical size
2362 // attrs.{width|height} Size on screen
2363 // TODO: We don't check if attrs != null here. Is it implicitly checked?
2364 mHScale = (mAttrs.width != requestedWidth) ?
2365 (mAttrs.width / (float)requestedWidth) : 1.0f;
2366 mVScale = (mAttrs.height != requestedHeight) ?
2367 (mAttrs.height / (float)requestedHeight) : 1.0f;
2368 } else {
2369 mHScale = mVScale = 1;
2370 }
2371 }
2372
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002373 private class DeathRecipient implements IBinder.DeathRecipient {
Craig Mautnere8552142012-11-07 13:55:47 -08002374 @Override
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002375 public void binderDied() {
2376 try {
2377 synchronized(mService.mWindowMap) {
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07002378 final WindowState win = mService.windowForClientLocked(mSession, mClient, false);
Craig Mautnerd87946b2012-03-29 18:00:19 -07002379 Slog.i(TAG, "WIN DEATH: " + win);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002380 if (win != null) {
Wale Ogunwale1666e312016-12-16 11:27:18 -08002381 final DisplayContent dc = getDisplayContent();
Jorim Jaggi10abe2f2017-01-03 16:44:46 +01002382 if (win.mAppToken != null && win.mAppToken.findMainWindow() == win) {
2383 mService.mTaskSnapshotController.onAppDied(win.mAppToken);
2384 }
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07002385 win.removeIfPossible(shouldKeepVisibleDeadAppWindow());
Wale Ogunwalea9f9b372016-02-04 18:04:39 -08002386 if (win.mAttrs.type == TYPE_DOCK_DIVIDER) {
2387 // The owner of the docked divider died :( We reset the docked stack,
Jorim Jaggidcb68142016-02-09 21:51:30 -08002388 // just in case they have the divider at an unstable position. Better
2389 // also reset drag resizing state, because the owner can't do it
2390 // anymore.
Wale Ogunwale61911492017-10-11 08:50:50 -07002391 final TaskStack stack =
Matthew Ng64e77cf2017-10-31 14:01:31 -07002392 dc.getSplitScreenPrimaryStackIgnoringVisibility();
Wale Ogunwalea9f9b372016-02-04 18:04:39 -08002393 if (stack != null) {
2394 stack.resetDockedStackToMiddle();
2395 }
Jorim Jaggidcb68142016-02-09 21:51:30 -08002396 mService.setDockedStackResizing(false);
Wale Ogunwalea9f9b372016-02-04 18:04:39 -08002397 }
Craig Mautnerb3b36ba2013-05-20 13:21:10 -07002398 } else if (mHasSurface) {
Craig Mautnera99764e2013-03-06 10:22:16 -08002399 Slog.e(TAG, "!!! LEAK !!! Window removed but surface still valid.");
Wale Ogunwale92fc3722016-08-05 12:19:08 -07002400 WindowState.this.removeIfPossible();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002401 }
2402 }
2403 } catch (IllegalArgumentException ex) {
Wale Ogunwalee42d0e12016-05-02 16:40:59 -07002404 // This will happen if the window has already been removed.
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002405 }
2406 }
2407 }
2408
Wale Ogunwale3fd20fe2016-01-23 17:41:28 -08002409 /**
2410 * Returns true if this window is visible and belongs to a dead app and shouldn't be removed,
2411 * because we want to preserve its location on screen to be re-activated later when the user
2412 * interacts with it.
2413 */
Wale Ogunwale3382ab12017-07-27 08:55:03 -07002414 private boolean shouldKeepVisibleDeadAppWindow() {
Wale Ogunwale89973222017-04-23 18:39:45 -07002415 if (!isWinVisibleLw() || mAppToken == null || mAppToken.isClientHidden()) {
Wale Ogunwale3fd20fe2016-01-23 17:41:28 -08002416 // Not a visible app window or the app isn't dead.
2417 return false;
2418 }
2419
Wale Ogunwale51d1d912016-05-04 13:27:18 -07002420 if (mAttrs.token != mClient.asBinder()) {
2421 // The window was add by a client using another client's app token. We don't want to
2422 // keep the dead window around for this case since this is meant for 'real' apps.
2423 return false;
2424 }
2425
Wale Ogunwale3fd20fe2016-01-23 17:41:28 -08002426 if (mAttrs.type == TYPE_APPLICATION_STARTING) {
2427 // We don't keep starting windows since they were added by the window manager before
2428 // the app even launched.
2429 return false;
2430 }
2431
Wale Ogunwale3382ab12017-07-27 08:55:03 -07002432 return getWindowConfiguration().keepVisibleDeadAppWindowOnScreen();
Wale Ogunwale3fd20fe2016-01-23 17:41:28 -08002433 }
2434
Wale Ogunwaled045c822015-12-02 09:14:28 -08002435 /** @return true if this window desires key events. */
2436 boolean canReceiveKeys() {
Craig Mautner58106812012-12-28 12:27:40 -08002437 return isVisibleOrAdding()
Chong Zhange292eb32016-05-21 09:23:55 -07002438 && (mViewVisibility == View.VISIBLE) && !mRemoveOnExit
Wale Ogunwaled045c822015-12-02 09:14:28 -08002439 && ((mAttrs.flags & WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE) == 0)
Jorim Jaggib72c9ad2016-04-11 18:27:58 -07002440 && (mAppToken == null || mAppToken.windowsAreFocusable())
Matthew Nge15352e2016-12-20 15:36:29 -08002441 && !canReceiveTouchInput();
2442 }
2443
2444 /** @return true if this window desires touch events. */
2445 boolean canReceiveTouchInput() {
Bryce Lee6d410262017-02-28 15:30:17 -08002446 return mAppToken != null && mAppToken.getTask() != null
2447 && mAppToken.getTask().mStack.shouldIgnoreInput();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002448 }
2449
Craig Mautner749a7bb2012-04-02 13:49:53 -07002450 @Override
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002451 public boolean hasDrawnLw() {
Craig Mautner749a7bb2012-04-02 13:49:53 -07002452 return mWinAnimator.mDrawState == WindowStateAnimator.HAS_DRAWN;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002453 }
2454
Craig Mautner749a7bb2012-04-02 13:49:53 -07002455 @Override
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002456 public boolean showLw(boolean doAnimation) {
2457 return showLw(doAnimation, true);
2458 }
2459
2460 boolean showLw(boolean doAnimation, boolean requestAnim) {
Craig Mautner5962b122012-10-05 14:45:52 -07002461 if (isHiddenFromUserLocked()) {
Craig Mautner9dc52bc2012-08-06 14:15:42 -07002462 return false;
2463 }
Dianne Hackbornb6b23ec2013-02-11 19:29:06 -08002464 if (!mAppOpVisibility) {
2465 // Being hidden due to app op request.
2466 return false;
2467 }
Svetoslav Ganovaa076532016-08-01 19:16:43 -07002468 if (mPermanentlyHidden) {
2469 // Permanently hidden until the app exists as apps aren't prepared
2470 // to handle their windows being removed from under them.
2471 return false;
2472 }
Wale Ogunwale01ad4342017-06-30 07:07:01 -07002473 if (mForceHideNonSystemOverlayWindow) {
2474 // This is an alert window that is currently force hidden.
2475 return false;
2476 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002477 if (mPolicyVisibility && mPolicyVisibilityAfterAnim) {
Craig Mautnere32c3072012-03-12 15:25:35 -07002478 // Already showing.
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002479 return false;
2480 }
Craig Mautnerd87946b2012-03-29 18:00:19 -07002481 if (DEBUG_VISIBILITY) Slog.v(TAG, "Policy visibility true: " + this);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002482 if (doAnimation) {
Craig Mautnerd87946b2012-03-29 18:00:19 -07002483 if (DEBUG_VISIBILITY) Slog.v(TAG, "doAnimation: mPolicyVisibility="
Jorim Jaggia5e10572017-11-15 14:36:26 +01002484 + mPolicyVisibility + " isAnimationSet=" + mWinAnimator.isAnimationSet());
David Stevens9440dc82017-03-16 19:00:20 -07002485 if (!mToken.okToAnimate()) {
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002486 doAnimation = false;
Jorim Jaggia5e10572017-11-15 14:36:26 +01002487 } else if (mPolicyVisibility && !mWinAnimator.isAnimationSet()) {
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002488 // Check for the case where we are currently visible and
2489 // not animating; we do not want to do animation at such a
2490 // point to become visible when we already are.
2491 doAnimation = false;
2492 }
2493 }
2494 mPolicyVisibility = true;
2495 mPolicyVisibilityAfterAnim = true;
2496 if (doAnimation) {
Adrian Roose99bc052017-11-20 17:55:31 +01002497 mWinAnimator.applyAnimationLocked(TRANSIT_ENTER, true);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002498 }
2499 if (requestAnim) {
Craig Mautner96868332012-12-04 14:29:11 -08002500 mService.scheduleAnimationLocked();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002501 }
Jorim Jaggic8c4a8e2017-04-04 15:09:51 +02002502 if ((mAttrs.flags & FLAG_NOT_FOCUSABLE) == 0) {
2503 mService.updateFocusedWindowLocked(UPDATE_FOCUS_NORMAL, false /* updateImWindows */);
2504 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002505 return true;
2506 }
2507
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002508 @Override
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002509 public boolean hideLw(boolean doAnimation) {
2510 return hideLw(doAnimation, true);
2511 }
2512
2513 boolean hideLw(boolean doAnimation, boolean requestAnim) {
2514 if (doAnimation) {
David Stevens9440dc82017-03-16 19:00:20 -07002515 if (!mToken.okToAnimate()) {
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002516 doAnimation = false;
2517 }
2518 }
Wale Ogunwale9bc47732016-08-10 14:44:22 -07002519 boolean current = doAnimation ? mPolicyVisibilityAfterAnim : mPolicyVisibility;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002520 if (!current) {
Craig Mautnere32c3072012-03-12 15:25:35 -07002521 // Already hiding.
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002522 return false;
2523 }
2524 if (doAnimation) {
Adrian Roose99bc052017-11-20 17:55:31 +01002525 mWinAnimator.applyAnimationLocked(TRANSIT_EXIT, false);
Jorim Jaggia5e10572017-11-15 14:36:26 +01002526 if (!mWinAnimator.isAnimationSet()) {
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002527 doAnimation = false;
2528 }
2529 }
Wale Ogunwale9bc47732016-08-10 14:44:22 -07002530 mPolicyVisibilityAfterAnim = false;
2531 if (!doAnimation) {
Craig Mautnerd87946b2012-03-29 18:00:19 -07002532 if (DEBUG_VISIBILITY) Slog.v(TAG, "Policy visibility false: " + this);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002533 mPolicyVisibility = false;
2534 // Window is no longer visible -- make sure if we were waiting
2535 // for it to be displayed before enabling the display, that
2536 // we allow the display to be enabled now.
2537 mService.enableScreenIfNeededLocked();
2538 if (mService.mCurrentFocus == this) {
Filip Gruszczynski14b4e572015-11-03 15:53:55 -08002539 if (DEBUG_FOCUS_LIGHT) Slog.i(TAG,
Craig Mautner58458122013-09-14 14:59:50 -07002540 "WindowState.hideLw: setting mFocusMayChange true");
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002541 mService.mFocusMayChange = true;
2542 }
2543 }
2544 if (requestAnim) {
Craig Mautner96868332012-12-04 14:29:11 -08002545 mService.scheduleAnimationLocked();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002546 }
Jorim Jaggic8c4a8e2017-04-04 15:09:51 +02002547 if (mService.mCurrentFocus == this) {
2548 mService.updateFocusedWindowLocked(UPDATE_FOCUS_NORMAL, false /* updateImWindows */);
2549 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002550 return true;
2551 }
2552
Wale Ogunwale01ad4342017-06-30 07:07:01 -07002553 void setForceHideNonSystemOverlayWindowIfNeeded(boolean forceHide) {
2554 if (mOwnerCanAddInternalSystemWindow
2555 || (!isSystemAlertWindowType(mAttrs.type) && mAttrs.type != TYPE_TOAST)) {
2556 return;
2557 }
2558 if (mForceHideNonSystemOverlayWindow == forceHide) {
2559 return;
2560 }
2561 mForceHideNonSystemOverlayWindow = forceHide;
2562 if (forceHide) {
2563 hideLw(true /* doAnimation */, true /* requestAnim */);
2564 } else {
2565 showLw(true /* doAnimation */, true /* requestAnim */);
2566 }
2567 }
2568
Svet Ganovf7b47252018-02-26 11:11:27 -08002569 private void setAppOpVisibilityLw(boolean state) {
Dianne Hackbornb6b23ec2013-02-11 19:29:06 -08002570 if (mAppOpVisibility != state) {
2571 mAppOpVisibility = state;
2572 if (state) {
2573 // If the policy visibility had last been to hide, then this
2574 // will incorrectly show at this point since we lost that
2575 // information. Not a big deal -- for the windows that have app
2576 // ops modifies they should only be hidden by policy due to the
2577 // lock screen, and the user won't be changing this if locked.
2578 // Plus it will quickly be fixed the next time we do a layout.
Craig Mautnerfb32c6e2013-02-12 15:08:44 -08002579 showLw(true, true);
Dianne Hackbornb6b23ec2013-02-11 19:29:06 -08002580 } else {
Craig Mautnerfb32c6e2013-02-12 15:08:44 -08002581 hideLw(true, true);
Dianne Hackbornb6b23ec2013-02-11 19:29:06 -08002582 }
Dianne Hackbornb6b23ec2013-02-11 19:29:06 -08002583 }
Dianne Hackbornb6b23ec2013-02-11 19:29:06 -08002584 }
2585
Svet Ganovf7b47252018-02-26 11:11:27 -08002586 void initAppOpsState() {
2587 if (mAppOp == OP_NONE || !mAppOpVisibility) {
2588 return;
2589 }
2590 // If the app op was MODE_DEFAULT we would have checked the permission
2591 // and add the window only if the permission was granted. Therefore, if
2592 // the mode is MODE_DEFAULT we want the op to succeed as the window is
2593 // shown.
2594 final int mode = mService.mAppOps.startOpNoThrow(mAppOp,
2595 getOwningUid(), getOwningPackage(), true);
2596 if (mode != MODE_ALLOWED && mode != MODE_DEFAULT) {
2597 setAppOpVisibilityLw(false);
2598 }
2599 }
2600
2601 void resetAppOpsState() {
2602 if (mAppOp != OP_NONE && mAppOpVisibility) {
2603 mService.mAppOps.finishOp(mAppOp, getOwningUid(), getOwningPackage());
2604 }
2605 }
2606
2607 void updateAppOpsState() {
2608 if (mAppOp == OP_NONE) {
2609 return;
2610 }
2611 final int uid = getOwningUid();
2612 final String packageName = getOwningPackage();
2613 if (mAppOpVisibility) {
2614 // There is a race between the check and the finish calls but this is fine
2615 // as this would mean we will get another change callback and will reconcile.
2616 int mode = mService.mAppOps.checkOpNoThrow(mAppOp, uid, packageName);
2617 if (mode != MODE_ALLOWED && mode != MODE_DEFAULT) {
2618 mService.mAppOps.finishOp(mAppOp, uid, packageName);
2619 setAppOpVisibilityLw(false);
2620 }
2621 } else {
Svet Ganov522ed242018-03-07 21:40:28 -08002622 final int mode = mService.mAppOps.startOpNoThrow(mAppOp, uid, packageName, true);
Svet Ganovf7b47252018-02-26 11:11:27 -08002623 if (mode == MODE_ALLOWED || mode == MODE_DEFAULT) {
2624 setAppOpVisibilityLw(true);
2625 }
2626 }
2627 }
2628
Svetoslav Ganovaa076532016-08-01 19:16:43 -07002629 public void hidePermanentlyLw() {
2630 if (!mPermanentlyHidden) {
2631 mPermanentlyHidden = true;
2632 hideLw(true, true);
2633 }
2634 }
2635
Jeff Brownc2932a12014-11-20 18:04:05 -08002636 public void pokeDrawLockLw(long timeout) {
2637 if (isVisibleOrAdding()) {
2638 if (mDrawLock == null) {
2639 // We want the tag name to be somewhat stable so that it is easier to correlate
2640 // in wake lock statistics. So in particular, we don't want to include the
2641 // window's hash code as in toString().
Wale Ogunwalecad05a02015-09-25 10:41:44 -07002642 final CharSequence tag = getWindowTag();
chaviw40234662018-02-07 09:37:16 -08002643 mDrawLock = mService.mPowerManager.newWakeLock(DRAW_WAKE_LOCK, "Window:" + tag);
Jeff Brownc2932a12014-11-20 18:04:05 -08002644 mDrawLock.setReferenceCounted(false);
2645 mDrawLock.setWorkSource(new WorkSource(mOwnerUid, mAttrs.packageName));
2646 }
2647 // Each call to acquire resets the timeout.
2648 if (DEBUG_POWER) {
2649 Slog.d(TAG, "pokeDrawLock: poking draw lock on behalf of visible window owned by "
2650 + mAttrs.packageName);
2651 }
2652 mDrawLock.acquire(timeout);
2653 } else if (DEBUG_POWER) {
2654 Slog.d(TAG, "pokeDrawLock: suppressed draw lock request for invisible window "
2655 + "owned by " + mAttrs.packageName);
2656 }
2657 }
2658
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002659 @Override
2660 public boolean isAlive() {
2661 return mClient.asBinder().isBinderAlive();
2662 }
2663
Craig Mautnera987d432012-10-11 14:07:58 -07002664 boolean isClosing() {
Wale Ogunwalec48a3542016-02-19 15:18:45 -08002665 return mAnimatingExit || (mService.mClosingApps.contains(mAppToken));
Craig Mautnera987d432012-10-11 14:07:58 -07002666 }
2667
Wale Ogunwale9bc47732016-08-10 14:44:22 -07002668 void addWinAnimatorToList(ArrayList<WindowStateAnimator> animators) {
2669 animators.add(mWinAnimator);
2670
2671 for (int i = mChildren.size() - 1; i >= 0; --i) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07002672 final WindowState c = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07002673 c.addWinAnimatorToList(animators);
2674 }
2675 }
2676
Wale Ogunwaled1c37912016-08-16 03:19:39 -07002677 void sendAppVisibilityToClients() {
2678 super.sendAppVisibilityToClients();
Wale Ogunwale9bc47732016-08-10 14:44:22 -07002679
Wale Ogunwale89973222017-04-23 18:39:45 -07002680 final boolean clientHidden = mAppToken.isClientHidden();
Wale Ogunwale9bc47732016-08-10 14:44:22 -07002681 if (mAttrs.type == TYPE_APPLICATION_STARTING && clientHidden) {
2682 // Don't hide the starting window.
2683 return;
2684 }
2685
Wale Ogunwale89973222017-04-23 18:39:45 -07002686 if (clientHidden) {
2687 // Once we are notifying the client that it's visibility has changed, we need to prevent
2688 // it from destroying child surfaces until the animation has finished. We do this by
2689 // detaching any surface control the client added from the client.
2690 for (int i = mChildren.size() - 1; i >= 0; --i) {
2691 final WindowState c = mChildren.get(i);
2692 c.mWinAnimator.detachChildren();
2693 }
2694
2695 mWinAnimator.detachChildren();
2696 }
2697
Wale Ogunwale9bc47732016-08-10 14:44:22 -07002698 try {
2699 if (DEBUG_VISIBILITY) Slog.v(TAG,
2700 "Setting visibility of " + this + ": " + (!clientHidden));
2701 mClient.dispatchAppVisibility(!clientHidden);
2702 } catch (RemoteException e) {
2703 }
Chong Zhang8e4bda92016-05-04 15:08:18 -07002704 }
2705
Wale Ogunwale9bc47732016-08-10 14:44:22 -07002706 void onStartFreezingScreen() {
2707 mAppFreezing = true;
2708 for (int i = mChildren.size() - 1; i >= 0; --i) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07002709 final WindowState c = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07002710 c.onStartFreezingScreen();
2711 }
2712 }
2713
2714 boolean onStopFreezingScreen() {
2715 boolean unfrozeWindows = false;
2716 for (int i = mChildren.size() - 1; i >= 0; --i) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07002717 final WindowState c = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07002718 unfrozeWindows |= c.onStopFreezingScreen();
2719 }
2720
2721 if (!mAppFreezing) {
2722 return unfrozeWindows;
2723 }
2724
Wale Ogunwale953171d2016-09-30 09:17:30 -07002725 mAppFreezing = false;
2726
Bryce Lee8c3cf382017-07-06 19:47:10 -07002727 if (mHasSurface && !getOrientationChanging()
Wale Ogunwale9bc47732016-08-10 14:44:22 -07002728 && mService.mWindowsFreezingScreen != WINDOWS_FREEZING_SCREENS_TIMEOUT) {
2729 if (DEBUG_ORIENTATION) Slog.v(TAG_WM, "set mOrientationChanging of " + this);
Bryce Lee8c3cf382017-07-06 19:47:10 -07002730 setOrientationChanging(true);
Wale Ogunwalee05f5012016-09-16 16:27:29 -07002731 mService.mRoot.mOrientationChangeComplete = false;
Wale Ogunwale9bc47732016-08-10 14:44:22 -07002732 }
2733 mLastFreezeDuration = 0;
2734 setDisplayLayoutNeeded();
2735 return true;
2736 }
2737
Wale Ogunwale9bc47732016-08-10 14:44:22 -07002738 boolean destroySurface(boolean cleanupOnResume, boolean appStopped) {
2739 boolean destroyedSomething = false;
Jorim Jaggi59f3e922018-01-05 15:40:32 +01002740
2741 // Copying to a different list as multiple children can be removed.
2742 final ArrayList<WindowState> childWindows = new ArrayList<>(mChildren);
2743 for (int i = childWindows.size() - 1; i >= 0; --i) {
2744 final WindowState c = childWindows.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07002745 destroyedSomething |= c.destroySurface(cleanupOnResume, appStopped);
2746 }
2747
Robert Carrdb2f6e62017-03-01 20:17:58 -08002748 if (!(appStopped || mWindowRemovalAllowed || cleanupOnResume)) {
2749 return destroyedSomething;
Wale Ogunwale9bc47732016-08-10 14:44:22 -07002750 }
Robert Carrdb2f6e62017-03-01 20:17:58 -08002751
2752 if (appStopped || mWindowRemovalAllowed) {
2753 mWinAnimator.destroyPreservedSurfaceLocked();
2754 }
2755
2756 if (mDestroying) {
2757 if (DEBUG_ADD_REMOVE) Slog.e(TAG_WM, "win=" + this
2758 + " destroySurfaces: appStopped=" + appStopped
2759 + " win.mWindowRemovalAllowed=" + mWindowRemovalAllowed
2760 + " win.mRemoveOnExit=" + mRemoveOnExit);
2761 if (!cleanupOnResume || mRemoveOnExit) {
Jorim Jaggie7d2b852017-08-28 17:55:15 +02002762 destroySurfaceUnchecked();
Robert Carrdb2f6e62017-03-01 20:17:58 -08002763 }
2764 if (mRemoveOnExit) {
2765 removeImmediately();
2766 }
2767 if (cleanupOnResume) {
2768 requestUpdateWallpaperIfNeeded();
2769 }
2770 mDestroying = false;
2771 destroyedSomething = true;
2772 }
2773
Wale Ogunwale9bc47732016-08-10 14:44:22 -07002774 return destroyedSomething;
2775 }
Chris Craik3131bde2016-05-06 13:39:08 -07002776
Robert Carr89a28ab2017-04-24 15:33:11 -07002777 // Destroy or save the application surface without checking
2778 // various indicators of whether the client has released the surface.
2779 // This is in general unsafe, and most callers should use {@link #destroySurface}
Jorim Jaggie7d2b852017-08-28 17:55:15 +02002780 void destroySurfaceUnchecked() {
2781 mWinAnimator.destroySurfaceLocked();
Chong Zhangeb22e8e2016-01-20 19:52:22 -08002782
Chong Zhang92147042016-05-09 12:47:11 -07002783 // Clear animating flags now, since the surface is now gone. (Note this is true even
2784 // if the surface is saved, to outside world the surface is still NO_SURFACE.)
2785 mAnimatingExit = false;
Robert Carr13f7be9e2015-12-02 18:39:45 -08002786 }
Chong Zhangdb20b5f2015-10-23 14:01:43 -07002787
Craig Mautner69b08182012-09-05 13:07:13 -07002788 @Override
2789 public boolean isDefaultDisplay() {
Craig Mautnerdf88d732014-01-27 09:21:32 -08002790 final DisplayContent displayContent = getDisplayContent();
2791 if (displayContent == null) {
2792 // Only a window that was on a non-default display can be detached from it.
2793 return false;
2794 }
Winson Chung47a3e652014-05-21 16:03:42 -07002795 return displayContent.isDefaultDisplay;
Craig Mautner69b08182012-09-05 13:07:13 -07002796 }
2797
Wale Ogunwale360a8bc2016-10-10 13:25:26 -07002798 void setShowToOwnerOnlyLocked(boolean showToOwnerOnly) {
Craig Mautner88400d32012-09-30 12:35:45 -07002799 mShowToOwnerOnly = showToOwnerOnly;
2800 }
2801
Wale Ogunwaleea92d972016-12-08 07:33:13 -08002802 private boolean isHiddenFromUserLocked() {
Wale Ogunwalecaa53af2016-07-17 14:50:26 -07002803 // Child windows are evaluated based on their parent window.
2804 final WindowState win = getTopParentWindow();
Wale Ogunwale360a8bc2016-10-10 13:25:26 -07002805 if (win.mAttrs.type < FIRST_SYSTEM_WINDOW
Wale Ogunwale72919d22016-12-08 18:58:50 -08002806 && win.mAppToken != null && win.mAppToken.mShowForAllUsers) {
Jorim Jaggidbe44ac2016-04-22 19:50:13 -07002807
2808 // All window frames that are fullscreen extend above status bar, but some don't extend
2809 // below navigation bar. Thus, check for display frame for top/left and stable frame for
2810 // bottom right.
2811 if (win.mFrame.left <= win.mDisplayFrame.left
2812 && win.mFrame.top <= win.mDisplayFrame.top
2813 && win.mFrame.right >= win.mStableFrame.right
2814 && win.mFrame.bottom >= win.mStableFrame.bottom) {
Craig Mautner5962b122012-10-05 14:45:52 -07002815 // Is a fullscreen window, like the clock alarm. Show to everyone.
2816 return false;
2817 }
2818 }
2819
Craig Mautner341220f2012-10-16 15:20:09 -07002820 return win.mShowToOwnerOnly
Kenny Guy2a764942014-04-02 13:29:20 +01002821 && !mService.isCurrentProfileLocked(UserHandle.getUserId(win.mOwnerUid));
Craig Mautner9dc52bc2012-08-06 14:15:42 -07002822 }
2823
Dianne Hackbornffb3d932011-05-17 17:44:51 -07002824 private static void applyInsets(Region outRegion, Rect frame, Rect inset) {
2825 outRegion.set(
2826 frame.left + inset.left, frame.top + inset.top,
2827 frame.right - inset.right, frame.bottom - inset.bottom);
Dianne Hackborne2515ee2011-04-27 18:52:56 -04002828 }
2829
Wale Ogunwale053c8e42015-11-16 14:27:21 -08002830 void getTouchableRegion(Region outRegion) {
Dianne Hackbornffb3d932011-05-17 17:44:51 -07002831 final Rect frame = mFrame;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002832 switch (mTouchableInsets) {
2833 default:
Wale Ogunwale053c8e42015-11-16 14:27:21 -08002834 case TOUCHABLE_INSETS_FRAME:
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002835 outRegion.set(frame);
2836 break;
Wale Ogunwale053c8e42015-11-16 14:27:21 -08002837 case TOUCHABLE_INSETS_CONTENT:
Dianne Hackbornffb3d932011-05-17 17:44:51 -07002838 applyInsets(outRegion, frame, mGivenContentInsets);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002839 break;
Wale Ogunwale053c8e42015-11-16 14:27:21 -08002840 case TOUCHABLE_INSETS_VISIBLE:
Dianne Hackbornffb3d932011-05-17 17:44:51 -07002841 applyInsets(outRegion, frame, mGivenVisibleInsets);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002842 break;
Wale Ogunwale053c8e42015-11-16 14:27:21 -08002843 case TOUCHABLE_INSETS_REGION: {
Wale Ogunwaleae9adbf2016-10-18 15:17:06 -07002844 outRegion.set(mGivenTouchableRegion);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002845 outRegion.translate(frame.left, frame.top);
2846 break;
2847 }
2848 }
Wale Ogunwale053c8e42015-11-16 14:27:21 -08002849 cropRegionToStackBoundsIfNeeded(outRegion);
2850 }
2851
Wale Ogunwaleae9adbf2016-10-18 15:17:06 -07002852 private void cropRegionToStackBoundsIfNeeded(Region region) {
Wale Ogunwaleb1faf602016-01-27 09:12:31 -08002853 final Task task = getTask();
2854 if (task == null || !task.cropWindowsToStackBounds()) {
Wale Ogunwale053c8e42015-11-16 14:27:21 -08002855 return;
2856 }
2857
Wale Ogunwaleb1faf602016-01-27 09:12:31 -08002858 final TaskStack stack = task.mStack;
Wale Ogunwale053c8e42015-11-16 14:27:21 -08002859 if (stack == null) {
2860 return;
2861 }
2862
2863 stack.getDimBounds(mTmpRect);
2864 region.op(mTmpRect, Region.Op.INTERSECT);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08002865 }
2866
Dianne Hackborne3f23a32013-03-01 13:25:35 -08002867 /**
2868 * Report a focus change. Must be called with no locks held, and consistently
2869 * from the same serialized thread (such as dispatched from a handler).
2870 */
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -07002871 void reportFocusChangedSerialized(boolean focused, boolean inTouchMode) {
Dianne Hackborne3f23a32013-03-01 13:25:35 -08002872 try {
2873 mClient.windowFocusChanged(focused, inTouchMode);
2874 } catch (RemoteException e) {
2875 }
2876 if (mFocusCallbacks != null) {
2877 final int N = mFocusCallbacks.beginBroadcast();
2878 for (int i=0; i<N; i++) {
2879 IWindowFocusObserver obs = mFocusCallbacks.getBroadcastItem(i);
2880 try {
2881 if (focused) {
2882 obs.focusGained(mWindowId.asBinder());
2883 } else {
2884 obs.focusLost(mWindowId.asBinder());
2885 }
2886 } catch (RemoteException e) {
2887 }
2888 }
2889 mFocusCallbacks.finishBroadcast();
2890 }
2891 }
2892
Andrii Kulian9d91ca62016-09-29 22:28:09 -07002893 @Override
2894 public Configuration getConfiguration() {
Jorim Jaggi26c8c422016-05-09 19:57:25 -07002895 if (mAppToken != null && mAppToken.mFrozenMergedConfig.size() > 0) {
Andrii Kulian9d91ca62016-09-29 22:28:09 -07002896 return mAppToken.mFrozenMergedConfig.peek();
Jorim Jaggi26c8c422016-05-09 19:57:25 -07002897 }
Andrii Kulian9d91ca62016-09-29 22:28:09 -07002898
Wale Ogunwale19e452e2016-10-12 12:36:29 -07002899 return super.getConfiguration();
Jorim Jaggi26c8c422016-05-09 19:57:25 -07002900 }
2901
Craig Mautnerdf88d732014-01-27 09:21:32 -08002902 void reportResized() {
Wale Ogunwalecad05a02015-09-25 10:41:44 -07002903 Trace.traceBegin(TRACE_TAG_WINDOW_MANAGER, "wm.reportResized_" + getWindowTag());
Craig Mautnerdf88d732014-01-27 09:21:32 -08002904 try {
Craig Mautnerd1c2c542014-02-06 10:31:41 -08002905 if (DEBUG_RESIZE || DEBUG_ORIENTATION) Slog.v(TAG, "Reporting new frame to " + this
2906 + ": " + mCompatFrame);
Bryce Leef858b572017-06-29 14:03:33 -07002907 final MergedConfiguration mergedConfiguration =
2908 new MergedConfiguration(mService.mRoot.getConfiguration(),
2909 getMergedOverrideConfiguration());
2910
Bryce Lee2b17afd2017-09-21 10:38:20 -07002911 setLastReportedMergedConfiguration(mergedConfiguration);
Bryce Leef858b572017-06-29 14:03:33 -07002912
Wale Ogunwale19e452e2016-10-12 12:36:29 -07002913 if (DEBUG_ORIENTATION && mWinAnimator.mDrawState == DRAW_PENDING)
Craig Mautnerd1c2c542014-02-06 10:31:41 -08002914 Slog.i(TAG, "Resizing " + this + " WITH DRAW PENDING");
2915
Craig Mautnerdf88d732014-01-27 09:21:32 -08002916 final Rect frame = mFrame;
2917 final Rect overscanInsets = mLastOverscanInsets;
2918 final Rect contentInsets = mLastContentInsets;
2919 final Rect visibleInsets = mLastVisibleInsets;
Adrian Roosfa104232014-06-20 16:10:14 -07002920 final Rect stableInsets = mLastStableInsets;
Filip Gruszczynski2217f612015-05-26 11:32:08 -07002921 final Rect outsets = mLastOutsets;
Wale Ogunwale19e452e2016-10-12 12:36:29 -07002922 final boolean reportDraw = mWinAnimator.mDrawState == DRAW_PENDING;
Andrii Kulianb2e37802017-01-11 00:36:44 -08002923 final boolean reportOrientation = mReportOrientationChanged;
Andrii Kulianb047b8b2017-02-08 18:38:26 -08002924 final int displayId = getDisplayId();
Adrian Roos6a4fa0e2018-03-05 19:50:16 +01002925 final DisplayCutout displayCutout = mDisplayCutout.getDisplayCutout();
Chet Haase8eb48d22014-09-24 07:31:29 -07002926 if (mAttrs.type != WindowManager.LayoutParams.TYPE_APPLICATION_STARTING
2927 && mClient instanceof IWindow.Stub) {
Craig Mautnerdf88d732014-01-27 09:21:32 -08002928 // To prevent deadlock simulate one-way call if win.mClient is a local object.
2929 mService.mH.post(new Runnable() {
2930 @Override
2931 public void run() {
2932 try {
Jorim Jaggi253a20f2015-11-03 12:38:42 +01002933 dispatchResized(frame, overscanInsets, contentInsets, visibleInsets,
Andrii Kulian44607962017-03-16 11:06:24 -07002934 stableInsets, outsets, reportDraw, mergedConfiguration,
Adrian Roos5c6b6222017-11-07 17:36:10 +01002935 reportOrientation, displayId, displayCutout);
Craig Mautnerdf88d732014-01-27 09:21:32 -08002936 } catch (RemoteException e) {
2937 // Not a remote call, RemoteException won't be raised.
2938 }
2939 }
2940 });
2941 } else {
Jorim Jaggi253a20f2015-11-03 12:38:42 +01002942 dispatchResized(frame, overscanInsets, contentInsets, visibleInsets, stableInsets,
Adrian Roos5c6b6222017-11-07 17:36:10 +01002943 outsets, reportDraw, mergedConfiguration, reportOrientation, displayId,
2944 displayCutout);
Craig Mautnerdf88d732014-01-27 09:21:32 -08002945 }
Svetoslav4604abc2014-06-10 18:59:30 -07002946
2947 //TODO (multidisplay): Accessibility supported only for the default display.
Andrii Kulian5406e7a2016-10-21 11:55:23 -07002948 if (mService.mAccessibilityController != null && getDisplayId() == DEFAULT_DISPLAY) {
Svetoslavf7174e82014-06-12 11:29:35 -07002949 mService.mAccessibilityController.onSomeWindowResizedOrMovedLocked();
Svetoslav4604abc2014-06-10 18:59:30 -07002950 }
2951
Craig Mautnerdf88d732014-01-27 09:21:32 -08002952 mOverscanInsetsChanged = false;
2953 mContentInsetsChanged = false;
2954 mVisibleInsetsChanged = false;
Adrian Roosfa104232014-06-20 16:10:14 -07002955 mStableInsetsChanged = false;
Filip Gruszczynski2217f612015-05-26 11:32:08 -07002956 mOutsetsChanged = false;
Robert Carr31aa98b2016-07-20 15:29:03 -07002957 mFrameSizeChanged = false;
Adrian Roos5c6b6222017-11-07 17:36:10 +01002958 mDisplayCutoutChanged = false;
Craig Mautnerdf88d732014-01-27 09:21:32 -08002959 mWinAnimator.mSurfaceResized = false;
Andrii Kulianb2e37802017-01-11 00:36:44 -08002960 mReportOrientationChanged = false;
Craig Mautnerdf88d732014-01-27 09:21:32 -08002961 } catch (RemoteException e) {
Bryce Lee8c3cf382017-07-06 19:47:10 -07002962 setOrientationChanging(false);
Craig Mautnerdf88d732014-01-27 09:21:32 -08002963 mLastFreezeDuration = (int)(SystemClock.elapsedRealtime()
2964 - mService.mDisplayFreezeTime);
tiger_huang950ee772014-07-11 18:41:48 +08002965 // We are assuming the hosting process is dead or in a zombie state.
2966 Slog.w(TAG, "Failed to report 'resized' to the client of " + this
2967 + ", removing this window.");
2968 mService.mPendingRemove.add(this);
Filip Gruszczynski24966d42015-09-05 15:00:00 -07002969 mService.mWindowPlacerLocked.requestTraversal();
Craig Mautnerdf88d732014-01-27 09:21:32 -08002970 }
Wale Ogunwalecad05a02015-09-25 10:41:44 -07002971 Trace.traceEnd(TRACE_TAG_WINDOW_MANAGER);
Craig Mautnerdf88d732014-01-27 09:21:32 -08002972 }
2973
Jorim Jaggi2e95a482016-01-14 17:36:55 -08002974 Rect getBackdropFrame(Rect frame) {
Chong Zhangd153c4f2015-11-06 20:26:40 -08002975 // When the task is docked, we send fullscreen sized backDropFrame as soon as resizing
2976 // start even if we haven't received the relayout window, so that the client requests
2977 // the relayout sooner. When dragging stops, backDropFrame needs to stay fullscreen
2978 // until the window to small size, otherwise the multithread renderer will shift last
2979 // one or more frame to wrong offset. So here we send fullscreen backdrop if either
2980 // isDragResizing() or isDragResizeChanged() is true.
Filip Gruszczynski84fa3352016-01-25 16:28:49 -08002981 boolean resizing = isDragResizing() || isDragResizeChanged();
Wale Ogunwale3382ab12017-07-27 08:55:03 -07002982 if (getWindowConfiguration().useWindowFrameForBackdrop() || !resizing) {
Filip Gruszczynski84fa3352016-01-25 16:28:49 -08002983 return frame;
2984 }
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -07002985 final DisplayInfo displayInfo = getDisplayInfo();
Jorim Jaggi2e95a482016-01-14 17:36:55 -08002986 mTmpRect.set(0, 0, displayInfo.logicalWidth, displayInfo.logicalHeight);
Filip Gruszczynski84fa3352016-01-25 16:28:49 -08002987 return mTmpRect;
2988 }
2989
Wale Ogunwale44f036f2017-09-29 05:09:09 -07002990 private int getStackId() {
Filip Gruszczynski84fa3352016-01-25 16:28:49 -08002991 final TaskStack stack = getStack();
2992 if (stack == null) {
2993 return INVALID_STACK_ID;
2994 }
2995 return stack.mStackId;
Jorim Jaggi2e95a482016-01-14 17:36:55 -08002996 }
2997
2998 private void dispatchResized(Rect frame, Rect overscanInsets, Rect contentInsets,
2999 Rect visibleInsets, Rect stableInsets, Rect outsets, boolean reportDraw,
Adrian Roos5c6b6222017-11-07 17:36:10 +01003000 MergedConfiguration mergedConfiguration, boolean reportOrientation, int displayId,
3001 DisplayCutout displayCutout)
Andrii Kulianb047b8b2017-02-08 18:38:26 -08003002 throws RemoteException {
Robert Carr09286c92018-02-15 13:52:31 -08003003 final boolean forceRelayout = isDragResizeChanged() || reportOrientation;
Chong Zhangedaf3052016-04-22 15:04:31 -07003004
Jorim Jaggidc249c42015-12-15 14:57:31 -08003005 mClient.resized(frame, overscanInsets, contentInsets, visibleInsets, stableInsets, outsets,
Andrii Kulian44607962017-03-16 11:06:24 -07003006 reportDraw, mergedConfiguration, getBackdropFrame(frame), forceRelayout,
Adrian Roos5c6b6222017-11-07 17:36:10 +01003007 mPolicy.isNavBarForcedShownLw(this), displayId,
3008 new DisplayCutout.ParcelableWrapper(displayCutout));
Jorim Jaggic662d8e2016-02-05 16:54:54 -08003009 mDragResizingChangeReported = true;
Jorim Jaggi253a20f2015-11-03 12:38:42 +01003010 }
3011
Dianne Hackborne3f23a32013-03-01 13:25:35 -08003012 public void registerFocusObserver(IWindowFocusObserver observer) {
3013 synchronized(mService.mWindowMap) {
3014 if (mFocusCallbacks == null) {
3015 mFocusCallbacks = new RemoteCallbackList<IWindowFocusObserver>();
3016 }
3017 mFocusCallbacks.register(observer);
3018 }
3019 }
3020
3021 public void unregisterFocusObserver(IWindowFocusObserver observer) {
3022 synchronized(mService.mWindowMap) {
3023 if (mFocusCallbacks != null) {
3024 mFocusCallbacks.unregister(observer);
3025 }
3026 }
3027 }
3028
3029 public boolean isFocused() {
3030 synchronized(mService.mWindowMap) {
3031 return mService.mCurrentFocus == this;
3032 }
3033 }
3034
Wale Ogunwale9185fb02016-03-11 18:06:14 -08003035 @Override
Andrii Kulian933076d2016-03-29 17:04:42 -07003036 public boolean isInMultiWindowMode() {
Wale Ogunwale9185fb02016-03-11 18:06:14 -08003037 final Task task = getTask();
3038 return task != null && !task.isFullscreen();
3039 }
3040
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -07003041 /** Is this window in a container that takes up the entire screen space? */
3042 private boolean inFullscreenContainer() {
Bryce Leef3c6a472017-11-14 14:53:06 -08003043 return mAppToken == null || (mAppToken.matchParentBounds() && !isInMultiWindowMode());
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -07003044 }
3045
Andrii Kulian283acd22017-08-03 04:03:51 -07003046 /** @return true when the window is in fullscreen task, but has non-fullscreen bounds set. */
3047 boolean isLetterboxedAppWindow() {
Adrian Roos865c70f2018-01-10 17:32:27 +01003048 return !isInMultiWindowMode() && mAppToken != null && !mAppToken.matchParentBounds()
3049 || isLetterboxedForDisplayCutoutLw();
Adrian Roos4d18a2e2017-12-19 19:08:05 +01003050 }
3051
Adrian Roos865c70f2018-01-10 17:32:27 +01003052 @Override
3053 public boolean isLetterboxedForDisplayCutoutLw() {
3054 if (mAppToken == null) {
3055 // Only windows with an AppWindowToken are letterboxed.
3056 return false;
3057 }
Adrian Roos4d18a2e2017-12-19 19:08:05 +01003058 if (getDisplayContent().getDisplayInfo().displayCutout == null) {
3059 // No cutout, no letterbox.
3060 return false;
3061 }
Adrian Roosfa02da62018-01-15 16:01:18 +01003062 if (mAttrs.layoutInDisplayCutoutMode == LAYOUT_IN_DISPLAY_CUTOUT_MODE_ALWAYS) {
Adrian Roos4d18a2e2017-12-19 19:08:05 +01003063 // Layout in cutout, no letterbox.
3064 return false;
3065 }
3066 // TODO: handle dialogs and other non-filling windows
Adrian Roosfa02da62018-01-15 16:01:18 +01003067 if (mAttrs.layoutInDisplayCutoutMode == LAYOUT_IN_DISPLAY_CUTOUT_MODE_NEVER) {
3068 // Never layout in cutout, always letterbox.
3069 return true;
3070 }
Adrian Roos4d18a2e2017-12-19 19:08:05 +01003071 // Letterbox if any fullscreen mode is set.
3072 final int fl = mAttrs.flags;
3073 final int sysui = mSystemUiVisibility;
Adrian Roos2dfb7852018-01-15 13:41:37 +01003074 return (fl & FLAG_FULLSCREEN) != 0 || (sysui & (SYSTEM_UI_FLAG_FULLSCREEN)) != 0;
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -07003075 }
3076
Adrian Roos23df3a32018-03-15 15:41:13 +01003077 @Override
3078 public boolean isLetterboxedOverlappingWith(Rect rect) {
3079 return mAppToken != null && mAppToken.isLetterboxOverlappingWith(rect);
3080 }
3081
Chong Zhang3005e752015-09-18 18:46:28 -07003082 boolean isDragResizeChanged() {
Filip Gruszczynski3ddc5d62015-09-23 15:01:30 -07003083 return mDragResizing != computeDragResizing();
3084 }
3085
Wale Ogunwaled1c37912016-08-16 03:19:39 -07003086 @Override
Wale Ogunwale9bc47732016-08-10 14:44:22 -07003087 void setWaitingForDrawnIfResizingChanged() {
3088 if (isDragResizeChanged()) {
3089 mService.mWaitingForDrawn.add(this);
3090 }
Wale Ogunwaled1c37912016-08-16 03:19:39 -07003091 super.setWaitingForDrawnIfResizingChanged();
Wale Ogunwale9bc47732016-08-10 14:44:22 -07003092 }
3093
Jorim Jaggic662d8e2016-02-05 16:54:54 -08003094 /**
3095 * @return Whether we reported a drag resize change to the application or not already.
3096 */
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -07003097 private boolean isDragResizingChangeReported() {
Jorim Jaggic662d8e2016-02-05 16:54:54 -08003098 return mDragResizingChangeReported;
3099 }
3100
3101 /**
3102 * Resets the state whether we reported a drag resize change to the app.
3103 */
Wale Ogunwaled1c37912016-08-16 03:19:39 -07003104 @Override
Jorim Jaggic662d8e2016-02-05 16:54:54 -08003105 void resetDragResizingChangeReported() {
3106 mDragResizingChangeReported = false;
Wale Ogunwaled1c37912016-08-16 03:19:39 -07003107 super.resetDragResizingChangeReported();
Jorim Jaggic662d8e2016-02-05 16:54:54 -08003108 }
3109
Jorim Jaggidcf467c2015-11-05 13:59:32 +01003110 int getResizeMode() {
3111 return mResizeMode;
3112 }
3113
Wale Ogunwale360a8bc2016-10-10 13:25:26 -07003114 private boolean computeDragResizing() {
Wale Ogunwale5a2f2cb2015-09-17 12:31:55 -07003115 final Task task = getTask();
Filip Gruszczynski3ddc5d62015-09-23 15:01:30 -07003116 if (task == null) {
3117 return false;
3118 }
Tomasz Mikolajewskiaf20b8d2017-11-20 16:11:33 +09003119 if (!inSplitScreenWindowingMode() && !inFreeformWindowingMode()) {
Winson Chung2af04b32017-01-24 16:21:13 -08003120 return false;
3121 }
Jorim Jaggidd6e4c12016-02-17 22:13:43 -08003122 if (mAttrs.width != MATCH_PARENT || mAttrs.height != MATCH_PARENT) {
Jorim Jaggidd6e4c12016-02-17 22:13:43 -08003123 // Floating windows never enter drag resize mode.
3124 return false;
3125 }
Filip Gruszczynski3ddc5d62015-09-23 15:01:30 -07003126 if (task.isDragResizing()) {
3127 return true;
3128 }
Jorim Jaggi0429f352015-12-22 16:29:16 +01003129
3130 // If the bounds are currently frozen, it means that the layout size that the app sees
3131 // and the bounds we clip this window to might be different. In order to avoid holes, we
3132 // simulate that we are still resizing so the app fills the hole with the resizing
3133 // background.
Wale Ogunwale360a8bc2016-10-10 13:25:26 -07003134 return (getDisplayContent().mDividerControllerLocked.isResizing()
Jorim Jaggi0429f352015-12-22 16:29:16 +01003135 || mAppToken != null && !mAppToken.mFrozenBounds.isEmpty()) &&
Wale Ogunwale44f036f2017-09-29 05:09:09 -07003136 !task.inFreeformWindowingMode() && !isGoneForLayoutLw();
Jorim Jaggi9511b0f2016-01-29 19:12:44 -08003137
Chong Zhang3005e752015-09-18 18:46:28 -07003138 }
3139
3140 void setDragResizing() {
Jorim Jaggic662d8e2016-02-05 16:54:54 -08003141 final boolean resizing = computeDragResizing();
3142 if (resizing == mDragResizing) {
3143 return;
3144 }
3145 mDragResizing = resizing;
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +01003146 final Task task = getTask();
3147 if (task != null && task.isDragResizing()) {
3148 mResizeMode = task.getDragResizeMode();
3149 } else {
Wale Ogunwale360a8bc2016-10-10 13:25:26 -07003150 mResizeMode = mDragResizing && getDisplayContent().mDividerControllerLocked.isResizing()
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +01003151 ? DRAG_RESIZE_MODE_DOCKED_DIVIDER
3152 : DRAG_RESIZE_MODE_FREEFORM;
3153 }
Chong Zhang3005e752015-09-18 18:46:28 -07003154 }
3155
3156 boolean isDragResizing() {
3157 return mDragResizing;
Skuhnef932e562015-08-20 12:07:30 -07003158 }
3159
Robert Carr2487ce72016-04-07 15:18:45 -07003160 boolean isDockedResizing() {
Robert Carrfbbde852016-10-18 11:02:28 -07003161 return (mDragResizing && getResizeMode() == DRAG_RESIZE_MODE_DOCKED_DIVIDER)
3162 || (isChildWindow() && getParentWindow().isDockedResizing());
Robert Carr2487ce72016-04-07 15:18:45 -07003163 }
3164
Wale Ogunwale0d5609b2017-09-13 05:55:07 -07003165 @CallSuper
3166 @Override
Adrian Roos4921ccf2017-09-28 16:54:06 +02003167 public void writeToProto(ProtoOutputStream proto, long fieldId, boolean trim) {
Steven Timotiusaf03df62017-07-18 16:56:43 -07003168 final long token = proto.start(fieldId);
Adrian Roos4921ccf2017-09-28 16:54:06 +02003169 super.writeToProto(proto, WINDOW_CONTAINER, trim);
Steven Timotiusaf03df62017-07-18 16:56:43 -07003170 writeIdentifierToProto(proto, IDENTIFIER);
3171 proto.write(DISPLAY_ID, getDisplayId());
3172 proto.write(STACK_ID, getStackId());
3173 mAttrs.writeToProto(proto, ATTRIBUTES);
3174 mGivenContentInsets.writeToProto(proto, GIVEN_CONTENT_INSETS);
3175 mFrame.writeToProto(proto, FRAME);
3176 mContainingFrame.writeToProto(proto, CONTAINING_FRAME);
3177 mParentFrame.writeToProto(proto, PARENT_FRAME);
3178 mContentFrame.writeToProto(proto, CONTENT_FRAME);
3179 mContentInsets.writeToProto(proto, CONTENT_INSETS);
3180 mAttrs.surfaceInsets.writeToProto(proto, SURFACE_INSETS);
Jorim Jaggi45be1c4c2017-12-15 18:44:43 +01003181 mSurfacePosition.writeToProto(proto, SURFACE_POSITION);
Steven Timotiusaf03df62017-07-18 16:56:43 -07003182 mWinAnimator.writeToProto(proto, ANIMATOR);
3183 proto.write(ANIMATING_EXIT, mAnimatingExit);
3184 for (int i = 0; i < mChildren.size(); i++) {
Adrian Roos4921ccf2017-09-28 16:54:06 +02003185 mChildren.get(i).writeToProto(proto, CHILD_WINDOWS, trim);
Steven Timotiusaf03df62017-07-18 16:56:43 -07003186 }
Vishnu Nair1d0fa072018-01-04 07:53:00 -08003187 proto.write(REQUESTED_WIDTH, mRequestedWidth);
3188 proto.write(REQUESTED_HEIGHT, mRequestedHeight);
3189 proto.write(VIEW_VISIBILITY, mViewVisibility);
3190 proto.write(SYSTEM_UI_VISIBILITY, mSystemUiVisibility);
3191 proto.write(HAS_SURFACE, mHasSurface);
3192 proto.write(IS_READY_FOR_DISPLAY, isReadyForDisplay());
3193 mDisplayFrame.writeToProto(proto, DISPLAY_FRAME);
3194 mOverscanFrame.writeToProto(proto, OVERSCAN_FRAME);
3195 mVisibleFrame.writeToProto(proto, VISIBLE_FRAME);
3196 mDecorFrame.writeToProto(proto, DECOR_FRAME);
3197 mOutsetFrame.writeToProto(proto, OUTSET_FRAME);
3198 mOverscanInsets.writeToProto(proto, OVERSCAN_INSETS);
3199 mVisibleInsets.writeToProto(proto, VISIBLE_INSETS);
3200 mStableInsets.writeToProto(proto, STABLE_INSETS);
3201 mOutsets.writeToProto(proto, OUTSETS);
Adrian Roos6a4fa0e2018-03-05 19:50:16 +01003202 mDisplayCutout.getDisplayCutout().writeToProto(proto, CUTOUT);
Vishnu Nair1d0fa072018-01-04 07:53:00 -08003203 proto.write(REMOVE_ON_EXIT, mRemoveOnExit);
3204 proto.write(DESTROYING, mDestroying);
3205 proto.write(REMOVED, mRemoved);
3206 proto.write(IS_ON_SCREEN, isOnScreen());
3207 proto.write(IS_VISIBLE, isVisible());
Steven Timotiusaf03df62017-07-18 16:56:43 -07003208 proto.end(token);
3209 }
3210
Vishnu Nair9a3e4062018-01-11 08:42:54 -08003211 @Override
3212 public void writeIdentifierToProto(ProtoOutputStream proto, long fieldId) {
Steven Timotiusaf03df62017-07-18 16:56:43 -07003213 final long token = proto.start(fieldId);
3214 proto.write(HASH_CODE, System.identityHashCode(this));
3215 proto.write(USER_ID, UserHandle.getUserId(mOwnerUid));
3216 final CharSequence title = getWindowTag();
3217 if (title != null) {
3218 proto.write(TITLE, title.toString());
3219 }
3220 proto.end(token);
3221 }
3222
Jorim Jaggia5e10572017-11-15 14:36:26 +01003223 @Override
Dianne Hackborna44abeb2011-08-08 19:24:01 -07003224 void dump(PrintWriter pw, String prefix, boolean dumpAll) {
Wale Ogunwale30cc7bf2015-02-04 16:47:57 -08003225 final TaskStack stack = getStack();
Craig Mautnerdf88d732014-01-27 09:21:32 -08003226 pw.print(prefix); pw.print("mDisplayId="); pw.print(getDisplayId());
Wale Ogunwale30cc7bf2015-02-04 16:47:57 -08003227 if (stack != null) {
3228 pw.print(" stackId="); pw.print(stack.mStackId);
3229 }
Craig Mautner59c00972012-07-30 12:10:24 -07003230 pw.print(" mSession="); pw.print(mSession);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08003231 pw.print(" mClient="); pw.println(mClient.asBinder());
Craig Mautner88400d32012-09-30 12:35:45 -07003232 pw.print(prefix); pw.print("mOwnerUid="); pw.print(mOwnerUid);
Dianne Hackbornc2293022013-02-06 23:14:49 -08003233 pw.print(" mShowToOwnerOnly="); pw.print(mShowToOwnerOnly);
3234 pw.print(" package="); pw.print(mAttrs.packageName);
3235 pw.print(" appop="); pw.println(AppOpsManager.opToName(mAppOp));
Jorim Jaggi484851b2017-09-22 16:03:27 +02003236 pw.print(prefix); pw.print("mAttrs="); pw.println(mAttrs.toString(prefix));
Dianne Hackborna44abeb2011-08-08 19:24:01 -07003237 pw.print(prefix); pw.print("Requested w="); pw.print(mRequestedWidth);
3238 pw.print(" h="); pw.print(mRequestedHeight);
3239 pw.print(" mLayoutSeq="); pw.println(mLayoutSeq);
Dianne Hackborn1743b642012-03-12 17:04:43 -07003240 if (mRequestedWidth != mLastRequestedWidth || mRequestedHeight != mLastRequestedHeight) {
3241 pw.print(prefix); pw.print("LastRequested w="); pw.print(mLastRequestedWidth);
3242 pw.print(" h="); pw.println(mLastRequestedHeight);
3243 }
Wale Ogunwalee4343ef2016-07-19 08:00:46 -07003244 if (mIsChildWindow || mLayoutAttached) {
3245 pw.print(prefix); pw.print("mParentWindow="); pw.print(getParentWindow());
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08003246 pw.print(" mLayoutAttached="); pw.println(mLayoutAttached);
3247 }
3248 if (mIsImWindow || mIsWallpaper || mIsFloatingLayer) {
3249 pw.print(prefix); pw.print("mIsImWindow="); pw.print(mIsImWindow);
3250 pw.print(" mIsWallpaper="); pw.print(mIsWallpaper);
3251 pw.print(" mIsFloatingLayer="); pw.print(mIsFloatingLayer);
3252 pw.print(" mWallpaperVisible="); pw.println(mWallpaperVisible);
3253 }
Dianne Hackborna44abeb2011-08-08 19:24:01 -07003254 if (dumpAll) {
3255 pw.print(prefix); pw.print("mBaseLayer="); pw.print(mBaseLayer);
3256 pw.print(" mSubLayer="); pw.print(mSubLayer);
3257 pw.print(" mAnimLayer="); pw.print(mLayer); pw.print("+");
Craig Mautnerc2f9be02012-03-27 17:32:29 -07003258 pw.print("="); pw.print(mWinAnimator.mAnimLayer);
3259 pw.print(" mLastLayer="); pw.println(mWinAnimator.mLastLayer);
Dianne Hackborn6d05fd32011-11-19 14:36:15 -08003260 }
Dianne Hackborna44abeb2011-08-08 19:24:01 -07003261 if (dumpAll) {
3262 pw.print(prefix); pw.print("mToken="); pw.println(mToken);
Dianne Hackborna44abeb2011-08-08 19:24:01 -07003263 if (mAppToken != null) {
Wale Ogunwale6bab4cf2016-04-07 12:23:08 -07003264 pw.print(prefix); pw.print("mAppToken="); pw.println(mAppToken);
3265 pw.print(prefix); pw.print(" isAnimatingWithSavedSurface()=");
Bryce Lee6311c4b2017-07-06 14:09:29 -07003266 pw.print(" mAppDied=");pw.print(mAppDied);
3267 pw.print(prefix); pw.print("drawnStateEvaluated=");
3268 pw.print(getDrawnStateEvaluated());
3269 pw.print(prefix); pw.print("mightAffectAllDrawn=");
Jorim Jaggie7d2b852017-08-28 17:55:15 +02003270 pw.println(mightAffectAllDrawn());
Dianne Hackborna44abeb2011-08-08 19:24:01 -07003271 }
Dianne Hackborna44abeb2011-08-08 19:24:01 -07003272 pw.print(prefix); pw.print("mViewVisibility=0x");
3273 pw.print(Integer.toHexString(mViewVisibility));
Dianne Hackborna44abeb2011-08-08 19:24:01 -07003274 pw.print(" mHaveFrame="); pw.print(mHaveFrame);
3275 pw.print(" mObscured="); pw.println(mObscured);
Dianne Hackborn9a230e02011-10-06 11:51:27 -07003276 pw.print(prefix); pw.print("mSeq="); pw.print(mSeq);
3277 pw.print(" mSystemUiVisibility=0x");
3278 pw.println(Integer.toHexString(mSystemUiVisibility));
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08003279 }
Dianne Hackbornb6b23ec2013-02-11 19:29:06 -08003280 if (!mPolicyVisibility || !mPolicyVisibilityAfterAnim || !mAppOpVisibility
Wale Ogunwale01ad4342017-06-30 07:07:01 -07003281 || isParentWindowHidden()|| mPermanentlyHidden || mForceHideNonSystemOverlayWindow) {
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08003282 pw.print(prefix); pw.print("mPolicyVisibility=");
3283 pw.print(mPolicyVisibility);
3284 pw.print(" mPolicyVisibilityAfterAnim=");
3285 pw.print(mPolicyVisibilityAfterAnim);
Dianne Hackbornb6b23ec2013-02-11 19:29:06 -08003286 pw.print(" mAppOpVisibility=");
3287 pw.print(mAppOpVisibility);
Wale Ogunwale3c1170d2016-12-02 14:44:52 -08003288 pw.print(" parentHidden="); pw.print(isParentWindowHidden());
Wale Ogunwale01ad4342017-06-30 07:07:01 -07003289 pw.print(" mPermanentlyHidden="); pw.print(mPermanentlyHidden);
3290 pw.print(" mForceHideNonSystemOverlayWindow="); pw.println(
3291 mForceHideNonSystemOverlayWindow);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08003292 }
Dianne Hackbornb7ff51b2012-01-23 19:15:27 -08003293 if (!mRelayoutCalled || mLayoutNeeded) {
3294 pw.print(prefix); pw.print("mRelayoutCalled="); pw.print(mRelayoutCalled);
3295 pw.print(" mLayoutNeeded="); pw.println(mLayoutNeeded);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08003296 }
Dianne Hackborna44abeb2011-08-08 19:24:01 -07003297 if (dumpAll) {
3298 pw.print(prefix); pw.print("mGivenContentInsets=");
3299 mGivenContentInsets.printShortString(pw);
3300 pw.print(" mGivenVisibleInsets=");
3301 mGivenVisibleInsets.printShortString(pw);
3302 pw.println();
3303 if (mTouchableInsets != 0 || mGivenInsetsPending) {
3304 pw.print(prefix); pw.print("mTouchableInsets="); pw.print(mTouchableInsets);
3305 pw.print(" mGivenInsetsPending="); pw.println(mGivenInsetsPending);
Dianne Hackborna4b7f2f2012-05-21 11:28:41 -07003306 Region region = new Region();
3307 getTouchableRegion(region);
3308 pw.print(prefix); pw.print("touchable region="); pw.println(region);
Dianne Hackborna44abeb2011-08-08 19:24:01 -07003309 }
Andrii Kulian9d91ca62016-09-29 22:28:09 -07003310 pw.print(prefix); pw.print("mFullConfiguration="); pw.println(getConfiguration());
3311 pw.print(prefix); pw.print("mLastReportedConfiguration=");
Bryce Lee2b17afd2017-09-21 10:38:20 -07003312 pw.println(getLastReportedConfiguration());
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08003313 }
Craig Mautnerc8bc97e2012-04-02 12:54:54 -07003314 pw.print(prefix); pw.print("mHasSurface="); pw.print(mHasSurface);
Chong Zhanga8975bd2016-01-28 17:13:47 -08003315 pw.print(" isReadyForDisplay()="); pw.print(isReadyForDisplay());
Wale Ogunwale9017ec02016-02-25 08:55:25 -08003316 pw.print(" mWindowRemovalAllowed="); pw.println(mWindowRemovalAllowed);
Dianne Hackborna44abeb2011-08-08 19:24:01 -07003317 if (dumpAll) {
3318 pw.print(prefix); pw.print("mFrame="); mFrame.printShortString(pw);
3319 pw.print(" last="); mLastFrame.printShortString(pw);
3320 pw.println();
3321 }
Dianne Hackbornffb3d932011-05-17 17:44:51 -07003322 if (mEnforceSizeCompat) {
3323 pw.print(prefix); pw.print("mCompatFrame="); mCompatFrame.printShortString(pw);
Dianne Hackbornffb3d932011-05-17 17:44:51 -07003324 pw.println();
3325 }
Dianne Hackborna44abeb2011-08-08 19:24:01 -07003326 if (dumpAll) {
Dianne Hackborn5c58de32012-04-28 19:52:37 -07003327 pw.print(prefix); pw.print("Frames: containing=");
Dianne Hackborna44abeb2011-08-08 19:24:01 -07003328 mContainingFrame.printShortString(pw);
Dianne Hackborn5c58de32012-04-28 19:52:37 -07003329 pw.print(" parent="); mParentFrame.printShortString(pw);
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003330 pw.println();
3331 pw.print(prefix); pw.print(" display="); mDisplayFrame.printShortString(pw);
3332 pw.print(" overscan="); mOverscanFrame.printShortString(pw);
Dianne Hackborna44abeb2011-08-08 19:24:01 -07003333 pw.println();
Dianne Hackborn85afd1b2012-05-13 13:31:06 -07003334 pw.print(prefix); pw.print(" content="); mContentFrame.printShortString(pw);
Dianne Hackborn5c58de32012-04-28 19:52:37 -07003335 pw.print(" visible="); mVisibleFrame.printShortString(pw);
Dianne Hackborna44abeb2011-08-08 19:24:01 -07003336 pw.println();
John Spurlock46646232013-09-30 22:32:42 -04003337 pw.print(prefix); pw.print(" decor="); mDecorFrame.printShortString(pw);
3338 pw.println();
Filip Gruszczynski2217f612015-05-26 11:32:08 -07003339 pw.print(prefix); pw.print(" outset="); mOutsetFrame.printShortString(pw);
3340 pw.println();
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003341 pw.print(prefix); pw.print("Cur insets: overscan=");
3342 mOverscanInsets.printShortString(pw);
3343 pw.print(" content="); mContentInsets.printShortString(pw);
Dianne Hackborn5c58de32012-04-28 19:52:37 -07003344 pw.print(" visible="); mVisibleInsets.printShortString(pw);
Adrian Roosfa104232014-06-20 16:10:14 -07003345 pw.print(" stable="); mStableInsets.printShortString(pw);
Wale Ogunwale6bab4cf2016-04-07 12:23:08 -07003346 pw.print(" surface="); mAttrs.surfaceInsets.printShortString(pw);
Filip Gruszczynski2217f612015-05-26 11:32:08 -07003347 pw.print(" outsets="); mOutsets.printShortString(pw);
Adrian Roos6a4fa0e2018-03-05 19:50:16 +01003348 pw.print(" cutout=" + mDisplayCutout.getDisplayCutout());
Dianne Hackborn5c58de32012-04-28 19:52:37 -07003349 pw.println();
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003350 pw.print(prefix); pw.print("Lst insets: overscan=");
3351 mLastOverscanInsets.printShortString(pw);
3352 pw.print(" content="); mLastContentInsets.printShortString(pw);
Dianne Hackborn5c58de32012-04-28 19:52:37 -07003353 pw.print(" visible="); mLastVisibleInsets.printShortString(pw);
Adrian Roosfa104232014-06-20 16:10:14 -07003354 pw.print(" stable="); mLastStableInsets.printShortString(pw);
Filip Gruszczynski2217f612015-05-26 11:32:08 -07003355 pw.print(" physical="); mLastOutsets.printShortString(pw);
3356 pw.print(" outset="); mLastOutsets.printShortString(pw);
Adrian Roos5c6b6222017-11-07 17:36:10 +01003357 pw.print(" cutout=" + mLastDisplayCutout);
Dianne Hackborna44abeb2011-08-08 19:24:01 -07003358 pw.println();
3359 }
Jorim Jaggia5e10572017-11-15 14:36:26 +01003360 super.dump(pw, prefix, dumpAll);
Dianne Hackborn529e7442012-11-01 14:22:28 -07003361 pw.print(prefix); pw.print(mWinAnimator); pw.println(":");
3362 mWinAnimator.dump(pw, prefix + " ", dumpAll);
Wale Ogunwalec48a3542016-02-19 15:18:45 -08003363 if (mAnimatingExit || mRemoveOnExit || mDestroying || mRemoved) {
3364 pw.print(prefix); pw.print("mAnimatingExit="); pw.print(mAnimatingExit);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08003365 pw.print(" mRemoveOnExit="); pw.print(mRemoveOnExit);
3366 pw.print(" mDestroying="); pw.print(mDestroying);
3367 pw.print(" mRemoved="); pw.println(mRemoved);
3368 }
chaviw40234662018-02-07 09:37:16 -08003369 if (getOrientationChanging() || mAppFreezing || mReportOrientationChanged) {
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08003370 pw.print(prefix); pw.print("mOrientationChanging=");
3371 pw.print(mOrientationChanging);
Bryce Lee8c3cf382017-07-06 19:47:10 -07003372 pw.print(" configOrientationChanging=");
Bryce Lee2b17afd2017-09-21 10:38:20 -07003373 pw.print(getLastReportedConfiguration().orientation
Bryce Lee8c3cf382017-07-06 19:47:10 -07003374 != getConfiguration().orientation);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08003375 pw.print(" mAppFreezing="); pw.print(mAppFreezing);
Andrii Kulianb2e37802017-01-11 00:36:44 -08003376 pw.print(" mReportOrientationChanged="); pw.println(mReportOrientationChanged);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08003377 }
Dianne Hackborna57c6952013-03-29 14:46:40 -07003378 if (mLastFreezeDuration != 0) {
3379 pw.print(prefix); pw.print("mLastFreezeDuration=");
3380 TimeUtils.formatDuration(mLastFreezeDuration, pw); pw.println();
3381 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08003382 if (mHScale != 1 || mVScale != 1) {
3383 pw.print(prefix); pw.print("mHScale="); pw.print(mHScale);
3384 pw.print(" mVScale="); pw.println(mVScale);
3385 }
3386 if (mWallpaperX != -1 || mWallpaperY != -1) {
3387 pw.print(prefix); pw.print("mWallpaperX="); pw.print(mWallpaperX);
3388 pw.print(" mWallpaperY="); pw.println(mWallpaperY);
3389 }
3390 if (mWallpaperXStep != -1 || mWallpaperYStep != -1) {
3391 pw.print(prefix); pw.print("mWallpaperXStep="); pw.print(mWallpaperXStep);
3392 pw.print(" mWallpaperYStep="); pw.println(mWallpaperYStep);
3393 }
Dianne Hackborn067e5f62014-09-07 23:14:30 -07003394 if (mWallpaperDisplayOffsetX != Integer.MIN_VALUE
3395 || mWallpaperDisplayOffsetY != Integer.MIN_VALUE) {
3396 pw.print(prefix); pw.print("mWallpaperDisplayOffsetX=");
3397 pw.print(mWallpaperDisplayOffsetX);
3398 pw.print(" mWallpaperDisplayOffsetY=");
3399 pw.println(mWallpaperDisplayOffsetY);
3400 }
Jeff Brownc2932a12014-11-20 18:04:05 -08003401 if (mDrawLock != null) {
Wale Ogunwale85b90ab2015-04-27 20:54:47 -07003402 pw.print(prefix); pw.println("mDrawLock=" + mDrawLock);
Jeff Brownc2932a12014-11-20 18:04:05 -08003403 }
Jorim Jaggi9511b0f2016-01-29 19:12:44 -08003404 if (isDragResizing()) {
3405 pw.print(prefix); pw.println("isDragResizing=" + isDragResizing());
3406 }
3407 if (computeDragResizing()) {
3408 pw.print(prefix); pw.println("computeDragResizing=" + computeDragResizing());
3409 }
Bryce Lee6311c4b2017-07-06 14:09:29 -07003410 pw.print(prefix); pw.println("isOnScreen=" + isOnScreen());
3411 pw.print(prefix); pw.println("isVisible=" + isVisible());
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08003412 }
Craig Mautner164d4bb2012-11-26 13:51:23 -08003413
Wale Ogunwale9adfe572016-09-08 20:43:58 -07003414 @Override
3415 String getName() {
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08003416 return Integer.toHexString(System.identityHashCode(this))
Jorim Jaggia5e10572017-11-15 14:36:26 +01003417 + " " + getWindowTag();
Wale Ogunwalecad05a02015-09-25 10:41:44 -07003418 }
3419
Robert Carra1eb4392015-12-10 12:43:51 -08003420 CharSequence getWindowTag() {
Wale Ogunwalecad05a02015-09-25 10:41:44 -07003421 CharSequence tag = mAttrs.getTitle();
3422 if (tag == null || tag.length() <= 0) {
3423 tag = mAttrs.packageName;
3424 }
3425 return tag;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08003426 }
3427
3428 @Override
3429 public String toString() {
Wale Ogunwalecad05a02015-09-25 10:41:44 -07003430 final CharSequence title = getWindowTag();
Wale Ogunwalec48a3542016-02-19 15:18:45 -08003431 if (mStringNameCache == null || mLastTitle != title || mWasExiting != mAnimatingExit) {
Dianne Hackbornc2293022013-02-06 23:14:49 -08003432 mLastTitle = title;
Wale Ogunwalec48a3542016-02-19 15:18:45 -08003433 mWasExiting = mAnimatingExit;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08003434 mStringNameCache = "Window{" + Integer.toHexString(System.identityHashCode(this))
Wale Ogunwalee4343ef2016-07-19 08:00:46 -07003435 + " u" + UserHandle.getUserId(mOwnerUid)
Wale Ogunwalec48a3542016-02-19 15:18:45 -08003436 + " " + mLastTitle + (mAnimatingExit ? " EXITING}" : "}");
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08003437 }
3438 return mStringNameCache;
3439 }
Robert Carr58f29132015-10-29 14:19:05 -07003440
Chia-I Wue6bcaf12016-05-27 10:58:48 +08003441 void transformClipRectFromScreenToSurfaceSpace(Rect clipRect) {
Robert Carr58f29132015-10-29 14:19:05 -07003442 if (mHScale >= 0) {
Chia-I Wue6bcaf12016-05-27 10:58:48 +08003443 clipRect.left = (int) (clipRect.left / mHScale);
3444 clipRect.right = (int) Math.ceil(clipRect.right / mHScale);
Robert Carr58f29132015-10-29 14:19:05 -07003445 }
3446 if (mVScale >= 0) {
Chia-I Wue6bcaf12016-05-27 10:58:48 +08003447 clipRect.top = (int) (clipRect.top / mVScale);
3448 clipRect.bottom = (int) Math.ceil(clipRect.bottom / mVScale);
Robert Carr58f29132015-10-29 14:19:05 -07003449 }
3450 }
Robert Carr31e28482015-12-02 16:53:18 -08003451
Jorim Jaggif5834272016-04-04 20:25:41 -07003452 void applyGravityAndUpdateFrame(Rect containingFrame, Rect displayFrame) {
3453 final int pw = containingFrame.width();
3454 final int ph = containingFrame.height();
Robert Carr31e28482015-12-02 16:53:18 -08003455 final Task task = getTask();
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -07003456 final boolean inNonFullscreenContainer = !inFullscreenContainer();
Jorim Jaggi5f23a572016-04-22 15:05:50 -07003457 final boolean noLimits = (mAttrs.flags & FLAG_LAYOUT_NO_LIMITS) != 0;
3458
3459 // We need to fit it to the display if either
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -07003460 // a) The window is in a fullscreen container, or we don't have a task (we assume fullscreen
3461 // for the taskless windows)
Robert Carr6f44db12016-07-21 14:54:43 -07003462 // b) If it's a secondary app window, we also need to fit it to the display unless
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -07003463 // FLAG_LAYOUT_NO_LIMITS is set. This is so we place Popups, dialogs, and similar windows on
3464 // screen, but SurfaceViews want to be always at a specific location so we don't fit it to
3465 // the display.
3466 final boolean fitToDisplay = (task == null || !inNonFullscreenContainer)
Robert Carr6f44db12016-07-21 14:54:43 -07003467 || ((mAttrs.type != TYPE_BASE_APPLICATION) && !noLimits);
Robert Carr31e28482015-12-02 16:53:18 -08003468 float x, y;
3469 int w,h;
3470
3471 if ((mAttrs.flags & FLAG_SCALED) != 0) {
3472 if (mAttrs.width < 0) {
3473 w = pw;
3474 } else if (mEnforceSizeCompat) {
3475 w = (int)(mAttrs.width * mGlobalScale + .5f);
3476 } else {
3477 w = mAttrs.width;
3478 }
3479 if (mAttrs.height < 0) {
3480 h = ph;
3481 } else if (mEnforceSizeCompat) {
3482 h = (int)(mAttrs.height * mGlobalScale + .5f);
3483 } else {
3484 h = mAttrs.height;
3485 }
3486 } else {
3487 if (mAttrs.width == MATCH_PARENT) {
3488 w = pw;
3489 } else if (mEnforceSizeCompat) {
3490 w = (int)(mRequestedWidth * mGlobalScale + .5f);
3491 } else {
3492 w = mRequestedWidth;
3493 }
3494 if (mAttrs.height == MATCH_PARENT) {
3495 h = ph;
3496 } else if (mEnforceSizeCompat) {
3497 h = (int)(mRequestedHeight * mGlobalScale + .5f);
3498 } else {
3499 h = mRequestedHeight;
3500 }
3501 }
3502
3503 if (mEnforceSizeCompat) {
3504 x = mAttrs.x * mGlobalScale;
3505 y = mAttrs.y * mGlobalScale;
3506 } else {
3507 x = mAttrs.x;
3508 y = mAttrs.y;
3509 }
3510
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -07003511 if (inNonFullscreenContainer && !layoutInParentFrame()) {
Wale Ogunwale79f268d2015-12-18 08:25:47 -08003512 // Make sure window fits in containing frame since it is in a non-fullscreen task as
Robert Carr31e28482015-12-02 16:53:18 -08003513 // required by {@link Gravity#apply} call.
3514 w = Math.min(w, pw);
3515 h = Math.min(h, ph);
3516 }
3517
3518 // Set mFrame
Jorim Jaggif5834272016-04-04 20:25:41 -07003519 Gravity.apply(mAttrs.gravity, w, h, containingFrame,
Robert Carr31e28482015-12-02 16:53:18 -08003520 (int) (x + mAttrs.horizontalMargin * pw),
3521 (int) (y + mAttrs.verticalMargin * ph), mFrame);
3522
3523 // Now make sure the window fits in the overall display frame.
Robert Carre6275582016-02-29 15:45:45 -08003524 if (fitToDisplay) {
Jorim Jaggif5834272016-04-04 20:25:41 -07003525 Gravity.applyDisplay(mAttrs.gravity, displayFrame, mFrame);
Robert Carre6275582016-02-29 15:45:45 -08003526 }
Robert Carr6e18c5e2016-02-29 15:57:13 -08003527
3528 // We need to make sure we update the CompatFrame as it is used for
3529 // cropping decisions, etc, on systems where we lack a decor layer.
3530 mCompatFrame.set(mFrame);
3531 if (mEnforceSizeCompat) {
3532 // See comparable block in computeFrameLw.
3533 mCompatFrame.scale(mInvGlobalScale);
3534 }
Robert Carr31e28482015-12-02 16:53:18 -08003535 }
Robert Carr51a1b872015-12-08 14:03:13 -08003536
3537 boolean isChildWindow() {
Wale Ogunwalee4343ef2016-07-19 08:00:46 -07003538 return mIsChildWindow;
Wale Ogunwaleadde52e2016-07-16 13:11:55 -07003539 }
3540
Robert Carrf3b72c72016-03-21 18:16:39 -07003541 boolean layoutInParentFrame() {
Wale Ogunwalee4343ef2016-07-19 08:00:46 -07003542 return mIsChildWindow
3543 && (mAttrs.privateFlags & PRIVATE_FLAG_LAYOUT_CHILD_WINDOW_IN_PARENT_FRAME) != 0;
Robert Carrf3b72c72016-03-21 18:16:39 -07003544 }
3545
Wale Ogunwale01ad4342017-06-30 07:07:01 -07003546 /**
3547 * Returns true if any window added by an application process that if of type
3548 * {@link android.view.WindowManager.LayoutParams#TYPE_TOAST} or that requires that requires
3549 * {@link android.app.AppOpsManager#OP_SYSTEM_ALERT_WINDOW} permission should be hidden when
3550 * this window is visible.
3551 */
3552 boolean hideNonSystemOverlayWindowsWhenVisible() {
3553 return (mAttrs.privateFlags & PRIVATE_FLAG_HIDE_NON_SYSTEM_OVERLAY_WINDOWS) != 0
3554 && mSession.mCanHideNonSystemOverlayWindows;
3555 }
3556
Wale Ogunwalecaa53af2016-07-17 14:50:26 -07003557 /** Returns the parent window if this is a child of another window, else null. */
3558 WindowState getParentWindow() {
Wale Ogunwalee4343ef2016-07-19 08:00:46 -07003559 // NOTE: We are not calling getParent() directly as the WindowState might be a child of a
3560 // WindowContainer that isn't a WindowState.
3561 return (mIsChildWindow) ? ((WindowState) super.getParent()) : null;
Wale Ogunwalecaa53af2016-07-17 14:50:26 -07003562 }
3563
3564 /** Returns the topmost parent window if this is a child of another window, else this. */
3565 WindowState getTopParentWindow() {
Wale Ogunwaleea92d972016-12-08 07:33:13 -08003566 WindowState current = this;
3567 WindowState topParent = current;
3568 while (current != null && current.mIsChildWindow) {
3569 current = current.getParentWindow();
3570 // Parent window can be null if the child is detached from it's parent already, but
3571 // someone still has a reference to access it. So, we return the top parent value we
3572 // already have instead of null.
3573 if (current != null) {
3574 topParent = current;
3575 }
Wale Ogunwalecaa53af2016-07-17 14:50:26 -07003576 }
Wale Ogunwaleea92d972016-12-08 07:33:13 -08003577 return topParent;
Wale Ogunwalecaa53af2016-07-17 14:50:26 -07003578 }
3579
Wale Ogunwale9d147902016-07-16 11:58:55 -07003580 boolean isParentWindowHidden() {
Wale Ogunwalee4343ef2016-07-19 08:00:46 -07003581 final WindowState parent = getParentWindow();
Wale Ogunwaleea92d972016-12-08 07:33:13 -08003582 return parent != null && parent.mHidden;
Wale Ogunwale9d147902016-07-16 11:58:55 -07003583 }
3584
Wale Ogunwale9bc47732016-08-10 14:44:22 -07003585 void setWillReplaceWindow(boolean animate) {
3586 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07003587 final WindowState c = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07003588 c.setWillReplaceWindow(animate);
3589 }
3590
Wale Ogunwale6d8e06b2016-01-05 10:43:25 -08003591 if ((mAttrs.privateFlags & PRIVATE_FLAG_WILL_NOT_REPLACE_ON_RELAUNCH) != 0
3592 || mAttrs.type == TYPE_APPLICATION_STARTING) {
3593 // We don't set replacing on starting windows since they are added by window manager and
3594 // not the client so won't be replaced by the client.
3595 return;
Robert Carra1eb4392015-12-10 12:43:51 -08003596 }
Wale Ogunwale6d8e06b2016-01-05 10:43:25 -08003597
3598 mWillReplaceWindow = true;
Wale Ogunwale9bc47732016-08-10 14:44:22 -07003599 mReplacementWindow = null;
Wale Ogunwale6d8e06b2016-01-05 10:43:25 -08003600 mAnimateReplacingWindow = animate;
Robert Carra1eb4392015-12-10 12:43:51 -08003601 }
Chong Zhangf596cd52016-01-05 13:42:44 -08003602
Wale Ogunwale9bc47732016-08-10 14:44:22 -07003603 void clearWillReplaceWindow() {
Chong Zhangf596cd52016-01-05 13:42:44 -08003604 mWillReplaceWindow = false;
Wale Ogunwale9bc47732016-08-10 14:44:22 -07003605 mReplacementWindow = null;
Chong Zhangf596cd52016-01-05 13:42:44 -08003606 mAnimateReplacingWindow = false;
Wale Ogunwale9bc47732016-08-10 14:44:22 -07003607
3608 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07003609 final WindowState c = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07003610 c.clearWillReplaceWindow();
3611 }
3612 }
3613
3614 boolean waitingForReplacement() {
3615 if (mWillReplaceWindow) {
3616 return true;
3617 }
3618
3619 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07003620 final WindowState c = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07003621 if (c.waitingForReplacement()) {
3622 return true;
3623 }
3624 }
3625 return false;
Chong Zhangf596cd52016-01-05 13:42:44 -08003626 }
Vladislav Kaznacheev989b58a2016-02-10 12:19:33 -08003627
Chong Zhang4d7369a2016-04-25 16:09:14 -07003628 void requestUpdateWallpaperIfNeeded() {
Wale Ogunwale360a8bc2016-10-10 13:25:26 -07003629 final DisplayContent dc = getDisplayContent();
3630 if (dc != null && (mAttrs.flags & FLAG_SHOW_WALLPAPER) != 0) {
3631 dc.pendingLayoutChanges |= FINISH_LAYOUT_REDO_WALLPAPER;
3632 dc.setLayoutNeeded();
Chong Zhang4d7369a2016-04-25 16:09:14 -07003633 mService.mWindowPlacerLocked.requestTraversal();
3634 }
Wale Ogunwale9bc47732016-08-10 14:44:22 -07003635
3636 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07003637 final WindowState c = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07003638 c.requestUpdateWallpaperIfNeeded();
3639 }
Chong Zhang4d7369a2016-04-25 16:09:14 -07003640 }
3641
Vladislav Kaznacheev989b58a2016-02-10 12:19:33 -08003642 float translateToWindowX(float x) {
3643 float winX = x - mFrame.left;
3644 if (mEnforceSizeCompat) {
3645 winX *= mGlobalScale;
3646 }
3647 return winX;
3648 }
3649
3650 float translateToWindowY(float y) {
3651 float winY = y - mFrame.top;
3652 if (mEnforceSizeCompat) {
3653 winY *= mGlobalScale;
3654 }
3655 return winY;
3656 }
Robert Carrd1a010f2016-04-07 22:36:22 -07003657
3658 // During activity relaunch due to resize, we sometimes use window replacement
3659 // for only child windows (as the main window is handled by window preservation)
3660 // and the big surface.
3661 //
Chong Zhangfea963e2016-08-15 17:14:16 -07003662 // Though windows of TYPE_APPLICATION or TYPE_DRAWN_APPLICATION (as opposed to
3663 // TYPE_BASE_APPLICATION) are not children in the sense of an attached window,
3664 // we also want to replace them at such phases, as they won't be covered by window
3665 // preservation, and in general we expect them to return following relaunch.
Robert Carrd1a010f2016-04-07 22:36:22 -07003666 boolean shouldBeReplacedWithChildren() {
Chong Zhang921f8e32016-08-17 14:26:57 -07003667 return mIsChildWindow || mAttrs.type == TYPE_APPLICATION
Chong Zhangfea963e2016-08-15 17:14:16 -07003668 || mAttrs.type == TYPE_DRAWN_APPLICATION;
Robert Carrd1a010f2016-04-07 22:36:22 -07003669 }
Robert Carrfd10cd12016-06-29 16:41:50 -07003670
Wale Ogunwale9bc47732016-08-10 14:44:22 -07003671 void setWillReplaceChildWindows() {
3672 if (shouldBeReplacedWithChildren()) {
3673 setWillReplaceWindow(false /* animate */);
3674 }
3675 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07003676 final WindowState c = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07003677 c.setWillReplaceChildWindows();
3678 }
3679 }
3680
3681 WindowState getReplacingWindow() {
3682 if (mAnimatingExit && mWillReplaceWindow && mAnimateReplacingWindow) {
3683 return this;
3684 }
3685 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07003686 final WindowState c = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07003687 final WindowState replacing = c.getReplacingWindow();
3688 if (replacing != null) {
3689 return replacing;
3690 }
3691 }
3692 return null;
3693 }
3694
Jorim Jaggife762342016-10-13 14:33:27 +02003695 @Override
Robert Carrfd10cd12016-06-29 16:41:50 -07003696 public int getRotationAnimationHint() {
3697 if (mAppToken != null) {
3698 return mAppToken.mRotationAnimationHint;
3699 } else {
3700 return -1;
3701 }
3702 }
Wale Ogunwale9d147902016-07-16 11:58:55 -07003703
Jorim Jaggife762342016-10-13 14:33:27 +02003704 @Override
3705 public boolean isInputMethodWindow() {
3706 return mIsImWindow;
3707 }
3708
Wale Ogunwale9d147902016-07-16 11:58:55 -07003709 // This must be called while inside a transaction.
3710 boolean performShowLocked() {
3711 if (isHiddenFromUserLocked()) {
3712 if (DEBUG_VISIBILITY) Slog.w(TAG, "hiding " + this + ", belonging to " + mOwnerUid);
3713 hideLw(false);
3714 return false;
3715 }
3716
3717 logPerformShow("performShow on ");
3718
Jorim Jaggia50da602016-12-29 11:51:42 +01003719 final int drawState = mWinAnimator.mDrawState;
3720 if ((drawState == HAS_DRAWN || drawState == READY_TO_SHOW)
3721 && mAttrs.type != TYPE_APPLICATION_STARTING && mAppToken != null) {
3722 mAppToken.onFirstWindowDrawn(this, mWinAnimator);
3723 }
3724
Jorim Jaggib0d27342016-11-01 16:10:42 -07003725 if (mWinAnimator.mDrawState != READY_TO_SHOW || !isReadyForDisplay()) {
Wale Ogunwale9d147902016-07-16 11:58:55 -07003726 return false;
3727 }
3728
3729 logPerformShow("Showing ");
3730
3731 mService.enableScreenIfNeededLocked();
3732 mWinAnimator.applyEnterAnimationLocked();
3733
3734 // Force the show in the next prepareSurfaceLocked() call.
3735 mWinAnimator.mLastAlpha = -1;
Robert Carre13b58e2017-08-31 14:50:44 -07003736 if (DEBUG_ANIM) Slog.v(TAG,
Wale Ogunwale9d147902016-07-16 11:58:55 -07003737 "performShowLocked: mDrawState=HAS_DRAWN in " + this);
3738 mWinAnimator.mDrawState = HAS_DRAWN;
3739 mService.scheduleAnimationLocked();
3740
3741 if (mHidden) {
3742 mHidden = false;
3743 final DisplayContent displayContent = getDisplayContent();
3744
Wale Ogunwalee4343ef2016-07-19 08:00:46 -07003745 for (int i = mChildren.size() - 1; i >= 0; --i) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07003746 final WindowState c = mChildren.get(i);
Wale Ogunwale9d147902016-07-16 11:58:55 -07003747 if (c.mWinAnimator.mSurfaceController != null) {
3748 c.performShowLocked();
3749 // It hadn't been shown, which means layout not performed on it, so now we
3750 // want to make sure to do a layout. If called from within the transaction
3751 // loop, this will cause it to restart with a new layout.
3752 if (displayContent != null) {
Wale Ogunwale2b06bfc2016-09-28 14:17:05 -07003753 displayContent.setLayoutNeeded();
Wale Ogunwale9d147902016-07-16 11:58:55 -07003754 }
3755 }
3756 }
3757 }
3758
Wale Ogunwale9d147902016-07-16 11:58:55 -07003759 if (mAttrs.type == TYPE_INPUT_METHOD) {
Wale Ogunwale360a8bc2016-10-10 13:25:26 -07003760 getDisplayContent().mDividerControllerLocked.resetImeHideRequested();
Wale Ogunwale9d147902016-07-16 11:58:55 -07003761 }
3762
3763 return true;
3764 }
3765
Wale Ogunwale360a8bc2016-10-10 13:25:26 -07003766 private void logPerformShow(String prefix) {
Wale Ogunwale9d147902016-07-16 11:58:55 -07003767 if (DEBUG_VISIBILITY
Jorim Jaggie4b0f282017-05-17 15:10:29 +02003768 || (DEBUG_STARTING_WINDOW_VERBOSE && mAttrs.type == TYPE_APPLICATION_STARTING)) {
Wale Ogunwale9d147902016-07-16 11:58:55 -07003769 Slog.v(TAG, prefix + this
3770 + ": mDrawState=" + mWinAnimator.drawStateToString()
Jorim Jaggib0d27342016-11-01 16:10:42 -07003771 + " readyForDisplay=" + isReadyForDisplay()
Wale Ogunwale9d147902016-07-16 11:58:55 -07003772 + " starting=" + (mAttrs.type == TYPE_APPLICATION_STARTING)
3773 + " during animation: policyVis=" + mPolicyVisibility
3774 + " parentHidden=" + isParentWindowHidden()
3775 + " tok.hiddenRequested="
Wale Ogunwale360a8bc2016-10-10 13:25:26 -07003776 + (mAppToken != null && mAppToken.hiddenRequested)
Jorim Jaggif5f9e122017-10-24 18:21:09 +02003777 + " tok.hidden=" + (mAppToken != null && mAppToken.isHidden())
Jorim Jaggia5e10572017-11-15 14:36:26 +01003778 + " animationSet=" + mWinAnimator.isAnimationSet()
Wale Ogunwale9d147902016-07-16 11:58:55 -07003779 + " tok animating="
Jorim Jaggif5f9e122017-10-24 18:21:09 +02003780 + (mAppToken != null && mAppToken.isSelfAnimating())
Wale Ogunwale9d147902016-07-16 11:58:55 -07003781 + " Callers=" + Debug.getCallers(4));
3782 }
3783 }
Wale Ogunwaleadde52e2016-07-16 13:11:55 -07003784
3785 WindowInfo getWindowInfo() {
3786 WindowInfo windowInfo = WindowInfo.obtain();
3787 windowInfo.type = mAttrs.type;
3788 windowInfo.layer = mLayer;
3789 windowInfo.token = mClient.asBinder();
Phil Weaver5dc3ebc2017-08-16 13:04:20 -07003790 if (mAppToken != null) {
3791 windowInfo.activityToken = mAppToken.appToken.asBinder();
3792 }
Wale Ogunwaleadde52e2016-07-16 13:11:55 -07003793 windowInfo.title = mAttrs.accessibilityTitle;
Phil Weaverbb2f28a2017-12-22 09:44:28 -08003794 // Panel windows have no public way to set the a11y title directly. Use the
3795 // regular title as a fallback.
3796 if (TextUtils.isEmpty(windowInfo.title)
3797 && (mAttrs.type >= WindowManager.LayoutParams.FIRST_SUB_WINDOW)
3798 && (mAttrs.type <= WindowManager.LayoutParams.LAST_SUB_WINDOW)) {
3799 windowInfo.title = mAttrs.getTitle();
3800 }
Wale Ogunwaleadde52e2016-07-16 13:11:55 -07003801 windowInfo.accessibilityIdOfAnchor = mAttrs.accessibilityIdOfAnchor;
3802 windowInfo.focused = isFocused();
Phil Weaverf00cd142017-03-03 13:44:00 -08003803 Task task = getTask();
Wale Ogunwale44f036f2017-09-29 05:09:09 -07003804 windowInfo.inPictureInPicture = (task != null) && task.inPinnedWindowingMode();
Wale Ogunwaleadde52e2016-07-16 13:11:55 -07003805
Wale Ogunwalee4343ef2016-07-19 08:00:46 -07003806 if (mIsChildWindow) {
3807 windowInfo.parentToken = getParentWindow().mClient.asBinder();
Wale Ogunwaleadde52e2016-07-16 13:11:55 -07003808 }
3809
Wale Ogunwalee4343ef2016-07-19 08:00:46 -07003810 final int childCount = mChildren.size();
Wale Ogunwaleadde52e2016-07-16 13:11:55 -07003811 if (childCount > 0) {
3812 if (windowInfo.childTokens == null) {
Wale Ogunwalee4343ef2016-07-19 08:00:46 -07003813 windowInfo.childTokens = new ArrayList(childCount);
Wale Ogunwaleadde52e2016-07-16 13:11:55 -07003814 }
3815 for (int j = 0; j < childCount; j++) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07003816 final WindowState child = mChildren.get(j);
Wale Ogunwaleadde52e2016-07-16 13:11:55 -07003817 windowInfo.childTokens.add(child.mClient.asBinder());
3818 }
3819 }
Wale Ogunwaleadde52e2016-07-16 13:11:55 -07003820 return windowInfo;
3821 }
3822
Wale Ogunwale9bc47732016-08-10 14:44:22 -07003823 int getHighestAnimLayer() {
3824 int highest = mWinAnimator.mAnimLayer;
3825 for (int i = mChildren.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07003826 final WindowState c = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07003827 final int childLayer = c.getHighestAnimLayer();
3828 if (childLayer > highest) {
3829 highest = childLayer;
3830 }
3831 }
3832 return highest;
3833 }
3834
Wale Ogunwale9adfe572016-09-08 20:43:58 -07003835 @Override
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08003836 boolean forAllWindows(ToBooleanFunction<WindowState> callback, boolean traverseTopToBottom) {
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07003837 if (mChildren.isEmpty()) {
3838 // The window has no children so we just return it.
Wale Ogunwale3c1170d2016-12-02 14:44:52 -08003839 return applyInOrderWithImeWindows(callback, traverseTopToBottom);
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07003840 }
3841
3842 if (traverseTopToBottom) {
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08003843 return forAllWindowTopToBottom(callback);
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07003844 } else {
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08003845 return forAllWindowBottomToTop(callback);
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07003846 }
3847 }
3848
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08003849 private boolean forAllWindowBottomToTop(ToBooleanFunction<WindowState> callback) {
Wale Ogunwale34247952017-02-19 11:57:53 -08003850 // We want to consume the negative sublayer children first because they need to appear
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07003851 // below the parent, then this window (the parent), and then the positive sublayer children
3852 // because they need to appear above the parent.
3853 int i = 0;
3854 final int count = mChildren.size();
3855 WindowState child = mChildren.get(i);
3856
3857 while (i < count && child.mSubLayer < 0) {
Wale Ogunwale34247952017-02-19 11:57:53 -08003858 if (child.applyInOrderWithImeWindows(callback, false /* traverseTopToBottom */)) {
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08003859 return true;
3860 }
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07003861 i++;
3862 if (i >= count) {
3863 break;
3864 }
3865 child = mChildren.get(i);
3866 }
3867
Wale Ogunwale3c1170d2016-12-02 14:44:52 -08003868 if (applyInOrderWithImeWindows(callback, false /* traverseTopToBottom */)) {
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08003869 return true;
3870 }
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07003871
3872 while (i < count) {
Wale Ogunwale34247952017-02-19 11:57:53 -08003873 if (child.applyInOrderWithImeWindows(callback, false /* traverseTopToBottom */)) {
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08003874 return true;
3875 }
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07003876 i++;
3877 if (i >= count) {
3878 break;
3879 }
3880 child = mChildren.get(i);
3881 }
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08003882
3883 return false;
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07003884 }
3885
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08003886 private boolean forAllWindowTopToBottom(ToBooleanFunction<WindowState> callback) {
Wale Ogunwale34247952017-02-19 11:57:53 -08003887 // We want to consume the positive sublayer children first because they need to appear
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07003888 // above the parent, then this window (the parent), and then the negative sublayer children
3889 // because they need to appear above the parent.
3890 int i = mChildren.size() - 1;
3891 WindowState child = mChildren.get(i);
3892
3893 while (i >= 0 && child.mSubLayer >= 0) {
Wale Ogunwale34247952017-02-19 11:57:53 -08003894 if (child.applyInOrderWithImeWindows(callback, true /* traverseTopToBottom */)) {
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08003895 return true;
3896 }
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07003897 --i;
3898 if (i < 0) {
3899 break;
3900 }
3901 child = mChildren.get(i);
3902 }
3903
Wale Ogunwale3c1170d2016-12-02 14:44:52 -08003904 if (applyInOrderWithImeWindows(callback, true /* traverseTopToBottom */)) {
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08003905 return true;
3906 }
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07003907
3908 while (i >= 0) {
Wale Ogunwale34247952017-02-19 11:57:53 -08003909 if (child.applyInOrderWithImeWindows(callback, true /* traverseTopToBottom */)) {
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08003910 return true;
3911 }
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07003912 --i;
3913 if (i < 0) {
3914 break;
3915 }
3916 child = mChildren.get(i);
3917 }
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08003918
3919 return false;
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07003920 }
3921
Wale Ogunwale3c1170d2016-12-02 14:44:52 -08003922 private boolean applyInOrderWithImeWindows(ToBooleanFunction<WindowState> callback,
3923 boolean traverseTopToBottom) {
3924 if (traverseTopToBottom) {
3925 if (mService.mInputMethodTarget == this) {
3926 // This window is the current IME target, so we need to process the IME windows
3927 // directly above it.
3928 if (getDisplayContent().forAllImeWindows(callback, traverseTopToBottom)) {
3929 return true;
3930 }
3931 }
3932 if (callback.apply(this)) {
3933 return true;
3934 }
3935 } else {
3936 if (callback.apply(this)) {
3937 return true;
3938 }
3939 if (mService.mInputMethodTarget == this) {
3940 // This window is the current IME target, so we need to process the IME windows
3941 // directly above it.
3942 if (getDisplayContent().forAllImeWindows(callback, traverseTopToBottom)) {
3943 return true;
3944 }
3945 }
3946 }
3947
3948 return false;
3949 }
3950
Wale Ogunwaled1880962016-11-08 10:31:59 -08003951 WindowState getWindow(Predicate<WindowState> callback) {
Wale Ogunwale34247952017-02-19 11:57:53 -08003952 if (mChildren.isEmpty()) {
3953 return callback.test(this) ? this : null;
3954 }
3955
3956 // We want to consume the positive sublayer children first because they need to appear
3957 // above the parent, then this window (the parent), and then the negative sublayer children
3958 // because they need to appear above the parent.
3959 int i = mChildren.size() - 1;
3960 WindowState child = mChildren.get(i);
3961
3962 while (i >= 0 && child.mSubLayer >= 0) {
3963 if (callback.test(child)) {
3964 return child;
3965 }
3966 --i;
3967 if (i < 0) {
3968 break;
3969 }
3970 child = mChildren.get(i);
3971 }
3972
Wale Ogunwaled1880962016-11-08 10:31:59 -08003973 if (callback.test(this)) {
3974 return this;
3975 }
Wale Ogunwale34247952017-02-19 11:57:53 -08003976
3977 while (i >= 0) {
3978 if (callback.test(child)) {
3979 return child;
3980 }
3981 --i;
3982 if (i < 0) {
3983 break;
3984 }
3985 child = mChildren.get(i);
3986 }
3987
3988 return null;
Wale Ogunwaled1880962016-11-08 10:31:59 -08003989 }
3990
Jorim Jaggi4876b4a2018-01-11 15:43:49 +01003991 /**
3992 * @return True if we our one of our ancestors has {@link #mAnimatingExit} set to true, false
3993 * otherwise.
3994 */
3995 @VisibleForTesting
3996 boolean isSelfOrAncestorWindowAnimatingExit() {
3997 WindowState window = this;
3998 do {
3999 if (window.mAnimatingExit) {
4000 return true;
4001 }
4002 window = window.getParentWindow();
4003 } while (window != null);
4004 return false;
4005 }
4006
Wale Ogunwaleadde52e2016-07-16 13:11:55 -07004007 void onExitAnimationDone() {
4008 if (DEBUG_ANIM) Slog.v(TAG, "onExitAnimationDone in " + this
4009 + ": exiting=" + mAnimatingExit + " remove=" + mRemoveOnExit
Jorim Jaggia5e10572017-11-15 14:36:26 +01004010 + " selfAnimating=" + isSelfAnimating());
Wale Ogunwaleadde52e2016-07-16 13:11:55 -07004011
Wale Ogunwalee4343ef2016-07-19 08:00:46 -07004012 if (!mChildren.isEmpty()) {
Wale Ogunwaleadde52e2016-07-16 13:11:55 -07004013 // Copying to a different list as multiple children can be removed.
Jorim Jaggi59f3e922018-01-05 15:40:32 +01004014 final ArrayList<WindowState> childWindows = new ArrayList<>(mChildren);
Wale Ogunwaleadde52e2016-07-16 13:11:55 -07004015 for (int i = childWindows.size() - 1; i >= 0; i--) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07004016 childWindows.get(i).onExitAnimationDone();
Wale Ogunwaleadde52e2016-07-16 13:11:55 -07004017 }
4018 }
4019
4020 if (mWinAnimator.mEnteringAnimation) {
4021 mWinAnimator.mEnteringAnimation = false;
4022 mService.requestTraversal();
4023 // System windows don't have an activity and an app token as a result, but need a way
4024 // to be informed about their entrance animation end.
4025 if (mAppToken == null) {
4026 try {
4027 mClient.dispatchWindowShown();
4028 } catch (RemoteException e) {
4029 }
4030 }
4031 }
4032
Jorim Jaggia5e10572017-11-15 14:36:26 +01004033 if (isSelfAnimating()) {
Wale Ogunwaleadde52e2016-07-16 13:11:55 -07004034 return;
4035 }
4036
Jorim Jaggia5e10572017-11-15 14:36:26 +01004037 //TODO (multidisplay): Accessibility is supported only for the default display.
4038 if (mService.mAccessibilityController != null && getDisplayId() == DEFAULT_DISPLAY) {
4039 mService.mAccessibilityController.onSomeWindowResizedOrMovedLocked();
4040 }
4041
Jorim Jaggi4876b4a2018-01-11 15:43:49 +01004042 if (!isSelfOrAncestorWindowAnimatingExit()) {
Wale Ogunwaleadde52e2016-07-16 13:11:55 -07004043 return;
4044 }
4045
Wale Ogunwale9f25bee2016-08-02 07:23:47 -07004046 if (localLOGV || DEBUG_ADD_REMOVE) Slog.v(TAG,
Wale Ogunwaleadde52e2016-07-16 13:11:55 -07004047 "Exit animation finished in " + this + ": remove=" + mRemoveOnExit);
4048
4049 mDestroying = true;
4050
4051 final boolean hasSurface = mWinAnimator.hasSurface();
4052 if (hasSurface) {
Chavi Weingartenb736e322018-02-23 00:27:54 +00004053 // Use pendingTransaction here so hide is done the same transaction as the other
4054 // animations when exiting
4055 mWinAnimator.hide(getPendingTransaction(), "onExitAnimationDone");
Wale Ogunwaleadde52e2016-07-16 13:11:55 -07004056 }
4057
4058 // If we have an app token, we ask it to destroy the surface for us, so that it can take
4059 // care to ensure the activity has actually stopped and the surface is not still in use.
4060 // Otherwise we add the service to mDestroySurface and allow it to be processed in our next
4061 // transaction.
4062 if (mAppToken != null) {
4063 mAppToken.destroySurfaces();
4064 } else {
4065 if (hasSurface) {
4066 mService.mDestroySurface.add(this);
4067 }
4068 if (mRemoveOnExit) {
4069 mService.mPendingRemove.add(this);
4070 mRemoveOnExit = false;
4071 }
4072 }
4073 mAnimatingExit = false;
Wale Ogunwale0303c572016-10-20 10:16:29 -07004074 getDisplayContent().mWallpaperController.hideWallpapers(this);
Wale Ogunwaleadde52e2016-07-16 13:11:55 -07004075 }
Dan Willemsen117197f2016-07-30 13:02:59 -07004076
Wale Ogunwale9bc47732016-08-10 14:44:22 -07004077 boolean clearAnimatingFlags() {
4078 boolean didSomething = false;
4079 // We don't want to clear it out for windows that get replaced, because the
4080 // animation depends on the flag to remove the replaced window.
4081 //
4082 // We also don't clear the mAnimatingExit flag for windows which have the
4083 // mRemoveOnExit flag. This indicates an explicit remove request has been issued
4084 // by the client. We should let animation proceed and not clear this flag or
4085 // they won't eventually be removed by WindowStateAnimator#finishExit.
4086 if (!mWillReplaceWindow && !mRemoveOnExit) {
4087 // Clear mAnimating flag together with mAnimatingExit. When animation
4088 // changes from exiting to entering, we need to clear this flag until the
4089 // new animation gets applied, so that isAnimationStarting() becomes true
4090 // until then.
4091 // Otherwise applySurfaceChangesTransaction will fail to skip surface
4092 // placement for this window during this period, one or more frame will
4093 // show up with wrong position or scale.
4094 if (mAnimatingExit) {
4095 mAnimatingExit = false;
4096 didSomething = true;
4097 }
Wale Ogunwale9bc47732016-08-10 14:44:22 -07004098 if (mDestroying) {
4099 mDestroying = false;
4100 mService.mDestroySurface.remove(this);
4101 didSomething = true;
4102 }
4103 }
4104
4105 for (int i = mChildren.size() - 1; i >= 0; --i) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07004106 didSomething |= (mChildren.get(i)).clearAnimatingFlags();
Wale Ogunwale9bc47732016-08-10 14:44:22 -07004107 }
4108
4109 return didSomething;
4110 }
4111
Winson4b4ba902016-07-27 19:45:52 -07004112 public boolean isRtl() {
Andrii Kulian9d91ca62016-09-29 22:28:09 -07004113 return getConfiguration().getLayoutDirection() == View.LAYOUT_DIRECTION_RTL;
Winson4b4ba902016-07-27 19:45:52 -07004114 }
Wale Ogunwalee4da0c12016-07-29 12:47:02 -07004115
4116 void hideWallpaperWindow(boolean wasDeferred, String reason) {
Wale Ogunwale9bc47732016-08-10 14:44:22 -07004117 for (int j = mChildren.size() - 1; j >= 0; --j) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07004118 final WindowState c = mChildren.get(j);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07004119 c.hideWallpaperWindow(wasDeferred, reason);
4120 }
Wale Ogunwalee4da0c12016-07-29 12:47:02 -07004121 if (!mWinAnimator.mLastHidden || wasDeferred) {
4122 mWinAnimator.hide(reason);
4123 dispatchWallpaperVisibility(false);
4124 final DisplayContent displayContent = getDisplayContent();
4125 if (displayContent != null) {
4126 displayContent.pendingLayoutChanges |= FINISH_LAYOUT_REDO_WALLPAPER;
4127 }
4128 }
4129 }
4130
4131 /**
4132 * Check wallpaper window for visibility change and notify window if so.
4133 * @param visible Current visibility.
4134 */
4135 void dispatchWallpaperVisibility(final boolean visible) {
4136 final boolean hideAllowed =
Wale Ogunwale0303c572016-10-20 10:16:29 -07004137 getDisplayContent().mWallpaperController.mDeferredHideWallpaper == null;
Wale Ogunwalee4da0c12016-07-29 12:47:02 -07004138
4139 // Only send notification if the visibility actually changed and we are not trying to hide
4140 // the wallpaper when we are deferring hiding of the wallpaper.
4141 if (mWallpaperVisible != visible && (hideAllowed || visible)) {
4142 mWallpaperVisible = visible;
4143 try {
4144 if (DEBUG_VISIBILITY || DEBUG_WALLPAPER_LIGHT) Slog.v(TAG,
4145 "Updating vis of wallpaper " + this
4146 + ": " + visible + " from:\n" + Debug.getCallers(4, " "));
4147 mClient.dispatchAppVisibility(visible);
4148 } catch (RemoteException e) {
4149 }
4150 }
4151 }
4152
Wale Ogunwale9bc47732016-08-10 14:44:22 -07004153 boolean hasVisibleNotDrawnWallpaper() {
4154 if (mWallpaperVisible && !isDrawnLw()) {
4155 return true;
4156 }
4157 for (int j = mChildren.size() - 1; j >= 0; --j) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07004158 final WindowState c = mChildren.get(j);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07004159 if (c.hasVisibleNotDrawnWallpaper()) {
4160 return true;
4161 }
4162 }
4163 return false;
4164 }
4165
Wale Ogunwale9bc47732016-08-10 14:44:22 -07004166 void updateReportedVisibility(UpdateReportedVisibilityResults results) {
4167 for (int i = mChildren.size() - 1; i >= 0; --i) {
Wale Ogunwaled90546a2016-09-09 23:28:03 -07004168 final WindowState c = mChildren.get(i);
Wale Ogunwale9bc47732016-08-10 14:44:22 -07004169 c.updateReportedVisibility(results);
4170 }
4171
4172 if (mAppFreezing || mViewVisibility != View.VISIBLE
4173 || mAttrs.type == TYPE_APPLICATION_STARTING
4174 || mDestroying) {
4175 return;
4176 }
4177 if (DEBUG_VISIBILITY) {
4178 Slog.v(TAG, "Win " + this + ": isDrawn=" + isDrawnLw()
4179 + ", isAnimationSet=" + mWinAnimator.isAnimationSet());
4180 if (!isDrawnLw()) {
4181 Slog.v(TAG, "Not displayed: s=" + mWinAnimator.mSurfaceController
4182 + " pv=" + mPolicyVisibility
4183 + " mDrawState=" + mWinAnimator.mDrawState
4184 + " ph=" + isParentWindowHidden()
4185 + " th=" + (mAppToken != null ? mAppToken.hiddenRequested : false)
Jorim Jaggia5e10572017-11-15 14:36:26 +01004186 + " a=" + mWinAnimator.isAnimationSet());
Wale Ogunwale9bc47732016-08-10 14:44:22 -07004187 }
4188 }
4189
4190 results.numInteresting++;
4191 if (isDrawnLw()) {
4192 results.numDrawn++;
4193 if (!mWinAnimator.isAnimationSet()) {
4194 results.numVisible++;
4195 }
4196 results.nowGone = false;
4197 } else if (mWinAnimator.isAnimationSet()) {
4198 results.nowGone = false;
4199 }
4200 }
4201
Robert Carrfbbde852016-10-18 11:02:28 -07004202 /**
4203 * Calculate the window crop according to system decor policy. In general this is
4204 * the system decor rect (see #calculateSystemDecorRect), but we also have some
4205 * special cases. This rectangle is in screen space.
4206 */
4207 void calculatePolicyCrop(Rect policyCrop) {
4208 final DisplayContent displayContent = getDisplayContent();
4209 final DisplayInfo displayInfo = displayContent.getDisplayInfo();
4210
4211 if (!isDefaultDisplay()) {
4212 // On a different display there is no system decor. Crop the window
4213 // by the screen boundaries.
4214 // TODO(multi-display)
4215 policyCrop.set(0, 0, mCompatFrame.width(), mCompatFrame.height());
4216 policyCrop.intersect(-mCompatFrame.left, -mCompatFrame.top,
4217 displayInfo.logicalWidth - mCompatFrame.left,
4218 displayInfo.logicalHeight - mCompatFrame.top);
Robert Carrfbbde852016-10-18 11:02:28 -07004219 } else if (mDecorFrame.isEmpty()) {
4220 // Windows without policy decor aren't cropped.
4221 policyCrop.set(0, 0, mCompatFrame.width(), mCompatFrame.height());
4222 } else {
4223 // Crop to the system decor specified by policy.
4224 calculateSystemDecorRect(policyCrop);
4225 }
4226 }
4227
4228 /**
4229 * The system decor rect is the region of the window which is not covered
4230 * by system decorations.
4231 */
4232 private void calculateSystemDecorRect(Rect systemDecorRect) {
4233 final Rect decorRect = mDecorFrame;
4234 final int width = mFrame.width();
4235 final int height = mFrame.height();
4236
Robert Carr217e7cc2018-01-31 18:08:39 -08004237 final int left = mFrame.left;
4238 final int top = mFrame.top;
Robert Carrfbbde852016-10-18 11:02:28 -07004239
4240 // Initialize the decor rect to the entire frame.
4241 if (isDockedResizing()) {
4242 // If we are resizing with the divider, the task bounds might be smaller than the
4243 // stack bounds. The system decor is used to clip to the task bounds, which we don't
4244 // want in this case in order to avoid holes.
4245 //
4246 // We take care to not shrink the width, for surfaces which are larger than
4247 // the display region. Of course this area will not eventually be visible
4248 // but if we truncate the width now, we will calculate incorrectly
4249 // when adjusting to the stack bounds.
4250 final DisplayInfo displayInfo = getDisplayContent().getDisplayInfo();
4251 systemDecorRect.set(0, 0,
4252 Math.max(width, displayInfo.logicalWidth),
4253 Math.max(height, displayInfo.logicalHeight));
4254 } else {
4255 systemDecorRect.set(0, 0, width, height);
4256 }
4257
4258 // If a freeform window is animating from a position where it would be cutoff, it would be
4259 // cutoff during the animation. We don't want that, so for the duration of the animation
4260 // we ignore the decor cropping and depend on layering to position windows correctly.
Wale Ogunwale44f036f2017-09-29 05:09:09 -07004261 final boolean cropToDecor = !(inFreeformWindowingMode() && isAnimatingLw());
Robert Carrfbbde852016-10-18 11:02:28 -07004262 if (cropToDecor) {
4263 // Intersect with the decor rect, offsetted by window position.
4264 systemDecorRect.intersect(decorRect.left - left, decorRect.top - top,
4265 decorRect.right - left, decorRect.bottom - top);
4266 }
4267
4268 // If size compatibility is being applied to the window, the
4269 // surface is scaled relative to the screen. Also apply this
4270 // scaling to the crop rect. We aren't using the standard rect
4271 // scale function because we want to round things to make the crop
4272 // always round to a larger rect to ensure we don't crop too
4273 // much and hide part of the window that should be seen.
4274 if (mEnforceSizeCompat && mInvGlobalScale != 1.0f) {
4275 final float scale = mInvGlobalScale;
4276 systemDecorRect.left = (int) (systemDecorRect.left * scale - 0.5f);
4277 systemDecorRect.top = (int) (systemDecorRect.top * scale - 0.5f);
4278 systemDecorRect.right = (int) ((systemDecorRect.right + 1) * scale - 0.5f);
4279 systemDecorRect.bottom = (int) ((systemDecorRect.bottom + 1) * scale - 0.5f);
4280 }
4281
4282 }
4283
4284 /**
4285 * Expand the given rectangle by this windows surface insets. This
4286 * takes you from the 'window size' to the 'surface size'.
4287 * The surface insets are positive in each direction, so we inset by
4288 * the inverse.
4289 */
4290 void expandForSurfaceInsets(Rect r) {
4291 r.inset(-mAttrs.surfaceInsets.left,
4292 -mAttrs.surfaceInsets.top,
4293 -mAttrs.surfaceInsets.right,
4294 -mAttrs.surfaceInsets.bottom);
4295 }
4296
Robert Carrc91d1c32017-02-15 19:37:46 -08004297 boolean surfaceInsetsChanging() {
4298 return !mLastSurfaceInsets.equals(mAttrs.surfaceInsets);
4299 }
4300
Bryce Leef858b572017-06-29 14:03:33 -07004301 int relayoutVisibleWindow(int result, int attrChanges, int oldVisibility) {
Robert Carrecc06b32017-04-18 14:25:10 -07004302 final boolean wasVisible = isVisibleLw();
4303
4304 result |= (!wasVisible || !isDrawnLw()) ? RELAYOUT_RES_FIRST_TIME : 0;
Robert Carr7b3d11d2018-03-15 14:34:45 -07004305
4306 if (mWinAnimator.mChildrenDetached) {
4307 // If there are detached children hanging around we need to force
4308 // the client receiving a new Surface.
4309 mWinAnimator.preserveSurfaceLocked();
4310 result |= RELAYOUT_RES_SURFACE_CHANGED
4311 | RELAYOUT_RES_FIRST_TIME;
4312 }
4313
Robert Carrc91d1c32017-02-15 19:37:46 -08004314 if (mAnimatingExit) {
4315 Slog.d(TAG, "relayoutVisibleWindow: " + this + " mAnimatingExit=true, mRemoveOnExit="
4316 + mRemoveOnExit + ", mDestroying=" + mDestroying);
4317
4318 mWinAnimator.cancelExitAnimationForNextAnimationLocked();
4319 mAnimatingExit = false;
4320 }
4321 if (mDestroying) {
4322 mDestroying = false;
4323 mService.mDestroySurface.remove(this);
4324 }
4325 if (oldVisibility == View.GONE) {
4326 mWinAnimator.mEnterAnimationPending = true;
4327 }
4328
Andrii Kulian8ee72852017-03-10 10:36:45 -08004329 mLastVisibleLayoutRotation = getDisplayContent().getRotation();
Robert Carrc91d1c32017-02-15 19:37:46 -08004330
4331 mWinAnimator.mEnteringAnimation = true;
Bryce Leeae73ba42017-05-05 09:58:25 -07004332
Bryce Leef858b572017-06-29 14:03:33 -07004333 prepareWindowToDisplayDuringRelayout(wasVisible);
Bryce Leeae73ba42017-05-05 09:58:25 -07004334
Robert Carrc91d1c32017-02-15 19:37:46 -08004335 if ((attrChanges & FORMAT_CHANGED) != 0) {
4336 // If the format can't be changed in place, preserve the old surface until the app draws
4337 // on the new one. This prevents blinking when we change elevation of freeform and
4338 // pinned windows.
4339 if (!mWinAnimator.tryChangeFormatInPlaceLocked()) {
4340 mWinAnimator.preserveSurfaceLocked();
4341 result |= RELAYOUT_RES_SURFACE_CHANGED
4342 | RELAYOUT_RES_FIRST_TIME;
4343 }
4344 }
4345
4346 // When we change the Surface size, in scenarios which may require changing
4347 // the surface position in sync with the resize, we use a preserved surface
4348 // so we can freeze it while waiting for the client to report draw on the newly
Robert Carrc6d5af52018-02-26 17:46:00 -08004349 // sized surface. At the moment this logic is only in place for switching
4350 // in and out of the big surface for split screen resize.
4351 if (isDragResizeChanged()) {
Robert Carrc91d1c32017-02-15 19:37:46 -08004352 setDragResizing();
Robert Carrc91d1c32017-02-15 19:37:46 -08004353 // We can only change top level windows to the full-screen surface when
4354 // resizing (as we only have one full-screen surface). So there is no need
4355 // to preserve and destroy windows which are attached to another, they
4356 // will keep their surface and its size may change over time.
4357 if (mHasSurface && !isChildWindow()) {
4358 mWinAnimator.preserveSurfaceLocked();
Robert Carrdb2f6e62017-03-01 20:17:58 -08004359 result |= RELAYOUT_RES_SURFACE_CHANGED |
4360 RELAYOUT_RES_FIRST_TIME;
Robert Carrc91d1c32017-02-15 19:37:46 -08004361 }
4362 }
4363 final boolean freeformResizing = isDragResizing()
4364 && getResizeMode() == DRAG_RESIZE_MODE_FREEFORM;
4365 final boolean dockedResizing = isDragResizing()
4366 && getResizeMode() == DRAG_RESIZE_MODE_DOCKED_DIVIDER;
4367 result |= freeformResizing ? RELAYOUT_RES_DRAG_RESIZING_FREEFORM : 0;
4368 result |= dockedResizing ? RELAYOUT_RES_DRAG_RESIZING_DOCKED : 0;
Robert Carrc91d1c32017-02-15 19:37:46 -08004369 return result;
4370 }
4371
Jorim Jaggidc9385a2017-05-13 02:00:31 +02004372 /**
4373 * @return True if this window has been laid out at least once; false otherwise.
4374 */
4375 boolean isLaidOut() {
4376 return mLayoutSeq != -1;
4377 }
4378
4379 /**
4380 * Updates the last inset values to the current ones.
4381 */
4382 void updateLastInsetValues() {
4383 mLastOverscanInsets.set(mOverscanInsets);
4384 mLastContentInsets.set(mContentInsets);
4385 mLastVisibleInsets.set(mVisibleInsets);
4386 mLastStableInsets.set(mStableInsets);
4387 mLastOutsets.set(mOutsets);
Adrian Roos5c6b6222017-11-07 17:36:10 +01004388 mLastDisplayCutout = mDisplayCutout;
Jorim Jaggidc9385a2017-05-13 02:00:31 +02004389 }
4390
Jorim Jaggia5e10572017-11-15 14:36:26 +01004391 void startAnimation(Animation anim) {
4392 final DisplayInfo displayInfo = getDisplayContent().getDisplayInfo();
4393 anim.initialize(mFrame.width(), mFrame.height(),
4394 displayInfo.appWidth, displayInfo.appHeight);
4395 anim.restrictDuration(MAX_ANIMATION_DURATION);
4396 anim.scaleCurrentDuration(mService.getWindowAnimationScaleLocked());
4397 final AnimationAdapter adapter = new LocalAnimationAdapter(
Jorim Jaggi2e3c31d2017-11-20 19:49:00 +01004398 new WindowAnimationSpec(anim, mSurfacePosition, false /* canSkipFirstFrame */),
4399 mService.mSurfaceAnimationRunner);
Jorim Jaggia5e10572017-11-15 14:36:26 +01004400 startAnimation(mPendingTransaction, adapter);
4401 commitPendingTransaction();
4402 }
4403
chaviw161ea3e2018-01-31 12:01:12 -08004404 private void startMoveAnimation(int left, int top) {
Jorim Jaggia5e10572017-11-15 14:36:26 +01004405 if (DEBUG_ANIM) Slog.v(TAG, "Setting move animation on " + this);
Jorim Jaggi313d7e02017-12-14 14:40:48 +01004406 final Point oldPosition = new Point();
4407 final Point newPosition = new Point();
4408 transformFrameToSurfacePosition(mLastFrame.left, mLastFrame.top, oldPosition);
4409 transformFrameToSurfacePosition(left, top, newPosition);
Jorim Jaggia5e10572017-11-15 14:36:26 +01004410 final AnimationAdapter adapter = new LocalAnimationAdapter(
Jorim Jaggi313d7e02017-12-14 14:40:48 +01004411 new MoveAnimationSpec(oldPosition.x, oldPosition.y, newPosition.x, newPosition.y),
Jorim Jaggia5e10572017-11-15 14:36:26 +01004412 mService.mSurfaceAnimationRunner);
chaviw161ea3e2018-01-31 12:01:12 -08004413 startAnimation(getPendingTransaction(), adapter);
Jorim Jaggia5e10572017-11-15 14:36:26 +01004414 }
4415
4416 private void startAnimation(Transaction t, AnimationAdapter adapter) {
4417 startAnimation(t, adapter, mWinAnimator.mLastHidden);
4418 }
4419
4420 @Override
4421 protected void onAnimationFinished() {
4422 mWinAnimator.onAnimationFinished();
4423 }
4424
Jorim Jaggieb0d3bc2017-12-15 14:56:19 +01004425 /**
4426 * Retrieves the current transformation matrix of the window, relative to the display.
4427 *
4428 * @param float9 A temporary array of 9 floats.
4429 * @param outMatrix Matrix to fill in the transformation.
4430 */
4431 void getTransformationMatrix(float[] float9, Matrix outMatrix) {
4432 float9[Matrix.MSCALE_X] = mWinAnimator.mDsDx;
4433 float9[Matrix.MSKEW_Y] = mWinAnimator.mDtDx;
4434 float9[Matrix.MSKEW_X] = mWinAnimator.mDtDy;
4435 float9[Matrix.MSCALE_Y] = mWinAnimator.mDsDy;
Robert Carr217e7cc2018-01-31 18:08:39 -08004436 int x = mSurfacePosition.x;
4437 int y = mSurfacePosition.y;
Jorim Jaggi72d4dee2017-12-28 13:49:21 +01004438
4439 // If changed, also adjust transformFrameToSurfacePosition
4440 final WindowContainer parent = getParent();
4441 if (isChildWindow()) {
4442 final WindowState parentWindow = getParentWindow();
4443 x += parentWindow.mFrame.left - parentWindow.mAttrs.surfaceInsets.left;
4444 y += parentWindow.mFrame.top - parentWindow.mAttrs.surfaceInsets.top;
4445 } else if (parent != null) {
4446 final Rect parentBounds = parent.getBounds();
4447 x += parentBounds.left;
4448 y += parentBounds.top;
4449 }
4450 float9[Matrix.MTRANS_X] = x;
4451 float9[Matrix.MTRANS_Y] = y;
Jorim Jaggieb0d3bc2017-12-15 14:56:19 +01004452 float9[Matrix.MPERSP_0] = 0;
4453 float9[Matrix.MPERSP_1] = 0;
4454 float9[Matrix.MPERSP_2] = 1;
4455 outMatrix.setValues(float9);
4456 }
4457
Wale Ogunwale9bc47732016-08-10 14:44:22 -07004458 // TODO: Hack to work around the number of states AppWindowToken needs to access without having
4459 // access to its windows children. Need to investigate re-writing
4460 // {@link AppWindowToken#updateReportedVisibilityLocked} so this can be removed.
4461 static final class UpdateReportedVisibilityResults {
4462 int numInteresting;
4463 int numVisible;
4464 int numDrawn;
4465 boolean nowGone = true;
4466
4467 void reset() {
4468 numInteresting = 0;
4469 numVisible = 0;
4470 numDrawn = 0;
4471 nowGone = true;
4472 }
4473 }
Robert Carraf422a82017-04-10 18:34:33 -07004474
Jorim Jaggi4448e1e2017-05-16 22:26:02 +02004475 private static final class WindowId extends IWindowId.Stub {
4476 private final WeakReference<WindowState> mOuter;
4477
4478 private WindowId(WindowState outer) {
4479
4480 // Use a weak reference for the outer class. This is important to prevent the following
4481 // leak: Since we send this class to the client process, binder will keep it alive as
4482 // long as the client keeps it alive. Now, if the window is removed, we need to clear
4483 // out our reference so even though this class is kept alive we don't leak WindowState,
4484 // which can keep a whole lot of classes alive.
4485 mOuter = new WeakReference<>(outer);
4486 }
4487
4488 @Override
4489 public void registerFocusObserver(IWindowFocusObserver observer) {
4490 final WindowState outer = mOuter.get();
4491 if (outer != null) {
4492 outer.registerFocusObserver(observer);
4493 }
4494 }
4495 @Override
4496 public void unregisterFocusObserver(IWindowFocusObserver observer) {
4497 final WindowState outer = mOuter.get();
4498 if (outer != null) {
4499 outer.unregisterFocusObserver(observer);
4500 }
4501 }
4502 @Override
4503 public boolean isFocused() {
4504 final WindowState outer = mOuter.get();
4505 return outer != null && outer.isFocused();
4506 }
4507 }
4508
Robert Carrb1579c82017-09-05 14:54:47 -07004509
4510 @Override
4511 boolean shouldMagnify() {
4512 if (mAttrs.type == TYPE_INPUT_METHOD ||
Robert Carree4d4b92017-11-22 12:21:46 -08004513 mAttrs.type == TYPE_INPUT_METHOD_DIALOG ||
4514 mAttrs.type == TYPE_MAGNIFICATION_OVERLAY ||
4515 mAttrs.type == TYPE_NAVIGATION_BAR ||
4516 // It's tempting to wonder: Have we forgotten the rounded corners overlay?
4517 // worry not: it's a fake TYPE_NAVIGATION_BAR_PANEL
4518 mAttrs.type == TYPE_NAVIGATION_BAR_PANEL ||
4519 mAttrs.type == TYPE_STATUS_BAR) {
Robert Carrb1579c82017-09-05 14:54:47 -07004520 return false;
4521 }
4522 return true;
4523 }
4524
4525 @Override
Robert Carrb1579c82017-09-05 14:54:47 -07004526 SurfaceSession getSession() {
4527 if (mSession.mSurfaceSession != null) {
4528 return mSession.mSurfaceSession;
4529 } else {
4530 return getParent().getSession();
4531 }
4532 }
4533
4534 @Override
4535 boolean needsZBoost() {
Jorim Jaggib0fc8172017-11-23 17:04:08 +00004536 if (mIsImWindow && mService.mInputMethodTarget != null) {
4537 final AppWindowToken appToken = mService.mInputMethodTarget.mAppToken;
4538 if (appToken != null) {
4539 return appToken.needsZBoost();
4540 }
4541 }
4542 return mWillReplaceWindow;
Robert Carrb1579c82017-09-05 14:54:47 -07004543 }
4544
Robert Carrf07ef9e2017-11-21 12:12:49 -08004545 private void applyDims(Dimmer dimmer) {
Robert Carrf59b8dd2017-10-02 18:58:36 -07004546 if (!mAnimatingExit && mAppDied) {
4547 mIsDimming = true;
chaviw2fb06bc2018-01-19 17:09:15 -08004548 dimmer.dimAbove(getPendingTransaction(), this, DEFAULT_DIM_AMOUNT_DEAD_WINDOW);
chaviwebcbc342018-02-07 13:19:00 -08004549 } else if ((mAttrs.flags & FLAG_DIM_BEHIND) != 0 && isVisibleNow() && !mHidden) {
chaviw14076152018-02-02 14:51:20 -08004550 // Only show a dim behind when the following is satisfied:
4551 // 1. The window has the flag FLAG_DIM_BEHIND
4552 // 2. The WindowToken is not hidden so dims aren't shown when the window is exiting.
4553 // 3. The WS is considered visible according to the isVisible() method
chaviwebcbc342018-02-07 13:19:00 -08004554 // 4. The WS is not hidden.
Robert Carrf59b8dd2017-10-02 18:58:36 -07004555 mIsDimming = true;
chaviw2fb06bc2018-01-19 17:09:15 -08004556 dimmer.dimBelow(getPendingTransaction(), this, mAttrs.dimAmount);
Robert Carrf59b8dd2017-10-02 18:58:36 -07004557 }
Robert Carrf07ef9e2017-11-21 12:12:49 -08004558 }
4559
4560 @Override
4561 void prepareSurfaces() {
4562 final Dimmer dimmer = getDimmer();
4563 mIsDimming = false;
4564 if (dimmer != null) {
4565 applyDims(dimmer);
4566 }
chaviw2f0567b2018-01-29 16:22:02 -08004567 updateSurfacePosition();
Jorim Jaggia5e10572017-11-15 14:36:26 +01004568
Robert Carrb1579c82017-09-05 14:54:47 -07004569 mWinAnimator.prepareSurfaceLocked(true);
4570 super.prepareSurfaces();
4571 }
4572
4573 @Override
Jorim Jaggia5e10572017-11-15 14:36:26 +01004574 public void onAnimationLeashCreated(Transaction t, SurfaceControl leash) {
4575 super.onAnimationLeashCreated(t, leash);
4576
4577 // Leash is now responsible for position, so set our position to 0.
4578 t.setPosition(mSurfaceControl, 0, 0);
chaviw3e751af2018-01-11 11:22:39 -08004579 mLastSurfacePosition.set(0, 0);
Jorim Jaggia5e10572017-11-15 14:36:26 +01004580 }
4581
4582 @Override
4583 public void onAnimationLeashDestroyed(Transaction t) {
4584 super.onAnimationLeashDestroyed(t);
4585 updateSurfacePosition(t);
4586 }
4587
chaviwe07246a2017-12-12 16:18:29 -08004588 @Override
chaviw2f0567b2018-01-29 16:22:02 -08004589 void updateSurfacePosition() {
4590 updateSurfacePosition(getPendingTransaction());
4591 }
4592
4593 private void updateSurfacePosition(Transaction t) {
Jorim Jaggia5e10572017-11-15 14:36:26 +01004594 if (mSurfaceControl == null) {
4595 return;
4596 }
4597
Jorim Jaggi313d7e02017-12-14 14:40:48 +01004598 transformFrameToSurfacePosition(mFrame.left, mFrame.top, mSurfacePosition);
Robert Carrc6d5af52018-02-26 17:46:00 -08004599
chaviw3e751af2018-01-11 11:22:39 -08004600 if (!mSurfaceAnimator.hasLeash() && !mLastSurfacePosition.equals(mSurfacePosition)) {
Jorim Jaggi313d7e02017-12-14 14:40:48 +01004601 t.setPosition(mSurfaceControl, mSurfacePosition.x, mSurfacePosition.y);
chaviw3e751af2018-01-11 11:22:39 -08004602 mLastSurfacePosition.set(mSurfacePosition.x, mSurfacePosition.y);
Robert Carrc6d5af52018-02-26 17:46:00 -08004603 if (surfaceInsetsChanging() && mWinAnimator.hasSurface()) {
4604 mLastSurfaceInsets.set(mAttrs.surfaceInsets);
4605 t.deferTransactionUntil(mSurfaceControl,
4606 mWinAnimator.mSurfaceController.mSurfaceControl.getHandle(),
4607 mAttrs.frameNumber);
4608 }
Jorim Jaggi313d7e02017-12-14 14:40:48 +01004609 }
4610 }
4611
4612 private void transformFrameToSurfacePosition(int left, int top, Point outPoint) {
4613 outPoint.set(left, top);
Jorim Jaggi72d4dee2017-12-28 13:49:21 +01004614
4615 // If changed, also adjust getTransformationMatrix
chaviwe07246a2017-12-12 16:18:29 -08004616 final WindowContainer parentWindowContainer = getParent();
Jorim Jaggia5e10572017-11-15 14:36:26 +01004617 if (isChildWindow()) {
4618 // TODO: This probably falls apart at some point and we should
4619 // actually compute relative coordinates.
Jorim Jaggi50d3f8f2017-12-27 17:41:25 +01004620
4621 // Since the parent was outset by its surface insets, we need to undo the outsetting
4622 // with insetting by the same amount.
Jorim Jaggia5e10572017-11-15 14:36:26 +01004623 final WindowState parent = getParentWindow();
Jorim Jaggi50d3f8f2017-12-27 17:41:25 +01004624 outPoint.offset(-parent.mFrame.left + parent.mAttrs.surfaceInsets.left,
4625 -parent.mFrame.top + parent.mAttrs.surfaceInsets.top);
chaviwe07246a2017-12-12 16:18:29 -08004626 } else if (parentWindowContainer != null) {
4627 final Rect parentBounds = parentWindowContainer.getBounds();
4628 outPoint.offset(-parentBounds.left, -parentBounds.top);
Jorim Jaggia5e10572017-11-15 14:36:26 +01004629 }
Jorim Jaggi9af095b2017-12-12 17:18:57 +01004630
Robert Carr32bcb102018-01-29 15:03:23 -08004631 TaskStack stack = getStack();
4632
4633 // If we have stack outsets, that means the top-left
4634 // will be outset, and we need to inset ourselves
4635 // to account for it. If we actually have shadows we will
4636 // then un-inset ourselves by the surfaceInsets.
4637 if (stack != null) {
4638 final int outset = stack.getStackOutset();
4639 outPoint.offset(outset, outset);
4640 }
4641
Jorim Jaggi9af095b2017-12-12 17:18:57 +01004642 // Expand for surface insets. See WindowState.expandForSurfaceInsets.
Jorim Jaggi313d7e02017-12-14 14:40:48 +01004643 outPoint.offset(-mAttrs.surfaceInsets.left, -mAttrs.surfaceInsets.top);
Jorim Jaggia5e10572017-11-15 14:36:26 +01004644 }
4645
4646 @Override
Robert Carrb1579c82017-09-05 14:54:47 -07004647 void assignLayer(Transaction t, int layer) {
4648 // See comment in assignRelativeLayerForImeTargetChild
4649 if (!isChildWindow()
4650 || (mService.mInputMethodTarget != getParentWindow())
4651 || !inSplitScreenWindowingMode()) {
4652 super.assignLayer(t, layer);
4653 return;
4654 }
4655 getDisplayContent().assignRelativeLayerForImeTargetChild(t, this);
4656 }
Robert Carrf59b8dd2017-10-02 18:58:36 -07004657
4658 @Override
4659 public boolean isDimming() {
4660 return mIsDimming;
4661 }
Robert Carr0eff1872017-12-01 14:27:04 -08004662
4663 // TODO(b/70040778): We should aim to eliminate the last user of TYPE_APPLICATION_MEDIA
4664 // then we can drop all negative layering on the windowing side and simply inherit
4665 // the default implementation here.
4666 public void assignChildLayers(Transaction t) {
4667 int layer = 1;
4668 for (int i = 0; i < mChildren.size(); i++) {
4669 final WindowState w = mChildren.get(i);
4670
4671 // APPLICATION_MEDIA_OVERLAY needs to go above APPLICATION_MEDIA
4672 // while they both need to go below the main window. However the
4673 // relative layering of multiple APPLICATION_MEDIA/OVERLAY has never
4674 // been defined and so we can use static layers and leave it that way.
4675 if (w.mAttrs.type == TYPE_APPLICATION_MEDIA) {
4676 w.assignLayer(t, -2);
4677 } else if (w.mAttrs.type == TYPE_APPLICATION_MEDIA_OVERLAY) {
4678 w.assignLayer(t, -1);
4679 } else {
4680 w.assignLayer(t, layer);
4681 }
4682 w.assignChildLayers(t);
4683 layer++;
4684 }
4685 }
Jorim Jaggia5e10572017-11-15 14:36:26 +01004686
Andrii Kulian4b6599e2018-01-15 17:24:08 -08004687 /**
4688 * Update a tap exclude region with a rectangular area identified by provided id. The requested
4689 * area will be clipped to the window bounds.
4690 */
4691 void updateTapExcludeRegion(int regionId, int left, int top, int width, int height) {
4692 final DisplayContent currentDisplay = getDisplayContent();
4693 if (currentDisplay == null) {
4694 throw new IllegalStateException("Trying to update window not attached to any display.");
4695 }
4696
4697 if (mTapExcludeRegionHolder == null) {
4698 mTapExcludeRegionHolder = new TapExcludeRegionHolder();
4699
4700 // Make sure that this window is registered as one that provides a tap exclude region
4701 // for its containing display.
4702 currentDisplay.mTapExcludeProvidingWindows.add(this);
4703 }
4704
4705 mTapExcludeRegionHolder.updateRegion(regionId, left, top, width, height);
4706 // Trigger touch exclude region update on current display.
4707 final boolean isAppFocusedOnDisplay = mService.mFocusedApp != null
4708 && mService.mFocusedApp.getDisplayContent() == currentDisplay;
4709 currentDisplay.setTouchExcludeRegion(isAppFocusedOnDisplay ? mService.mFocusedApp.getTask()
4710 : null);
4711 }
4712
4713 /** Union the region with current tap exclude region that this window provides. */
4714 void amendTapExcludeRegion(Region region) {
4715 mTapExcludeRegionHolder.amendRegion(region, getBounds());
4716 }
4717
Jorim Jaggia5e10572017-11-15 14:36:26 +01004718 private final class MoveAnimationSpec implements AnimationSpec {
4719
4720 private final long mDuration;
4721 private Interpolator mInterpolator;
4722 private Point mFrom = new Point();
4723 private Point mTo = new Point();
4724
4725 private MoveAnimationSpec(int fromX, int fromY, int toX, int toY) {
4726 final Animation anim = AnimationUtils.loadAnimation(mContext,
4727 com.android.internal.R.anim.window_move_from_decor);
Jorim Jaggi08f75cf2018-01-08 14:38:53 +01004728 mDuration = (long)
4729 (anim.computeDurationHint() * mService.getWindowAnimationScaleLocked());
Jorim Jaggia5e10572017-11-15 14:36:26 +01004730 mInterpolator = anim.getInterpolator();
4731 mFrom.set(fromX, fromY);
4732 mTo.set(toX, toY);
4733 }
4734
4735 @Override
4736 public long getDuration() {
4737 return mDuration;
4738 }
4739
4740 @Override
4741 public void apply(Transaction t, SurfaceControl leash, long currentPlayTime) {
4742 final float fraction = (float) currentPlayTime / getDuration();
4743 final float v = mInterpolator.getInterpolation(fraction);
4744 t.setPosition(leash, mFrom.x + (mTo.x - mFrom.x) * v,
4745 mFrom.y + (mTo.y - mFrom.y) * v);
4746 }
Jorim Jaggif75d1612018-02-27 15:05:21 +01004747
4748 @Override
4749 public void dump(PrintWriter pw, String prefix) {
4750 pw.print(prefix); pw.print("from="); pw.print(mFrom);
4751 pw.print(" to="); pw.print(mTo);
4752 pw.print(" duration="); pw.println(mDuration);
4753 }
4754
4755 @Override
4756 public void writeToProtoInner(ProtoOutputStream proto) {
4757 final long token = proto.start(MOVE);
4758 mFrom.writeToProto(proto, FROM);
4759 mTo.writeToProto(proto, TO);
4760 proto.write(DURATION, mDuration);
4761 proto.end(token);
4762 }
Jorim Jaggia5e10572017-11-15 14:36:26 +01004763 }
satokcef37fb2011-10-24 21:49:38 +09004764}