blob: 9f3415e63586b75782a4cdc87d98471eb9fed0bc [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
Craig Mautner38f7dcd2014-02-06 10:31:41 -080019import static com.android.server.wm.WindowManagerService.DEBUG_CONFIGURATION;
Craig Mautnerb3b36ba2013-05-20 13:21:10 -070020import static com.android.server.wm.WindowManagerService.DEBUG_LAYOUT;
Craig Mautner38f7dcd2014-02-06 10:31:41 -080021import static com.android.server.wm.WindowManagerService.DEBUG_ORIENTATION;
22import static com.android.server.wm.WindowManagerService.DEBUG_RESIZE;
23import static com.android.server.wm.WindowManagerService.DEBUG_VISIBILITY;
Craig Mautnerb3b36ba2013-05-20 13:21:10 -070024
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080025import static android.view.WindowManager.LayoutParams.FIRST_SUB_WINDOW;
Adam Lesinski6a591f52013-10-01 18:11:17 -070026import static android.view.WindowManager.LayoutParams.PRIVATE_FLAG_COMPATIBLE_WINDOW;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080027import static android.view.WindowManager.LayoutParams.LAST_SUB_WINDOW;
Dianne Hackborn1c5383c2013-04-15 15:07:21 -070028import static android.view.WindowManager.LayoutParams.PRIVATE_FLAG_NO_MOVE_ANIMATION;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080029import static android.view.WindowManager.LayoutParams.TYPE_INPUT_METHOD;
30import static android.view.WindowManager.LayoutParams.TYPE_INPUT_METHOD_DIALOG;
Craig Mautnere8552142012-11-07 13:55:47 -080031import static android.view.WindowManager.LayoutParams.TYPE_KEYGUARD;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080032import static android.view.WindowManager.LayoutParams.TYPE_WALLPAPER;
33
Dianne Hackbornc2293022013-02-06 23:14:49 -080034import android.app.AppOpsManager;
Craig Mautnerdf88d732014-01-27 09:21:32 -080035import android.os.Debug;
Dianne Hackborne3f23a32013-03-01 13:25:35 -080036import android.os.RemoteCallbackList;
Craig Mautnerdf88d732014-01-27 09:21:32 -080037import android.os.SystemClock;
Dianne Hackborna57c6952013-03-29 14:46:40 -070038import android.util.TimeUtils;
Dianne Hackborne3f23a32013-03-01 13:25:35 -080039import android.view.IWindowFocusObserver;
40import android.view.IWindowId;
Jeff Brown4532e612012-04-05 14:27:12 -070041import com.android.server.input.InputWindowHandle;
42
Craig Mautnere7ae2502012-03-26 17:11:19 -070043import android.content.Context;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080044import android.content.res.Configuration;
45import android.graphics.Matrix;
46import android.graphics.PixelFormat;
47import android.graphics.Rect;
Dianne Hackbornd040edb2011-08-31 12:47:58 -070048import android.graphics.RectF;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080049import android.graphics.Region;
50import android.os.IBinder;
51import android.os.RemoteException;
Craig Mautner9dc52bc2012-08-06 14:15:42 -070052import android.os.UserHandle;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080053import android.util.Slog;
Craig Mautner59c00972012-07-30 12:10:24 -070054import android.view.DisplayInfo;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080055import android.view.Gravity;
56import android.view.IApplicationToken;
57import android.view.IWindow;
58import android.view.InputChannel;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080059import android.view.View;
60import android.view.ViewTreeObserver;
61import android.view.WindowManager;
62import android.view.WindowManagerPolicy;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080063
64import java.io.PrintWriter;
65import java.util.ArrayList;
66
Craig Mautner59c00972012-07-30 12:10:24 -070067class WindowList extends ArrayList<WindowState> {
68}
69
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080070/**
71 * A window in the window manager.
72 */
Craig Mautnere32c3072012-03-12 15:25:35 -070073final class WindowState implements WindowManagerPolicy.WindowState {
Craig Mautnerd87946b2012-03-29 18:00:19 -070074 static final String TAG = "WindowState";
Craig Mautner164d4bb2012-11-26 13:51:23 -080075
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080076 final WindowManagerService mService;
Craig Mautnere7ae2502012-03-26 17:11:19 -070077 final WindowManagerPolicy mPolicy;
78 final Context mContext;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080079 final Session mSession;
80 final IWindow mClient;
Dianne Hackbornc2293022013-02-06 23:14:49 -080081 final int mAppOp;
82 // UserId and appId of the owner. Don't display windows of non-current user.
83 final int mOwnerUid;
Dianne Hackborne3f23a32013-03-01 13:25:35 -080084 final IWindowId mWindowId;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080085 WindowToken mToken;
86 WindowToken mRootToken;
87 AppWindowToken mAppToken;
88 AppWindowToken mTargetAppToken;
Craig Mautnerd09cc4b2012-04-04 10:23:31 -070089
90 // mAttrs.flags is tested in animation without being locked. If the bits tested are ever
91 // modified they will need to be locked.
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080092 final WindowManager.LayoutParams mAttrs = new WindowManager.LayoutParams();
93 final DeathRecipient mDeathRecipient;
94 final WindowState mAttachedWindow;
Craig Mautner7b1aa772012-11-30 16:14:45 -080095 final WindowList mChildWindows = new WindowList();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080096 final int mBaseLayer;
97 final int mSubLayer;
98 final boolean mLayoutAttached;
99 final boolean mIsImWindow;
100 final boolean mIsWallpaper;
101 final boolean mIsFloatingLayer;
Dianne Hackborn9a230e02011-10-06 11:51:27 -0700102 int mSeq;
Dianne Hackborn5fd21692011-06-07 14:09:47 -0700103 boolean mEnforceSizeCompat;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800104 int mViewVisibility;
Dianne Hackborn9a230e02011-10-06 11:51:27 -0700105 int mSystemUiVisibility;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800106 boolean mPolicyVisibility = true;
107 boolean mPolicyVisibilityAfterAnim = true;
Dianne Hackbornb6b23ec2013-02-11 19:29:06 -0800108 boolean mAppOpVisibility = true;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800109 boolean mAppFreezing;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800110 boolean mAttachedHidden; // is our parent window hidden?
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800111 boolean mWallpaperVisible; // for wallpaper, what was last vis report?
Dianne Hackbornffb3d932011-05-17 17:44:51 -0700112
Dianne Hackborne3f23a32013-03-01 13:25:35 -0800113 RemoteCallbackList<IWindowFocusObserver> mFocusCallbacks;
114
Dianne Hackbornffb3d932011-05-17 17:44:51 -0700115 /**
116 * The window size that was requested by the application. These are in
117 * the application's coordinate space (without compatibility scale applied).
118 */
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800119 int mRequestedWidth;
120 int mRequestedHeight;
Dianne Hackborn1743b642012-03-12 17:04:43 -0700121 int mLastRequestedWidth;
122 int mLastRequestedHeight;
Dianne Hackbornffb3d932011-05-17 17:44:51 -0700123
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800124 int mLayer;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800125 boolean mHaveFrame;
126 boolean mObscured;
127 boolean mTurnOnScreen;
128
129 int mLayoutSeq = -1;
Craig Mautnera2c77052012-03-26 12:14:43 -0700130
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800131 Configuration mConfiguration = null;
Craig Mautnere8552142012-11-07 13:55:47 -0800132 // Sticky answer to isConfigChanged(), remains true until new Configuration is assigned.
133 // Used only on {@link #TYPE_KEYGUARD}.
134 private boolean mConfigHasChanged;
Craig Mautnera2c77052012-03-26 12:14:43 -0700135
Dianne Hackbornffb3d932011-05-17 17:44:51 -0700136 /**
137 * Actual frame shown on-screen (may be modified by animation). These
138 * are in the screen's coordinate space (WITH the compatibility scale
139 * applied).
140 */
Dianne Hackbornd040edb2011-08-31 12:47:58 -0700141 final RectF mShownFrame = new RectF();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800142
143 /**
Dianne Hackbornffb3d932011-05-17 17:44:51 -0700144 * Insets that determine the actually visible area. These are in the application's
145 * coordinate space (without compatibility scale applied).
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800146 */
147 final Rect mVisibleInsets = new Rect();
148 final Rect mLastVisibleInsets = new Rect();
149 boolean mVisibleInsetsChanged;
150
151 /**
Dianne Hackborn5c58de32012-04-28 19:52:37 -0700152 * Insets that are covered by system windows (such as the status bar) and
153 * transient docking windows (such as the IME). These are in the application's
Dianne Hackbornffb3d932011-05-17 17:44:51 -0700154 * coordinate space (without compatibility scale applied).
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800155 */
156 final Rect mContentInsets = new Rect();
157 final Rect mLastContentInsets = new Rect();
158 boolean mContentInsetsChanged;
159
160 /**
Dianne Hackbornc4aad012013-02-22 15:05:25 -0800161 * Insets that determine the area covered by the display overscan region. These are in the
162 * application's coordinate space (without compatibility scale applied).
163 */
164 final Rect mOverscanInsets = new Rect();
165 final Rect mLastOverscanInsets = new Rect();
166 boolean mOverscanInsetsChanged;
167
168 /**
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800169 * Set to true if we are waiting for this window to receive its
170 * given internal insets before laying out other windows based on it.
171 */
172 boolean mGivenInsetsPending;
173
174 /**
175 * These are the content insets that were given during layout for
176 * this window, to be applied to windows behind it.
177 */
178 final Rect mGivenContentInsets = new Rect();
179
180 /**
181 * These are the visible insets that were given during layout for
182 * this window, to be applied to windows behind it.
183 */
184 final Rect mGivenVisibleInsets = new Rect();
185
186 /**
187 * This is the given touchable area relative to the window frame, or null if none.
188 */
189 final Region mGivenTouchableRegion = new Region();
190
191 /**
192 * Flag indicating whether the touchable region should be adjusted by
193 * the visible insets; if false the area outside the visible insets is
194 * NOT touchable, so we must use those to adjust the frame during hit
195 * tests.
196 */
197 int mTouchableInsets = ViewTreeObserver.InternalInsetsInfo.TOUCHABLE_INSETS_FRAME;
198
Dianne Hackborn85afd1b2012-05-13 13:31:06 -0700199 /**
200 * This is rectangle of the window's surface that is not covered by
201 * system decorations.
202 */
203 final Rect mSystemDecorRect = new Rect();
204 final Rect mLastSystemDecorRect = new Rect();
205
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800206 // Current transformation being applied.
Dianne Hackborne2515ee2011-04-27 18:52:56 -0400207 float mGlobalScale=1;
Dianne Hackbornffb3d932011-05-17 17:44:51 -0700208 float mInvGlobalScale=1;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800209 float mHScale=1, mVScale=1;
210 float mLastHScale=1, mLastVScale=1;
211 final Matrix mTmpMatrix = new Matrix();
212
Dianne Hackbornffb3d932011-05-17 17:44:51 -0700213 // "Real" frame that the application sees, in display coordinate space.
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800214 final Rect mFrame = new Rect();
215 final Rect mLastFrame = new Rect();
Dianne Hackbornffb3d932011-05-17 17:44:51 -0700216 // Frame that is scaled to the application's coordinate space when in
217 // screen size compatibility mode.
218 final Rect mCompatFrame = new Rect();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800219
220 final Rect mContainingFrame = new Rect();
221 final Rect mDisplayFrame = new Rect();
Dianne Hackbornc4aad012013-02-22 15:05:25 -0800222 final Rect mOverscanFrame = new Rect();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800223 final Rect mContentFrame = new Rect();
224 final Rect mParentFrame = new Rect();
225 final Rect mVisibleFrame = new Rect();
John Spurlock46646232013-09-30 22:32:42 -0400226 final Rect mDecorFrame = new Rect();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800227
228 boolean mContentChanged;
229
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800230 // If a window showing a wallpaper: the requested offset for the
231 // wallpaper; if a wallpaper window: the currently applied offset.
232 float mWallpaperX = -1;
233 float mWallpaperY = -1;
234
235 // If a window showing a wallpaper: what fraction of the offset
236 // range corresponds to a full virtual screen.
237 float mWallpaperXStep = -1;
238 float mWallpaperYStep = -1;
239
240 // Wallpaper windows: pixels offset based on above variables.
241 int mXOffset;
242 int mYOffset;
243
Craig Mautner2268e7e2012-12-13 15:40:00 -0800244 /**
245 * This is set after IWindowSession.relayout() has been called at
246 * least once for the window. It allows us to detect the situation
247 * where we don't yet have a surface, but should have one soon, so
248 * we can give the window focus before waiting for the relayout.
249 */
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800250 boolean mRelayoutCalled;
251
Craig Mautner0bf6ec92012-12-18 08:33:27 -0800252 /**
253 * If the application has called relayout() with changes that can
254 * impact its window's size, we need to perform a layout pass on it
255 * even if it is not currently visible for layout. This is set
256 * when in that case until the layout is done.
257 */
Dianne Hackbornb7ff51b2012-01-23 19:15:27 -0800258 boolean mLayoutNeeded;
259
Craig Mautner0bf6ec92012-12-18 08:33:27 -0800260 /** Currently running an exit animation? */
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800261 boolean mExiting;
262
Craig Mautner0bf6ec92012-12-18 08:33:27 -0800263 /** Currently on the mDestroySurface list? */
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800264 boolean mDestroying;
265
Craig Mautner0bf6ec92012-12-18 08:33:27 -0800266 /** Completely remove from window manager after exit animation? */
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800267 boolean mRemoveOnExit;
268
Craig Mautner0bf6ec92012-12-18 08:33:27 -0800269 /**
270 * Set when the orientation is changing and this window has not yet
271 * been updated for the new orientation.
272 */
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800273 boolean mOrientationChanging;
274
Dianne Hackborna57c6952013-03-29 14:46:40 -0700275 /**
276 * How long we last kept the screen frozen.
277 */
278 int mLastFreezeDuration;
279
Craig Mautner0bf6ec92012-12-18 08:33:27 -0800280 /** Is this window now (or just being) removed? */
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800281 boolean mRemoved;
282
Craig Mautner0bf6ec92012-12-18 08:33:27 -0800283 /**
284 * Temp for keeping track of windows that have been removed when
285 * rebuilding window list.
286 */
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800287 boolean mRebuilding;
288
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800289 // Input channel and input window handle used by the input dispatcher.
Jeff Brown9302c872011-07-13 22:51:29 -0700290 final InputWindowHandle mInputWindowHandle;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800291 InputChannel mInputChannel;
Craig Mautner164d4bb2012-11-26 13:51:23 -0800292
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800293 // Used to improve performance of toString()
294 String mStringNameCache;
295 CharSequence mLastTitle;
Dianne Hackborn529e7442012-11-01 14:22:28 -0700296 boolean mWasExiting;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800297
Craig Mautnera2c77052012-03-26 12:14:43 -0700298 final WindowStateAnimator mWinAnimator;
299
Craig Mautnerc8bc97e2012-04-02 12:54:54 -0700300 boolean mHasSurface = false;
301
Craig Mautner59c00972012-07-30 12:10:24 -0700302 DisplayContent mDisplayContent;
Craig Mautner6881a102012-07-27 13:04:51 -0700303
Craig Mautner88400d32012-09-30 12:35:45 -0700304 /** When true this window can be displayed on screens owther than mOwnerUid's */
305 private boolean mShowToOwnerOnly;
Craig Mautner9dc52bc2012-08-06 14:15:42 -0700306
Craig Mautnerc5a6e442013-06-05 17:22:35 -0700307 /** When true this window is at the top of the screen and should be layed out to extend under
308 * the status bar */
309 boolean mUnderStatusBar = true;
310
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800311 WindowState(WindowManagerService service, Session s, IWindow c, WindowToken token,
Dianne Hackbornc2293022013-02-06 23:14:49 -0800312 WindowState attachedWindow, int appOp, int seq, WindowManager.LayoutParams a,
Craig Mautner59c00972012-07-30 12:10:24 -0700313 int viewVisibility, final DisplayContent displayContent) {
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800314 mService = service;
315 mSession = s;
316 mClient = c;
Dianne Hackbornc2293022013-02-06 23:14:49 -0800317 mAppOp = appOp;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800318 mToken = token;
Craig Mautnera2d7b112012-08-21 15:12:20 -0700319 mOwnerUid = s.mUid;
Dianne Hackborne3f23a32013-03-01 13:25:35 -0800320 mWindowId = new IWindowId.Stub() {
321 @Override
322 public void registerFocusObserver(IWindowFocusObserver observer) {
323 WindowState.this.registerFocusObserver(observer);
324 }
325 @Override
326 public void unregisterFocusObserver(IWindowFocusObserver observer) {
327 WindowState.this.unregisterFocusObserver(observer);
328 }
329 @Override
330 public boolean isFocused() {
331 return WindowState.this.isFocused();
332 }
333 };
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800334 mAttrs.copyFrom(a);
335 mViewVisibility = viewVisibility;
Craig Mautner59c00972012-07-30 12:10:24 -0700336 mDisplayContent = displayContent;
Craig Mautnere7ae2502012-03-26 17:11:19 -0700337 mPolicy = mService.mPolicy;
338 mContext = mService.mContext;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800339 DeathRecipient deathRecipient = new DeathRecipient();
Dianne Hackborn9a230e02011-10-06 11:51:27 -0700340 mSeq = seq;
Adam Lesinski95c42972013-10-02 10:13:27 -0700341 mEnforceSizeCompat = (mAttrs.privateFlags & PRIVATE_FLAG_COMPATIBLE_WINDOW) != 0;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800342 if (WindowManagerService.localLOGV) Slog.v(
Craig Mautnerd87946b2012-03-29 18:00:19 -0700343 TAG, "Window " + this + " client=" + c.asBinder()
Craig Mautnerad09bcc2012-10-08 13:33:11 -0700344 + " token=" + token + " (" + mAttrs.token + ")" + " params=" + a);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800345 try {
346 c.asBinder().linkToDeath(deathRecipient, 0);
347 } catch (RemoteException e) {
348 mDeathRecipient = null;
349 mAttachedWindow = null;
350 mLayoutAttached = false;
351 mIsImWindow = false;
352 mIsWallpaper = false;
353 mIsFloatingLayer = false;
354 mBaseLayer = 0;
355 mSubLayer = 0;
Jeff Brown9302c872011-07-13 22:51:29 -0700356 mInputWindowHandle = null;
Craig Mautnera2c77052012-03-26 12:14:43 -0700357 mWinAnimator = null;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800358 return;
359 }
360 mDeathRecipient = deathRecipient;
361
362 if ((mAttrs.type >= FIRST_SUB_WINDOW &&
363 mAttrs.type <= LAST_SUB_WINDOW)) {
364 // The multiplier here is to reserve space for multiple
365 // windows in the same type layer.
Craig Mautnere7ae2502012-03-26 17:11:19 -0700366 mBaseLayer = mPolicy.windowTypeToLayerLw(
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800367 attachedWindow.mAttrs.type) * WindowManagerService.TYPE_LAYER_MULTIPLIER
368 + WindowManagerService.TYPE_LAYER_OFFSET;
Craig Mautnere7ae2502012-03-26 17:11:19 -0700369 mSubLayer = mPolicy.subWindowTypeToLayerLw(a.type);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800370 mAttachedWindow = attachedWindow;
Craig Mautnerd87946b2012-03-29 18:00:19 -0700371 if (WindowManagerService.DEBUG_ADD_REMOVE) Slog.v(TAG, "Adding " + this + " to " + mAttachedWindow);
takeda.masayuki18735092012-12-12 11:06:24 +0900372
373 int children_size = mAttachedWindow.mChildWindows.size();
374 if (children_size == 0) {
375 mAttachedWindow.mChildWindows.add(this);
376 } else {
377 for (int i = 0; i < children_size; i++) {
Craig Mautner38f7dcd2014-02-06 10:31:41 -0800378 WindowState child = mAttachedWindow.mChildWindows.get(i);
379 if (mSubLayer < child.mSubLayer) {
takeda.masayuki18735092012-12-12 11:06:24 +0900380 mAttachedWindow.mChildWindows.add(i, this);
381 break;
Craig Mautner38f7dcd2014-02-06 10:31:41 -0800382 } else if (mSubLayer > child.mSubLayer) {
takeda.masayuki18735092012-12-12 11:06:24 +0900383 continue;
384 }
385
Craig Mautner38f7dcd2014-02-06 10:31:41 -0800386 if (mBaseLayer <= child.mBaseLayer) {
takeda.masayuki18735092012-12-12 11:06:24 +0900387 mAttachedWindow.mChildWindows.add(i, this);
388 break;
takeda.masayuki18735092012-12-12 11:06:24 +0900389 }
390 }
391 if (children_size == mAttachedWindow.mChildWindows.size()) {
392 mAttachedWindow.mChildWindows.add(this);
393 }
394 }
395
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800396 mLayoutAttached = mAttrs.type !=
397 WindowManager.LayoutParams.TYPE_APPLICATION_ATTACHED_DIALOG;
398 mIsImWindow = attachedWindow.mAttrs.type == TYPE_INPUT_METHOD
399 || attachedWindow.mAttrs.type == TYPE_INPUT_METHOD_DIALOG;
400 mIsWallpaper = attachedWindow.mAttrs.type == TYPE_WALLPAPER;
401 mIsFloatingLayer = mIsImWindow || mIsWallpaper;
402 } else {
403 // The multiplier here is to reserve space for multiple
404 // windows in the same type layer.
Craig Mautnere7ae2502012-03-26 17:11:19 -0700405 mBaseLayer = mPolicy.windowTypeToLayerLw(a.type)
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800406 * WindowManagerService.TYPE_LAYER_MULTIPLIER
407 + WindowManagerService.TYPE_LAYER_OFFSET;
408 mSubLayer = 0;
409 mAttachedWindow = null;
410 mLayoutAttached = false;
411 mIsImWindow = mAttrs.type == TYPE_INPUT_METHOD
412 || mAttrs.type == TYPE_INPUT_METHOD_DIALOG;
413 mIsWallpaper = mAttrs.type == TYPE_WALLPAPER;
414 mIsFloatingLayer = mIsImWindow || mIsWallpaper;
415 }
416
417 WindowState appWin = this;
418 while (appWin.mAttachedWindow != null) {
Craig Mautnera2c77052012-03-26 12:14:43 -0700419 appWin = appWin.mAttachedWindow;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800420 }
421 WindowToken appToken = appWin.mToken;
422 while (appToken.appWindowToken == null) {
423 WindowToken parent = mService.mTokenMap.get(appToken.token);
424 if (parent == null || appToken == parent) {
425 break;
426 }
427 appToken = parent;
428 }
429 mRootToken = appToken;
430 mAppToken = appToken.appWindowToken;
431
Craig Mautner322e4032012-07-13 13:35:20 -0700432 mWinAnimator = new WindowStateAnimator(this);
433 mWinAnimator.mAlpha = a.alpha;
434
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800435 mRequestedWidth = 0;
436 mRequestedHeight = 0;
Dianne Hackborn1743b642012-03-12 17:04:43 -0700437 mLastRequestedWidth = 0;
438 mLastRequestedHeight = 0;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800439 mXOffset = 0;
440 mYOffset = 0;
441 mLayer = 0;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800442 mInputWindowHandle = new InputWindowHandle(
Craig Mautner59c00972012-07-30 12:10:24 -0700443 mAppToken != null ? mAppToken.mInputApplicationHandle : null, this,
444 displayContent.getDisplayId());
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800445 }
446
447 void attach() {
448 if (WindowManagerService.localLOGV) Slog.v(
Craig Mautnerd87946b2012-03-29 18:00:19 -0700449 TAG, "Attaching " + this + " token=" + mToken
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800450 + ", list=" + mToken.windows);
451 mSession.windowAddedLocked();
452 }
453
Craig Mautnera2c77052012-03-26 12:14:43 -0700454 @Override
Dianne Hackbornf265ea92013-01-31 15:00:51 -0800455 public int getOwningUid() {
Dianne Hackbornc2293022013-02-06 23:14:49 -0800456 return mOwnerUid;
Dianne Hackbornf265ea92013-01-31 15:00:51 -0800457 }
458
459 @Override
460 public String getOwningPackage() {
461 return mAttrs.packageName;
462 }
463
464 @Override
John Spurlock46646232013-09-30 22:32:42 -0400465 public void computeFrameLw(Rect pf, Rect df, Rect of, Rect cf, Rect vf, Rect dcf) {
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800466 mHaveFrame = true;
467
John Spurlock7045aaa2013-07-16 17:38:54 -0400468 TaskStack stack = mAppToken != null ? getStack() : null;
Craig Mautnerbdc748af2013-12-02 14:08:25 -0800469 if (stack != null && !stack.isFullscreen()) {
470 getStackBounds(stack, mContainingFrame);
Craig Mautnerc5a6e442013-06-05 17:22:35 -0700471 if (mUnderStatusBar) {
472 mContainingFrame.top = pf.top;
473 }
Craig Mautner967212c2013-04-13 21:10:58 -0700474 } else {
475 mContainingFrame.set(pf);
476 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800477
Craig Mautnereda67292013-04-28 13:50:14 -0700478 mDisplayFrame.set(df);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800479
Craig Mautner967212c2013-04-13 21:10:58 -0700480 final int pw = mContainingFrame.width();
481 final int ph = mContainingFrame.height();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800482
483 int w,h;
Dianne Hackbornffb3d932011-05-17 17:44:51 -0700484 if ((mAttrs.flags & WindowManager.LayoutParams.FLAG_SCALED) != 0) {
485 if (mAttrs.width < 0) {
486 w = pw;
487 } else if (mEnforceSizeCompat) {
488 w = (int)(mAttrs.width * mGlobalScale + .5f);
489 } else {
490 w = mAttrs.width;
491 }
492 if (mAttrs.height < 0) {
493 h = ph;
494 } else if (mEnforceSizeCompat) {
495 h = (int)(mAttrs.height * mGlobalScale + .5f);
496 } else {
497 h = mAttrs.height;
498 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800499 } else {
Dianne Hackbornffb3d932011-05-17 17:44:51 -0700500 if (mAttrs.width == WindowManager.LayoutParams.MATCH_PARENT) {
501 w = pw;
502 } else if (mEnforceSizeCompat) {
503 w = (int)(mRequestedWidth * mGlobalScale + .5f);
504 } else {
505 w = mRequestedWidth;
506 }
507 if (mAttrs.height == WindowManager.LayoutParams.MATCH_PARENT) {
508 h = ph;
509 } else if (mEnforceSizeCompat) {
510 h = (int)(mRequestedHeight * mGlobalScale + .5f);
511 } else {
512 h = mRequestedHeight;
513 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800514 }
515
516 if (!mParentFrame.equals(pf)) {
517 //Slog.i(TAG, "Window " + this + " content frame from " + mParentFrame
518 // + " to " + pf);
519 mParentFrame.set(pf);
520 mContentChanged = true;
521 }
Dianne Hackborn1743b642012-03-12 17:04:43 -0700522 if (mRequestedWidth != mLastRequestedWidth || mRequestedHeight != mLastRequestedHeight) {
523 mLastRequestedWidth = mRequestedWidth;
524 mLastRequestedHeight = mRequestedHeight;
525 mContentChanged = true;
526 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800527
Craig Mautnereda67292013-04-28 13:50:14 -0700528 mOverscanFrame.set(of);
529 mContentFrame.set(cf);
530 mVisibleFrame.set(vf);
John Spurlock46646232013-09-30 22:32:42 -0400531 mDecorFrame.set(dcf);
Dianne Hackbornc4aad012013-02-22 15:05:25 -0800532
Craig Mautnereda67292013-04-28 13:50:14 -0700533 final int fw = mFrame.width();
534 final int fh = mFrame.height();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800535
536 //System.out.println("In: w=" + w + " h=" + h + " container=" +
537 // container + " x=" + mAttrs.x + " y=" + mAttrs.y);
538
Dianne Hackbornffb3d932011-05-17 17:44:51 -0700539 float x, y;
540 if (mEnforceSizeCompat) {
541 x = mAttrs.x * mGlobalScale;
542 y = mAttrs.y * mGlobalScale;
543 } else {
544 x = mAttrs.x;
545 y = mAttrs.y;
546 }
547
Craig Mautner967212c2013-04-13 21:10:58 -0700548 Gravity.apply(mAttrs.gravity, w, h, mContainingFrame,
Dianne Hackbornffb3d932011-05-17 17:44:51 -0700549 (int) (x + mAttrs.horizontalMargin * pw),
Craig Mautnereda67292013-04-28 13:50:14 -0700550 (int) (y + mAttrs.verticalMargin * ph), mFrame);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800551
552 //System.out.println("Out: " + mFrame);
553
554 // Now make sure the window fits in the overall display.
Craig Mautnereda67292013-04-28 13:50:14 -0700555 Gravity.applyDisplay(mAttrs.gravity, df, mFrame);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800556
Craig Mautnera248eee2013-05-07 11:41:27 -0700557 // Make sure the content and visible frames are inside of the
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800558 // final window frame.
Craig Mautnereda67292013-04-28 13:50:14 -0700559 mContentFrame.set(Math.max(mContentFrame.left, mFrame.left),
560 Math.max(mContentFrame.top, mFrame.top),
561 Math.min(mContentFrame.right, mFrame.right),
562 Math.min(mContentFrame.bottom, mFrame.bottom));
Dianne Hackbornc4aad012013-02-22 15:05:25 -0800563
Craig Mautnereda67292013-04-28 13:50:14 -0700564 mVisibleFrame.set(Math.max(mVisibleFrame.left, mFrame.left),
565 Math.max(mVisibleFrame.top, mFrame.top),
566 Math.min(mVisibleFrame.right, mFrame.right),
567 Math.min(mVisibleFrame.bottom, mFrame.bottom));
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800568
Craig Mautnerc36c8e62013-05-10 13:33:31 -0700569 mOverscanInsets.set(Math.max(mOverscanFrame.left - mFrame.left, 0),
570 Math.max(mOverscanFrame.top - mFrame.top, 0),
571 Math.max(mFrame.right - mOverscanFrame.right, 0),
572 Math.max(mFrame.bottom - mOverscanFrame.bottom, 0));
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800573
Craig Mautnereda67292013-04-28 13:50:14 -0700574 mContentInsets.set(mContentFrame.left - mFrame.left,
575 mContentFrame.top - mFrame.top,
576 mFrame.right - mContentFrame.right,
577 mFrame.bottom - mContentFrame.bottom);
578
579 mVisibleInsets.set(mVisibleFrame.left - mFrame.left,
580 mVisibleFrame.top - mFrame.top,
581 mFrame.right - mVisibleFrame.right,
582 mFrame.bottom - mVisibleFrame.bottom);
583
584 mCompatFrame.set(mFrame);
Dianne Hackborne2515ee2011-04-27 18:52:56 -0400585 if (mEnforceSizeCompat) {
Dianne Hackbornffb3d932011-05-17 17:44:51 -0700586 // If there is a size compatibility scale being applied to the
587 // window, we need to apply this to its insets so that they are
588 // reported to the app in its coordinate space.
Craig Mautnereda67292013-04-28 13:50:14 -0700589 mOverscanInsets.scale(mInvGlobalScale);
590 mContentInsets.scale(mInvGlobalScale);
591 mVisibleInsets.scale(mInvGlobalScale);
Dianne Hackbornffb3d932011-05-17 17:44:51 -0700592
593 // Also the scaled frame that we report to the app needs to be
594 // adjusted to be in its coordinate space.
595 mCompatFrame.scale(mInvGlobalScale);
Dianne Hackborne2515ee2011-04-27 18:52:56 -0400596 }
597
Craig Mautnereda67292013-04-28 13:50:14 -0700598 if (mIsWallpaper && (fw != mFrame.width() || fh != mFrame.height())) {
Craig Mautnerdf88d732014-01-27 09:21:32 -0800599 final DisplayContent displayContent = getDisplayContent();
600 if (displayContent != null) {
601 final DisplayInfo displayInfo = displayContent.getDisplayInfo();
602 mService.updateWallpaperOffsetLocked(this,
603 displayInfo.logicalWidth, displayInfo.logicalHeight, false);
604 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800605 }
606
Craig Mautnerb3b36ba2013-05-20 13:21:10 -0700607 if (DEBUG_LAYOUT || WindowManagerService.localLOGV) Slog.v(TAG,
608 "Resolving (mRequestedWidth="
609 + mRequestedWidth + ", mRequestedheight="
610 + mRequestedHeight + ") to" + " (pw=" + pw + ", ph=" + ph
611 + "): frame=" + mFrame.toShortString()
612 + " ci=" + mContentInsets.toShortString()
613 + " vi=" + mVisibleInsets.toShortString());
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800614 }
615
Craig Mautnera2c77052012-03-26 12:14:43 -0700616 @Override
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800617 public Rect getFrameLw() {
618 return mFrame;
619 }
620
Craig Mautnera2c77052012-03-26 12:14:43 -0700621 @Override
Dianne Hackbornd040edb2011-08-31 12:47:58 -0700622 public RectF getShownFrameLw() {
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800623 return mShownFrame;
624 }
625
Craig Mautnera2c77052012-03-26 12:14:43 -0700626 @Override
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800627 public Rect getDisplayFrameLw() {
628 return mDisplayFrame;
629 }
630
Craig Mautnera2c77052012-03-26 12:14:43 -0700631 @Override
Dianne Hackbornc4aad012013-02-22 15:05:25 -0800632 public Rect getOverscanFrameLw() {
633 return mOverscanFrame;
634 }
635
636 @Override
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800637 public Rect getContentFrameLw() {
638 return mContentFrame;
639 }
640
Craig Mautnera2c77052012-03-26 12:14:43 -0700641 @Override
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800642 public Rect getVisibleFrameLw() {
643 return mVisibleFrame;
644 }
645
Craig Mautnera2c77052012-03-26 12:14:43 -0700646 @Override
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800647 public boolean getGivenInsetsPendingLw() {
648 return mGivenInsetsPending;
649 }
650
Craig Mautnera2c77052012-03-26 12:14:43 -0700651 @Override
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800652 public Rect getGivenContentInsetsLw() {
653 return mGivenContentInsets;
654 }
655
Craig Mautnera2c77052012-03-26 12:14:43 -0700656 @Override
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800657 public Rect getGivenVisibleInsetsLw() {
658 return mGivenVisibleInsets;
659 }
660
Craig Mautnera2c77052012-03-26 12:14:43 -0700661 @Override
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800662 public WindowManager.LayoutParams getAttrs() {
663 return mAttrs;
664 }
665
Craig Mautner812d2ca2012-09-27 15:35:34 -0700666 @Override
Dianne Hackborn73ab6a42011-12-13 11:16:23 -0800667 public boolean getNeedsMenuLw(WindowManagerPolicy.WindowState bottom) {
668 int index = -1;
669 WindowState ws = this;
Craig Mautner59c00972012-07-30 12:10:24 -0700670 WindowList windows = getWindowList();
Dianne Hackborn73ab6a42011-12-13 11:16:23 -0800671 while (true) {
672 if ((ws.mAttrs.privateFlags
673 & WindowManager.LayoutParams.PRIVATE_FLAG_SET_NEEDS_MENU_KEY) != 0) {
674 return (ws.mAttrs.flags & WindowManager.LayoutParams.FLAG_NEEDS_MENU_KEY) != 0;
675 }
676 // If we reached the bottom of the range of windows we are considering,
677 // assume no menu is needed.
678 if (ws == bottom) {
679 return false;
680 }
681 // The current window hasn't specified whether menu key is needed;
682 // look behind it.
683 // First, we may need to determine the starting position.
684 if (index < 0) {
Craig Mautner59c00972012-07-30 12:10:24 -0700685 index = windows.indexOf(ws);
Dianne Hackborn73ab6a42011-12-13 11:16:23 -0800686 }
687 index--;
688 if (index < 0) {
689 return false;
690 }
Craig Mautner59c00972012-07-30 12:10:24 -0700691 ws = windows.get(index);
Dianne Hackborn73ab6a42011-12-13 11:16:23 -0800692 }
693 }
694
Craig Mautner19d59bc2012-09-04 11:15:56 -0700695 @Override
Dianne Hackborn9a230e02011-10-06 11:51:27 -0700696 public int getSystemUiVisibility() {
697 return mSystemUiVisibility;
698 }
699
Craig Mautner19d59bc2012-09-04 11:15:56 -0700700 @Override
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800701 public int getSurfaceLayer() {
702 return mLayer;
703 }
704
Craig Mautner812d2ca2012-09-27 15:35:34 -0700705 @Override
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800706 public IApplicationToken getAppToken() {
707 return mAppToken != null ? mAppToken.appToken : null;
708 }
Craig Mautner19d59bc2012-09-04 11:15:56 -0700709
Craig Mautner4c5eb222013-11-18 12:59:05 -0800710 boolean setInsetsChanged() {
711 mOverscanInsetsChanged |= !mLastOverscanInsets.equals(mOverscanInsets);
712 mContentInsetsChanged |= !mLastContentInsets.equals(mContentInsets);
713 mVisibleInsetsChanged |= !mLastVisibleInsets.equals(mVisibleInsets);
714 return mOverscanInsetsChanged || mContentInsetsChanged || mVisibleInsetsChanged;
715 }
716
Craig Mautnerdf88d732014-01-27 09:21:32 -0800717 public DisplayContent getDisplayContent() {
718 return mAppToken == null ? mDisplayContent : getStack().getDisplayContent();
719 }
720
Craig Mautner19d59bc2012-09-04 11:15:56 -0700721 public int getDisplayId() {
Craig Mautnerdf88d732014-01-27 09:21:32 -0800722 final DisplayContent displayContent = getDisplayContent();
723 if (displayContent == null) {
724 return -1;
725 }
726 return displayContent.getDisplayId();
Craig Mautner19d59bc2012-09-04 11:15:56 -0700727 }
728
Craig Mautnerd9a22882013-03-16 15:00:36 -0700729 TaskStack getStack() {
Craig Mautner05d29032013-05-03 13:40:13 -0700730 AppWindowToken wtoken = mAppToken == null ? mService.mFocusedApp : mAppToken;
731 if (wtoken != null) {
732 Task task = mService.mTaskIdToTask.get(wtoken.groupId);
Craig Mautnerf06b8c12013-04-18 14:27:28 -0700733 if (task != null) {
Craig Mautnere0a38842013-12-16 16:14:02 -0800734 if (task.mStack != null) {
735 return task.mStack;
736 }
737 Slog.e(TAG, "getStack: mStack null for task=" + task);
738 } else {
Craig Mautnerdf88d732014-01-27 09:21:32 -0800739 Slog.e(TAG, "getStack: " + this + " couldn't find taskId=" + wtoken.groupId
740 + " Callers=" + Debug.getCallers(4));
Craig Mautnerf06b8c12013-04-18 14:27:28 -0700741 }
Craig Mautnerd9a22882013-03-16 15:00:36 -0700742 }
Craig Mautner05d29032013-05-03 13:40:13 -0700743 return mDisplayContent.getHomeStack();
Craig Mautnerd9a22882013-03-16 15:00:36 -0700744 }
745
Craig Mautnerbdc748af2013-12-02 14:08:25 -0800746 void getStackBounds(Rect bounds) {
747 getStackBounds(getStack(), bounds);
John Spurlock7045aaa2013-07-16 17:38:54 -0400748 }
749
Craig Mautnerbdc748af2013-12-02 14:08:25 -0800750 private void getStackBounds(TaskStack stack, Rect bounds) {
Craig Mautner4cd0c13f2013-04-16 15:55:52 -0700751 if (stack != null) {
Craig Mautnerbdc748af2013-12-02 14:08:25 -0800752 stack.getBounds(bounds);
753 return;
Craig Mautner4cd0c13f2013-04-16 15:55:52 -0700754 }
Craig Mautnerbdc748af2013-12-02 14:08:25 -0800755 bounds.set(mFrame);
Craig Mautner4cd0c13f2013-04-16 15:55:52 -0700756 }
757
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800758 public long getInputDispatchingTimeoutNanos() {
759 return mAppToken != null
760 ? mAppToken.inputDispatchingTimeoutNanos
761 : WindowManagerService.DEFAULT_INPUT_DISPATCHING_TIMEOUT_NANOS;
762 }
763
Craig Mautnere8552142012-11-07 13:55:47 -0800764 @Override
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800765 public boolean hasAppShownWindows() {
Craig Mautnerf4120952012-06-21 18:25:39 -0700766 return mAppToken != null && (mAppToken.firstWindowDrawn || mAppToken.startingDisplayed);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800767 }
768
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800769 boolean isIdentityMatrix(float dsdx, float dtdx, float dsdy, float dtdy) {
770 if (dsdx < .99999f || dsdx > 1.00001f) return false;
771 if (dtdy < .99999f || dtdy > 1.00001f) return false;
772 if (dtdx < -.000001f || dtdx > .000001f) return false;
773 if (dsdy < -.000001f || dsdy > .000001f) return false;
774 return true;
775 }
776
Dianne Hackborne2515ee2011-04-27 18:52:56 -0400777 void prelayout() {
778 if (mEnforceSizeCompat) {
779 mGlobalScale = mService.mCompatibleScreenScale;
Dianne Hackbornffb3d932011-05-17 17:44:51 -0700780 mInvGlobalScale = 1/mGlobalScale;
Dianne Hackborne2515ee2011-04-27 18:52:56 -0400781 } else {
Dianne Hackbornffb3d932011-05-17 17:44:51 -0700782 mGlobalScale = mInvGlobalScale = 1;
Dianne Hackborne2515ee2011-04-27 18:52:56 -0400783 }
784 }
785
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800786 /**
787 * Is this window visible? It is not visible if there is no
788 * surface, or we are in the process of running an exit animation
789 * that will remove the surface, or its app token has been hidden.
790 */
Craig Mautner88400d32012-09-30 12:35:45 -0700791 @Override
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800792 public boolean isVisibleLw() {
793 final AppWindowToken atoken = mAppToken;
Craig Mautnerc8bc97e2012-04-02 12:54:54 -0700794 return mHasSurface && mPolicyVisibility && !mAttachedHidden
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800795 && (atoken == null || !atoken.hiddenRequested)
796 && !mExiting && !mDestroying;
797 }
798
799 /**
800 * Like {@link #isVisibleLw}, but also counts a window that is currently
801 * "hidden" behind the keyguard as visible. This allows us to apply
802 * things like window flags that impact the keyguard.
803 * XXX I am starting to think we need to have ANOTHER visibility flag
804 * for this "hidden behind keyguard" state rather than overloading
805 * mPolicyVisibility. Ungh.
806 */
Craig Mautner88400d32012-09-30 12:35:45 -0700807 @Override
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800808 public boolean isVisibleOrBehindKeyguardLw() {
Dianne Hackbornbc1aa7b2011-09-20 11:20:31 -0700809 if (mRootToken.waitingToShow &&
Craig Mautner164d4bb2012-11-26 13:51:23 -0800810 mService.mAppTransition.isTransitionSet()) {
Dianne Hackbornbc1aa7b2011-09-20 11:20:31 -0700811 return false;
812 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800813 final AppWindowToken atoken = mAppToken;
Dianne Hackbornbc1aa7b2011-09-20 11:20:31 -0700814 final boolean animating = atoken != null
Craig Mautner59431632012-04-04 11:56:44 -0700815 ? (atoken.mAppAnimator.animation != null) : false;
Craig Mautnerc8bc97e2012-04-02 12:54:54 -0700816 return mHasSurface && !mDestroying && !mExiting
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800817 && (atoken == null ? mPolicyVisibility : !atoken.hiddenRequested)
Dianne Hackbornbc1aa7b2011-09-20 11:20:31 -0700818 && ((!mAttachedHidden && mViewVisibility == View.VISIBLE
819 && !mRootToken.hidden)
Craig Mautnera2c77052012-03-26 12:14:43 -0700820 || mWinAnimator.mAnimation != null || animating);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800821 }
822
823 /**
824 * Is this window visible, ignoring its app token? It is not visible
825 * if there is no surface, or we are in the process of running an exit animation
826 * that will remove the surface.
827 */
828 public boolean isWinVisibleLw() {
829 final AppWindowToken atoken = mAppToken;
Craig Mautnerc8bc97e2012-04-02 12:54:54 -0700830 return mHasSurface && mPolicyVisibility && !mAttachedHidden
Craig Mautner59431632012-04-04 11:56:44 -0700831 && (atoken == null || !atoken.hiddenRequested || atoken.mAppAnimator.animating)
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800832 && !mExiting && !mDestroying;
833 }
834
835 /**
836 * The same as isVisible(), but follows the current hidden state of
837 * the associated app token, not the pending requested hidden state.
838 */
839 boolean isVisibleNow() {
Craig Mautnerc8bc97e2012-04-02 12:54:54 -0700840 return mHasSurface && mPolicyVisibility && !mAttachedHidden
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800841 && !mRootToken.hidden && !mExiting && !mDestroying;
842 }
843
844 /**
845 * Can this window possibly be a drag/drop target? The test here is
846 * a combination of the above "visible now" with the check that the
847 * Input Manager uses when discarding windows from input consideration.
848 */
849 boolean isPotentialDragTarget() {
Jeff Browncc4f7db2011-08-30 20:34:48 -0700850 return isVisibleNow() && !mRemoved
851 && mInputChannel != null && mInputWindowHandle != null;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800852 }
853
854 /**
855 * Same as isVisible(), but we also count it as visible between the
856 * call to IWindowSession.add() and the first relayout().
857 */
858 boolean isVisibleOrAdding() {
859 final AppWindowToken atoken = mAppToken;
Craig Mautnerbf08af32012-05-16 19:43:42 -0700860 return (mHasSurface || (!mRelayoutCalled && mViewVisibility == View.VISIBLE))
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800861 && mPolicyVisibility && !mAttachedHidden
862 && (atoken == null || !atoken.hiddenRequested)
863 && !mExiting && !mDestroying;
864 }
865
866 /**
867 * Is this window currently on-screen? It is on-screen either if it
868 * is visible or it is currently running an animation before no longer
869 * being visible.
870 */
871 boolean isOnScreen() {
Craig Mautnerc8bc97e2012-04-02 12:54:54 -0700872 if (!mHasSurface || !mPolicyVisibility || mDestroying) {
873 return false;
874 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800875 final AppWindowToken atoken = mAppToken;
876 if (atoken != null) {
Craig Mautnerc8bc97e2012-04-02 12:54:54 -0700877 return ((!mAttachedHidden && !atoken.hiddenRequested)
Craig Mautnerccc9e9b2012-12-11 09:40:34 -0800878 || mWinAnimator.mAnimation != null || atoken.mAppAnimator.animation != null);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800879 }
Craig Mautnerc8bc97e2012-04-02 12:54:54 -0700880 return !mAttachedHidden || mWinAnimator.mAnimation != null;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800881 }
882
883 /**
884 * Like isOnScreen(), but we don't return true if the window is part
885 * of a transition that has not yet been started.
886 */
887 boolean isReadyForDisplay() {
888 if (mRootToken.waitingToShow &&
Craig Mautner164d4bb2012-11-26 13:51:23 -0800889 mService.mAppTransition.isTransitionSet()) {
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800890 return false;
891 }
Craig Mautnerc8bc97e2012-04-02 12:54:54 -0700892 return mHasSurface && mPolicyVisibility && !mDestroying
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800893 && ((!mAttachedHidden && mViewVisibility == View.VISIBLE
894 && !mRootToken.hidden)
Craig Mautnera2c77052012-03-26 12:14:43 -0700895 || mWinAnimator.mAnimation != null
Craig Mautner59431632012-04-04 11:56:44 -0700896 || ((mAppToken != null) && (mAppToken.mAppAnimator.animation != null)));
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800897 }
898
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800899 /**
Dianne Hackborn6e2281d2012-06-19 17:48:32 -0700900 * Like isReadyForDisplay(), but ignores any force hiding of the window due
901 * to the keyguard.
902 */
903 boolean isReadyForDisplayIgnoringKeyguard() {
Craig Mautner164d4bb2012-11-26 13:51:23 -0800904 if (mRootToken.waitingToShow && mService.mAppTransition.isTransitionSet()) {
Dianne Hackborn6e2281d2012-06-19 17:48:32 -0700905 return false;
906 }
907 final AppWindowToken atoken = mAppToken;
908 if (atoken == null && !mPolicyVisibility) {
909 // If this is not an app window, and the policy has asked to force
910 // hide, then we really do want to hide.
911 return false;
912 }
913 return mHasSurface && !mDestroying
914 && ((!mAttachedHidden && mViewVisibility == View.VISIBLE
915 && !mRootToken.hidden)
916 || mWinAnimator.mAnimation != null
Craig Mautner9c5bf3b2012-06-22 15:19:13 -0700917 || ((atoken != null) && (atoken.mAppAnimator.animation != null)
918 && !mWinAnimator.isDummyAnimation()));
Dianne Hackborn6e2281d2012-06-19 17:48:32 -0700919 }
920
921 /**
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800922 * Like isOnScreen, but returns false if the surface hasn't yet
923 * been drawn.
924 */
Craig Mautnere6f7d5052012-10-08 10:34:17 -0700925 @Override
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800926 public boolean isDisplayedLw() {
927 final AppWindowToken atoken = mAppToken;
Craig Mautnerbf90eaa2012-03-15 11:28:53 -0700928 return isDrawnLw() && mPolicyVisibility
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800929 && ((!mAttachedHidden &&
930 (atoken == null || !atoken.hiddenRequested))
Craig Mautnere6f7d5052012-10-08 10:34:17 -0700931 || mWinAnimator.mAnimating
932 || (atoken != null && atoken.mAppAnimator.animation != null));
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800933 }
934
Dianne Hackborn5c58de32012-04-28 19:52:37 -0700935 /**
Craig Mautnerae446592012-12-06 19:05:05 -0800936 * Return true if this window or its app token is currently animating.
Dianne Hackborn5c58de32012-04-28 19:52:37 -0700937 */
Craig Mautnere6f7d5052012-10-08 10:34:17 -0700938 @Override
Dianne Hackborn5c58de32012-04-28 19:52:37 -0700939 public boolean isAnimatingLw() {
Craig Mautnerae446592012-12-06 19:05:05 -0800940 return mWinAnimator.mAnimation != null
941 || (mAppToken != null && mAppToken.mAppAnimator.animation != null);
Dianne Hackborn5c58de32012-04-28 19:52:37 -0700942 }
943
Craig Mautner812d2ca2012-09-27 15:35:34 -0700944 @Override
Dianne Hackborncfbf7de2012-01-12 14:05:03 -0800945 public boolean isGoneForLayoutLw() {
946 final AppWindowToken atoken = mAppToken;
947 return mViewVisibility == View.GONE
948 || !mRelayoutCalled
949 || (atoken == null && mRootToken.hidden)
Craig Mautner812d2ca2012-09-27 15:35:34 -0700950 || (atoken != null && (atoken.hiddenRequested || atoken.hidden))
Dianne Hackborncfbf7de2012-01-12 14:05:03 -0800951 || mAttachedHidden
Craig Mautner0e415c62013-04-29 16:10:58 -0700952 || (mExiting && !isAnimatingLw())
953 || mDestroying;
Dianne Hackborncfbf7de2012-01-12 14:05:03 -0800954 }
955
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800956 /**
957 * Returns true if the window has a surface that it has drawn a
958 * complete UI in to.
959 */
Craig Mautnerccc9e9b2012-12-11 09:40:34 -0800960 public boolean isDrawFinishedLw() {
961 return mHasSurface && !mDestroying &&
962 (mWinAnimator.mDrawState == WindowStateAnimator.COMMIT_DRAW_PENDING
963 || mWinAnimator.mDrawState == WindowStateAnimator.READY_TO_SHOW
964 || mWinAnimator.mDrawState == WindowStateAnimator.HAS_DRAWN);
965 }
966
967 /**
968 * Returns true if the window has a surface that it has drawn a
969 * complete UI in to.
970 */
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800971 public boolean isDrawnLw() {
Craig Mautnerc8bc97e2012-04-02 12:54:54 -0700972 return mHasSurface && !mDestroying &&
Craig Mautner749a7bb2012-04-02 13:49:53 -0700973 (mWinAnimator.mDrawState == WindowStateAnimator.READY_TO_SHOW
974 || mWinAnimator.mDrawState == WindowStateAnimator.HAS_DRAWN);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800975 }
976
977 /**
978 * Return true if the window is opaque and fully drawn. This indicates
979 * it may obscure windows behind it.
980 */
981 boolean isOpaqueDrawn() {
982 return (mAttrs.format == PixelFormat.OPAQUE
983 || mAttrs.type == TYPE_WALLPAPER)
Craig Mautnera2c77052012-03-26 12:14:43 -0700984 && isDrawnLw() && mWinAnimator.mAnimation == null
Craig Mautner59431632012-04-04 11:56:44 -0700985 && (mAppToken == null || mAppToken.mAppAnimator.animation == null);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800986 }
987
988 /**
989 * Return whether this window is wanting to have a translation
990 * animation applied to it for an in-progress move. (Only makes
991 * sense to call from performLayoutAndPlaceSurfacesLockedInner().)
992 */
993 boolean shouldAnimateMove() {
Craig Mautner749a7bb2012-04-02 13:49:53 -0700994 return mContentChanged && !mExiting && !mWinAnimator.mLastHidden && mService.okToDisplay()
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800995 && (mFrame.top != mLastFrame.top
996 || mFrame.left != mLastFrame.left)
Dianne Hackborn1c5383c2013-04-15 15:07:21 -0700997 && (mAttrs.privateFlags&PRIVATE_FLAG_NO_MOVE_ANIMATION) == 0
Craig Mautner2fb98b12012-03-20 17:24:00 -0700998 && (mAttachedWindow == null || !mAttachedWindow.shouldAnimateMove());
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800999 }
1000
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001001 boolean isFullscreen(int screenWidth, int screenHeight) {
Dianne Hackbornffb3d932011-05-17 17:44:51 -07001002 return mFrame.left <= 0 && mFrame.top <= 0 &&
1003 mFrame.right >= screenWidth && mFrame.bottom >= screenHeight;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001004 }
1005
Craig Mautner812d2ca2012-09-27 15:35:34 -07001006 boolean isConfigChanged() {
Craig Mautnere8552142012-11-07 13:55:47 -08001007 boolean configChanged = mConfiguration != mService.mCurConfiguration
Craig Mautner812d2ca2012-09-27 15:35:34 -07001008 && (mConfiguration == null
1009 || (mConfiguration.diff(mService.mCurConfiguration) != 0));
Craig Mautnere8552142012-11-07 13:55:47 -08001010
1011 if (mAttrs.type == TYPE_KEYGUARD) {
1012 // Retain configuration changed status until resetConfiguration called.
1013 mConfigHasChanged |= configChanged;
1014 configChanged = mConfigHasChanged;
1015 }
1016
1017 return configChanged;
Craig Mautner812d2ca2012-09-27 15:35:34 -07001018 }
1019
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001020 void removeLocked() {
1021 disposeInputChannel();
Craig Mautner164d4bb2012-11-26 13:51:23 -08001022
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001023 if (mAttachedWindow != null) {
Craig Mautnerd87946b2012-03-29 18:00:19 -07001024 if (WindowManagerService.DEBUG_ADD_REMOVE) Slog.v(TAG, "Removing " + this + " from " + mAttachedWindow);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001025 mAttachedWindow.mChildWindows.remove(this);
1026 }
Craig Mautner96868332012-12-04 14:29:11 -08001027 mWinAnimator.destroyDeferredSurfaceLocked();
1028 mWinAnimator.destroySurfaceLocked();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001029 mSession.windowRemovedLocked();
1030 try {
1031 mClient.asBinder().unlinkToDeath(mDeathRecipient, 0);
1032 } catch (RuntimeException e) {
1033 // Ignore if it has already been removed (usually because
1034 // we are doing this as part of processing a death note.)
1035 }
1036 }
Jeff Browncc4f7db2011-08-30 20:34:48 -07001037
Craig Mautnere8552142012-11-07 13:55:47 -08001038 void setConfiguration(final Configuration newConfig) {
1039 mConfiguration = newConfig;
1040 mConfigHasChanged = false;
1041 }
1042
Jeff Browncc4f7db2011-08-30 20:34:48 -07001043 void setInputChannel(InputChannel inputChannel) {
1044 if (mInputChannel != null) {
1045 throw new IllegalStateException("Window already has an input channel.");
1046 }
1047
1048 mInputChannel = inputChannel;
1049 mInputWindowHandle.inputChannel = inputChannel;
1050 }
1051
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001052 void disposeInputChannel() {
1053 if (mInputChannel != null) {
1054 mService.mInputManager.unregisterInputChannel(mInputChannel);
Craig Mautner164d4bb2012-11-26 13:51:23 -08001055
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001056 mInputChannel.dispose();
1057 mInputChannel = null;
1058 }
Jeff Browncc4f7db2011-08-30 20:34:48 -07001059
1060 mInputWindowHandle.inputChannel = null;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001061 }
1062
1063 private class DeathRecipient implements IBinder.DeathRecipient {
Craig Mautnere8552142012-11-07 13:55:47 -08001064 @Override
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001065 public void binderDied() {
1066 try {
1067 synchronized(mService.mWindowMap) {
1068 WindowState win = mService.windowForClientLocked(mSession, mClient, false);
Craig Mautnerd87946b2012-03-29 18:00:19 -07001069 Slog.i(TAG, "WIN DEATH: " + win);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001070 if (win != null) {
1071 mService.removeWindowLocked(mSession, win);
Craig Mautnerb3b36ba2013-05-20 13:21:10 -07001072 } else if (mHasSurface) {
Craig Mautnera99764e2013-03-06 10:22:16 -08001073 Slog.e(TAG, "!!! LEAK !!! Window removed but surface still valid.");
1074 mService.removeWindowLocked(mSession, WindowState.this);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001075 }
1076 }
1077 } catch (IllegalArgumentException ex) {
1078 // This will happen if the window has already been
1079 // removed.
1080 }
1081 }
1082 }
1083
Craig Mautner58106812012-12-28 12:27:40 -08001084 /**
1085 * @return true if this window desires key events.
Craig Mautneref25d7a2012-05-15 23:01:47 -07001086 */
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001087 public final boolean canReceiveKeys() {
Craig Mautner58106812012-12-28 12:27:40 -08001088 return isVisibleOrAdding()
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001089 && (mViewVisibility == View.VISIBLE)
1090 && ((mAttrs.flags & WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE) == 0);
1091 }
1092
Craig Mautner749a7bb2012-04-02 13:49:53 -07001093 @Override
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001094 public boolean hasDrawnLw() {
Craig Mautner749a7bb2012-04-02 13:49:53 -07001095 return mWinAnimator.mDrawState == WindowStateAnimator.HAS_DRAWN;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001096 }
1097
Craig Mautner749a7bb2012-04-02 13:49:53 -07001098 @Override
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001099 public boolean showLw(boolean doAnimation) {
1100 return showLw(doAnimation, true);
1101 }
1102
1103 boolean showLw(boolean doAnimation, boolean requestAnim) {
Craig Mautner5962b122012-10-05 14:45:52 -07001104 if (isHiddenFromUserLocked()) {
Craig Mautner88400d32012-09-30 12:35:45 -07001105 Slog.w(TAG, "current user violation " + mService.mCurrentUserId + " trying to display "
Craig Mautnera2d7b112012-08-21 15:12:20 -07001106 + this + ", type " + mAttrs.type + ", belonging to " + mOwnerUid);
Craig Mautner9dc52bc2012-08-06 14:15:42 -07001107 return false;
1108 }
Dianne Hackbornb6b23ec2013-02-11 19:29:06 -08001109 if (!mAppOpVisibility) {
1110 // Being hidden due to app op request.
1111 return false;
1112 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001113 if (mPolicyVisibility && mPolicyVisibilityAfterAnim) {
Craig Mautnere32c3072012-03-12 15:25:35 -07001114 // Already showing.
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001115 return false;
1116 }
Craig Mautnerd87946b2012-03-29 18:00:19 -07001117 if (DEBUG_VISIBILITY) Slog.v(TAG, "Policy visibility true: " + this);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001118 if (doAnimation) {
Craig Mautnerd87946b2012-03-29 18:00:19 -07001119 if (DEBUG_VISIBILITY) Slog.v(TAG, "doAnimation: mPolicyVisibility="
Craig Mautnera2c77052012-03-26 12:14:43 -07001120 + mPolicyVisibility + " mAnimation=" + mWinAnimator.mAnimation);
Craig Mautner2fb98b12012-03-20 17:24:00 -07001121 if (!mService.okToDisplay()) {
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001122 doAnimation = false;
Craig Mautnera2c77052012-03-26 12:14:43 -07001123 } else if (mPolicyVisibility && mWinAnimator.mAnimation == null) {
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001124 // Check for the case where we are currently visible and
1125 // not animating; we do not want to do animation at such a
1126 // point to become visible when we already are.
1127 doAnimation = false;
1128 }
1129 }
1130 mPolicyVisibility = true;
1131 mPolicyVisibilityAfterAnim = true;
1132 if (doAnimation) {
Craig Mautnerc2f9be02012-03-27 17:32:29 -07001133 mWinAnimator.applyAnimationLocked(WindowManagerPolicy.TRANSIT_ENTER, true);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001134 }
1135 if (requestAnim) {
Craig Mautner96868332012-12-04 14:29:11 -08001136 mService.scheduleAnimationLocked();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001137 }
1138 return true;
1139 }
1140
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001141 @Override
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001142 public boolean hideLw(boolean doAnimation) {
1143 return hideLw(doAnimation, true);
1144 }
1145
1146 boolean hideLw(boolean doAnimation, boolean requestAnim) {
1147 if (doAnimation) {
Craig Mautner2fb98b12012-03-20 17:24:00 -07001148 if (!mService.okToDisplay()) {
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001149 doAnimation = false;
1150 }
1151 }
1152 boolean current = doAnimation ? mPolicyVisibilityAfterAnim
1153 : mPolicyVisibility;
1154 if (!current) {
Craig Mautnere32c3072012-03-12 15:25:35 -07001155 // Already hiding.
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001156 return false;
1157 }
1158 if (doAnimation) {
Craig Mautnerc2f9be02012-03-27 17:32:29 -07001159 mWinAnimator.applyAnimationLocked(WindowManagerPolicy.TRANSIT_EXIT, false);
Craig Mautnera2c77052012-03-26 12:14:43 -07001160 if (mWinAnimator.mAnimation == null) {
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001161 doAnimation = false;
1162 }
1163 }
1164 if (doAnimation) {
1165 mPolicyVisibilityAfterAnim = false;
1166 } else {
Craig Mautnerd87946b2012-03-29 18:00:19 -07001167 if (DEBUG_VISIBILITY) Slog.v(TAG, "Policy visibility false: " + this);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001168 mPolicyVisibilityAfterAnim = false;
1169 mPolicyVisibility = false;
1170 // Window is no longer visible -- make sure if we were waiting
1171 // for it to be displayed before enabling the display, that
1172 // we allow the display to be enabled now.
1173 mService.enableScreenIfNeededLocked();
1174 if (mService.mCurrentFocus == this) {
Craig Mautner58458122013-09-14 14:59:50 -07001175 if (WindowManagerService.DEBUG_FOCUS_LIGHT) Slog.i(TAG,
1176 "WindowState.hideLw: setting mFocusMayChange true");
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001177 mService.mFocusMayChange = true;
1178 }
1179 }
1180 if (requestAnim) {
Craig Mautner96868332012-12-04 14:29:11 -08001181 mService.scheduleAnimationLocked();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001182 }
1183 return true;
1184 }
1185
Craig Mautnerfb32c6e2013-02-12 15:08:44 -08001186 public void setAppOpVisibilityLw(boolean state) {
Dianne Hackbornb6b23ec2013-02-11 19:29:06 -08001187 if (mAppOpVisibility != state) {
1188 mAppOpVisibility = state;
1189 if (state) {
1190 // If the policy visibility had last been to hide, then this
1191 // will incorrectly show at this point since we lost that
1192 // information. Not a big deal -- for the windows that have app
1193 // ops modifies they should only be hidden by policy due to the
1194 // lock screen, and the user won't be changing this if locked.
1195 // Plus it will quickly be fixed the next time we do a layout.
Craig Mautnerfb32c6e2013-02-12 15:08:44 -08001196 showLw(true, true);
Dianne Hackbornb6b23ec2013-02-11 19:29:06 -08001197 } else {
Craig Mautnerfb32c6e2013-02-12 15:08:44 -08001198 hideLw(true, true);
Dianne Hackbornb6b23ec2013-02-11 19:29:06 -08001199 }
Dianne Hackbornb6b23ec2013-02-11 19:29:06 -08001200 }
Dianne Hackbornb6b23ec2013-02-11 19:29:06 -08001201 }
1202
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001203 @Override
1204 public boolean isAlive() {
1205 return mClient.asBinder().isBinderAlive();
1206 }
1207
Craig Mautnera987d432012-10-11 14:07:58 -07001208 boolean isClosing() {
1209 return mExiting || (mService.mClosingApps.contains(mAppToken));
1210 }
1211
Craig Mautner69b08182012-09-05 13:07:13 -07001212 @Override
1213 public boolean isDefaultDisplay() {
Craig Mautnerdf88d732014-01-27 09:21:32 -08001214 final DisplayContent displayContent = getDisplayContent();
1215 if (displayContent == null) {
1216 // Only a window that was on a non-default display can be detached from it.
1217 return false;
1218 }
1219 return getDisplayContent().isDefaultDisplay;
Craig Mautner69b08182012-09-05 13:07:13 -07001220 }
1221
Craig Mautner88400d32012-09-30 12:35:45 -07001222 public void setShowToOwnerOnlyLocked(boolean showToOwnerOnly) {
1223 mShowToOwnerOnly = showToOwnerOnly;
1224 }
1225
Craig Mautner5962b122012-10-05 14:45:52 -07001226 boolean isHiddenFromUserLocked() {
Craig Mautner341220f2012-10-16 15:20:09 -07001227 // Attached windows are evaluated based on the window that they are attached to.
1228 WindowState win = this;
1229 while (win.mAttachedWindow != null) {
1230 win = win.mAttachedWindow;
1231 }
1232 if (win.mAttrs.type < WindowManager.LayoutParams.FIRST_SYSTEM_WINDOW
1233 && win.mAppToken != null && win.mAppToken.showWhenLocked) {
1234 // Save some cycles by not calling getDisplayInfo unless it is an application
1235 // window intended for all users.
Craig Mautnerdf88d732014-01-27 09:21:32 -08001236 final DisplayContent displayContent = win.getDisplayContent();
1237 if (displayContent == null) {
1238 return true;
1239 }
1240 final DisplayInfo displayInfo = displayContent.getDisplayInfo();
Craig Mautner341220f2012-10-16 15:20:09 -07001241 if (win.mFrame.left <= 0 && win.mFrame.top <= 0
1242 && win.mFrame.right >= displayInfo.appWidth
1243 && win.mFrame.bottom >= displayInfo.appHeight) {
Craig Mautner5962b122012-10-05 14:45:52 -07001244 // Is a fullscreen window, like the clock alarm. Show to everyone.
1245 return false;
1246 }
1247 }
1248
Craig Mautner341220f2012-10-16 15:20:09 -07001249 return win.mShowToOwnerOnly
1250 && UserHandle.getUserId(win.mOwnerUid) != mService.mCurrentUserId;
Craig Mautner9dc52bc2012-08-06 14:15:42 -07001251 }
1252
Dianne Hackbornffb3d932011-05-17 17:44:51 -07001253 private static void applyInsets(Region outRegion, Rect frame, Rect inset) {
1254 outRegion.set(
1255 frame.left + inset.left, frame.top + inset.top,
1256 frame.right - inset.right, frame.bottom - inset.bottom);
Dianne Hackborne2515ee2011-04-27 18:52:56 -04001257 }
1258
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001259 public void getTouchableRegion(Region outRegion) {
Dianne Hackbornffb3d932011-05-17 17:44:51 -07001260 final Rect frame = mFrame;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001261 switch (mTouchableInsets) {
1262 default:
1263 case ViewTreeObserver.InternalInsetsInfo.TOUCHABLE_INSETS_FRAME:
1264 outRegion.set(frame);
1265 break;
Dianne Hackborne2515ee2011-04-27 18:52:56 -04001266 case ViewTreeObserver.InternalInsetsInfo.TOUCHABLE_INSETS_CONTENT:
Dianne Hackbornffb3d932011-05-17 17:44:51 -07001267 applyInsets(outRegion, frame, mGivenContentInsets);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001268 break;
Dianne Hackborne2515ee2011-04-27 18:52:56 -04001269 case ViewTreeObserver.InternalInsetsInfo.TOUCHABLE_INSETS_VISIBLE:
Dianne Hackbornffb3d932011-05-17 17:44:51 -07001270 applyInsets(outRegion, frame, mGivenVisibleInsets);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001271 break;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001272 case ViewTreeObserver.InternalInsetsInfo.TOUCHABLE_INSETS_REGION: {
1273 final Region givenTouchableRegion = mGivenTouchableRegion;
1274 outRegion.set(givenTouchableRegion);
1275 outRegion.translate(frame.left, frame.top);
1276 break;
1277 }
1278 }
1279 }
1280
Craig Mautner59c00972012-07-30 12:10:24 -07001281 WindowList getWindowList() {
Craig Mautnerdf88d732014-01-27 09:21:32 -08001282 final DisplayContent displayContent = getDisplayContent();
1283 return displayContent == null ? null : displayContent.getWindowList();
Craig Mautner59c00972012-07-30 12:10:24 -07001284 }
1285
Dianne Hackborne3f23a32013-03-01 13:25:35 -08001286 /**
1287 * Report a focus change. Must be called with no locks held, and consistently
1288 * from the same serialized thread (such as dispatched from a handler).
1289 */
1290 public void reportFocusChangedSerialized(boolean focused, boolean inTouchMode) {
1291 try {
1292 mClient.windowFocusChanged(focused, inTouchMode);
1293 } catch (RemoteException e) {
1294 }
1295 if (mFocusCallbacks != null) {
1296 final int N = mFocusCallbacks.beginBroadcast();
1297 for (int i=0; i<N; i++) {
1298 IWindowFocusObserver obs = mFocusCallbacks.getBroadcastItem(i);
1299 try {
1300 if (focused) {
1301 obs.focusGained(mWindowId.asBinder());
1302 } else {
1303 obs.focusLost(mWindowId.asBinder());
1304 }
1305 } catch (RemoteException e) {
1306 }
1307 }
1308 mFocusCallbacks.finishBroadcast();
1309 }
1310 }
1311
Craig Mautnerdf88d732014-01-27 09:21:32 -08001312 void reportResized() {
1313 try {
Craig Mautner38f7dcd2014-02-06 10:31:41 -08001314 if (DEBUG_RESIZE || DEBUG_ORIENTATION) Slog.v(TAG, "Reporting new frame to " + this
1315 + ": " + mCompatFrame);
1316 boolean configChanged = isConfigChanged();
1317 if ((DEBUG_RESIZE || DEBUG_ORIENTATION || DEBUG_CONFIGURATION) && configChanged) {
1318 Slog.i(TAG, "Sending new config to window " + this + ": "
1319 + mWinAnimator.mSurfaceW + "x" + mWinAnimator.mSurfaceH
1320 + " / " + mService.mCurConfiguration);
1321 }
1322 setConfiguration(mService.mCurConfiguration);
1323 if (DEBUG_ORIENTATION && mWinAnimator.mDrawState == WindowStateAnimator.DRAW_PENDING)
1324 Slog.i(TAG, "Resizing " + this + " WITH DRAW PENDING");
1325
Craig Mautnerdf88d732014-01-27 09:21:32 -08001326 final Rect frame = mFrame;
1327 final Rect overscanInsets = mLastOverscanInsets;
1328 final Rect contentInsets = mLastContentInsets;
1329 final Rect visibleInsets = mLastVisibleInsets;
Craig Mautner38f7dcd2014-02-06 10:31:41 -08001330 final boolean reportDraw = mWinAnimator.mDrawState == WindowStateAnimator.DRAW_PENDING;
1331 final Configuration newConfig = configChanged ? mConfiguration : null;
Craig Mautnerdf88d732014-01-27 09:21:32 -08001332 if (mClient instanceof IWindow.Stub) {
1333 // To prevent deadlock simulate one-way call if win.mClient is a local object.
1334 mService.mH.post(new Runnable() {
1335 @Override
1336 public void run() {
1337 try {
1338 mClient.resized(frame, overscanInsets, contentInsets,
1339 visibleInsets, reportDraw, newConfig);
1340 } catch (RemoteException e) {
1341 // Not a remote call, RemoteException won't be raised.
1342 }
1343 }
1344 });
1345 } else {
1346 mClient.resized(frame, overscanInsets, contentInsets, visibleInsets, reportDraw,
1347 newConfig);
1348 }
1349 mOverscanInsetsChanged = false;
1350 mContentInsetsChanged = false;
1351 mVisibleInsetsChanged = false;
1352 mWinAnimator.mSurfaceResized = false;
1353 } catch (RemoteException e) {
1354 mOrientationChanging = false;
1355 mLastFreezeDuration = (int)(SystemClock.elapsedRealtime()
1356 - mService.mDisplayFreezeTime);
1357 }
1358 }
1359
Dianne Hackborne3f23a32013-03-01 13:25:35 -08001360 public void registerFocusObserver(IWindowFocusObserver observer) {
1361 synchronized(mService.mWindowMap) {
1362 if (mFocusCallbacks == null) {
1363 mFocusCallbacks = new RemoteCallbackList<IWindowFocusObserver>();
1364 }
1365 mFocusCallbacks.register(observer);
1366 }
1367 }
1368
1369 public void unregisterFocusObserver(IWindowFocusObserver observer) {
1370 synchronized(mService.mWindowMap) {
1371 if (mFocusCallbacks != null) {
1372 mFocusCallbacks.unregister(observer);
1373 }
1374 }
1375 }
1376
1377 public boolean isFocused() {
1378 synchronized(mService.mWindowMap) {
1379 return mService.mCurrentFocus == this;
1380 }
1381 }
1382
Dianne Hackborna44abeb2011-08-08 19:24:01 -07001383 void dump(PrintWriter pw, String prefix, boolean dumpAll) {
Craig Mautnerdf88d732014-01-27 09:21:32 -08001384 pw.print(prefix); pw.print("mDisplayId="); pw.print(getDisplayId());
Craig Mautner59c00972012-07-30 12:10:24 -07001385 pw.print(" mSession="); pw.print(mSession);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001386 pw.print(" mClient="); pw.println(mClient.asBinder());
Craig Mautner88400d32012-09-30 12:35:45 -07001387 pw.print(prefix); pw.print("mOwnerUid="); pw.print(mOwnerUid);
Dianne Hackbornc2293022013-02-06 23:14:49 -08001388 pw.print(" mShowToOwnerOnly="); pw.print(mShowToOwnerOnly);
1389 pw.print(" package="); pw.print(mAttrs.packageName);
1390 pw.print(" appop="); pw.println(AppOpsManager.opToName(mAppOp));
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001391 pw.print(prefix); pw.print("mAttrs="); pw.println(mAttrs);
Dianne Hackborna44abeb2011-08-08 19:24:01 -07001392 pw.print(prefix); pw.print("Requested w="); pw.print(mRequestedWidth);
1393 pw.print(" h="); pw.print(mRequestedHeight);
1394 pw.print(" mLayoutSeq="); pw.println(mLayoutSeq);
Dianne Hackborn1743b642012-03-12 17:04:43 -07001395 if (mRequestedWidth != mLastRequestedWidth || mRequestedHeight != mLastRequestedHeight) {
1396 pw.print(prefix); pw.print("LastRequested w="); pw.print(mLastRequestedWidth);
1397 pw.print(" h="); pw.println(mLastRequestedHeight);
1398 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001399 if (mAttachedWindow != null || mLayoutAttached) {
1400 pw.print(prefix); pw.print("mAttachedWindow="); pw.print(mAttachedWindow);
1401 pw.print(" mLayoutAttached="); pw.println(mLayoutAttached);
1402 }
1403 if (mIsImWindow || mIsWallpaper || mIsFloatingLayer) {
1404 pw.print(prefix); pw.print("mIsImWindow="); pw.print(mIsImWindow);
1405 pw.print(" mIsWallpaper="); pw.print(mIsWallpaper);
1406 pw.print(" mIsFloatingLayer="); pw.print(mIsFloatingLayer);
1407 pw.print(" mWallpaperVisible="); pw.println(mWallpaperVisible);
1408 }
Dianne Hackborna44abeb2011-08-08 19:24:01 -07001409 if (dumpAll) {
1410 pw.print(prefix); pw.print("mBaseLayer="); pw.print(mBaseLayer);
1411 pw.print(" mSubLayer="); pw.print(mSubLayer);
1412 pw.print(" mAnimLayer="); pw.print(mLayer); pw.print("+");
Craig Mautner59431632012-04-04 11:56:44 -07001413 pw.print((mTargetAppToken != null ?
1414 mTargetAppToken.mAppAnimator.animLayerAdjustment
1415 : (mAppToken != null ? mAppToken.mAppAnimator.animLayerAdjustment : 0)));
Craig Mautnerc2f9be02012-03-27 17:32:29 -07001416 pw.print("="); pw.print(mWinAnimator.mAnimLayer);
1417 pw.print(" mLastLayer="); pw.println(mWinAnimator.mLastLayer);
Dianne Hackborn6d05fd32011-11-19 14:36:15 -08001418 }
Dianne Hackborna44abeb2011-08-08 19:24:01 -07001419 if (dumpAll) {
1420 pw.print(prefix); pw.print("mToken="); pw.println(mToken);
1421 pw.print(prefix); pw.print("mRootToken="); pw.println(mRootToken);
1422 if (mAppToken != null) {
1423 pw.print(prefix); pw.print("mAppToken="); pw.println(mAppToken);
1424 }
1425 if (mTargetAppToken != null) {
1426 pw.print(prefix); pw.print("mTargetAppToken="); pw.println(mTargetAppToken);
1427 }
1428 pw.print(prefix); pw.print("mViewVisibility=0x");
1429 pw.print(Integer.toHexString(mViewVisibility));
Dianne Hackborna44abeb2011-08-08 19:24:01 -07001430 pw.print(" mHaveFrame="); pw.print(mHaveFrame);
1431 pw.print(" mObscured="); pw.println(mObscured);
Dianne Hackborn9a230e02011-10-06 11:51:27 -07001432 pw.print(prefix); pw.print("mSeq="); pw.print(mSeq);
1433 pw.print(" mSystemUiVisibility=0x");
1434 pw.println(Integer.toHexString(mSystemUiVisibility));
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001435 }
Dianne Hackbornb6b23ec2013-02-11 19:29:06 -08001436 if (!mPolicyVisibility || !mPolicyVisibilityAfterAnim || !mAppOpVisibility
1437 || mAttachedHidden) {
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001438 pw.print(prefix); pw.print("mPolicyVisibility=");
1439 pw.print(mPolicyVisibility);
1440 pw.print(" mPolicyVisibilityAfterAnim=");
1441 pw.print(mPolicyVisibilityAfterAnim);
Dianne Hackbornb6b23ec2013-02-11 19:29:06 -08001442 pw.print(" mAppOpVisibility=");
1443 pw.print(mAppOpVisibility);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001444 pw.print(" mAttachedHidden="); pw.println(mAttachedHidden);
1445 }
Dianne Hackbornb7ff51b2012-01-23 19:15:27 -08001446 if (!mRelayoutCalled || mLayoutNeeded) {
1447 pw.print(prefix); pw.print("mRelayoutCalled="); pw.print(mRelayoutCalled);
1448 pw.print(" mLayoutNeeded="); pw.println(mLayoutNeeded);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001449 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001450 if (mXOffset != 0 || mYOffset != 0) {
1451 pw.print(prefix); pw.print("Offsets x="); pw.print(mXOffset);
1452 pw.print(" y="); pw.println(mYOffset);
1453 }
Dianne Hackborna44abeb2011-08-08 19:24:01 -07001454 if (dumpAll) {
1455 pw.print(prefix); pw.print("mGivenContentInsets=");
1456 mGivenContentInsets.printShortString(pw);
1457 pw.print(" mGivenVisibleInsets=");
1458 mGivenVisibleInsets.printShortString(pw);
1459 pw.println();
1460 if (mTouchableInsets != 0 || mGivenInsetsPending) {
1461 pw.print(prefix); pw.print("mTouchableInsets="); pw.print(mTouchableInsets);
1462 pw.print(" mGivenInsetsPending="); pw.println(mGivenInsetsPending);
Dianne Hackborna4b7f2f2012-05-21 11:28:41 -07001463 Region region = new Region();
1464 getTouchableRegion(region);
1465 pw.print(prefix); pw.print("touchable region="); pw.println(region);
Dianne Hackborna44abeb2011-08-08 19:24:01 -07001466 }
1467 pw.print(prefix); pw.print("mConfiguration="); pw.println(mConfiguration);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001468 }
Craig Mautnerc8bc97e2012-04-02 12:54:54 -07001469 pw.print(prefix); pw.print("mHasSurface="); pw.print(mHasSurface);
Craig Mautner178af592012-09-17 10:37:29 -07001470 pw.print(" mShownFrame="); mShownFrame.printShortString(pw);
1471 pw.print(" isReadyForDisplay()="); pw.println(isReadyForDisplay());
Dianne Hackborna44abeb2011-08-08 19:24:01 -07001472 if (dumpAll) {
1473 pw.print(prefix); pw.print("mFrame="); mFrame.printShortString(pw);
1474 pw.print(" last="); mLastFrame.printShortString(pw);
1475 pw.println();
Dianne Hackborn85afd1b2012-05-13 13:31:06 -07001476 pw.print(prefix); pw.print("mSystemDecorRect="); mSystemDecorRect.printShortString(pw);
1477 pw.print(" last="); mLastSystemDecorRect.printShortString(pw);
1478 pw.println();
Dianne Hackborna44abeb2011-08-08 19:24:01 -07001479 }
Dianne Hackbornffb3d932011-05-17 17:44:51 -07001480 if (mEnforceSizeCompat) {
1481 pw.print(prefix); pw.print("mCompatFrame="); mCompatFrame.printShortString(pw);
Dianne Hackbornffb3d932011-05-17 17:44:51 -07001482 pw.println();
1483 }
Dianne Hackborna44abeb2011-08-08 19:24:01 -07001484 if (dumpAll) {
Dianne Hackborn5c58de32012-04-28 19:52:37 -07001485 pw.print(prefix); pw.print("Frames: containing=");
Dianne Hackborna44abeb2011-08-08 19:24:01 -07001486 mContainingFrame.printShortString(pw);
Dianne Hackborn5c58de32012-04-28 19:52:37 -07001487 pw.print(" parent="); mParentFrame.printShortString(pw);
Dianne Hackbornc4aad012013-02-22 15:05:25 -08001488 pw.println();
1489 pw.print(prefix); pw.print(" display="); mDisplayFrame.printShortString(pw);
1490 pw.print(" overscan="); mOverscanFrame.printShortString(pw);
Dianne Hackborna44abeb2011-08-08 19:24:01 -07001491 pw.println();
Dianne Hackborn85afd1b2012-05-13 13:31:06 -07001492 pw.print(prefix); pw.print(" content="); mContentFrame.printShortString(pw);
Dianne Hackborn5c58de32012-04-28 19:52:37 -07001493 pw.print(" visible="); mVisibleFrame.printShortString(pw);
Dianne Hackborna44abeb2011-08-08 19:24:01 -07001494 pw.println();
John Spurlock46646232013-09-30 22:32:42 -04001495 pw.print(prefix); pw.print(" decor="); mDecorFrame.printShortString(pw);
1496 pw.println();
Dianne Hackbornc4aad012013-02-22 15:05:25 -08001497 pw.print(prefix); pw.print("Cur insets: overscan=");
1498 mOverscanInsets.printShortString(pw);
1499 pw.print(" content="); mContentInsets.printShortString(pw);
Dianne Hackborn5c58de32012-04-28 19:52:37 -07001500 pw.print(" visible="); mVisibleInsets.printShortString(pw);
1501 pw.println();
Dianne Hackbornc4aad012013-02-22 15:05:25 -08001502 pw.print(prefix); pw.print("Lst insets: overscan=");
1503 mLastOverscanInsets.printShortString(pw);
1504 pw.print(" content="); mLastContentInsets.printShortString(pw);
Dianne Hackborn5c58de32012-04-28 19:52:37 -07001505 pw.print(" visible="); mLastVisibleInsets.printShortString(pw);
Dianne Hackborna44abeb2011-08-08 19:24:01 -07001506 pw.println();
1507 }
Dianne Hackborn529e7442012-11-01 14:22:28 -07001508 pw.print(prefix); pw.print(mWinAnimator); pw.println(":");
1509 mWinAnimator.dump(pw, prefix + " ", dumpAll);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001510 if (mExiting || mRemoveOnExit || mDestroying || mRemoved) {
1511 pw.print(prefix); pw.print("mExiting="); pw.print(mExiting);
1512 pw.print(" mRemoveOnExit="); pw.print(mRemoveOnExit);
1513 pw.print(" mDestroying="); pw.print(mDestroying);
1514 pw.print(" mRemoved="); pw.println(mRemoved);
1515 }
1516 if (mOrientationChanging || mAppFreezing || mTurnOnScreen) {
1517 pw.print(prefix); pw.print("mOrientationChanging=");
1518 pw.print(mOrientationChanging);
1519 pw.print(" mAppFreezing="); pw.print(mAppFreezing);
1520 pw.print(" mTurnOnScreen="); pw.println(mTurnOnScreen);
1521 }
Dianne Hackborna57c6952013-03-29 14:46:40 -07001522 if (mLastFreezeDuration != 0) {
1523 pw.print(prefix); pw.print("mLastFreezeDuration=");
1524 TimeUtils.formatDuration(mLastFreezeDuration, pw); pw.println();
1525 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001526 if (mHScale != 1 || mVScale != 1) {
1527 pw.print(prefix); pw.print("mHScale="); pw.print(mHScale);
1528 pw.print(" mVScale="); pw.println(mVScale);
1529 }
1530 if (mWallpaperX != -1 || mWallpaperY != -1) {
1531 pw.print(prefix); pw.print("mWallpaperX="); pw.print(mWallpaperX);
1532 pw.print(" mWallpaperY="); pw.println(mWallpaperY);
1533 }
1534 if (mWallpaperXStep != -1 || mWallpaperYStep != -1) {
1535 pw.print(prefix); pw.print("mWallpaperXStep="); pw.print(mWallpaperXStep);
1536 pw.print(" mWallpaperYStep="); pw.println(mWallpaperYStep);
1537 }
1538 }
Craig Mautner164d4bb2012-11-26 13:51:23 -08001539
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001540 String makeInputChannelName() {
1541 return Integer.toHexString(System.identityHashCode(this))
1542 + " " + mAttrs.getTitle();
1543 }
1544
1545 @Override
1546 public String toString() {
Dianne Hackbornc2293022013-02-06 23:14:49 -08001547 CharSequence title = mAttrs.getTitle();
1548 if (title == null || title.length() <= 0) {
1549 title = mAttrs.packageName;
1550 }
1551 if (mStringNameCache == null || mLastTitle != title || mWasExiting != mExiting) {
1552 mLastTitle = title;
Dianne Hackborn529e7442012-11-01 14:22:28 -07001553 mWasExiting = mExiting;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001554 mStringNameCache = "Window{" + Integer.toHexString(System.identityHashCode(this))
Dianne Hackborn5fe7e2a2012-10-04 11:58:16 -07001555 + " u" + UserHandle.getUserId(mSession.mUid)
Craig Mautnera987d432012-10-11 14:07:58 -07001556 + " " + mLastTitle + (mExiting ? " EXITING}" : "}");
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001557 }
1558 return mStringNameCache;
1559 }
satokcef37fb2011-10-24 21:49:38 +09001560}