blob: f7405e2db3043f5ad29831201a21355212c220a2 [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001/*
2 * Copyright (C) 2006 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 android.view;
18
Jorim Jaggia4a58ef2016-01-27 02:10:08 -080019import static android.view.ViewGroup.LayoutParams.MATCH_PARENT;
Filip Gruszczynski1a4dfe52015-11-15 10:58:57 -080020import static android.view.WindowManager.LayoutParams.PRIVATE_FLAG_FORCE_DECOR_VIEW_VISIBILITY;
Jorim Jaggi2e95a482016-01-14 17:36:55 -080021import static android.view.WindowManager.LayoutParams.TYPE_DOCK_DIVIDER;
Chong Zhangf6525ce2016-01-14 17:09:56 -080022import static android.view.WindowManager.LayoutParams.TYPE_INPUT_METHOD;
23import static android.view.WindowManager.LayoutParams.TYPE_STATUS_BAR_PANEL;
24import static android.view.WindowManager.LayoutParams.TYPE_VOLUME_OVERLAY;
Filip Gruszczynski1a4dfe52015-11-15 10:58:57 -080025
Romain Guy6b7bd242010-10-06 19:49:23 -070026import android.Manifest;
Chet Haasecca2c982011-05-20 14:34:18 -070027import android.animation.LayoutTransition;
Romain Guy6b7bd242010-10-06 19:49:23 -070028import android.app.ActivityManagerNative;
29import android.content.ClipDescription;
30import android.content.ComponentCallbacks;
31import android.content.Context;
32import android.content.pm.PackageManager;
33import android.content.res.CompatibilityInfo;
34import android.content.res.Configuration;
35import android.content.res.Resources;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080036import android.graphics.Canvas;
Alan Viverettefed3f722013-11-14 14:48:20 -080037import android.graphics.Matrix;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080038import android.graphics.PixelFormat;
Christopher Tate2c095f32010-10-04 14:13:40 -070039import android.graphics.Point;
Christopher Tatea53146c2010-09-07 11:57:52 -070040import android.graphics.PointF;
Romain Guy6b7bd242010-10-06 19:49:23 -070041import android.graphics.PorterDuff;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080042import android.graphics.Rect;
43import android.graphics.Region;
Svetoslav Ganov42138042012-03-20 11:51:39 -070044import android.graphics.drawable.Drawable;
Jeff Brownd912e1f2014-04-11 18:46:22 -070045import android.hardware.display.DisplayManager;
46import android.hardware.display.DisplayManager.DisplayListener;
Jun Mukai347e5d42015-12-03 01:13:31 -080047import android.hardware.input.InputManager;
Romain Guy6b7bd242010-10-06 19:49:23 -070048import android.media.AudioManager;
49import android.os.Binder;
Michael Wright5bd69e62015-05-14 14:48:08 +010050import android.os.Build;
Romain Guy6b7bd242010-10-06 19:49:23 -070051import android.os.Bundle;
52import android.os.Debug;
53import android.os.Handler;
Romain Guy6b7bd242010-10-06 19:49:23 -070054import android.os.Looper;
55import android.os.Message;
56import android.os.ParcelFileDescriptor;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080057import android.os.Process;
Romain Guy6b7bd242010-10-06 19:49:23 -070058import android.os.RemoteException;
Romain Guy6b7bd242010-10-06 19:49:23 -070059import android.os.SystemClock;
Romain Guy59a12ca2011-06-09 17:48:21 -070060import android.os.SystemProperties;
Jeff Brown481c1572012-03-09 14:41:15 -080061import android.os.Trace;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080062import android.util.AndroidRuntimeException;
Mitsuru Oshima9189cab2009-06-03 11:19:12 -070063import android.util.DisplayMetrics;
Romain Guy6b7bd242010-10-06 19:49:23 -070064import android.util.Log;
Chet Haase949dbf72010-08-11 18:41:06 -070065import android.util.Slog;
John Reckba6adf62015-02-19 14:36:50 -080066import android.util.TimeUtils;
Dianne Hackborn711e62a2010-11-29 16:38:22 -080067import android.util.TypedValue;
John Reck44fd8d22014-02-26 11:00:11 -080068import android.view.Surface.OutOfResourcesException;
Jeff Browna175a5b2012-02-15 19:18:31 -080069import android.view.View.AttachInfo;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080070import android.view.View.MeasureSpec;
svetoslavganov75986cf2009-05-14 22:28:01 -070071import android.view.accessibility.AccessibilityEvent;
72import android.view.accessibility.AccessibilityManager;
Svetoslav Ganov8643aa02011-04-20 12:12:33 -070073import android.view.accessibility.AccessibilityManager.AccessibilityStateChangeListener;
Chris Craikcce47eb2014-07-16 15:12:15 -070074import android.view.accessibility.AccessibilityManager.HighTextContrastChangeListener;
Svetoslav Ganov8643aa02011-04-20 12:12:33 -070075import android.view.accessibility.AccessibilityNodeInfo;
Alan Viverette25acc7e2015-05-19 11:32:08 -070076import android.view.accessibility.AccessibilityNodeInfo.AccessibilityAction;
Svetoslav Ganov02107852011-10-03 17:06:56 -070077import android.view.accessibility.AccessibilityNodeProvider;
Svetoslav Ganov8643aa02011-04-20 12:12:33 -070078import android.view.accessibility.IAccessibilityInteractionConnection;
79import android.view.accessibility.IAccessibilityInteractionConnectionCallback;
Dianne Hackborn0f761d62010-11-30 22:06:10 -080080import android.view.animation.AccelerateDecelerateInterpolator;
81import android.view.animation.Interpolator;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080082import android.view.inputmethod.InputConnection;
83import android.view.inputmethod.InputMethodManager;
84import android.widget.Scroller;
Svetoslav Ganov8643aa02011-04-20 12:12:33 -070085
Svetoslav Ganov42138042012-03-20 11:51:39 -070086import com.android.internal.R;
Clara Bayarri75e09792015-07-29 16:20:40 +010087import com.android.internal.os.IResultReceiver;
Svetoslav Ganov758143e2012-08-06 16:40:27 -070088import com.android.internal.os.SomeArgs;
Adam Powell6711f3b2015-05-06 15:57:09 -070089import com.android.internal.policy.PhoneFallbackEventHandler;
Romain Guy6b7bd242010-10-06 19:49:23 -070090import com.android.internal.view.BaseSurfaceHolder;
Romain Guy6b7bd242010-10-06 19:49:23 -070091import com.android.internal.view.RootViewSurfaceTaker;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080092
Jeff Brown5182c782013-10-15 20:31:52 -070093import java.io.FileDescriptor;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080094import java.io.IOException;
95import java.io.OutputStream;
Jeff Brown5182c782013-10-15 20:31:52 -070096import java.io.PrintWriter;
Romain Guy6b7bd242010-10-06 19:49:23 -070097import java.lang.ref.WeakReference;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080098import java.util.ArrayList;
Chong Zhang8dbd9ad2015-10-09 10:06:11 -070099import java.util.concurrent.CountDownLatch;
Svetoslav Ganov42138042012-03-20 11:51:39 -0700100import java.util.HashSet;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800101
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800102/**
103 * The top of a view hierarchy, implementing the needed protocol between View
104 * and the WindowManager. This is for the most part an internal implementation
Jeff Brown98365d72012-08-19 20:30:52 -0700105 * detail of {@link WindowManagerGlobal}.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800106 *
107 * {@hide}
108 */
Romain Guy812ccbe2010-06-01 14:07:24 -0700109@SuppressWarnings({"EmptyCatchBlock", "PointlessBooleanExpression"})
Jeff Browna175a5b2012-02-15 19:18:31 -0800110public final class ViewRootImpl implements ViewParent,
John Reck51aaf902015-12-02 15:08:07 -0800111 View.AttachInfo.Callbacks, ThreadedRenderer.HardwareDrawCallbacks {
Dianne Hackborn70a3f672011-08-08 14:32:41 -0700112 private static final String TAG = "ViewRootImpl";
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800113 private static final boolean DBG = false;
Romain Guy812ccbe2010-06-01 14:07:24 -0700114 private static final boolean LOCAL_LOGV = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800115 /** @noinspection PointlessBooleanExpression*/
116 private static final boolean DEBUG_DRAW = false || LOCAL_LOGV;
117 private static final boolean DEBUG_LAYOUT = false || LOCAL_LOGV;
Dianne Hackborn711e62a2010-11-29 16:38:22 -0800118 private static final boolean DEBUG_DIALOG = false || LOCAL_LOGV;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800119 private static final boolean DEBUG_INPUT_RESIZE = false || LOCAL_LOGV;
120 private static final boolean DEBUG_ORIENTATION = false || LOCAL_LOGV;
121 private static final boolean DEBUG_TRACKBALL = false || LOCAL_LOGV;
122 private static final boolean DEBUG_IMF = false || LOCAL_LOGV;
Dianne Hackborn694f79b2010-03-17 19:44:59 -0700123 private static final boolean DEBUG_CONFIGURATION = false || LOCAL_LOGV;
Chet Haase2f2022a2011-10-11 06:41:59 -0700124 private static final boolean DEBUG_FPS = false;
Michael Wright06a79252014-05-05 17:45:29 -0700125 private static final boolean DEBUG_INPUT_STAGES = false || LOCAL_LOGV;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800126
Romain Guy59a12ca2011-06-09 17:48:21 -0700127 /**
Skuhneb8160872015-09-22 09:51:39 -0700128 * Set to false if we do not want to use the multi threaded renderer. Note that by disabling
129 * this, WindowCallbacks will not fire.
130 */
131 private static final boolean USE_MT_RENDERER = true;
132
133 /**
Romain Guy59a12ca2011-06-09 17:48:21 -0700134 * Set this system property to true to force the view hierarchy to render
135 * at 60 Hz. This can be used to measure the potential framerate.
136 */
Romain Guye9bc11f2013-05-23 12:47:26 -0700137 private static final String PROPERTY_PROFILE_RENDERING = "viewroot.profile_rendering";
Michael Chan53071d62009-05-13 17:29:48 -0700138
Griff Hazena0938022015-03-13 10:01:41 -0700139 // properties used by emulator to determine display shape
Griff Hazena0938022015-03-13 10:01:41 -0700140 public static final String PROPERTY_EMULATOR_WIN_OUTSET_BOTTOM_PX =
141 "ro.emu.win_outset_bottom_px";
Michael Kolb437d3132014-06-20 13:28:44 -0700142
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800143 /**
144 * Maximum time we allow the user to roll the trackball enough to generate
145 * a key event, before resetting the counters.
146 */
147 static final int MAX_TRACKBALL_DELAY = 250;
148
Jorim Jaggi4846ee32016-01-07 17:39:12 +0100149 private static final int RESIZE_MODE_FREEFORM = 0;
150 private static final int RESIZE_MODE_DOCKED_DIVIDER = 1;
151
Alan Viverettebea0c7da2015-09-01 16:00:20 -0400152 static final ThreadLocal<HandlerActionQueue> sRunQueues = new ThreadLocal<HandlerActionQueue>();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800153
Skuhneb8160872015-09-22 09:51:39 -0700154 static final ArrayList<Runnable> sFirstDrawHandlers = new ArrayList();
Dianne Hackborn2a9094d2010-02-03 19:20:09 -0800155 static boolean sFirstDrawComplete = false;
Craig Mautner8f303ad2013-06-14 11:32:22 -0700156
Skuhneb8160872015-09-22 09:51:39 -0700157 static final ArrayList<ComponentCallbacks> sConfigCallbacks = new ArrayList();
Romain Guy59a12ca2011-06-09 17:48:21 -0700158
Chong Zhangdcee1de2015-10-06 10:26:00 -0700159 final ArrayList<WindowCallbacks> mWindowCallbacks = new ArrayList();
Jeff Brownf9e989d2013-04-04 23:04:03 -0700160 final Context mContext;
Jeff Brown98365d72012-08-19 20:30:52 -0700161 final IWindowSession mWindowSession;
162 final Display mDisplay;
Jeff Brownd912e1f2014-04-11 18:46:22 -0700163 final DisplayManager mDisplayManager;
Dianne Hackbornc2293022013-02-06 23:14:49 -0800164 final String mBasePackageName;
Jeff Brown98365d72012-08-19 20:30:52 -0700165
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800166 final int[] mTmpLocation = new int[2];
Romain Guy8506ab42009-06-11 17:35:47 -0700167
Dianne Hackborn711e62a2010-11-29 16:38:22 -0800168 final TypedValue mTmpValue = new TypedValue();
Jeff Brownf9e989d2013-04-04 23:04:03 -0700169
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800170 final Thread mThread;
171
172 final WindowLeaked mLocation;
173
174 final WindowManager.LayoutParams mWindowAttributes = new WindowManager.LayoutParams();
175
176 final W mWindow;
177
Dianne Hackborn180c4842011-09-13 12:39:25 -0700178 final int mTargetSdkVersion;
179
Dianne Hackborn9a230e02011-10-06 11:51:27 -0700180 int mSeq;
181
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800182 View mView;
Svetoslav Ganov42138042012-03-20 11:51:39 -0700183
184 View mAccessibilityFocusedHost;
185 AccessibilityNodeInfo mAccessibilityFocusedVirtualView;
186
Jun Mukai347e5d42015-12-03 01:13:31 -0800187 // The view which captures mouse input, or null when no one is capturing.
188 View mCapturingView;
189
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800190 int mViewVisibility;
191 boolean mAppVisible = true;
Filip Gruszczynski1a4dfe52015-11-15 10:58:57 -0800192 // For recents to freeform transition we need to keep drawing after the app receives information
193 // that it became invisible. This will ignore that information and depend on the decor view
194 // visibility to control drawing. The decor view visibility will get adjusted when the app get
195 // stopped and that's when the app will stop drawing further frames.
196 private boolean mForceDecorViewVisibility = false;
Dianne Hackborn180c4842011-09-13 12:39:25 -0700197 int mOrigWindowType = -1;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800198
Alan Viverette64bf97a2015-09-18 16:42:00 -0400199 /** Whether the window had focus during the most recent traversal. */
200 boolean mHadWindowFocus;
201
202 /**
203 * Whether the window lost focus during a previous traversal and has not
204 * yet gained it back. Used to determine whether a WINDOW_STATE_CHANGE
205 * accessibility events should be sent during traversal.
206 */
207 boolean mLostWindowFocus;
208
Dianne Hackbornce418e62011-03-01 14:31:38 -0800209 // Set to true if the owner of this window is in the stopped state,
210 // so the window should no longer be active.
211 boolean mStopped = false;
Craig Mautner8f303ad2013-06-14 11:32:22 -0700212
Daniel Koulomzin087ae472015-12-16 17:52:25 -0500213 // Set to true if the owner of this window is in ambient mode,
214 // which means it won't receive input events.
215 boolean mIsAmbientMode = false;
216
George Mount41725de2015-04-09 08:23:05 -0700217 // Set to true to stop input during an Activity Transition.
218 boolean mPausedForTransition = false;
219
Dianne Hackborn5fd21692011-06-07 14:09:47 -0700220 boolean mLastInCompatMode = false;
221
Dianne Hackbornd76b67c2010-07-13 17:48:30 -0700222 SurfaceHolder.Callback2 mSurfaceHolderCallback;
Dianne Hackborndc8a7f62010-05-10 11:29:34 -0700223 BaseSurfaceHolder mSurfaceHolder;
224 boolean mIsCreating;
225 boolean mDrawingAllowed;
Craig Mautner8f303ad2013-06-14 11:32:22 -0700226
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800227 final Region mTransparentRegion;
228 final Region mPreviousTransparentRegion;
229
230 int mWidth;
231 int mHeight;
Romain Guy7d7b5492011-01-24 16:33:45 -0800232 Rect mDirty;
Romain Guybb93d552009-03-24 21:04:15 -0700233 boolean mIsAnimating;
Romain Guy8506ab42009-06-11 17:35:47 -0700234
Chong Zhang0275e392015-09-17 10:41:44 -0700235 private boolean mDragResizing;
Jorim Jaggi4846ee32016-01-07 17:39:12 +0100236 private int mResizeMode;
Chong Zhang0275e392015-09-17 10:41:44 -0700237 private int mCanvasOffsetX;
238 private int mCanvasOffsetY;
Jorim Jaggi4846ee32016-01-07 17:39:12 +0100239 private boolean mActivityRelaunched;
Chong Zhang0275e392015-09-17 10:41:44 -0700240
Mitsuru Oshima64f59342009-06-21 00:03:11 -0700241 CompatibilityInfo.Translator mTranslator;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800242
243 final View.AttachInfo mAttachInfo;
Jeff Brown46b9ac02010-04-22 18:58:52 -0700244 InputChannel mInputChannel;
Dianne Hackborn1e4b9f32010-06-23 14:10:57 -0700245 InputQueue.Callback mInputQueueCallback;
246 InputQueue mInputQueue;
Joe Onorato86f67862010-11-05 18:57:34 -0700247 FallbackEventHandler mFallbackEventHandler;
Jeff Brown96e942d2011-11-30 19:55:01 -0800248 Choreographer mChoreographer;
Igor Murashkina86ab6402013-08-30 12:58:36 -0700249
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800250 final Rect mTempRect; // used in the transaction to not thrash the heap.
251 final Rect mVisRect; // used to retrieve visible rect of focused view.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800252
253 boolean mTraversalScheduled;
Jeff Browne0dbd002012-02-15 19:34:58 -0800254 int mTraversalBarrier;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800255 boolean mWillDrawSoon;
Craig Mautnerdf2390a2012-08-29 20:59:22 -0700256 /** Set to true while in performTraversals for detecting when die(true) is called from internal
257 * callbacks such as onMeasure, onPreDraw, onDraw and deferring doDie() until later. */
258 boolean mIsInTraversal;
Adrian Roosfa104232014-06-20 16:10:14 -0700259 boolean mApplyInsetsRequested;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800260 boolean mLayoutRequested;
261 boolean mFirst;
262 boolean mReportNextDraw;
263 boolean mFullRedrawNeeded;
264 boolean mNewSurfaceNeeded;
265 boolean mHasHadWindowFocus;
266 boolean mLastWasImTarget;
Jorim Jaggia4a58ef2016-01-27 02:10:08 -0800267 boolean mForceNextWindowRelayout;
Chong Zhang8dbd9ad2015-10-09 10:06:11 -0700268 CountDownLatch mWindowDrawCountDown;
Jorim Jaggi827e0fa2015-05-07 11:41:41 -0700269
Romain Guy1f59e5c2012-05-06 14:11:16 -0700270 boolean mIsDrawing;
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -0700271 int mLastSystemUiVisibility;
Dianne Hackborn9d090892012-06-11 18:35:41 -0700272 int mClientWindowLayoutFlags;
Dianne Hackbornc4aad012013-02-22 15:05:25 -0800273 boolean mLastOverscanRequested;
Jeff Brown4952dfd2011-11-30 19:23:22 -0800274
275 // Pool of queued input events.
276 private static final int MAX_QUEUED_INPUT_EVENT_POOL_SIZE = 10;
277 private QueuedInputEvent mQueuedInputEventPool;
278 private int mQueuedInputEventPoolSize;
Jeff Brown4952dfd2011-11-30 19:23:22 -0800279
Michael Wrightc8a7e542013-03-20 17:58:33 -0700280 /* Input event queue.
Jeff Brownf9e989d2013-04-04 23:04:03 -0700281 * Pending input events are input events waiting to be delivered to the input stages
282 * and handled by the application.
Michael Wrightc8a7e542013-03-20 17:58:33 -0700283 */
284 QueuedInputEvent mPendingInputEventHead;
285 QueuedInputEvent mPendingInputEventTail;
Michael Wright95ae9422013-03-14 10:58:50 -0700286 int mPendingInputEventCount;
Jeff Brown96e942d2011-11-30 19:55:01 -0800287 boolean mProcessInputEventsScheduled;
Michael Wright9d744c72014-02-18 21:27:42 -0800288 boolean mUnbufferedInputDispatch;
Michael Wright95ae9422013-03-14 10:58:50 -0700289 String mPendingInputEventQueueLengthCounterName = "pq";
Jeff Brownf9e989d2013-04-04 23:04:03 -0700290
291 InputStage mFirstInputStage;
292 InputStage mFirstPostImeInputStage;
Michael Wright899d7052014-04-23 17:23:39 -0700293 InputStage mSyntheticInputStage;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800294
295 boolean mWindowAttributesChanged = false;
Romain Guyf21c9b02011-09-06 16:56:54 -0700296 int mWindowAttributesChangesFlag = 0;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800297
298 // These can be accessed by any thread, must be protected with a lock.
Mathias Agopian5583dc62009-07-09 16:28:11 -0700299 // Surface can never be reassigned or cleared (use Surface.clear()).
John Reckb13de072014-11-19 16:33:47 -0800300 final Surface mSurface = new Surface();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800301
302 boolean mAdded;
303 boolean mAddedTouchMode;
304
Craig Mautner48d0d182013-06-11 07:53:06 -0700305 final DisplayAdjustments mDisplayAdjustments;
Dianne Hackborn5fd21692011-06-07 14:09:47 -0700306
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800307 // These are accessed by multiple threads.
308 final Rect mWinFrame; // frame given by window manager.
309
Dianne Hackbornc4aad012013-02-22 15:05:25 -0800310 final Rect mPendingOverscanInsets = new Rect();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800311 final Rect mPendingVisibleInsets = new Rect();
Adrian Roosfa104232014-06-20 16:10:14 -0700312 final Rect mPendingStableInsets = new Rect();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800313 final Rect mPendingContentInsets = new Rect();
Filip Gruszczynski2217f612015-05-26 11:32:08 -0700314 final Rect mPendingOutsets = new Rect();
Jorim Jaggia7262a82015-11-03 15:15:40 +0100315 final Rect mPendingBackDropFrame = new Rect();
Jorim Jaggi0ffd49c2016-02-12 15:04:21 -0800316 boolean mPendingAlwaysConsumeNavBar;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800317 final ViewTreeObserver.InternalInsetsInfo mLastGivenInsets
318 = new ViewTreeObserver.InternalInsetsInfo();
319
Adrian Roosfa104232014-06-20 16:10:14 -0700320 final Rect mDispatchContentInsets = new Rect();
321 final Rect mDispatchStableInsets = new Rect();
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -0700322
Filip Gruszczynski954289d2015-02-26 15:46:47 -0800323 private WindowInsets mLastWindowInsets;
324
Dianne Hackborn694f79b2010-03-17 19:44:59 -0700325 final Configuration mLastConfiguration = new Configuration();
326 final Configuration mPendingConfiguration = new Configuration();
Romain Guy59a12ca2011-06-09 17:48:21 -0700327
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800328 boolean mScrollMayChange;
329 int mSoftInputMode;
Svetoslav Ganov149567f2013-01-08 15:23:34 -0800330 WeakReference<View> mLastScrolledFocus;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800331 int mScrollY;
332 int mCurScrollY;
333 Scroller mScroller;
John Recke56e9df2014-02-21 15:45:10 -0800334 static final Interpolator mResizeInterpolator = new AccelerateDecelerateInterpolator();
Chet Haasecca2c982011-05-20 14:34:18 -0700335 private ArrayList<LayoutTransition> mPendingTransitions;
Romain Guy8506ab42009-06-11 17:35:47 -0700336
Romain Guy8506ab42009-06-11 17:35:47 -0700337 final ViewConfiguration mViewConfiguration;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800338
Christopher Tatea53146c2010-09-07 11:57:52 -0700339 /* Drag/drop */
340 ClipDescription mDragDescription;
341 View mCurrentDragView;
Christopher Tate7fb8b562011-01-20 13:46:41 -0800342 volatile Object mLocalDragState;
Christopher Tatea53146c2010-09-07 11:57:52 -0700343 final PointF mDragPoint = new PointF();
Christopher Tate2c095f32010-10-04 14:13:40 -0700344 final PointF mLastTouchPoint = new PointF();
Vladislav Kaznacheevba761122016-01-22 12:09:45 -0800345 int mLastTouchSource;
Igor Murashkina86ab6402013-08-30 12:58:36 -0700346
347 private boolean mProfileRendering;
Romain Guyd0750312012-11-29 11:34:43 -0800348 private Choreographer.FrameCallback mRenderProfiler;
349 private boolean mRenderProfilingEnabled;
Christopher Tatea53146c2010-09-07 11:57:52 -0700350
Chet Haase2f2022a2011-10-11 06:41:59 -0700351 // Variables to track frames per second, enabled via DEBUG_FPS flag
352 private long mFpsStartTime = -1;
353 private long mFpsPrevTime = -1;
354 private int mFpsNumFrames;
355
Jun Mukai1db53972015-09-11 18:08:31 -0700356 private int mPointerIconShape = PointerIcon.STYLE_NOT_SPECIFIED;
Jun Mukaid4eaef72015-10-30 15:54:33 -0700357 private PointerIcon mCustomPointerIcon = null;
Jun Mukai1db53972015-09-11 18:08:31 -0700358
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800359 /**
360 * see {@link #playSoundEffect(int)}
361 */
362 AudioManager mAudioManager;
363
Svetoslav Ganov8643aa02011-04-20 12:12:33 -0700364 final AccessibilityManager mAccessibilityManager;
365
Gilles Debunne5ac84422011-10-19 09:35:58 -0700366 AccessibilityInteractionController mAccessibilityInteractionController;
Svetoslav Ganov8643aa02011-04-20 12:12:33 -0700367
368 AccessibilityInteractionConnectionManager mAccessibilityInteractionConnectionManager;
Chris Craikcce47eb2014-07-16 15:12:15 -0700369 HighContrastTextManager mHighContrastTextManager;
Svetoslav Ganov8643aa02011-04-20 12:12:33 -0700370
Svetoslav Ganova0156172011-06-26 17:55:44 -0700371 SendWindowContentChangedAccessibilityEvent mSendWindowContentChangedAccessibilityEvent;
Svetoslav Ganoveeee4d22011-06-10 20:51:30 -0700372
Svetoslav Ganov42138042012-03-20 11:51:39 -0700373 HashSet<View> mTempHashSet;
Svetoslav Ganov79311c42012-01-17 20:24:26 -0800374
Dianne Hackborn11ea3342009-07-22 21:48:55 -0700375 private final int mDensity;
Dianne Hackborn908aecc2012-07-31 16:37:34 -0700376 private final int mNoncompatDensity;
Adam Powellb08013c2010-09-16 16:28:11 -0700377
Chet Haase97140572012-09-13 14:56:47 -0700378 private boolean mInLayout = false;
379 ArrayList<View> mLayoutRequesters = new ArrayList<View>();
380 boolean mHandlingLayoutInLayoutRequest = false;
381
Fabrice Di Megliob003e282012-10-17 17:20:19 -0700382 private int mViewLayoutDirectionInitial;
Chet Haase97140572012-09-13 14:56:47 -0700383
Craig Mautner8f303ad2013-06-14 11:32:22 -0700384 /** Set to true once doDie() has been called. */
385 private boolean mRemoved;
386
Jeff Brown21bc5c92011-02-28 18:27:14 -0800387 /**
388 * Consistency verifier for debugging purposes.
389 */
390 protected final InputEventConsistencyVerifier mInputEventConsistencyVerifier =
391 InputEventConsistencyVerifier.isInstrumentationEnabled() ?
392 new InputEventConsistencyVerifier(this, 0) : null;
393
Dianne Hackborn9a230e02011-10-06 11:51:27 -0700394 static final class SystemUiVisibilityInfo {
395 int seq;
396 int globalVisibility;
397 int localValue;
398 int localChanges;
399 }
Igor Murashkina86ab6402013-08-30 12:58:36 -0700400
Filip Gruszczynski34dab0b2015-12-22 08:29:07 -0800401 private String mTag = TAG;
402
Jeff Brown98365d72012-08-19 20:30:52 -0700403 public ViewRootImpl(Context context, Display display) {
Jeff Brownf9e989d2013-04-04 23:04:03 -0700404 mContext = context;
405 mWindowSession = WindowManagerGlobal.getWindowSession();
Jeff Brown98365d72012-08-19 20:30:52 -0700406 mDisplay = display;
Dianne Hackbornc2293022013-02-06 23:14:49 -0800407 mBasePackageName = context.getBasePackageName();
Jeff Brown98365d72012-08-19 20:30:52 -0700408
Craig Mautner48d0d182013-06-11 07:53:06 -0700409 mDisplayAdjustments = display.getDisplayAdjustments();
Svetoslav Ganov8643aa02011-04-20 12:12:33 -0700410
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800411 mThread = Thread.currentThread();
412 mLocation = new WindowLeaked(null);
413 mLocation.fillInStackTrace();
414 mWidth = -1;
415 mHeight = -1;
416 mDirty = new Rect();
417 mTempRect = new Rect();
418 mVisRect = new Rect();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800419 mWinFrame = new Rect();
Romain Guyfb8b7632010-08-23 21:05:08 -0700420 mWindow = new W(this);
Dianne Hackborn180c4842011-09-13 12:39:25 -0700421 mTargetSdkVersion = context.getApplicationInfo().targetSdkVersion;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800422 mViewVisibility = View.GONE;
423 mTransparentRegion = new Region();
424 mPreviousTransparentRegion = new Region();
425 mFirst = true; // true for the first time the view is added
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800426 mAdded = false;
Chris Craikcce47eb2014-07-16 15:12:15 -0700427 mAttachInfo = new View.AttachInfo(mWindowSession, mWindow, display, this, mHandler, this);
Svetoslav Ganov8643aa02011-04-20 12:12:33 -0700428 mAccessibilityManager = AccessibilityManager.getInstance(context);
429 mAccessibilityInteractionConnectionManager =
430 new AccessibilityInteractionConnectionManager();
Svetoslav Ganov00d0c142012-02-24 11:30:49 -0800431 mAccessibilityManager.addAccessibilityStateChangeListener(
432 mAccessibilityInteractionConnectionManager);
Chris Craikcce47eb2014-07-16 15:12:15 -0700433 mHighContrastTextManager = new HighContrastTextManager();
434 mAccessibilityManager.addHighTextContrastStateChangeListener(
435 mHighContrastTextManager);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800436 mViewConfiguration = ViewConfiguration.get(context);
Dianne Hackborn11ea3342009-07-22 21:48:55 -0700437 mDensity = context.getResources().getDisplayMetrics().densityDpi;
Dianne Hackborn908aecc2012-07-31 16:37:34 -0700438 mNoncompatDensity = context.getResources().getDisplayMetrics().noncompatDensityDpi;
Jorim Jaggib10e33f2015-02-04 21:57:40 +0100439 mFallbackEventHandler = new PhoneFallbackEventHandler(context);
Jeff Brown96e942d2011-11-30 19:55:01 -0800440 mChoreographer = Choreographer.getInstance();
Jeff Brownd912e1f2014-04-11 18:46:22 -0700441 mDisplayManager = (DisplayManager)context.getSystemService(Context.DISPLAY_SERVICE);
Dianne Hackborna53de062012-05-08 18:53:51 -0700442 loadSystemProperties();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800443 }
444
Dianne Hackborn2a9094d2010-02-03 19:20:09 -0800445 public static void addFirstDrawHandler(Runnable callback) {
446 synchronized (sFirstDrawHandlers) {
447 if (!sFirstDrawComplete) {
448 sFirstDrawHandlers.add(callback);
449 }
450 }
451 }
Igor Murashkina86ab6402013-08-30 12:58:36 -0700452
Dianne Hackborne36d6e22010-02-17 19:46:25 -0800453 public static void addConfigCallback(ComponentCallbacks callback) {
454 synchronized (sConfigCallbacks) {
455 sConfigCallbacks.add(callback);
456 }
457 }
Igor Murashkina86ab6402013-08-30 12:58:36 -0700458
Chong Zhangdcee1de2015-10-06 10:26:00 -0700459 public void addWindowCallbacks(WindowCallbacks callback) {
Skuhneb8160872015-09-22 09:51:39 -0700460 if (USE_MT_RENDERER) {
Chong Zhangdcee1de2015-10-06 10:26:00 -0700461 synchronized (mWindowCallbacks) {
462 mWindowCallbacks.add(callback);
Skuhneb8160872015-09-22 09:51:39 -0700463 }
464 }
465 }
466
Chong Zhangdcee1de2015-10-06 10:26:00 -0700467 public void removeWindowCallbacks(WindowCallbacks callback) {
Skuhneb8160872015-09-22 09:51:39 -0700468 if (USE_MT_RENDERER) {
Chong Zhangdcee1de2015-10-06 10:26:00 -0700469 synchronized (mWindowCallbacks) {
470 mWindowCallbacks.remove(callback);
Skuhneb8160872015-09-22 09:51:39 -0700471 }
472 }
473 }
474
Chong Zhang8dbd9ad2015-10-09 10:06:11 -0700475 public void reportDrawFinish() {
476 if (mWindowDrawCountDown != null) {
477 mWindowDrawCountDown.countDown();
478 }
479 }
480
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800481 // FIXME for perf testing only
482 private boolean mProfile = false;
483
484 /**
485 * Call this to profile the next traversal call.
486 * FIXME for perf testing only. Remove eventually
487 */
488 public void profile() {
489 mProfile = true;
490 }
491
492 /**
493 * Indicates whether we are in touch mode. Calling this method triggers an IPC
494 * call and should be avoided whenever possible.
495 *
496 * @return True, if the device is in touch mode, false otherwise.
497 *
498 * @hide
499 */
500 static boolean isInTouchMode() {
Jeff Brown98365d72012-08-19 20:30:52 -0700501 IWindowSession windowSession = WindowManagerGlobal.peekWindowSession();
502 if (windowSession != null) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800503 try {
Jeff Brown98365d72012-08-19 20:30:52 -0700504 return windowSession.getInTouchMode();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800505 } catch (RemoteException e) {
506 }
507 }
508 return false;
509 }
510
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800511 /**
512 * We have one child
513 */
Romain Guye4d01122010-06-16 18:44:05 -0700514 public void setView(View view, WindowManager.LayoutParams attrs, View panelParentView) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800515 synchronized (this) {
516 if (mView == null) {
Mitsuru Oshima8169dae2009-04-28 18:12:09 -0700517 mView = view;
Jeff Brownd912e1f2014-04-11 18:46:22 -0700518
519 mAttachInfo.mDisplayState = mDisplay.getState();
520 mDisplayManager.registerDisplayListener(mDisplayListener, mHandler);
521
Fabrice Di Megliob003e282012-10-17 17:20:19 -0700522 mViewLayoutDirectionInitial = mView.getRawLayoutDirection();
Joe Onorato86f67862010-11-05 18:57:34 -0700523 mFallbackEventHandler.setView(view);
Mitsuru Oshima9189cab2009-06-03 11:19:12 -0700524 mWindowAttributes.copyFrom(attrs);
Dianne Hackbornc2293022013-02-06 23:14:49 -0800525 if (mWindowAttributes.packageName == null) {
526 mWindowAttributes.packageName = mBasePackageName;
527 }
Mitsuru Oshima1ecf5d22009-07-06 17:20:38 -0700528 attrs = mWindowAttributes;
Filip Gruszczynski34dab0b2015-12-22 08:29:07 -0800529 setTag();
Dianne Hackborn9d090892012-06-11 18:35:41 -0700530 // Keep track of the actual window flags supplied by the client.
531 mClientWindowLayoutFlags = attrs.flags;
Svetoslav Ganov791fd312012-05-14 15:12:30 -0700532
Svetoslav Ganov45a02e02012-06-17 15:07:29 -0700533 setAccessibilityFocus(null, null);
Svetoslav Ganov791fd312012-05-14 15:12:30 -0700534
Dianne Hackborndc8a7f62010-05-10 11:29:34 -0700535 if (view instanceof RootViewSurfaceTaker) {
536 mSurfaceHolderCallback =
537 ((RootViewSurfaceTaker)view).willYouTakeTheSurface();
538 if (mSurfaceHolderCallback != null) {
539 mSurfaceHolder = new TakenSurfaceHolder();
Dianne Hackborn289b9b62010-07-09 11:44:11 -0700540 mSurfaceHolder.setFormat(PixelFormat.UNKNOWN);
Dianne Hackborndc8a7f62010-05-10 11:29:34 -0700541 }
542 }
Romain Guy1aec9a22011-01-05 09:37:12 -0800543
Alan Viverette49a22e82014-07-12 20:01:27 -0700544 // Compute surface insets required to draw at specified Z value.
545 // TODO: Use real shadow insets for a constant max Z.
Alan Viverette5435a302015-01-29 10:25:34 -0800546 if (!attrs.hasManualSurfaceInsets) {
547 final int surfaceInset = (int) Math.ceil(view.getZ() * 2);
548 attrs.surfaceInsets.set(surfaceInset, surfaceInset, surfaceInset, surfaceInset);
549 }
Alan Viverette49a22e82014-07-12 20:01:27 -0700550
Craig Mautner48d0d182013-06-11 07:53:06 -0700551 CompatibilityInfo compatibilityInfo = mDisplayAdjustments.getCompatibilityInfo();
Romain Guy856d4e12011-10-14 15:47:55 -0700552 mTranslator = compatibilityInfo.getTranslator();
553
Romain Guy1aec9a22011-01-05 09:37:12 -0800554 // If the application owns the surface, don't enable hardware acceleration
555 if (mSurfaceHolder == null) {
Romain Guy3b748a42013-04-17 18:54:38 -0700556 enableHardwareAcceleration(attrs);
Romain Guy1aec9a22011-01-05 09:37:12 -0800557 }
558
Mitsuru Oshimae5fb3282009-06-09 21:16:08 -0700559 boolean restore = false;
Romain Guy35b38ce2009-10-07 13:38:55 -0700560 if (mTranslator != null) {
Romain Guy856d4e12011-10-14 15:47:55 -0700561 mSurface.setCompatibilityTranslator(mTranslator);
Mitsuru Oshimae5fb3282009-06-09 21:16:08 -0700562 restore = true;
Mitsuru Oshima64f59342009-06-21 00:03:11 -0700563 attrs.backup();
564 mTranslator.translateWindowLayout(attrs);
Mitsuru Oshima3d914922009-05-13 22:29:15 -0700565 }
Filip Gruszczynski34dab0b2015-12-22 08:29:07 -0800566 if (DEBUG_LAYOUT) Log.d(mTag, "WindowLayout in setView:" + attrs);
Mitsuru Oshima64f59342009-06-21 00:03:11 -0700567
Mitsuru Oshima1ecf5d22009-07-06 17:20:38 -0700568 if (!compatibilityInfo.supportsScreen()) {
Adam Lesinski95c42972013-10-02 10:13:27 -0700569 attrs.privateFlags |= WindowManager.LayoutParams.PRIVATE_FLAG_COMPATIBLE_WINDOW;
Dianne Hackborn5fd21692011-06-07 14:09:47 -0700570 mLastInCompatMode = true;
Mitsuru Oshima1ecf5d22009-07-06 17:20:38 -0700571 }
572
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800573 mSoftInputMode = attrs.softInputMode;
574 mWindowAttributesChanged = true;
Romain Guyf21c9b02011-09-06 16:56:54 -0700575 mWindowAttributesChangesFlag = WindowManager.LayoutParams.EVERYTHING_CHANGED;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800576 mAttachInfo.mRootView = view;
Romain Guy35b38ce2009-10-07 13:38:55 -0700577 mAttachInfo.mScalingRequired = mTranslator != null;
Mitsuru Oshima64f59342009-06-21 00:03:11 -0700578 mAttachInfo.mApplicationScale =
579 mTranslator == null ? 1.0f : mTranslator.applicationScale;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800580 if (panelParentView != null) {
581 mAttachInfo.mPanelParentWindowToken
582 = panelParentView.getApplicationWindowToken();
583 }
584 mAdded = true;
585 int res; /* = WindowManagerImpl.ADD_OKAY; */
Romain Guy8506ab42009-06-11 17:35:47 -0700586
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800587 // Schedule the first layout -before- adding to the window
588 // manager, to make sure we do the relayout before receiving
589 // any other events from the system.
590 requestLayout();
Jeff Browncc4f7db2011-08-30 20:34:48 -0700591 if ((mWindowAttributes.inputFeatures
592 & WindowManager.LayoutParams.INPUT_FEATURE_NO_INPUT_CHANNEL) == 0) {
593 mInputChannel = new InputChannel();
594 }
Filip Gruszczynski1a4dfe52015-11-15 10:58:57 -0800595 mForceDecorViewVisibility = (mWindowAttributes.privateFlags
596 & PRIVATE_FLAG_FORCE_DECOR_VIEW_VISIBILITY) != 0;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800597 try {
Dianne Hackborn180c4842011-09-13 12:39:25 -0700598 mOrigWindowType = mWindowAttributes.type;
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -0700599 mAttachInfo.mRecomputeGlobalAttributes = true;
600 collectViewAttributes();
Jeff Brown98365d72012-08-19 20:30:52 -0700601 res = mWindowSession.addToDisplay(mWindow, mSeq, mWindowAttributes,
602 getHostVisibility(), mDisplay.getDisplayId(),
Filip Gruszczynski0ec13282015-06-25 11:26:01 -0700603 mAttachInfo.mContentInsets, mAttachInfo.mStableInsets,
604 mAttachInfo.mOutsets, mInputChannel);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800605 } catch (RemoteException e) {
606 mAdded = false;
607 mView = null;
608 mAttachInfo.mRootView = null;
Jeff Brown46b9ac02010-04-22 18:58:52 -0700609 mInputChannel = null;
Joe Onorato86f67862010-11-05 18:57:34 -0700610 mFallbackEventHandler.setView(null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800611 unscheduleTraversals();
Svetoslav Ganov45a02e02012-06-17 15:07:29 -0700612 setAccessibilityFocus(null, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800613 throw new RuntimeException("Adding window failed", e);
Mitsuru Oshima64f59342009-06-21 00:03:11 -0700614 } finally {
615 if (restore) {
616 attrs.restore();
617 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800618 }
Igor Murashkina86ab6402013-08-30 12:58:36 -0700619
Mitsuru Oshima64f59342009-06-21 00:03:11 -0700620 if (mTranslator != null) {
621 mTranslator.translateRectInScreenToAppWindow(mAttachInfo.mContentInsets);
Mitsuru Oshima9189cab2009-06-03 11:19:12 -0700622 }
Dianne Hackbornc4aad012013-02-22 15:05:25 -0800623 mPendingOverscanInsets.set(0, 0, 0, 0);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800624 mPendingContentInsets.set(mAttachInfo.mContentInsets);
Adrian Roosfa104232014-06-20 16:10:14 -0700625 mPendingStableInsets.set(mAttachInfo.mStableInsets);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800626 mPendingVisibleInsets.set(0, 0, 0, 0);
Jorim Jaggi0ffd49c2016-02-12 15:04:21 -0800627 mAttachInfo.mAlwaysConsumeNavBar =
628 (res & WindowManagerGlobal.ADD_FLAG_ALWAYS_CONSUME_NAV_BAR) != 0;
629 mPendingAlwaysConsumeNavBar = mAttachInfo.mAlwaysConsumeNavBar;
Filip Gruszczynski34dab0b2015-12-22 08:29:07 -0800630 if (DEBUG_LAYOUT) Log.v(mTag, "Added window " + mWindow);
Jeff Brown98365d72012-08-19 20:30:52 -0700631 if (res < WindowManagerGlobal.ADD_OKAY) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800632 mAttachInfo.mRootView = null;
633 mAdded = false;
Joe Onorato86f67862010-11-05 18:57:34 -0700634 mFallbackEventHandler.setView(null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800635 unscheduleTraversals();
Svetoslav Ganov45a02e02012-06-17 15:07:29 -0700636 setAccessibilityFocus(null, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800637 switch (res) {
Jeff Brown98365d72012-08-19 20:30:52 -0700638 case WindowManagerGlobal.ADD_BAD_APP_TOKEN:
639 case WindowManagerGlobal.ADD_BAD_SUBWINDOW_TOKEN:
640 throw new WindowManager.BadTokenException(
Wale Ogunwale74bf0652015-01-12 10:24:36 -0800641 "Unable to add window -- token " + attrs.token
642 + " is not valid; is your activity running?");
Jeff Brown98365d72012-08-19 20:30:52 -0700643 case WindowManagerGlobal.ADD_NOT_APP_TOKEN:
644 throw new WindowManager.BadTokenException(
Wale Ogunwale74bf0652015-01-12 10:24:36 -0800645 "Unable to add window -- token " + attrs.token
646 + " is not for an application");
Jeff Brown98365d72012-08-19 20:30:52 -0700647 case WindowManagerGlobal.ADD_APP_EXITING:
648 throw new WindowManager.BadTokenException(
Wale Ogunwale74bf0652015-01-12 10:24:36 -0800649 "Unable to add window -- app for token " + attrs.token
650 + " is exiting");
Jeff Brown98365d72012-08-19 20:30:52 -0700651 case WindowManagerGlobal.ADD_DUPLICATE_ADD:
652 throw new WindowManager.BadTokenException(
Wale Ogunwale74bf0652015-01-12 10:24:36 -0800653 "Unable to add window -- window " + mWindow
654 + " has already been added");
Jeff Brown98365d72012-08-19 20:30:52 -0700655 case WindowManagerGlobal.ADD_STARTING_NOT_NEEDED:
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800656 // Silently ignore -- we would have just removed it
657 // right away, anyway.
658 return;
Jeff Brown98365d72012-08-19 20:30:52 -0700659 case WindowManagerGlobal.ADD_MULTIPLE_SINGLETON:
Alan Viverette73f6d602015-09-14 16:01:19 -0400660 throw new WindowManager.BadTokenException("Unable to add window "
661 + mWindow + " -- another window of type "
662 + mWindowAttributes.type + " already exists");
Jeff Brown98365d72012-08-19 20:30:52 -0700663 case WindowManagerGlobal.ADD_PERMISSION_DENIED:
Alan Viverette73f6d602015-09-14 16:01:19 -0400664 throw new WindowManager.BadTokenException("Unable to add window "
665 + mWindow + " -- permission denied for window type "
666 + mWindowAttributes.type);
Craig Mautner6018aee2012-10-23 14:27:49 -0700667 case WindowManagerGlobal.ADD_INVALID_DISPLAY:
Alan Viverette73f6d602015-09-14 16:01:19 -0400668 throw new WindowManager.InvalidDisplayException("Unable to add window "
669 + mWindow + " -- the specified display can not be found");
Wale Ogunwale74bf0652015-01-12 10:24:36 -0800670 case WindowManagerGlobal.ADD_INVALID_TYPE:
Alan Viverette73f6d602015-09-14 16:01:19 -0400671 throw new WindowManager.InvalidDisplayException("Unable to add window "
672 + mWindow + " -- the specified window type "
673 + mWindowAttributes.type + " is not valid");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800674 }
675 throw new RuntimeException(
Wale Ogunwale74bf0652015-01-12 10:24:36 -0800676 "Unable to add window -- unknown error code " + res);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800677 }
Jeff Brown46b9ac02010-04-22 18:58:52 -0700678
Jeff Brown00fa7bd2010-07-02 15:37:36 -0700679 if (view instanceof RootViewSurfaceTaker) {
680 mInputQueueCallback =
681 ((RootViewSurfaceTaker)view).willYouTakeTheInputQueue();
682 }
Jeff Browncc4f7db2011-08-30 20:34:48 -0700683 if (mInputChannel != null) {
684 if (mInputQueueCallback != null) {
Michael Wrighta44dd262013-04-10 21:12:00 -0700685 mInputQueue = new InputQueue();
Jeff Browncc4f7db2011-08-30 20:34:48 -0700686 mInputQueueCallback.onInputQueueCreated(mInputQueue);
Jeff Browncc4f7db2011-08-30 20:34:48 -0700687 }
Michael Wrighta44dd262013-04-10 21:12:00 -0700688 mInputEventReceiver = new WindowInputEventReceiver(mInputChannel,
689 Looper.myLooper());
Jeff Brown46b9ac02010-04-22 18:58:52 -0700690 }
Svetoslav Ganov8643aa02011-04-20 12:12:33 -0700691
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800692 view.assignParent(this);
Jeff Brown98365d72012-08-19 20:30:52 -0700693 mAddedTouchMode = (res & WindowManagerGlobal.ADD_FLAG_IN_TOUCH_MODE) != 0;
694 mAppVisible = (res & WindowManagerGlobal.ADD_FLAG_APP_VISIBLE) != 0;
Svetoslav Ganov8643aa02011-04-20 12:12:33 -0700695
696 if (mAccessibilityManager.isEnabled()) {
697 mAccessibilityInteractionConnectionManager.ensureConnection();
698 }
Svetoslav Ganov42138042012-03-20 11:51:39 -0700699
700 if (view.getImportantForAccessibility() == View.IMPORTANT_FOR_ACCESSIBILITY_AUTO) {
701 view.setImportantForAccessibility(View.IMPORTANT_FOR_ACCESSIBILITY_YES);
702 }
Michael Wright95ae9422013-03-14 10:58:50 -0700703
Jeff Brownf9e989d2013-04-04 23:04:03 -0700704 // Set up the input pipeline.
705 CharSequence counterSuffix = attrs.getTitle();
Michael Wright899d7052014-04-23 17:23:39 -0700706 mSyntheticInputStage = new SyntheticInputStage();
707 InputStage viewPostImeStage = new ViewPostImeInputStage(mSyntheticInputStage);
Jeff Brownf9e989d2013-04-04 23:04:03 -0700708 InputStage nativePostImeStage = new NativePostImeInputStage(viewPostImeStage,
709 "aq:native-post-ime:" + counterSuffix);
710 InputStage earlyPostImeStage = new EarlyPostImeInputStage(nativePostImeStage);
711 InputStage imeStage = new ImeInputStage(earlyPostImeStage,
712 "aq:ime:" + counterSuffix);
713 InputStage viewPreImeStage = new ViewPreImeInputStage(imeStage);
714 InputStage nativePreImeStage = new NativePreImeInputStage(viewPreImeStage,
715 "aq:native-pre-ime:" + counterSuffix);
716
717 mFirstInputStage = nativePreImeStage;
718 mFirstPostImeInputStage = earlyPostImeStage;
719 mPendingInputEventQueueLengthCounterName = "aq:pending:" + counterSuffix;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800720 }
721 }
722 }
723
Filip Gruszczynski34dab0b2015-12-22 08:29:07 -0800724 private void setTag() {
725 final String[] split = mWindowAttributes.getTitle().toString().split("\\.");
726 if (split.length > 0) {
727 mTag = TAG + "[" + split[split.length - 1] + "]";
728 }
729 }
730
keunyoung30f420f2013-08-02 14:23:10 -0700731 /** Whether the window is in local focus mode or not */
732 private boolean isInLocalFocusMode() {
733 return (mWindowAttributes.flags & WindowManager.LayoutParams.FLAG_LOCAL_FOCUS_MODE) != 0;
734 }
735
Dianne Hackborn49b043f2015-05-07 14:21:38 -0700736 public int getWindowFlags() {
737 return mWindowAttributes.flags;
738 }
739
Dianne Hackbornece0f4f2015-06-11 13:29:01 -0700740 public int getDisplayId() {
741 return mDisplay.getDisplayId();
742 }
743
Dianne Hackborna7bb6fb2015-02-03 18:13:40 -0800744 public CharSequence getTitle() {
745 return mWindowAttributes.getTitle();
746 }
747
Romain Guy8ff6b9e2011-11-09 20:10:18 -0800748 void destroyHardwareResources() {
Romain Guy31f2c2e2011-11-21 10:55:41 -0800749 if (mAttachInfo.mHardwareRenderer != null) {
750 mAttachInfo.mHardwareRenderer.destroyHardwareResources(mView);
John Reckf47a5942014-06-30 16:20:04 -0700751 mAttachInfo.mHardwareRenderer.destroy();
Romain Guy31f2c2e2011-11-21 10:55:41 -0800752 }
753 }
754
Bo Liu845535a2014-03-21 12:06:23 -0700755 public void detachFunctor(long functor) {
John Reck44ac42a2014-05-16 14:46:07 -0700756 if (mAttachInfo.mHardwareRenderer != null) {
757 // Fence so that any pending invokeFunctor() messages will be processed
758 // before we return from detachFunctor.
John Reckf47a5942014-06-30 16:20:04 -0700759 mAttachInfo.mHardwareRenderer.stopDrawing();
John Reck44ac42a2014-05-16 14:46:07 -0700760 }
Romain Guyba6be8a2012-04-23 18:22:09 -0700761 }
762
John Reck3b202512014-06-23 13:13:08 -0700763 /**
764 * Schedules the functor for execution in either kModeProcess or
765 * kModeProcessNoContext, depending on whether or not there is an EGLContext.
766 *
767 * @param functor The native functor to invoke
768 * @param waitForCompletion If true, this will not return until the functor
769 * has invoked. If false, the functor may be invoked
770 * asynchronously.
771 */
Hui Shu9970aee2014-06-23 17:10:30 -0700772 public void invokeFunctor(long functor, boolean waitForCompletion) {
John Reck3b202512014-06-23 13:13:08 -0700773 ThreadedRenderer.invokeFunctor(functor, waitForCompletion);
Bo Liuae738a72014-04-27 16:22:04 -0700774 }
775
John Reck119907c2014-08-14 09:02:01 -0700776 public void registerAnimatingRenderNode(RenderNode animator) {
777 if (mAttachInfo.mHardwareRenderer != null) {
778 mAttachInfo.mHardwareRenderer.registerAnimatingRenderNode(animator);
779 } else {
780 if (mAttachInfo.mPendingAnimatingRenderNodes == null) {
781 mAttachInfo.mPendingAnimatingRenderNodes = new ArrayList<RenderNode>();
782 }
783 mAttachInfo.mPendingAnimatingRenderNodes.add(animator);
784 }
785 }
786
Romain Guy3b748a42013-04-17 18:54:38 -0700787 private void enableHardwareAcceleration(WindowManager.LayoutParams attrs) {
Dianne Hackborn7eec10e2010-11-12 18:03:47 -0800788 mAttachInfo.mHardwareAccelerated = false;
789 mAttachInfo.mHardwareAccelerationRequested = false;
Romain Guy4f6aff32011-01-12 16:21:41 -0800790
Romain Guy856d4e12011-10-14 15:47:55 -0700791 // Don't enable hardware acceleration when the application is in compatibility mode
John Reckdd58e792014-04-02 16:54:28 +0000792 if (mTranslator != null) return;
Romain Guy856d4e12011-10-14 15:47:55 -0700793
Dianne Hackborn7eec10e2010-11-12 18:03:47 -0800794 // Try to enable hardware acceleration if requested
Igor Murashkina86ab6402013-08-30 12:58:36 -0700795 final boolean hardwareAccelerated =
Jim Miller1b365922011-03-09 19:38:07 -0800796 (attrs.flags & WindowManager.LayoutParams.FLAG_HARDWARE_ACCELERATED) != 0;
797
John Reckdd58e792014-04-02 16:54:28 +0000798 if (hardwareAccelerated) {
John Reck51aaf902015-12-02 15:08:07 -0800799 if (!ThreadedRenderer.isAvailable()) {
Romain Guy1af23a32011-03-24 16:03:55 -0700800 return;
801 }
802
Dianne Hackborn5d927c22011-09-02 12:22:18 -0700803 // Persistent processes (including the system) should not do
804 // accelerated rendering on low-end devices. In that case,
805 // sRendererDisabled will be set. In addition, the system process
806 // itself should never do accelerated rendering. In that case, both
807 // sRendererDisabled and sSystemRendererDisabled are set. When
808 // sSystemRendererDisabled is set, PRIVATE_FLAG_FORCE_HARDWARE_ACCELERATED
809 // can be used by code on the system process to escape that and enable
810 // HW accelerated drawing. (This is basically for the lock screen.)
Jim Miller1b365922011-03-09 19:38:07 -0800811
John Reck61375a82014-09-18 19:27:48 +0000812 final boolean fakeHwAccelerated = (attrs.privateFlags &
813 WindowManager.LayoutParams.PRIVATE_FLAG_FAKE_HARDWARE_ACCELERATED) != 0;
Dianne Hackborn5d927c22011-09-02 12:22:18 -0700814 final boolean forceHwAccelerated = (attrs.privateFlags &
815 WindowManager.LayoutParams.PRIVATE_FLAG_FORCE_HARDWARE_ACCELERATED) != 0;
Jim Miller1b365922011-03-09 19:38:07 -0800816
John Reck61375a82014-09-18 19:27:48 +0000817 if (fakeHwAccelerated) {
818 // This is exclusively for the preview windows the window manager
819 // shows for launching applications, so they will look more like
820 // the app being launched.
821 mAttachInfo.mHardwareAccelerationRequested = true;
John Reck51aaf902015-12-02 15:08:07 -0800822 } else if (!ThreadedRenderer.sRendererDisabled
823 || (ThreadedRenderer.sSystemRendererDisabled && forceHwAccelerated)) {
Romain Guyb051e892010-09-28 19:09:36 -0700824 if (mAttachInfo.mHardwareRenderer != null) {
John Reckf47a5942014-06-30 16:20:04 -0700825 mAttachInfo.mHardwareRenderer.destroy();
Romain Guy211370f2012-02-01 16:10:55 -0800826 }
827
Alan Viverette2b12b582014-10-29 11:11:40 -0700828 final Rect insets = attrs.surfaceInsets;
Alan Viverette2cd23e62014-11-04 17:04:02 -0800829 final boolean hasSurfaceInsets = insets.left != 0 || insets.right != 0
830 || insets.top != 0 || insets.bottom != 0;
Alan Viverette2b12b582014-10-29 11:11:40 -0700831 final boolean translucent = attrs.format != PixelFormat.OPAQUE || hasSurfaceInsets;
John Reck51aaf902015-12-02 15:08:07 -0800832 mAttachInfo.mHardwareRenderer = ThreadedRenderer.create(mContext, translucent);
Romain Guye55945e2013-04-04 15:26:04 -0700833 if (mAttachInfo.mHardwareRenderer != null) {
834 mAttachInfo.mHardwareRenderer.setName(attrs.getTitle().toString());
835 mAttachInfo.mHardwareAccelerated =
836 mAttachInfo.mHardwareAccelerationRequested = true;
837 }
Romain Guye4d01122010-06-16 18:44:05 -0700838 }
839 }
840 }
841
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800842 public View getView() {
843 return mView;
844 }
845
846 final WindowLeaked getLocation() {
847 return mLocation;
848 }
849
850 void setLayoutParams(WindowManager.LayoutParams attrs, boolean newView) {
851 synchronized (this) {
Alan Viverettedbed8932014-08-06 17:54:52 -0700852 final int oldInsetLeft = mWindowAttributes.surfaceInsets.left;
853 final int oldInsetTop = mWindowAttributes.surfaceInsets.top;
854 final int oldInsetRight = mWindowAttributes.surfaceInsets.right;
855 final int oldInsetBottom = mWindowAttributes.surfaceInsets.bottom;
856 final int oldSoftInputMode = mWindowAttributes.softInputMode;
Alan Viverette5435a302015-01-29 10:25:34 -0800857 final boolean oldHasManualSurfaceInsets = mWindowAttributes.hasManualSurfaceInsets;
Alan Viverettedbed8932014-08-06 17:54:52 -0700858
Dianne Hackborn9d090892012-06-11 18:35:41 -0700859 // Keep track of the actual window flags supplied by the client.
860 mClientWindowLayoutFlags = attrs.flags;
Alan Viverettedbed8932014-08-06 17:54:52 -0700861
862 // Preserve compatible window flag if exists.
863 final int compatibleWindowFlag = mWindowAttributes.privateFlags
Adam Lesinski95c42972013-10-02 10:13:27 -0700864 & WindowManager.LayoutParams.PRIVATE_FLAG_COMPATIBLE_WINDOW;
Alan Viverettedbed8932014-08-06 17:54:52 -0700865
866 // Transfer over system UI visibility values as they carry current state.
Craig Mautner3fe38c02012-05-03 17:28:09 -0700867 attrs.systemUiVisibility = mWindowAttributes.systemUiVisibility;
868 attrs.subtreeSystemUiVisibility = mWindowAttributes.subtreeSystemUiVisibility;
Alan Viverettedbed8932014-08-06 17:54:52 -0700869
Romain Guyf21c9b02011-09-06 16:56:54 -0700870 mWindowAttributesChangesFlag = mWindowAttributes.copyFrom(attrs);
John Spurlockbd957402013-10-03 11:38:39 -0400871 if ((mWindowAttributesChangesFlag
872 & WindowManager.LayoutParams.TRANSLUCENT_FLAGS_CHANGED) != 0) {
873 // Recompute system ui visibility.
874 mAttachInfo.mRecomputeGlobalAttributes = true;
875 }
Dianne Hackbornc2293022013-02-06 23:14:49 -0800876 if (mWindowAttributes.packageName == null) {
877 mWindowAttributes.packageName = mBasePackageName;
878 }
Adam Lesinski95c42972013-10-02 10:13:27 -0700879 mWindowAttributes.privateFlags |= compatibleWindowFlag;
Dianne Hackborn9d090892012-06-11 18:35:41 -0700880
Alan Viverettedbed8932014-08-06 17:54:52 -0700881 // Restore old surface insets.
882 mWindowAttributes.surfaceInsets.set(
883 oldInsetLeft, oldInsetTop, oldInsetRight, oldInsetBottom);
Alan Viverette5435a302015-01-29 10:25:34 -0800884 mWindowAttributes.hasManualSurfaceInsets = oldHasManualSurfaceInsets;
Alan Viverettedbed8932014-08-06 17:54:52 -0700885
Dianne Hackborn9d090892012-06-11 18:35:41 -0700886 applyKeepScreenOnFlag(mWindowAttributes);
887
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800888 if (newView) {
889 mSoftInputMode = attrs.softInputMode;
890 requestLayout();
891 }
Alan Viverettedbed8932014-08-06 17:54:52 -0700892
The Android Open Source Project10592532009-03-18 17:39:46 -0700893 // Don't lose the mode we last auto-computed.
Alan Viverettedbed8932014-08-06 17:54:52 -0700894 if ((attrs.softInputMode & WindowManager.LayoutParams.SOFT_INPUT_MASK_ADJUST)
The Android Open Source Project10592532009-03-18 17:39:46 -0700895 == WindowManager.LayoutParams.SOFT_INPUT_ADJUST_UNSPECIFIED) {
896 mWindowAttributes.softInputMode = (mWindowAttributes.softInputMode
897 & ~WindowManager.LayoutParams.SOFT_INPUT_MASK_ADJUST)
Alan Viverettedbed8932014-08-06 17:54:52 -0700898 | (oldSoftInputMode & WindowManager.LayoutParams.SOFT_INPUT_MASK_ADJUST);
The Android Open Source Project10592532009-03-18 17:39:46 -0700899 }
Alan Viverettedbed8932014-08-06 17:54:52 -0700900
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800901 mWindowAttributesChanged = true;
902 scheduleTraversals();
903 }
904 }
905
906 void handleAppVisibility(boolean visible) {
907 if (mAppVisible != visible) {
908 mAppVisible = visible;
909 scheduleTraversals();
John Reck73840ea2014-09-22 07:39:18 -0700910 if (!mAppVisible) {
911 WindowManagerGlobal.trimForeground();
912 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800913 }
914 }
915
916 void handleGetNewSurface() {
917 mNewSurfaceNeeded = true;
918 mFullRedrawNeeded = true;
919 scheduleTraversals();
920 }
921
Jeff Brownd912e1f2014-04-11 18:46:22 -0700922 private final DisplayListener mDisplayListener = new DisplayListener() {
923 @Override
924 public void onDisplayChanged(int displayId) {
925 if (mView != null && mDisplay.getDisplayId() == displayId) {
926 final int oldDisplayState = mAttachInfo.mDisplayState;
927 final int newDisplayState = mDisplay.getState();
928 if (oldDisplayState != newDisplayState) {
929 mAttachInfo.mDisplayState = newDisplayState;
Jeff Brownc2932a12014-11-20 18:04:05 -0800930 pokeDrawLockIfNeeded();
Jeff Brownd912e1f2014-04-11 18:46:22 -0700931 if (oldDisplayState != Display.STATE_UNKNOWN) {
932 final int oldScreenState = toViewScreenState(oldDisplayState);
933 final int newScreenState = toViewScreenState(newDisplayState);
934 if (oldScreenState != newScreenState) {
935 mView.dispatchScreenStateChanged(newScreenState);
936 }
937 if (oldDisplayState == Display.STATE_OFF) {
938 // Draw was suppressed so we need to for it to happen here.
939 mFullRedrawNeeded = true;
940 scheduleTraversals();
941 }
942 }
943 }
Romain Guy7e4e5612012-03-05 14:37:29 -0800944 }
945 }
Jeff Brownd912e1f2014-04-11 18:46:22 -0700946
947 @Override
948 public void onDisplayRemoved(int displayId) {
949 }
950
951 @Override
952 public void onDisplayAdded(int displayId) {
953 }
954
955 private int toViewScreenState(int displayState) {
956 return displayState == Display.STATE_OFF ?
957 View.SCREEN_STATE_OFF : View.SCREEN_STATE_ON;
958 }
959 };
Romain Guy7e4e5612012-03-05 14:37:29 -0800960
Jeff Brownc2932a12014-11-20 18:04:05 -0800961 void pokeDrawLockIfNeeded() {
962 final int displayState = mAttachInfo.mDisplayState;
963 if (mView != null && mAdded && mTraversalScheduled
964 && (displayState == Display.STATE_DOZE
965 || displayState == Display.STATE_DOZE_SUSPEND)) {
966 try {
967 mWindowSession.pokeDrawLock(mWindow);
968 } catch (RemoteException ex) {
969 // System server died, oh well.
970 }
971 }
972 }
973
Craig Mautner6018aee2012-10-23 14:27:49 -0700974 @Override
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -0700975 public void requestFitSystemWindows() {
976 checkThread();
Adrian Roosfa104232014-06-20 16:10:14 -0700977 mApplyInsetsRequested = true;
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -0700978 scheduleTraversals();
979 }
980
Craig Mautner6018aee2012-10-23 14:27:49 -0700981 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800982 public void requestLayout() {
Chet Haase3efa7b52012-12-03 08:33:17 -0800983 if (!mHandlingLayoutInLayoutRequest) {
984 checkThread();
985 mLayoutRequested = true;
986 scheduleTraversals();
987 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800988 }
989
Craig Mautner6018aee2012-10-23 14:27:49 -0700990 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800991 public boolean isLayoutRequested() {
992 return mLayoutRequested;
993 }
994
Romain Guycfef1232012-02-23 13:50:37 -0800995 void invalidate() {
996 mDirty.set(0, 0, mWidth, mHeight);
John Recke4267ea2014-06-03 15:53:15 -0700997 if (!mWillDrawSoon) {
998 scheduleTraversals();
999 }
Romain Guycfef1232012-02-23 13:50:37 -08001000 }
1001
Dianne Hackborna53de062012-05-08 18:53:51 -07001002 void invalidateWorld(View view) {
1003 view.invalidate();
1004 if (view instanceof ViewGroup) {
Romain Guyf84208f2012-09-13 22:50:18 -07001005 ViewGroup parent = (ViewGroup) view;
1006 for (int i = 0; i < parent.getChildCount(); i++) {
Dianne Hackborna53de062012-05-08 18:53:51 -07001007 invalidateWorld(parent.getChildAt(i));
1008 }
1009 }
1010 }
1011
Craig Mautner6018aee2012-10-23 14:27:49 -07001012 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001013 public void invalidateChild(View child, Rect dirty) {
Romain Guycfef1232012-02-23 13:50:37 -08001014 invalidateChildInParent(null, dirty);
1015 }
1016
Craig Mautner8f303ad2013-06-14 11:32:22 -07001017 @Override
Romain Guycfef1232012-02-23 13:50:37 -08001018 public ViewParent invalidateChildInParent(int[] location, Rect dirty) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001019 checkThread();
Filip Gruszczynski34dab0b2015-12-22 08:29:07 -08001020 if (DEBUG_DRAW) Log.v(mTag, "Invalidate child: " + dirty);
Romain Guycfef1232012-02-23 13:50:37 -08001021
Chet Haase70d4ba12010-10-06 09:46:45 -07001022 if (dirty == null) {
Chet Haase70d4ba12010-10-06 09:46:45 -07001023 invalidate();
Romain Guycfef1232012-02-23 13:50:37 -08001024 return null;
Chet Haase3561d062012-10-23 12:54:51 -07001025 } else if (dirty.isEmpty() && !mIsAnimating) {
Chet Haase05e91ed2012-07-03 14:17:57 -07001026 return null;
Chet Haase70d4ba12010-10-06 09:46:45 -07001027 }
Romain Guycfef1232012-02-23 13:50:37 -08001028
Mitsuru Oshima64f59342009-06-21 00:03:11 -07001029 if (mCurScrollY != 0 || mTranslator != null) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001030 mTempRect.set(dirty);
Romain Guy1e095972009-07-07 11:22:45 -07001031 dirty = mTempRect;
Mitsuru Oshima8169dae2009-04-28 18:12:09 -07001032 if (mCurScrollY != 0) {
Romain Guycfef1232012-02-23 13:50:37 -08001033 dirty.offset(0, -mCurScrollY);
Mitsuru Oshima8169dae2009-04-28 18:12:09 -07001034 }
Mitsuru Oshima64f59342009-06-21 00:03:11 -07001035 if (mTranslator != null) {
Romain Guy1e095972009-07-07 11:22:45 -07001036 mTranslator.translateRectInAppWindowToScreen(dirty);
Mitsuru Oshima8169dae2009-04-28 18:12:09 -07001037 }
Romain Guy1e095972009-07-07 11:22:45 -07001038 if (mAttachInfo.mScalingRequired) {
1039 dirty.inset(-1, -1);
1040 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001041 }
Romain Guycfef1232012-02-23 13:50:37 -08001042
Alan Viverettea7ea65e2015-05-15 11:30:21 -07001043 invalidateRectOnScreen(dirty);
1044
1045 return null;
1046 }
1047
1048 private void invalidateRectOnScreen(Rect dirty) {
Romain Guycfef1232012-02-23 13:50:37 -08001049 final Rect localDirty = mDirty;
1050 if (!localDirty.isEmpty() && !localDirty.contains(dirty)) {
Romain Guy02ccac62011-06-24 13:20:23 -07001051 mAttachInfo.mSetIgnoreDirtyState = true;
Romain Guy7d695942010-12-01 17:22:29 -08001052 mAttachInfo.mIgnoreDirtyState = true;
1053 }
Romain Guycfef1232012-02-23 13:50:37 -08001054
1055 // Add the new dirty rect to the current one
1056 localDirty.union(dirty.left, dirty.top, dirty.right, dirty.bottom);
1057 // Intersect with the bounds of the window to skip
1058 // updates that lie outside of the visible region
Romain Guy7b2f8b82012-03-19 17:18:54 -07001059 final float appScale = mAttachInfo.mApplicationScale;
Chet Haase3561d062012-10-23 12:54:51 -07001060 final boolean intersected = localDirty.intersect(0, 0,
1061 (int) (mWidth * appScale + 0.5f), (int) (mHeight * appScale + 0.5f));
1062 if (!intersected) {
Chet Haaseb78ee0e2012-10-17 11:32:01 -07001063 localDirty.setEmpty();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001064 }
Chet Haase3561d062012-10-23 12:54:51 -07001065 if (!mWillDrawSoon && (intersected || mIsAnimating)) {
1066 scheduleTraversals();
1067 }
Romain Guy0d9275e2010-10-26 14:22:30 -07001068 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001069
Daniel Koulomzin087ae472015-12-16 17:52:25 -05001070 public void setIsAmbientMode(boolean ambient) {
1071 mIsAmbientMode = ambient;
1072 }
1073
George Mount41725de2015-04-09 08:23:05 -07001074 void setWindowStopped(boolean stopped) {
Dianne Hackbornce418e62011-03-01 14:31:38 -08001075 if (mStopped != stopped) {
1076 mStopped = stopped;
George Mount41725de2015-04-09 08:23:05 -07001077 if (!mStopped) {
Dianne Hackbornce418e62011-03-01 14:31:38 -08001078 scheduleTraversals();
John Reckd9b16072016-02-23 10:35:19 -08001079 } else {
John Reckf4db3d22016-02-26 12:58:17 -08001080 if (mAttachInfo.mHardwareRenderer != null) {
Wale Ogunwalee4f131a2016-03-07 07:33:56 -08001081 if (DEBUG_DRAW) Log.d(mTag, "WindowStopped on " + getTitle());
John Reckf4db3d22016-02-26 12:58:17 -08001082 mAttachInfo.mHardwareRenderer.updateSurface(null);
John Reckfc736862016-02-26 15:01:52 -08001083 mAttachInfo.mHardwareRenderer.destroyHardwareResources(mView);
John Reckf4db3d22016-02-26 12:58:17 -08001084 }
Dianne Hackbornce418e62011-03-01 14:31:38 -08001085 }
1086 }
1087 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001088
George Mount41725de2015-04-09 08:23:05 -07001089 /**
1090 * Block the input events during an Activity Transition. The KEYCODE_BACK event is allowed
1091 * through to allow quick reversal of the Activity Transition.
1092 *
1093 * @param paused true to pause, false to resume.
1094 */
1095 public void setPausedForTransition(boolean paused) {
1096 mPausedForTransition = paused;
1097 }
1098
Craig Mautner8f303ad2013-06-14 11:32:22 -07001099 @Override
Romain Guycfef1232012-02-23 13:50:37 -08001100 public ViewParent getParent() {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001101 return null;
1102 }
1103
Craig Mautner8f303ad2013-06-14 11:32:22 -07001104 @Override
Mitsuru Oshima64f59342009-06-21 00:03:11 -07001105 public boolean getChildVisibleRect(View child, Rect r, android.graphics.Point offset) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001106 if (child != mView) {
1107 throw new RuntimeException("child is not mine, honest!");
1108 }
1109 // Note: don't apply scroll offset, because we want to know its
1110 // visibility in the virtual canvas being given to the view hierarchy.
1111 return r.intersect(0, 0, mWidth, mHeight);
1112 }
1113
Igor Murashkina86ab6402013-08-30 12:58:36 -07001114 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001115 public void bringChildToFront(View child) {
1116 }
1117
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001118 int getHostVisibility() {
Filip Gruszczynski1a4dfe52015-11-15 10:58:57 -08001119 return (mAppVisible || mForceDecorViewVisibility) ? mView.getVisibility() : View.GONE;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001120 }
Romain Guy8506ab42009-06-11 17:35:47 -07001121
Chet Haasecca2c982011-05-20 14:34:18 -07001122 /**
1123 * Add LayoutTransition to the list of transitions to be started in the next traversal.
1124 * This list will be cleared after the transitions on the list are start()'ed. These
1125 * transitionsa re added by LayoutTransition itself when it sets up animations. The setup
1126 * happens during the layout phase of traversal, which we want to complete before any of the
1127 * animations are started (because those animations may side-effect properties that layout
1128 * depends upon, like the bounding rectangles of the affected views). So we add the transition
1129 * to the list and it is started just prior to starting the drawing phase of traversal.
1130 *
1131 * @param transition The LayoutTransition to be started on the next traversal.
1132 *
1133 * @hide
1134 */
1135 public void requestTransitionStart(LayoutTransition transition) {
1136 if (mPendingTransitions == null || !mPendingTransitions.contains(transition)) {
1137 if (mPendingTransitions == null) {
1138 mPendingTransitions = new ArrayList<LayoutTransition>();
1139 }
1140 mPendingTransitions.add(transition);
1141 }
1142 }
1143
John Recka5dda642014-05-22 15:43:54 -07001144 /**
1145 * Notifies the HardwareRenderer that a new frame will be coming soon.
1146 * Currently only {@link ThreadedRenderer} cares about this, and uses
1147 * this knowledge to adjust the scheduling of off-thread animations
1148 */
1149 void notifyRendererOfFramePending() {
1150 if (mAttachInfo.mHardwareRenderer != null) {
1151 mAttachInfo.mHardwareRenderer.notifyFramePending();
1152 }
1153 }
1154
Jeff Brownebb2d8d2012-03-23 17:14:34 -07001155 void scheduleTraversals() {
1156 if (!mTraversalScheduled) {
1157 mTraversalScheduled = true;
Jeff Brown3d4e7efe2015-02-26 15:34:16 -08001158 mTraversalBarrier = mHandler.getLooper().getQueue().postSyncBarrier();
Jeff Brownebb2d8d2012-03-23 17:14:34 -07001159 mChoreographer.postCallback(
1160 Choreographer.CALLBACK_TRAVERSAL, mTraversalRunnable, null);
Michael Wright9d744c72014-02-18 21:27:42 -08001161 if (!mUnbufferedInputDispatch) {
1162 scheduleConsumeBatchedInput();
1163 }
John Recka5dda642014-05-22 15:43:54 -07001164 notifyRendererOfFramePending();
Jeff Brownc2932a12014-11-20 18:04:05 -08001165 pokeDrawLockIfNeeded();
Jeff Brown96e942d2011-11-30 19:55:01 -08001166 }
Jeff Brownebb2d8d2012-03-23 17:14:34 -07001167 }
Jeff Brown96e942d2011-11-30 19:55:01 -08001168
Jeff Brownebb2d8d2012-03-23 17:14:34 -07001169 void unscheduleTraversals() {
1170 if (mTraversalScheduled) {
1171 mTraversalScheduled = false;
Jeff Brown3d4e7efe2015-02-26 15:34:16 -08001172 mHandler.getLooper().getQueue().removeSyncBarrier(mTraversalBarrier);
Jeff Brownebb2d8d2012-03-23 17:14:34 -07001173 mChoreographer.removeCallbacks(
1174 Choreographer.CALLBACK_TRAVERSAL, mTraversalRunnable, null);
1175 }
1176 }
1177
1178 void doTraversal() {
1179 if (mTraversalScheduled) {
1180 mTraversalScheduled = false;
Jeff Brown3d4e7efe2015-02-26 15:34:16 -08001181 mHandler.getLooper().getQueue().removeSyncBarrier(mTraversalBarrier);
Jeff Brownebb2d8d2012-03-23 17:14:34 -07001182
Jeff Brownebb2d8d2012-03-23 17:14:34 -07001183 if (mProfile) {
1184 Debug.startMethodTracing("ViewAncestor");
Jeff Brown96e942d2011-11-30 19:55:01 -08001185 }
Jeff Brown96e942d2011-11-30 19:55:01 -08001186
Chris Craike22c59b2015-05-21 18:33:37 -07001187 performTraversals();
Jeff Brown96e942d2011-11-30 19:55:01 -08001188
Jeff Brownebb2d8d2012-03-23 17:14:34 -07001189 if (mProfile) {
1190 Debug.stopMethodTracing();
1191 mProfile = false;
1192 }
Jeff Brown96e942d2011-11-30 19:55:01 -08001193 }
1194 }
1195
Dianne Hackborn9d090892012-06-11 18:35:41 -07001196 private void applyKeepScreenOnFlag(WindowManager.LayoutParams params) {
1197 // Update window's global keep screen on flag: if a view has requested
1198 // that the screen be kept on, then it is always set; otherwise, it is
1199 // set to whatever the client last requested for the global state.
1200 if (mAttachInfo.mKeepScreenOn) {
1201 params.flags |= WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON;
1202 } else {
1203 params.flags = (params.flags&~WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON)
1204 | (mClientWindowLayoutFlags&WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON);
1205 }
1206 }
1207
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07001208 private boolean collectViewAttributes() {
Chris Craikd36a81f2014-07-17 10:16:51 -07001209 if (mAttachInfo.mRecomputeGlobalAttributes) {
Filip Gruszczynski34dab0b2015-12-22 08:29:07 -08001210 //Log.i(mTag, "Computing view hierarchy attributes!");
Chris Craikd36a81f2014-07-17 10:16:51 -07001211 mAttachInfo.mRecomputeGlobalAttributes = false;
1212 boolean oldScreenOn = mAttachInfo.mKeepScreenOn;
1213 mAttachInfo.mKeepScreenOn = false;
1214 mAttachInfo.mSystemUiVisibility = 0;
1215 mAttachInfo.mHasSystemUiListeners = false;
1216 mView.dispatchCollectViewAttributes(mAttachInfo, 0);
1217 mAttachInfo.mSystemUiVisibility &= ~mAttachInfo.mDisabledSystemUiVisibility;
Craig Mautner7eac0f52012-09-13 13:14:14 -07001218 WindowManager.LayoutParams params = mWindowAttributes;
Chris Craikd36a81f2014-07-17 10:16:51 -07001219 mAttachInfo.mSystemUiVisibility |= getImpliedSystemUiVisibility(params);
1220 if (mAttachInfo.mKeepScreenOn != oldScreenOn
1221 || mAttachInfo.mSystemUiVisibility != params.subtreeSystemUiVisibility
1222 || mAttachInfo.mHasSystemUiListeners != params.hasSystemUiListeners) {
Dianne Hackborn9d090892012-06-11 18:35:41 -07001223 applyKeepScreenOnFlag(params);
Chris Craikd36a81f2014-07-17 10:16:51 -07001224 params.subtreeSystemUiVisibility = mAttachInfo.mSystemUiVisibility;
1225 params.hasSystemUiListeners = mAttachInfo.mHasSystemUiListeners;
1226 mView.dispatchWindowSystemUiVisiblityChanged(mAttachInfo.mSystemUiVisibility);
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07001227 return true;
1228 }
1229 }
1230 return false;
1231 }
1232
John Spurlockbd957402013-10-03 11:38:39 -04001233 private int getImpliedSystemUiVisibility(WindowManager.LayoutParams params) {
1234 int vis = 0;
1235 // Translucent decor window flags imply stable system ui visibility.
1236 if ((params.flags & WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS) != 0) {
1237 vis |= View.SYSTEM_UI_FLAG_LAYOUT_STABLE | View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN;
1238 }
1239 if ((params.flags & WindowManager.LayoutParams.FLAG_TRANSLUCENT_NAVIGATION) != 0) {
1240 vis |= View.SYSTEM_UI_FLAG_LAYOUT_STABLE | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION;
1241 }
1242 return vis;
1243 }
1244
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07001245 private boolean measureHierarchy(final View host, final WindowManager.LayoutParams lp,
1246 final Resources res, final int desiredWindowWidth, final int desiredWindowHeight) {
1247 int childWidthMeasureSpec;
1248 int childHeightMeasureSpec;
1249 boolean windowSizeMayChange = false;
1250
Filip Gruszczynski34dab0b2015-12-22 08:29:07 -08001251 if (DEBUG_ORIENTATION || DEBUG_LAYOUT) Log.v(mTag,
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07001252 "Measuring " + host + " in display " + desiredWindowWidth
1253 + "x" + desiredWindowHeight + "...");
1254
1255 boolean goodMeasure = false;
1256 if (lp.width == ViewGroup.LayoutParams.WRAP_CONTENT) {
1257 // On large screens, we don't want to allow dialogs to just
1258 // stretch to fill the entire width of the screen to display
1259 // one line of text. First try doing the layout at a smaller
1260 // size to see if it will fit.
1261 final DisplayMetrics packageMetrics = res.getDisplayMetrics();
1262 res.getValue(com.android.internal.R.dimen.config_prefDialogWidth, mTmpValue, true);
1263 int baseSize = 0;
1264 if (mTmpValue.type == TypedValue.TYPE_DIMENSION) {
1265 baseSize = (int)mTmpValue.getDimension(packageMetrics);
1266 }
Filip Gruszczynski1937a4c2016-01-19 16:17:13 -08001267 if (DEBUG_DIALOG) Log.v(mTag, "Window " + mView + ": baseSize=" + baseSize
1268 + ", desiredWindowWidth=" + desiredWindowWidth);
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07001269 if (baseSize != 0 && desiredWindowWidth > baseSize) {
1270 childWidthMeasureSpec = getRootMeasureSpec(baseSize, lp.width);
1271 childHeightMeasureSpec = getRootMeasureSpec(desiredWindowHeight, lp.height);
Jeff Brownc8d2668b2012-05-16 17:23:59 -07001272 performMeasure(childWidthMeasureSpec, childHeightMeasureSpec);
Filip Gruszczynski34dab0b2015-12-22 08:29:07 -08001273 if (DEBUG_DIALOG) Log.v(mTag, "Window " + mView + ": measured ("
Filip Gruszczynski1937a4c2016-01-19 16:17:13 -08001274 + host.getMeasuredWidth() + "," + host.getMeasuredHeight()
1275 + ") from width spec: " + MeasureSpec.toString(childWidthMeasureSpec)
1276 + " and height spec: " + MeasureSpec.toString(childHeightMeasureSpec));
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07001277 if ((host.getMeasuredWidthAndState()&View.MEASURED_STATE_TOO_SMALL) == 0) {
1278 goodMeasure = true;
1279 } else {
1280 // Didn't fit in that size... try expanding a bit.
1281 baseSize = (baseSize+desiredWindowWidth)/2;
Filip Gruszczynski34dab0b2015-12-22 08:29:07 -08001282 if (DEBUG_DIALOG) Log.v(mTag, "Window " + mView + ": next baseSize="
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07001283 + baseSize);
1284 childWidthMeasureSpec = getRootMeasureSpec(baseSize, lp.width);
Jeff Brownc8d2668b2012-05-16 17:23:59 -07001285 performMeasure(childWidthMeasureSpec, childHeightMeasureSpec);
Filip Gruszczynski34dab0b2015-12-22 08:29:07 -08001286 if (DEBUG_DIALOG) Log.v(mTag, "Window " + mView + ": measured ("
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07001287 + host.getMeasuredWidth() + "," + host.getMeasuredHeight() + ")");
1288 if ((host.getMeasuredWidthAndState()&View.MEASURED_STATE_TOO_SMALL) == 0) {
Filip Gruszczynski34dab0b2015-12-22 08:29:07 -08001289 if (DEBUG_DIALOG) Log.v(mTag, "Good!");
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07001290 goodMeasure = true;
1291 }
1292 }
1293 }
1294 }
1295
1296 if (!goodMeasure) {
1297 childWidthMeasureSpec = getRootMeasureSpec(desiredWindowWidth, lp.width);
1298 childHeightMeasureSpec = getRootMeasureSpec(desiredWindowHeight, lp.height);
Jeff Brownc8d2668b2012-05-16 17:23:59 -07001299 performMeasure(childWidthMeasureSpec, childHeightMeasureSpec);
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07001300 if (mWidth != host.getMeasuredWidth() || mHeight != host.getMeasuredHeight()) {
1301 windowSizeMayChange = true;
1302 }
1303 }
1304
1305 if (DBG) {
1306 System.out.println("======================================");
1307 System.out.println("performTraversals -- after measure");
1308 host.debug();
1309 }
1310
1311 return windowSizeMayChange;
1312 }
1313
Alan Viverettefed3f722013-11-14 14:48:20 -08001314 /**
1315 * Modifies the input matrix such that it maps view-local coordinates to
1316 * on-screen coordinates.
1317 *
1318 * @param m input matrix to modify
1319 */
1320 void transformMatrixToGlobal(Matrix m) {
Dake Gu7bf379c2014-07-15 16:29:38 -07001321 m.preTranslate(mAttachInfo.mWindowLeft, mAttachInfo.mWindowTop);
Alan Viverettefed3f722013-11-14 14:48:20 -08001322 }
1323
1324 /**
1325 * Modifies the input matrix such that it maps on-screen coordinates to
1326 * view-local coordinates.
1327 *
1328 * @param m input matrix to modify
1329 */
1330 void transformMatrixToLocal(Matrix m) {
Dake Gu7bf379c2014-07-15 16:29:38 -07001331 m.postTranslate(-mAttachInfo.mWindowLeft, -mAttachInfo.mWindowTop);
Alan Viverettefed3f722013-11-14 14:48:20 -08001332 }
1333
Filip Gruszczynski954289d2015-02-26 15:46:47 -08001334 /* package */ WindowInsets getWindowInsets(boolean forceConstruct) {
1335 if (mLastWindowInsets == null || forceConstruct) {
1336 mDispatchContentInsets.set(mAttachInfo.mContentInsets);
1337 mDispatchStableInsets.set(mAttachInfo.mStableInsets);
1338 Rect contentInsets = mDispatchContentInsets;
1339 Rect stableInsets = mDispatchStableInsets;
1340 // For dispatch we preserve old logic, but for direct requests from Views we allow to
1341 // immediately use pending insets.
1342 if (!forceConstruct
1343 && (!mPendingContentInsets.equals(contentInsets) ||
1344 !mPendingStableInsets.equals(stableInsets))) {
1345 contentInsets = mPendingContentInsets;
1346 stableInsets = mPendingStableInsets;
1347 }
Filip Gruszczynski2217f612015-05-26 11:32:08 -07001348 Rect outsets = mAttachInfo.mOutsets;
1349 if (outsets.left > 0 || outsets.top > 0 || outsets.right > 0 || outsets.bottom > 0) {
1350 contentInsets = new Rect(contentInsets.left + outsets.left,
1351 contentInsets.top + outsets.top, contentInsets.right + outsets.right,
1352 contentInsets.bottom + outsets.bottom);
1353 }
Filip Gruszczynski954289d2015-02-26 15:46:47 -08001354 mLastWindowInsets = new WindowInsets(contentInsets,
Adam Powell01f280d2015-05-18 16:07:42 -07001355 null /* windowDecorInsets */, stableInsets,
Jorim Jaggi0ffd49c2016-02-12 15:04:21 -08001356 mContext.getResources().getConfiguration().isScreenRound(),
1357 mAttachInfo.mAlwaysConsumeNavBar);
Filip Gruszczynski954289d2015-02-26 15:46:47 -08001358 }
1359 return mLastWindowInsets;
1360 }
1361
Adam Powell2accbf92014-04-16 23:14:57 +00001362 void dispatchApplyInsets(View host) {
Filip Gruszczynski954289d2015-02-26 15:46:47 -08001363 host.dispatchApplyWindowInsets(getWindowInsets(true /* forceConstruct */));
Adam Powell2accbf92014-04-16 23:14:57 +00001364 }
1365
Chong Zhangf6525ce2016-01-14 17:09:56 -08001366 private static boolean shouldUseDisplaySize(final WindowManager.LayoutParams lp) {
1367 return lp.type == TYPE_STATUS_BAR_PANEL
1368 || lp.type == TYPE_INPUT_METHOD
1369 || lp.type == TYPE_VOLUME_OVERLAY;
1370 }
1371
1372 private int dipToPx(int dip) {
1373 final DisplayMetrics displayMetrics = mContext.getResources().getDisplayMetrics();
1374 return (int) (displayMetrics.density * dip + 0.5f);
1375 }
1376
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001377 private void performTraversals() {
1378 // cache mView since it is used so much below...
1379 final View host = mView;
1380
1381 if (DBG) {
1382 System.out.println("======================================");
1383 System.out.println("performTraversals");
1384 host.debug();
1385 }
1386
1387 if (host == null || !mAdded)
1388 return;
1389
Craig Mautnerdf2390a2012-08-29 20:59:22 -07001390 mIsInTraversal = true;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001391 mWillDrawSoon = true;
Dianne Hackborn711e62a2010-11-29 16:38:22 -08001392 boolean windowSizeMayChange = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001393 boolean newSurface = false;
Dianne Hackborndc8a7f62010-05-10 11:29:34 -07001394 boolean surfaceChanged = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001395 WindowManager.LayoutParams lp = mWindowAttributes;
1396
1397 int desiredWindowWidth;
1398 int desiredWindowHeight;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001399
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001400 final int viewVisibility = getHostVisibility();
Filip Gruszczynski34dab0b2015-12-22 08:29:07 -08001401 final boolean viewVisibilityChanged = !mFirst
1402 && (mViewVisibility != viewVisibility || mNewSurfaceNeeded);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001403
1404 WindowManager.LayoutParams params = null;
1405 if (mWindowAttributesChanged) {
1406 mWindowAttributesChanged = false;
Dianne Hackborndc8a7f62010-05-10 11:29:34 -07001407 surfaceChanged = true;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001408 params = lp;
1409 }
Craig Mautner48d0d182013-06-11 07:53:06 -07001410 CompatibilityInfo compatibilityInfo = mDisplayAdjustments.getCompatibilityInfo();
Dianne Hackborn5fd21692011-06-07 14:09:47 -07001411 if (compatibilityInfo.supportsScreen() == mLastInCompatMode) {
1412 params = lp;
Jeff Brown96e942d2011-11-30 19:55:01 -08001413 mFullRedrawNeeded = true;
Dianne Hackborn5fd21692011-06-07 14:09:47 -07001414 mLayoutRequested = true;
1415 if (mLastInCompatMode) {
Adam Lesinski95c42972013-10-02 10:13:27 -07001416 params.privateFlags &= ~WindowManager.LayoutParams.PRIVATE_FLAG_COMPATIBLE_WINDOW;
Dianne Hackborn5fd21692011-06-07 14:09:47 -07001417 mLastInCompatMode = false;
1418 } else {
Adam Lesinski95c42972013-10-02 10:13:27 -07001419 params.privateFlags |= WindowManager.LayoutParams.PRIVATE_FLAG_COMPATIBLE_WINDOW;
Dianne Hackborn5fd21692011-06-07 14:09:47 -07001420 mLastInCompatMode = true;
1421 }
1422 }
Igor Murashkina86ab6402013-08-30 12:58:36 -07001423
Romain Guyf21c9b02011-09-06 16:56:54 -07001424 mWindowAttributesChangesFlag = 0;
Igor Murashkina86ab6402013-08-30 12:58:36 -07001425
Mitsuru Oshima64f59342009-06-21 00:03:11 -07001426 Rect frame = mWinFrame;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001427 if (mFirst) {
Jeff Brown96e942d2011-11-30 19:55:01 -08001428 mFullRedrawNeeded = true;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001429 mLayoutRequested = true;
1430
Chong Zhangf6525ce2016-01-14 17:09:56 -08001431 if (shouldUseDisplaySize(lp)) {
Dianne Hackborna239c842011-06-01 12:28:20 -07001432 // NOTE -- system code, won't try to do compat mode.
Jeff Brownbc68a592011-07-25 12:58:12 -07001433 Point size = new Point();
Jeff Brown98365d72012-08-19 20:30:52 -07001434 mDisplay.getRealSize(size);
Jeff Brownbc68a592011-07-25 12:58:12 -07001435 desiredWindowWidth = size.x;
1436 desiredWindowHeight = size.y;
Dianne Hackborna239c842011-06-01 12:28:20 -07001437 } else {
Chong Zhangf6525ce2016-01-14 17:09:56 -08001438 Configuration config = mContext.getResources().getConfiguration();
1439 desiredWindowWidth = dipToPx(config.screenWidthDp);
1440 desiredWindowHeight = dipToPx(config.screenHeightDp);
Dianne Hackborna239c842011-06-01 12:28:20 -07001441 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001442
Romain Guyc5d55862011-01-21 19:01:46 -08001443 // We used to use the following condition to choose 32 bits drawing caches:
1444 // PixelFormat.hasAlpha(lp.format) || lp.format == PixelFormat.RGBX_8888
1445 // However, windows are now always 32 bits by default, so choose 32 bits
Chris Craikd36a81f2014-07-17 10:16:51 -07001446 mAttachInfo.mUse32BitDrawingCache = true;
1447 mAttachInfo.mHasWindowFocus = false;
1448 mAttachInfo.mWindowVisibility = viewVisibility;
1449 mAttachInfo.mRecomputeGlobalAttributes = false;
Dianne Hackborn694f79b2010-03-17 19:44:59 -07001450 mLastConfiguration.setTo(host.getResources().getConfiguration());
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07001451 mLastSystemUiVisibility = mAttachInfo.mSystemUiVisibility;
Fabrice Di Megliob003e282012-10-17 17:20:19 -07001452 // Set the layout direction if it has not been set before (inherit is the default)
1453 if (mViewLayoutDirectionInitial == View.LAYOUT_DIRECTION_INHERIT) {
1454 host.setLayoutDirection(mLastConfiguration.getLayoutDirection());
1455 }
Chris Craikd36a81f2014-07-17 10:16:51 -07001456 host.dispatchAttachedToWindow(mAttachInfo, 0);
1457 mAttachInfo.mTreeObserver.dispatchOnWindowAttachedChange(true);
Adam Powell2accbf92014-04-16 23:14:57 +00001458 dispatchApplyInsets(host);
Filip Gruszczynski34dab0b2015-12-22 08:29:07 -08001459 //Log.i(mTag, "Screen on initialized: " + attachInfo.mKeepScreenOn);
svetoslavganov75986cf2009-05-14 22:28:01 -07001460
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001461 } else {
Mitsuru Oshima64f59342009-06-21 00:03:11 -07001462 desiredWindowWidth = frame.width();
1463 desiredWindowHeight = frame.height();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001464 if (desiredWindowWidth != mWidth || desiredWindowHeight != mHeight) {
Filip Gruszczynski34dab0b2015-12-22 08:29:07 -08001465 if (DEBUG_ORIENTATION) Log.v(mTag, "View " + host + " resized to: " + frame);
Jeff Brown96e942d2011-11-30 19:55:01 -08001466 mFullRedrawNeeded = true;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001467 mLayoutRequested = true;
Dianne Hackborn711e62a2010-11-29 16:38:22 -08001468 windowSizeMayChange = true;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001469 }
1470 }
1471
1472 if (viewVisibilityChanged) {
Chris Craikd36a81f2014-07-17 10:16:51 -07001473 mAttachInfo.mWindowVisibility = viewVisibility;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001474 host.dispatchWindowVisibilityChanged(viewVisibility);
1475 if (viewVisibility != View.VISIBLE || mNewSurfaceNeeded) {
Skuhneb8160872015-09-22 09:51:39 -07001476 endDragResizing();
Romain Guy65b345f2011-07-27 18:51:50 -07001477 destroyHardwareResources();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001478 }
1479 if (viewVisibility == View.GONE) {
1480 // After making a window gone, we will count it as being
1481 // shown for the first time the next time it gets focus.
1482 mHasHadWindowFocus = false;
1483 }
1484 }
1485
Alan Viverette7dbc3bf2015-01-28 16:14:36 -08001486 // Non-visible windows can't hold accessibility focus.
1487 if (mAttachInfo.mWindowVisibility != View.VISIBLE) {
1488 host.clearAccessibilityFocus();
1489 }
1490
Chet Haaseb78c2842012-04-19 13:39:50 -07001491 // Execute enqueued actions on every traversal in case a detached view enqueued an action
Chris Craikd36a81f2014-07-17 10:16:51 -07001492 getRunQueue().executeActions(mAttachInfo.mHandler);
Chet Haaseb78c2842012-04-19 13:39:50 -07001493
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001494 boolean insetsChanged = false;
Romain Guy8506ab42009-06-11 17:35:47 -07001495
Craig Mautner72d6f212015-02-19 16:33:09 -08001496 boolean layoutRequested = mLayoutRequested && (!mStopped || mReportNextDraw);
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07001497 if (layoutRequested) {
Romain Guy15df6702009-08-17 20:17:30 -07001498
Dianne Hackborn711e62a2010-11-29 16:38:22 -08001499 final Resources res = mView.getContext().getResources();
1500
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001501 if (mFirst) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001502 // make sure touch mode code executes by setting cached value
1503 // to opposite of the added touch mode.
1504 mAttachInfo.mInTouchMode = !mAddedTouchMode;
Romain Guy2d4cff62010-04-09 15:39:00 -07001505 ensureTouchModeLocally(mAddedTouchMode);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001506 } else {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08001507 if (!mPendingOverscanInsets.equals(mAttachInfo.mOverscanInsets)) {
1508 insetsChanged = true;
1509 }
Dianne Hackbornfa6b35b2011-08-24 17:03:54 -07001510 if (!mPendingContentInsets.equals(mAttachInfo.mContentInsets)) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001511 insetsChanged = true;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001512 }
Adrian Roosfa104232014-06-20 16:10:14 -07001513 if (!mPendingStableInsets.equals(mAttachInfo.mStableInsets)) {
1514 insetsChanged = true;
1515 }
Dianne Hackbornfa6b35b2011-08-24 17:03:54 -07001516 if (!mPendingVisibleInsets.equals(mAttachInfo.mVisibleInsets)) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001517 mAttachInfo.mVisibleInsets.set(mPendingVisibleInsets);
Filip Gruszczynski34dab0b2015-12-22 08:29:07 -08001518 if (DEBUG_LAYOUT) Log.v(mTag, "Visible insets changing to: "
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001519 + mAttachInfo.mVisibleInsets);
1520 }
Filip Gruszczynski2217f612015-05-26 11:32:08 -07001521 if (!mPendingOutsets.equals(mAttachInfo.mOutsets)) {
1522 insetsChanged = true;
1523 }
Jorim Jaggi0ffd49c2016-02-12 15:04:21 -08001524 if (mPendingAlwaysConsumeNavBar != mAttachInfo.mAlwaysConsumeNavBar) {
1525 insetsChanged = true;
1526 }
Chong Zhangf6525ce2016-01-14 17:09:56 -08001527 if (lp.width == ViewGroup.LayoutParams.WRAP_CONTENT
1528 || lp.height == ViewGroup.LayoutParams.WRAP_CONTENT) {
Dianne Hackborn711e62a2010-11-29 16:38:22 -08001529 windowSizeMayChange = true;
Chong Zhangf6525ce2016-01-14 17:09:56 -08001530
1531 if (shouldUseDisplaySize(lp)) {
1532 // NOTE -- system code, won't try to do compat mode.
1533 Point size = new Point();
1534 mDisplay.getRealSize(size);
1535 desiredWindowWidth = size.x;
1536 desiredWindowHeight = size.y;
1537 } else {
1538 Configuration config = res.getConfiguration();
1539 desiredWindowWidth = dipToPx(config.screenWidthDp);
1540 desiredWindowHeight = dipToPx(config.screenHeightDp);
1541 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001542 }
1543 }
1544
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001545 // Ask host how big it wants to be
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07001546 windowSizeMayChange |= measureHierarchy(host, lp, res,
1547 desiredWindowWidth, desiredWindowHeight);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001548 }
1549
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07001550 if (collectViewAttributes()) {
1551 params = lp;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001552 }
Chris Craikd36a81f2014-07-17 10:16:51 -07001553 if (mAttachInfo.mForceReportNewAttributes) {
1554 mAttachInfo.mForceReportNewAttributes = false;
Dianne Hackborn9a230e02011-10-06 11:51:27 -07001555 params = lp;
1556 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001557
Chris Craikd36a81f2014-07-17 10:16:51 -07001558 if (mFirst || mAttachInfo.mViewVisibilityChanged) {
1559 mAttachInfo.mViewVisibilityChanged = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001560 int resizeMode = mSoftInputMode &
1561 WindowManager.LayoutParams.SOFT_INPUT_MASK_ADJUST;
1562 // If we are in auto resize mode, then we need to determine
1563 // what mode to use now.
1564 if (resizeMode == WindowManager.LayoutParams.SOFT_INPUT_ADJUST_UNSPECIFIED) {
Chris Craikd36a81f2014-07-17 10:16:51 -07001565 final int N = mAttachInfo.mScrollContainers.size();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001566 for (int i=0; i<N; i++) {
Chris Craikd36a81f2014-07-17 10:16:51 -07001567 if (mAttachInfo.mScrollContainers.get(i).isShown()) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001568 resizeMode = WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE;
1569 }
1570 }
1571 if (resizeMode == 0) {
1572 resizeMode = WindowManager.LayoutParams.SOFT_INPUT_ADJUST_PAN;
1573 }
1574 if ((lp.softInputMode &
1575 WindowManager.LayoutParams.SOFT_INPUT_MASK_ADJUST) != resizeMode) {
1576 lp.softInputMode = (lp.softInputMode &
1577 ~WindowManager.LayoutParams.SOFT_INPUT_MASK_ADJUST) |
1578 resizeMode;
1579 params = lp;
1580 }
1581 }
1582 }
Romain Guy8506ab42009-06-11 17:35:47 -07001583
Dianne Hackbornc4aad012013-02-22 15:05:25 -08001584 if (params != null) {
1585 if ((host.mPrivateFlags & View.PFLAG_REQUEST_TRANSPARENT_REGIONS) != 0) {
1586 if (!PixelFormat.formatHasAlpha(params.format)) {
1587 params.format = PixelFormat.TRANSLUCENT;
1588 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001589 }
Dianne Hackbornc4aad012013-02-22 15:05:25 -08001590 mAttachInfo.mOverscanRequested = (params.flags
1591 & WindowManager.LayoutParams.FLAG_LAYOUT_IN_OVERSCAN) != 0;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001592 }
1593
Adrian Roosfa104232014-06-20 16:10:14 -07001594 if (mApplyInsetsRequested) {
1595 mApplyInsetsRequested = false;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08001596 mLastOverscanRequested = mAttachInfo.mOverscanRequested;
Adam Powell2accbf92014-04-16 23:14:57 +00001597 dispatchApplyInsets(host);
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07001598 if (mLayoutRequested) {
1599 // Short-circuit catching a new layout request here, so
1600 // we don't need to go through two layout passes when things
1601 // change due to fitting system windows, which can happen a lot.
1602 windowSizeMayChange |= measureHierarchy(host, lp,
1603 mView.getContext().getResources(),
1604 desiredWindowWidth, desiredWindowHeight);
1605 }
1606 }
1607
1608 if (layoutRequested) {
1609 // Clear this now, so that if anything requests a layout in the
1610 // rest of this function we will catch it and re-run a full
1611 // layout pass.
1612 mLayoutRequested = false;
1613 }
1614
1615 boolean windowShouldResize = layoutRequested && windowSizeMayChange
Dianne Hackborn189ee182010-12-02 21:48:53 -08001616 && ((mWidth != host.getMeasuredWidth() || mHeight != host.getMeasuredHeight())
Romain Guy2e4f4262010-04-06 11:07:52 -07001617 || (lp.width == ViewGroup.LayoutParams.WRAP_CONTENT &&
1618 frame.width() < desiredWindowWidth && frame.width() != mWidth)
1619 || (lp.height == ViewGroup.LayoutParams.WRAP_CONTENT &&
1620 frame.height() < desiredWindowHeight && frame.height() != mHeight));
Jorim Jaggi4846ee32016-01-07 17:39:12 +01001621 windowShouldResize |= mDragResizing && mResizeMode == RESIZE_MODE_FREEFORM;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001622
Jorim Jaggi4846ee32016-01-07 17:39:12 +01001623 // If the activity was just relaunched, it might have unfrozen the task bounds (while
1624 // relaunching), so we need to force a call into window manager to pick up the latest
1625 // bounds.
1626 windowShouldResize |= mActivityRelaunched;
1627
Jeff Brown2e05ec32013-09-30 15:57:43 -07001628 // Determine whether to compute insets.
1629 // If there are no inset listeners remaining then we may still need to compute
1630 // insets in case the old insets were non-empty and must be reset.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001631 final boolean computesInternalInsets =
Chris Craikd36a81f2014-07-17 10:16:51 -07001632 mAttachInfo.mTreeObserver.hasComputeInternalInsetsListeners()
1633 || mAttachInfo.mHasNonEmptyGivenInternalInsets;
Romain Guy812ccbe2010-06-01 14:07:24 -07001634
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001635 boolean insetsPending = false;
1636 int relayoutResult = 0;
Romain Guy812ccbe2010-06-01 14:07:24 -07001637
Filip Gruszczynski1a4dfe52015-11-15 10:58:57 -08001638 final boolean isViewVisible = viewVisibility == View.VISIBLE;
Romain Guy812ccbe2010-06-01 14:07:24 -07001639 if (mFirst || windowShouldResize || insetsChanged ||
Jorim Jaggia4a58ef2016-01-27 02:10:08 -08001640 viewVisibilityChanged || params != null || mForceNextWindowRelayout) {
1641 mForceNextWindowRelayout = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001642
Alan Viverette64bf97a2015-09-18 16:42:00 -04001643 if (isViewVisible) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001644 // If this window is giving internal insets to the window
1645 // manager, and it is being added or changing its visibility,
1646 // then we want to first give the window manager "fake"
1647 // insets to cause it to effectively ignore the content of
1648 // the window during layout. This avoids it briefly causing
1649 // other windows to resize/move based on the raw frame of the
1650 // window, waiting until we can finish laying out this window
1651 // and get back to the window manager with the ultimately
1652 // computed insets.
Romain Guy812ccbe2010-06-01 14:07:24 -07001653 insetsPending = computesInternalInsets && (mFirst || viewVisibilityChanged);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001654 }
1655
Dianne Hackborndc8a7f62010-05-10 11:29:34 -07001656 if (mSurfaceHolder != null) {
1657 mSurfaceHolder.mSurfaceLock.lock();
1658 mDrawingAllowed = true;
Dianne Hackborndc8a7f62010-05-10 11:29:34 -07001659 }
Romain Guy812ccbe2010-06-01 14:07:24 -07001660
Romain Guyc361da82010-10-25 15:29:10 -07001661 boolean hwInitialized = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001662 boolean contentInsetsChanged = false;
Dianne Hackborndc8a7f62010-05-10 11:29:34 -07001663 boolean hadSurface = mSurface.isValid();
Romain Guy812ccbe2010-06-01 14:07:24 -07001664
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001665 try {
Mitsuru Oshima8169dae2009-04-28 18:12:09 -07001666 if (DEBUG_LAYOUT) {
Filip Gruszczynski34dab0b2015-12-22 08:29:07 -08001667 Log.i(mTag, "host=w:" + host.getMeasuredWidth() + ", h:" +
Dianne Hackborn189ee182010-12-02 21:48:53 -08001668 host.getMeasuredHeight() + ", params=" + params);
Mitsuru Oshima8169dae2009-04-28 18:12:09 -07001669 }
Romain Guy2a83f002011-01-18 18:28:21 -08001670
John Reckf7d9c1d2014-04-09 10:01:03 -07001671 if (mAttachInfo.mHardwareRenderer != null) {
1672 // relayoutWindow may decide to destroy mSurface. As that decision
1673 // happens in WindowManager service, we need to be defensive here
1674 // and stop using the surface in case it gets destroyed.
John Reck01a5ea32014-12-03 13:01:07 -08001675 if (mAttachInfo.mHardwareRenderer.pauseSurface(mSurface)) {
1676 // Animations were running so we need to push a frame
1677 // to resume them
1678 mDirty.set(0, 0, mWidth, mHeight);
1679 }
John Reckba6adf62015-02-19 14:36:50 -08001680 mChoreographer.mFrameInfo.addFlags(FrameInfo.FLAG_WINDOW_LAYOUT_CHANGED);
John Reckf7d9c1d2014-04-09 10:01:03 -07001681 }
Romain Guy2a83f002011-01-18 18:28:21 -08001682 final int surfaceGenerationId = mSurface.getGenerationId();
Mitsuru Oshima8169dae2009-04-28 18:12:09 -07001683 relayoutResult = relayoutWindow(params, viewVisibility, insetsPending);
1684
Filip Gruszczynski34dab0b2015-12-22 08:29:07 -08001685 if (DEBUG_LAYOUT) Log.v(mTag, "relayout: frame=" + frame.toShortString()
Dianne Hackbornc4aad012013-02-22 15:05:25 -08001686 + " overscan=" + mPendingOverscanInsets.toShortString()
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001687 + " content=" + mPendingContentInsets.toShortString()
1688 + " visible=" + mPendingVisibleInsets.toShortString()
Adrian Roosfa104232014-06-20 16:10:14 -07001689 + " visible=" + mPendingStableInsets.toShortString()
Filip Gruszczynski0ec13282015-06-25 11:26:01 -07001690 + " outsets=" + mPendingOutsets.toShortString()
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001691 + " surface=" + mSurface);
Romain Guy8506ab42009-06-11 17:35:47 -07001692
Dianne Hackborn694f79b2010-03-17 19:44:59 -07001693 if (mPendingConfiguration.seq != 0) {
Filip Gruszczynski34dab0b2015-12-22 08:29:07 -08001694 if (DEBUG_CONFIGURATION) Log.v(mTag, "Visible with new config: "
Dianne Hackborn694f79b2010-03-17 19:44:59 -07001695 + mPendingConfiguration);
riddle_hsu164725c2015-11-12 14:07:12 +08001696 updateConfiguration(new Configuration(mPendingConfiguration), !mFirst);
Dianne Hackborn694f79b2010-03-17 19:44:59 -07001697 mPendingConfiguration.seq = 0;
1698 }
Dianne Hackborn3556c9a2012-05-04 16:31:25 -07001699
Dianne Hackbornc4aad012013-02-22 15:05:25 -08001700 final boolean overscanInsetsChanged = !mPendingOverscanInsets.equals(
1701 mAttachInfo.mOverscanInsets);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001702 contentInsetsChanged = !mPendingContentInsets.equals(
1703 mAttachInfo.mContentInsets);
Dianne Hackbornc4aad012013-02-22 15:05:25 -08001704 final boolean visibleInsetsChanged = !mPendingVisibleInsets.equals(
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001705 mAttachInfo.mVisibleInsets);
Adrian Roosfa104232014-06-20 16:10:14 -07001706 final boolean stableInsetsChanged = !mPendingStableInsets.equals(
1707 mAttachInfo.mStableInsets);
Filip Gruszczynski2217f612015-05-26 11:32:08 -07001708 final boolean outsetsChanged = !mPendingOutsets.equals(mAttachInfo.mOutsets);
Chong Zhangf4abc2b2015-11-12 23:40:58 -08001709 final boolean surfaceSizeChanged = (relayoutResult
1710 & WindowManagerGlobal.RELAYOUT_RES_SURFACE_RESIZED) != 0;
Jorim Jaggi0ffd49c2016-02-12 15:04:21 -08001711 final boolean alwaysConsumeNavBarChanged =
1712 mPendingAlwaysConsumeNavBar != mAttachInfo.mAlwaysConsumeNavBar;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001713 if (contentInsetsChanged) {
1714 mAttachInfo.mContentInsets.set(mPendingContentInsets);
Filip Gruszczynski34dab0b2015-12-22 08:29:07 -08001715 if (DEBUG_LAYOUT) Log.v(mTag, "Content insets changing to: "
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001716 + mAttachInfo.mContentInsets);
1717 }
Dianne Hackbornc4aad012013-02-22 15:05:25 -08001718 if (overscanInsetsChanged) {
1719 mAttachInfo.mOverscanInsets.set(mPendingOverscanInsets);
Filip Gruszczynski34dab0b2015-12-22 08:29:07 -08001720 if (DEBUG_LAYOUT) Log.v(mTag, "Overscan insets changing to: "
Dianne Hackbornc4aad012013-02-22 15:05:25 -08001721 + mAttachInfo.mOverscanInsets);
1722 // Need to relayout with content insets.
1723 contentInsetsChanged = true;
1724 }
Adrian Roosfa104232014-06-20 16:10:14 -07001725 if (stableInsetsChanged) {
1726 mAttachInfo.mStableInsets.set(mPendingStableInsets);
Filip Gruszczynski34dab0b2015-12-22 08:29:07 -08001727 if (DEBUG_LAYOUT) Log.v(mTag, "Decor insets changing to: "
Adrian Roosfa104232014-06-20 16:10:14 -07001728 + mAttachInfo.mStableInsets);
1729 // Need to relayout with content insets.
1730 contentInsetsChanged = true;
1731 }
Jorim Jaggi0ffd49c2016-02-12 15:04:21 -08001732 if (alwaysConsumeNavBarChanged) {
1733 mAttachInfo.mAlwaysConsumeNavBar = mPendingAlwaysConsumeNavBar;
1734 contentInsetsChanged = true;
1735 }
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07001736 if (contentInsetsChanged || mLastSystemUiVisibility !=
Adrian Roosfa104232014-06-20 16:10:14 -07001737 mAttachInfo.mSystemUiVisibility || mApplyInsetsRequested
Filip Gruszczynski2217f612015-05-26 11:32:08 -07001738 || mLastOverscanRequested != mAttachInfo.mOverscanRequested
1739 || outsetsChanged) {
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07001740 mLastSystemUiVisibility = mAttachInfo.mSystemUiVisibility;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08001741 mLastOverscanRequested = mAttachInfo.mOverscanRequested;
Filip Gruszczynski2217f612015-05-26 11:32:08 -07001742 mAttachInfo.mOutsets.set(mPendingOutsets);
Adrian Roosfa104232014-06-20 16:10:14 -07001743 mApplyInsetsRequested = false;
Adam Powell2accbf92014-04-16 23:14:57 +00001744 dispatchApplyInsets(host);
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07001745 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001746 if (visibleInsetsChanged) {
1747 mAttachInfo.mVisibleInsets.set(mPendingVisibleInsets);
Filip Gruszczynski34dab0b2015-12-22 08:29:07 -08001748 if (DEBUG_LAYOUT) Log.v(mTag, "Visible insets changing to: "
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001749 + mAttachInfo.mVisibleInsets);
1750 }
1751
1752 if (!hadSurface) {
1753 if (mSurface.isValid()) {
1754 // If we are creating a new surface, then we need to
1755 // completely redraw it. Also, when we get to the
1756 // point of drawing it we will hold off and schedule
1757 // a new traversal instead. This is so we can tell the
1758 // window manager about all of the windows being displayed
1759 // before actually drawing them, so it can display then
1760 // all at once.
1761 newSurface = true;
Jeff Brown96e942d2011-11-30 19:55:01 -08001762 mFullRedrawNeeded = true;
Jack Palevich61a6e682009-10-09 17:37:50 -07001763 mPreviousTransparentRegion.setEmpty();
Romain Guy8506ab42009-06-11 17:35:47 -07001764
John Reck63005e62015-05-19 15:00:13 -07001765 // Only initialize up-front if transparent regions are not
1766 // requested, otherwise defer to see if the entire window
1767 // will be transparent
Romain Guyb051e892010-09-28 19:09:36 -07001768 if (mAttachInfo.mHardwareRenderer != null) {
Dianne Hackborn64825172011-03-02 21:32:58 -08001769 try {
Romain Guy786fc932012-07-24 16:24:56 -07001770 hwInitialized = mAttachInfo.mHardwareRenderer.initialize(
John Reck79d81e62013-11-05 13:26:57 -08001771 mSurface);
John Reck63005e62015-05-19 15:00:13 -07001772 if (hwInitialized && (host.mPrivateFlags
1773 & View.PFLAG_REQUEST_TRANSPARENT_REGIONS) == 0) {
1774 // Don't pre-allocate if transparent regions
1775 // are requested as they may not be needed
1776 mSurface.allocateBuffers();
1777 }
Igor Murashkina86ab6402013-08-30 12:58:36 -07001778 } catch (OutOfResourcesException e) {
Romain Guy3696779b2013-01-28 14:04:07 -08001779 handleOutOfResourcesException(e);
Dianne Hackborn64825172011-03-02 21:32:58 -08001780 return;
1781 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001782 }
1783 }
1784 } else if (!mSurface.isValid()) {
1785 // If the surface has been removed, then reset the scroll
1786 // positions.
Svetoslav Ganov149567f2013-01-08 15:23:34 -08001787 if (mLastScrolledFocus != null) {
1788 mLastScrolledFocus.clear();
1789 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001790 mScrollY = mCurScrollY = 0;
Adrian Roos0e7ae4e2014-10-01 15:33:22 +02001791 if (mView instanceof RootViewSurfaceTaker) {
1792 ((RootViewSurfaceTaker) mView).onRootViewScrollYChanged(mCurScrollY);
1793 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001794 if (mScroller != null) {
1795 mScroller.abortAnimation();
1796 }
Romain Guy1d0c7082011-08-03 16:22:24 -07001797 // Our surface is gone
1798 if (mAttachInfo.mHardwareRenderer != null &&
1799 mAttachInfo.mHardwareRenderer.isEnabled()) {
John Reckf47a5942014-06-30 16:20:04 -07001800 mAttachInfo.mHardwareRenderer.destroy();
Romain Guy1d0c7082011-08-03 16:22:24 -07001801 }
Chong Zhangf4abc2b2015-11-12 23:40:58 -08001802 } else if ((surfaceGenerationId != mSurface.getGenerationId()
1803 || surfaceSizeChanged)
1804 && mSurfaceHolder == null
1805 && mAttachInfo.mHardwareRenderer != null) {
Jeff Brown96e942d2011-11-30 19:55:01 -08001806 mFullRedrawNeeded = true;
Dianne Hackborn64825172011-03-02 21:32:58 -08001807 try {
Chong Zhangf4abc2b2015-11-12 23:40:58 -08001808 // Need to do updateSurface (which leads to CanvasContext::setSurface and
1809 // re-create the EGLSurface) if either the Surface changed (as indicated by
1810 // generation id), or WindowManager changed the surface size. The latter is
1811 // because on some chips, changing the consumer side's BufferQueue size may
1812 // not take effect immediately unless we create a new EGLSurface.
1813 // Note that frame size change doesn't always imply surface size change (eg.
1814 // drag resizing uses fullscreen surface), need to check surfaceSizeChanged
1815 // flag from WindowManager.
John Reck79d81e62013-11-05 13:26:57 -08001816 mAttachInfo.mHardwareRenderer.updateSurface(mSurface);
Igor Murashkina86ab6402013-08-30 12:58:36 -07001817 } catch (OutOfResourcesException e) {
Romain Guy3696779b2013-01-28 14:04:07 -08001818 handleOutOfResourcesException(e);
Dianne Hackborn64825172011-03-02 21:32:58 -08001819 return;
1820 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001821 }
Chong Zhang0275e392015-09-17 10:41:44 -07001822
Jorim Jaggi4846ee32016-01-07 17:39:12 +01001823 final boolean freeformResizing = (relayoutResult
1824 & WindowManagerGlobal.RELAYOUT_RES_DRAG_RESIZING_FREEFORM) != 0;
1825 final boolean dockedResizing = (relayoutResult
1826 & WindowManagerGlobal.RELAYOUT_RES_DRAG_RESIZING_DOCKED) != 0;
1827 final boolean dragResizing = freeformResizing || dockedResizing;
Chong Zhang0275e392015-09-17 10:41:44 -07001828 if (mDragResizing != dragResizing) {
Skuhneb8160872015-09-22 09:51:39 -07001829 if (dragResizing) {
Jorim Jaggi9511b0f2016-01-29 19:12:44 -08001830 startDragResizing(mPendingBackDropFrame,
1831 mWinFrame.equals(mPendingBackDropFrame), mPendingVisibleInsets,
1832 mPendingStableInsets);
Jorim Jaggi4846ee32016-01-07 17:39:12 +01001833 mResizeMode = freeformResizing
1834 ? RESIZE_MODE_FREEFORM
1835 : RESIZE_MODE_DOCKED_DIVIDER;
Skuhneb8160872015-09-22 09:51:39 -07001836 } else {
1837 // We shouldn't come here, but if we come we should end the resize.
1838 endDragResizing();
1839 }
Chong Zhang0275e392015-09-17 10:41:44 -07001840 }
Skuhneb8160872015-09-22 09:51:39 -07001841 if (!USE_MT_RENDERER) {
1842 if (dragResizing) {
1843 mCanvasOffsetX = mWinFrame.left;
1844 mCanvasOffsetY = mWinFrame.top;
1845 } else {
1846 mCanvasOffsetX = mCanvasOffsetY = 0;
1847 }
Chong Zhang0275e392015-09-17 10:41:44 -07001848 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001849 } catch (RemoteException e) {
1850 }
Romain Guy1d0c7082011-08-03 16:22:24 -07001851
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001852 if (DEBUG_ORIENTATION) Log.v(
Jeff Brownc5ed5912010-07-14 18:48:53 -07001853 TAG, "Relayout returned: frame=" + frame + ", surface=" + mSurface);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001854
Chris Craikd36a81f2014-07-17 10:16:51 -07001855 mAttachInfo.mWindowLeft = frame.left;
1856 mAttachInfo.mWindowTop = frame.top;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001857
1858 // !!FIXME!! This next section handles the case where we did not get the
1859 // window size we asked for. We should avoid this by getting a maximum size from
1860 // the window session beforehand.
Dianne Hackborn3556c9a2012-05-04 16:31:25 -07001861 if (mWidth != frame.width() || mHeight != frame.height()) {
Dianne Hackborn3556c9a2012-05-04 16:31:25 -07001862 mWidth = frame.width();
1863 mHeight = frame.height();
1864 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001865
Dianne Hackborndc8a7f62010-05-10 11:29:34 -07001866 if (mSurfaceHolder != null) {
1867 // The app owns the surface; tell it about what is going on.
1868 if (mSurface.isValid()) {
1869 // XXX .copyFrom() doesn't work!
1870 //mSurfaceHolder.mSurface.copyFrom(mSurface);
1871 mSurfaceHolder.mSurface = mSurface;
1872 }
Jeff Brown30bc34f2011-01-25 12:56:56 -08001873 mSurfaceHolder.setSurfaceFrameSize(mWidth, mHeight);
Dianne Hackborndc8a7f62010-05-10 11:29:34 -07001874 mSurfaceHolder.mSurfaceLock.unlock();
1875 if (mSurface.isValid()) {
1876 if (!hadSurface) {
1877 mSurfaceHolder.ungetCallbacks();
1878
1879 mIsCreating = true;
1880 mSurfaceHolderCallback.surfaceCreated(mSurfaceHolder);
1881 SurfaceHolder.Callback callbacks[] = mSurfaceHolder.getCallbacks();
1882 if (callbacks != null) {
1883 for (SurfaceHolder.Callback c : callbacks) {
1884 c.surfaceCreated(mSurfaceHolder);
1885 }
1886 }
1887 surfaceChanged = true;
1888 }
1889 if (surfaceChanged) {
1890 mSurfaceHolderCallback.surfaceChanged(mSurfaceHolder,
1891 lp.format, mWidth, mHeight);
1892 SurfaceHolder.Callback callbacks[] = mSurfaceHolder.getCallbacks();
1893 if (callbacks != null) {
1894 for (SurfaceHolder.Callback c : callbacks) {
1895 c.surfaceChanged(mSurfaceHolder, lp.format,
1896 mWidth, mHeight);
1897 }
1898 }
1899 }
1900 mIsCreating = false;
1901 } else if (hadSurface) {
1902 mSurfaceHolder.ungetCallbacks();
1903 SurfaceHolder.Callback callbacks[] = mSurfaceHolder.getCallbacks();
1904 mSurfaceHolderCallback.surfaceDestroyed(mSurfaceHolder);
1905 if (callbacks != null) {
1906 for (SurfaceHolder.Callback c : callbacks) {
1907 c.surfaceDestroyed(mSurfaceHolder);
1908 }
1909 }
1910 mSurfaceHolder.mSurfaceLock.lock();
Jozef BABJAK93c5b6a2011-02-22 09:33:19 +01001911 try {
1912 mSurfaceHolder.mSurface = new Surface();
1913 } finally {
1914 mSurfaceHolder.mSurfaceLock.unlock();
1915 }
Dianne Hackborndc8a7f62010-05-10 11:29:34 -07001916 }
1917 }
Romain Guy53389bd2010-09-07 17:16:32 -07001918
John Reck51aaf902015-12-02 15:08:07 -08001919 final ThreadedRenderer hardwareRenderer = mAttachInfo.mHardwareRenderer;
Alan Viverette50210d92015-05-14 18:05:36 -07001920 if (hardwareRenderer != null && hardwareRenderer.isEnabled()) {
1921 if (hwInitialized
1922 || mWidth != hardwareRenderer.getWidth()
1923 || mHeight != hardwareRenderer.getHeight()) {
1924 hardwareRenderer.setup(mWidth, mHeight, mAttachInfo,
1925 mWindowAttributes.surfaceInsets);
Romain Guy03985752011-07-11 15:33:51 -07001926 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001927 }
1928
Craig Mautner72d6f212015-02-19 16:33:09 -08001929 if (!mStopped || mReportNextDraw) {
Dianne Hackbornce418e62011-03-01 14:31:38 -08001930 boolean focusChangedDueToTouchMode = ensureTouchModeLocally(
Jeff Brown98365d72012-08-19 20:30:52 -07001931 (relayoutResult&WindowManagerGlobal.RELAYOUT_RES_IN_TOUCH_MODE) != 0);
Dianne Hackbornce418e62011-03-01 14:31:38 -08001932 if (focusChangedDueToTouchMode || mWidth != host.getMeasuredWidth()
1933 || mHeight != host.getMeasuredHeight() || contentInsetsChanged) {
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07001934 int childWidthMeasureSpec = getRootMeasureSpec(mWidth, lp.width);
1935 int childHeightMeasureSpec = getRootMeasureSpec(mHeight, lp.height);
Igor Murashkina86ab6402013-08-30 12:58:36 -07001936
Filip Gruszczynski34dab0b2015-12-22 08:29:07 -08001937 if (DEBUG_LAYOUT) Log.v(mTag, "Ooops, something changed! mWidth="
Dianne Hackbornce418e62011-03-01 14:31:38 -08001938 + mWidth + " measuredWidth=" + host.getMeasuredWidth()
1939 + " mHeight=" + mHeight
1940 + " measuredHeight=" + host.getMeasuredHeight()
1941 + " coveredInsetsChanged=" + contentInsetsChanged);
Igor Murashkina86ab6402013-08-30 12:58:36 -07001942
Dianne Hackbornce418e62011-03-01 14:31:38 -08001943 // Ask host how big it wants to be
Jeff Brownc8d2668b2012-05-16 17:23:59 -07001944 performMeasure(childWidthMeasureSpec, childHeightMeasureSpec);
Igor Murashkina86ab6402013-08-30 12:58:36 -07001945
Dianne Hackbornce418e62011-03-01 14:31:38 -08001946 // Implementation of weights from WindowManager.LayoutParams
1947 // We just grow the dimensions as needed and re-measure if
1948 // needs be
1949 int width = host.getMeasuredWidth();
1950 int height = host.getMeasuredHeight();
1951 boolean measureAgain = false;
Igor Murashkina86ab6402013-08-30 12:58:36 -07001952
Dianne Hackbornce418e62011-03-01 14:31:38 -08001953 if (lp.horizontalWeight > 0.0f) {
1954 width += (int) ((mWidth - width) * lp.horizontalWeight);
1955 childWidthMeasureSpec = MeasureSpec.makeMeasureSpec(width,
1956 MeasureSpec.EXACTLY);
1957 measureAgain = true;
1958 }
1959 if (lp.verticalWeight > 0.0f) {
1960 height += (int) ((mHeight - height) * lp.verticalWeight);
1961 childHeightMeasureSpec = MeasureSpec.makeMeasureSpec(height,
1962 MeasureSpec.EXACTLY);
1963 measureAgain = true;
1964 }
Igor Murashkina86ab6402013-08-30 12:58:36 -07001965
Dianne Hackbornce418e62011-03-01 14:31:38 -08001966 if (measureAgain) {
Filip Gruszczynski34dab0b2015-12-22 08:29:07 -08001967 if (DEBUG_LAYOUT) Log.v(mTag,
Dianne Hackbornce418e62011-03-01 14:31:38 -08001968 "And hey let's measure once more: width=" + width
1969 + " height=" + height);
Jeff Brownc8d2668b2012-05-16 17:23:59 -07001970 performMeasure(childWidthMeasureSpec, childHeightMeasureSpec);
Dianne Hackbornce418e62011-03-01 14:31:38 -08001971 }
Igor Murashkina86ab6402013-08-30 12:58:36 -07001972
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07001973 layoutRequested = true;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001974 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001975 }
Svetoslav Ganovc9c9a482012-07-16 08:46:07 -07001976 } else {
1977 // Not the first pass and no window/insets/visibility change but the window
1978 // may have moved and we need check that and if so to update the left and right
1979 // in the attach info. We translate only the window frame since on window move
1980 // the window manager tells us only for the new frame but the insets are the
1981 // same and we do not want to translate them more than once.
Jorim Jaggi2e95a482016-01-14 17:36:55 -08001982 maybeHandleWindowMove(frame);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001983 }
1984
Craig Mautner72d6f212015-02-19 16:33:09 -08001985 final boolean didLayout = layoutRequested && (!mStopped || mReportNextDraw);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001986 boolean triggerGlobalLayoutListener = didLayout
Chris Craikd36a81f2014-07-17 10:16:51 -07001987 || mAttachInfo.mRecomputeGlobalAttributes;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001988 if (didLayout) {
Jorim Jaggi26d02d22016-02-24 18:37:51 -05001989 performLayout(lp, mWidth, mHeight);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001990
Mathias Agopian54e3d3842013-04-12 15:13:12 -07001991 // By this point all views have been sized and positioned
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001992 // We can compute the transparent area
1993
Dianne Hackborn4702a852012-08-17 15:18:29 -07001994 if ((host.mPrivateFlags & View.PFLAG_REQUEST_TRANSPARENT_REGIONS) != 0) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001995 // start out transparent
1996 // TODO: AVOID THAT CALL BY CACHING THE RESULT?
1997 host.getLocationInWindow(mTmpLocation);
1998 mTransparentRegion.set(mTmpLocation[0], mTmpLocation[1],
1999 mTmpLocation[0] + host.mRight - host.mLeft,
2000 mTmpLocation[1] + host.mBottom - host.mTop);
2001
2002 host.gatherTransparentRegion(mTransparentRegion);
Mitsuru Oshima64f59342009-06-21 00:03:11 -07002003 if (mTranslator != null) {
2004 mTranslator.translateRegionInWindowToScreen(mTransparentRegion);
2005 }
2006
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002007 if (!mTransparentRegion.equals(mPreviousTransparentRegion)) {
2008 mPreviousTransparentRegion.set(mTransparentRegion);
Mathias Agopian54e3d3842013-04-12 15:13:12 -07002009 mFullRedrawNeeded = true;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002010 // reconfigure window manager
2011 try {
Jeff Brown98365d72012-08-19 20:30:52 -07002012 mWindowSession.setTransparentRegion(mWindow, mTransparentRegion);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002013 } catch (RemoteException e) {
2014 }
2015 }
2016 }
2017
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002018 if (DBG) {
2019 System.out.println("======================================");
Chet Haase4610eef2015-12-03 07:38:11 -08002020 System.out.println("performTraversals -- after setFrame");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002021 host.debug();
2022 }
2023 }
2024
2025 if (triggerGlobalLayoutListener) {
Chris Craikd36a81f2014-07-17 10:16:51 -07002026 mAttachInfo.mRecomputeGlobalAttributes = false;
2027 mAttachInfo.mTreeObserver.dispatchOnGlobalLayout();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002028 }
2029
2030 if (computesInternalInsets) {
Jeff Brownfbf09772011-01-16 14:06:57 -08002031 // Clear the original insets.
Chris Craikd36a81f2014-07-17 10:16:51 -07002032 final ViewTreeObserver.InternalInsetsInfo insets = mAttachInfo.mGivenInternalInsets;
Jeff Brownfbf09772011-01-16 14:06:57 -08002033 insets.reset();
2034
2035 // Compute new insets in place.
Chris Craikd36a81f2014-07-17 10:16:51 -07002036 mAttachInfo.mTreeObserver.dispatchOnComputeInternalInsets(insets);
2037 mAttachInfo.mHasNonEmptyGivenInternalInsets = !insets.isEmpty();
Jeff Brownfbf09772011-01-16 14:06:57 -08002038
2039 // Tell the window manager.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002040 if (insetsPending || !mLastGivenInsets.equals(insets)) {
2041 mLastGivenInsets.set(insets);
Jeff Brownfbf09772011-01-16 14:06:57 -08002042
2043 // Translate insets to screen coordinates if needed.
2044 final Rect contentInsets;
2045 final Rect visibleInsets;
2046 final Region touchableRegion;
2047 if (mTranslator != null) {
2048 contentInsets = mTranslator.getTranslatedContentInsets(insets.contentInsets);
2049 visibleInsets = mTranslator.getTranslatedVisibleInsets(insets.visibleInsets);
2050 touchableRegion = mTranslator.getTranslatedTouchableArea(insets.touchableRegion);
2051 } else {
2052 contentInsets = insets.contentInsets;
2053 visibleInsets = insets.visibleInsets;
2054 touchableRegion = insets.touchableRegion;
2055 }
2056
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002057 try {
Jeff Brown98365d72012-08-19 20:30:52 -07002058 mWindowSession.setInsets(mWindow, insets.mTouchableInsets,
Jeff Brownfbf09772011-01-16 14:06:57 -08002059 contentInsets, visibleInsets, touchableRegion);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002060 } catch (RemoteException e) {
2061 }
2062 }
2063 }
Romain Guy8506ab42009-06-11 17:35:47 -07002064
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002065 if (mFirst) {
2066 // handle first focus request
Filip Gruszczynski34dab0b2015-12-22 08:29:07 -08002067 if (DEBUG_INPUT_RESIZE) Log.v(mTag, "First: mView.hasFocus()="
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002068 + mView.hasFocus());
2069 if (mView != null) {
2070 if (!mView.hasFocus()) {
2071 mView.requestFocus(View.FOCUS_FORWARD);
Filip Gruszczynski34dab0b2015-12-22 08:29:07 -08002072 if (DEBUG_INPUT_RESIZE) Log.v(mTag, "First: requested focused view="
Svetoslav Ganov149567f2013-01-08 15:23:34 -08002073 + mView.findFocus());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002074 } else {
Filip Gruszczynski34dab0b2015-12-22 08:29:07 -08002075 if (DEBUG_INPUT_RESIZE) Log.v(mTag, "First: existing focused view="
Svetoslav Ganov149567f2013-01-08 15:23:34 -08002076 + mView.findFocus());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002077 }
2078 }
2079 }
2080
Alan Viverette64bf97a2015-09-18 16:42:00 -04002081 final boolean changedVisibility = (viewVisibilityChanged || mFirst) && isViewVisible;
2082 final boolean hasWindowFocus = mAttachInfo.mHasWindowFocus && isViewVisible;
2083 final boolean regainedFocus = hasWindowFocus && mLostWindowFocus;
2084 if (regainedFocus) {
2085 mLostWindowFocus = false;
2086 } else if (!hasWindowFocus && mHadWindowFocus) {
2087 mLostWindowFocus = true;
2088 }
2089
2090 if (changedVisibility || regainedFocus) {
2091 host.sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
2092 }
2093
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002094 mFirst = false;
2095 mWillDrawSoon = false;
2096 mNewSurfaceNeeded = false;
Jorim Jaggi4846ee32016-01-07 17:39:12 +01002097 mActivityRelaunched = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002098 mViewVisibility = viewVisibility;
Alan Viverette64bf97a2015-09-18 16:42:00 -04002099 mHadWindowFocus = hasWindowFocus;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002100
Alan Viverette64bf97a2015-09-18 16:42:00 -04002101 if (hasWindowFocus && !isInLocalFocusMode()) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002102 final boolean imTarget = WindowManager.LayoutParams
2103 .mayUseInputMethod(mWindowAttributes.flags);
2104 if (imTarget != mLastWasImTarget) {
2105 mLastWasImTarget = imTarget;
2106 InputMethodManager imm = InputMethodManager.peekInstance();
2107 if (imm != null && imTarget) {
Alan Viverette64bf97a2015-09-18 16:42:00 -04002108 imm.onPreWindowFocus(mView, hasWindowFocus);
Yohei Yukawa5f059652015-05-14 22:16:41 -07002109 imm.onPostWindowFocus(mView, mView.findFocus(),
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002110 mWindowAttributes.softInputMode,
2111 !mHasHadWindowFocus, mWindowAttributes.flags);
2112 }
2113 }
2114 }
Romain Guy8506ab42009-06-11 17:35:47 -07002115
Jeff Brown96e942d2011-11-30 19:55:01 -08002116 // Remember if we must report the next draw.
Jeff Brown98365d72012-08-19 20:30:52 -07002117 if ((relayoutResult & WindowManagerGlobal.RELAYOUT_RES_FIRST_TIME) != 0) {
Jeff Brown96e942d2011-11-30 19:55:01 -08002118 mReportNextDraw = true;
2119 }
2120
Alan Viverette64bf97a2015-09-18 16:42:00 -04002121 boolean cancelDraw = mAttachInfo.mTreeObserver.dispatchOnPreDraw() || !isViewVisible;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002122
Jorim Jaggi3127c2a42016-01-26 18:48:44 -08002123 if (!cancelDraw) {
Chet Haase9c450412015-10-01 13:25:58 -07002124 if (mPendingTransitions != null && mPendingTransitions.size() > 0) {
2125 for (int i = 0; i < mPendingTransitions.size(); ++i) {
2126 mPendingTransitions.get(i).startChangingAnimations();
Chet Haased56c6952011-09-07 08:46:23 -07002127 }
Chet Haase9c450412015-10-01 13:25:58 -07002128 mPendingTransitions.clear();
Chet Haased56c6952011-09-07 08:46:23 -07002129 }
Chet Haase9c450412015-10-01 13:25:58 -07002130
2131 performDraw();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002132 } else {
Alan Viverette64bf97a2015-09-18 16:42:00 -04002133 if (isViewVisible) {
Chris Wren78cb7cf2012-05-15 12:36:44 -04002134 // Try again
2135 scheduleTraversals();
2136 } else if (mPendingTransitions != null && mPendingTransitions.size() > 0) {
Chet Haased56c6952011-09-07 08:46:23 -07002137 for (int i = 0; i < mPendingTransitions.size(); ++i) {
2138 mPendingTransitions.get(i).endChangingAnimations();
2139 }
2140 mPendingTransitions.clear();
2141 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002142 }
Craig Mautnerdf2390a2012-08-29 20:59:22 -07002143
2144 mIsInTraversal = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002145 }
2146
Jorim Jaggi2e95a482016-01-14 17:36:55 -08002147 private void maybeHandleWindowMove(Rect frame) {
2148
2149 // TODO: Well, we are checking whether the frame has changed similarly
2150 // to how this is done for the insets. This is however incorrect since
2151 // the insets and the frame are translated. For example, the old frame
2152 // was (1, 1 - 1, 1) and was translated to say (2, 2 - 2, 2), now the new
2153 // reported frame is (2, 2 - 2, 2) which implies no change but this is not
2154 // true since we are comparing a not translated value to a translated one.
2155 // This scenario is rare but we may want to fix that.
2156
2157 final boolean windowMoved = mAttachInfo.mWindowLeft != frame.left
2158 || mAttachInfo.mWindowTop != frame.top;
2159 if (windowMoved) {
2160 if (mTranslator != null) {
2161 mTranslator.translateRectInScreenToAppWinFrame(frame);
2162 }
2163 mAttachInfo.mWindowLeft = frame.left;
2164 mAttachInfo.mWindowTop = frame.top;
2165
2166 // Update the light position for the new window offsets.
2167 if (mAttachInfo.mHardwareRenderer != null) {
2168 mAttachInfo.mHardwareRenderer.setLightCenter(mAttachInfo);
2169 }
2170 }
2171 }
Jorim Jaggi3127c2a42016-01-26 18:48:44 -08002172
Romain Guy3696779b2013-01-28 14:04:07 -08002173 private void handleOutOfResourcesException(Surface.OutOfResourcesException e) {
Filip Gruszczynski34dab0b2015-12-22 08:29:07 -08002174 Log.e(mTag, "OutOfResourcesException initializing HW surface", e);
Romain Guy3696779b2013-01-28 14:04:07 -08002175 try {
2176 if (!mWindowSession.outOfMemory(mWindow) &&
2177 Process.myUid() != Process.SYSTEM_UID) {
Filip Gruszczynski34dab0b2015-12-22 08:29:07 -08002178 Slog.w(mTag, "No processes killed for memory; killing self");
Romain Guy3696779b2013-01-28 14:04:07 -08002179 Process.killProcess(Process.myPid());
2180 }
2181 } catch (RemoteException ex) {
2182 }
2183 mLayoutRequested = true; // ask wm for a new surface next time.
2184 }
2185
Jeff Brownc8d2668b2012-05-16 17:23:59 -07002186 private void performMeasure(int childWidthMeasureSpec, int childHeightMeasureSpec) {
2187 Trace.traceBegin(Trace.TRACE_TAG_VIEW, "measure");
2188 try {
2189 mView.measure(childWidthMeasureSpec, childHeightMeasureSpec);
2190 } finally {
2191 Trace.traceEnd(Trace.TRACE_TAG_VIEW);
2192 }
2193 }
2194
Chet Haase97140572012-09-13 14:56:47 -07002195 /**
2196 * Called by {@link android.view.View#isInLayout()} to determine whether the view hierarchy
2197 * is currently undergoing a layout pass.
2198 *
2199 * @return whether the view hierarchy is currently undergoing a layout pass
2200 */
2201 boolean isInLayout() {
2202 return mInLayout;
2203 }
2204
2205 /**
Chet Haasecc699b42012-12-13 09:06:55 -08002206 * Called by {@link android.view.View#requestLayout()} if the view hierarchy is currently
2207 * undergoing a layout pass. requestLayout() should not generally be called during layout,
2208 * unless the container hierarchy knows what it is doing (i.e., it is fine as long as
2209 * all children in that container hierarchy are measured and laid out at the end of the layout
2210 * pass for that container). If requestLayout() is called anyway, we handle it correctly
2211 * by registering all requesters during a frame as it proceeds. At the end of the frame,
2212 * we check all of those views to see if any still have pending layout requests, which
2213 * indicates that they were not correctly handled by their container hierarchy. If that is
2214 * the case, we clear all such flags in the tree, to remove the buggy flag state that leads
2215 * to blank containers, and force a second request/measure/layout pass in this frame. If
Chet Haase97140572012-09-13 14:56:47 -07002216 * more requestLayout() calls are received during that second layout pass, we post those
Chet Haasecc699b42012-12-13 09:06:55 -08002217 * requests to the next frame to avoid possible infinite loops.
2218 *
2219 * <p>The return value from this method indicates whether the request should proceed
2220 * (if it is a request during the first layout pass) or should be skipped and posted to the
2221 * next frame (if it is a request during the second layout pass).</p>
Chet Haase97140572012-09-13 14:56:47 -07002222 *
2223 * @param view the view that requested the layout.
Chet Haasecc699b42012-12-13 09:06:55 -08002224 *
2225 * @return true if request should proceed, false otherwise.
Chet Haase97140572012-09-13 14:56:47 -07002226 */
Chet Haasecc699b42012-12-13 09:06:55 -08002227 boolean requestLayoutDuringLayout(final View view) {
2228 if (view.mParent == null || view.mAttachInfo == null) {
2229 // Would not normally trigger another layout, so just let it pass through as usual
2230 return true;
2231 }
Chet Haase107a4822013-03-13 06:46:50 -07002232 if (!mLayoutRequesters.contains(view)) {
2233 mLayoutRequesters.add(view);
2234 }
Chet Haase97140572012-09-13 14:56:47 -07002235 if (!mHandlingLayoutInLayoutRequest) {
Chet Haase107a4822013-03-13 06:46:50 -07002236 // Let the request proceed normally; it will be processed in a second layout pass
2237 // if necessary
Chet Haasecc699b42012-12-13 09:06:55 -08002238 return true;
Chet Haase97140572012-09-13 14:56:47 -07002239 } else {
Chet Haase107a4822013-03-13 06:46:50 -07002240 // Don't let the request proceed during the second layout pass.
2241 // It will post to the next frame instead.
Chet Haasecc699b42012-12-13 09:06:55 -08002242 return false;
Chet Haase97140572012-09-13 14:56:47 -07002243 }
2244 }
2245
Chet Haase3efa7b52012-12-03 08:33:17 -08002246 private void performLayout(WindowManager.LayoutParams lp, int desiredWindowWidth,
2247 int desiredWindowHeight) {
Jeff Brownc8d2668b2012-05-16 17:23:59 -07002248 mLayoutRequested = false;
2249 mScrollMayChange = true;
Chet Haase97140572012-09-13 14:56:47 -07002250 mInLayout = true;
Jeff Brownc8d2668b2012-05-16 17:23:59 -07002251
2252 final View host = mView;
2253 if (DEBUG_ORIENTATION || DEBUG_LAYOUT) {
Filip Gruszczynski34dab0b2015-12-22 08:29:07 -08002254 Log.v(mTag, "Laying out " + host + " to (" +
Jeff Brownc8d2668b2012-05-16 17:23:59 -07002255 host.getMeasuredWidth() + ", " + host.getMeasuredHeight() + ")");
2256 }
2257
Jeff Brownc8d2668b2012-05-16 17:23:59 -07002258 Trace.traceBegin(Trace.TRACE_TAG_VIEW, "layout");
2259 try {
2260 host.layout(0, 0, host.getMeasuredWidth(), host.getMeasuredHeight());
Chet Haasecc699b42012-12-13 09:06:55 -08002261
Chet Haased5a83522012-11-21 16:24:44 -08002262 mInLayout = false;
Chet Haase97140572012-09-13 14:56:47 -07002263 int numViewsRequestingLayout = mLayoutRequesters.size();
2264 if (numViewsRequestingLayout > 0) {
Chet Haasecc699b42012-12-13 09:06:55 -08002265 // requestLayout() was called during layout.
2266 // If no layout-request flags are set on the requesting views, there is no problem.
2267 // If some requests are still pending, then we need to clear those flags and do
2268 // a full request/measure/layout pass to handle this situation.
Chet Haase107a4822013-03-13 06:46:50 -07002269 ArrayList<View> validLayoutRequesters = getValidLayoutRequesters(mLayoutRequesters,
2270 false);
2271 if (validLayoutRequesters != null) {
2272 // Set this flag to indicate that any further requests are happening during
2273 // the second pass, which may result in posting those requests to the next
2274 // frame instead
Chet Haasecc699b42012-12-13 09:06:55 -08002275 mHandlingLayoutInLayoutRequest = true;
Chet Haase107a4822013-03-13 06:46:50 -07002276
2277 // Process fresh layout requests, then measure and layout
2278 int numValidRequests = validLayoutRequesters.size();
Chet Haasecc699b42012-12-13 09:06:55 -08002279 for (int i = 0; i < numValidRequests; ++i) {
Chet Haase107a4822013-03-13 06:46:50 -07002280 final View view = validLayoutRequesters.get(i);
2281 Log.w("View", "requestLayout() improperly called by " + view +
2282 " during layout: running second layout pass");
2283 view.requestLayout();
Chet Haasecc699b42012-12-13 09:06:55 -08002284 }
2285 measureHierarchy(host, lp, mView.getContext().getResources(),
2286 desiredWindowWidth, desiredWindowHeight);
2287 mInLayout = true;
2288 host.layout(0, 0, host.getMeasuredWidth(), host.getMeasuredHeight());
Chet Haase107a4822013-03-13 06:46:50 -07002289
Chet Haasecc699b42012-12-13 09:06:55 -08002290 mHandlingLayoutInLayoutRequest = false;
Chet Haase107a4822013-03-13 06:46:50 -07002291
2292 // Check the valid requests again, this time without checking/clearing the
2293 // layout flags, since requests happening during the second pass get noop'd
2294 validLayoutRequesters = getValidLayoutRequesters(mLayoutRequesters, true);
2295 if (validLayoutRequesters != null) {
2296 final ArrayList<View> finalRequesters = validLayoutRequesters;
2297 // Post second-pass requests to the next frame
2298 getRunQueue().post(new Runnable() {
2299 @Override
2300 public void run() {
2301 int numValidRequests = finalRequesters.size();
2302 for (int i = 0; i < numValidRequests; ++i) {
2303 final View view = finalRequesters.get(i);
2304 Log.w("View", "requestLayout() improperly called by " + view +
2305 " during second layout pass: posting in next frame");
2306 view.requestLayout();
2307 }
2308 }
2309 });
2310 }
Chet Haasecc699b42012-12-13 09:06:55 -08002311 }
Chet Haase107a4822013-03-13 06:46:50 -07002312
Chet Haase97140572012-09-13 14:56:47 -07002313 }
Jeff Brownc8d2668b2012-05-16 17:23:59 -07002314 } finally {
2315 Trace.traceEnd(Trace.TRACE_TAG_VIEW);
2316 }
Chet Haase97140572012-09-13 14:56:47 -07002317 mInLayout = false;
Jeff Brownc8d2668b2012-05-16 17:23:59 -07002318 }
2319
Chet Haase107a4822013-03-13 06:46:50 -07002320 /**
2321 * This method is called during layout when there have been calls to requestLayout() during
2322 * layout. It walks through the list of views that requested layout to determine which ones
2323 * still need it, based on visibility in the hierarchy and whether they have already been
2324 * handled (as is usually the case with ListView children).
2325 *
2326 * @param layoutRequesters The list of views that requested layout during layout
2327 * @param secondLayoutRequests Whether the requests were issued during the second layout pass.
2328 * If so, the FORCE_LAYOUT flag was not set on requesters.
2329 * @return A list of the actual views that still need to be laid out.
2330 */
2331 private ArrayList<View> getValidLayoutRequesters(ArrayList<View> layoutRequesters,
2332 boolean secondLayoutRequests) {
2333
2334 int numViewsRequestingLayout = layoutRequesters.size();
2335 ArrayList<View> validLayoutRequesters = null;
2336 for (int i = 0; i < numViewsRequestingLayout; ++i) {
2337 View view = layoutRequesters.get(i);
2338 if (view != null && view.mAttachInfo != null && view.mParent != null &&
2339 (secondLayoutRequests || (view.mPrivateFlags & View.PFLAG_FORCE_LAYOUT) ==
2340 View.PFLAG_FORCE_LAYOUT)) {
2341 boolean gone = false;
2342 View parent = view;
2343 // Only trigger new requests for views in a non-GONE hierarchy
2344 while (parent != null) {
2345 if ((parent.mViewFlags & View.VISIBILITY_MASK) == View.GONE) {
2346 gone = true;
2347 break;
2348 }
2349 if (parent.mParent instanceof View) {
2350 parent = (View) parent.mParent;
2351 } else {
2352 parent = null;
2353 }
2354 }
2355 if (!gone) {
2356 if (validLayoutRequesters == null) {
2357 validLayoutRequesters = new ArrayList<View>();
2358 }
2359 validLayoutRequesters.add(view);
2360 }
2361 }
2362 }
2363 if (!secondLayoutRequests) {
2364 // If we're checking the layout flags, then we need to clean them up also
2365 for (int i = 0; i < numViewsRequestingLayout; ++i) {
2366 View view = layoutRequesters.get(i);
2367 while (view != null &&
2368 (view.mPrivateFlags & View.PFLAG_FORCE_LAYOUT) != 0) {
2369 view.mPrivateFlags &= ~View.PFLAG_FORCE_LAYOUT;
2370 if (view.mParent instanceof View) {
2371 view = (View) view.mParent;
2372 } else {
2373 view = null;
2374 }
2375 }
2376 }
2377 }
2378 layoutRequesters.clear();
2379 return validLayoutRequesters;
2380 }
2381
Igor Murashkina86ab6402013-08-30 12:58:36 -07002382 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002383 public void requestTransparentRegion(View child) {
2384 // the test below should not fail unless someone is messing with us
2385 checkThread();
2386 if (mView == child) {
Dianne Hackborn4702a852012-08-17 15:18:29 -07002387 mView.mPrivateFlags |= View.PFLAG_REQUEST_TRANSPARENT_REGIONS;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002388 // Need to make sure we re-evaluate the window attributes next
2389 // time around, to ensure the window has the correct format.
2390 mWindowAttributesChanged = true;
Romain Guyf21c9b02011-09-06 16:56:54 -07002391 mWindowAttributesChangesFlag = 0;
Mathias Agopian1bd80ad2010-11-04 17:13:39 -07002392 requestLayout();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002393 }
2394 }
2395
2396 /**
2397 * Figures out the measure spec for the root view in a window based on it's
2398 * layout params.
2399 *
2400 * @param windowSize
2401 * The available width or height of the window
2402 *
2403 * @param rootDimension
2404 * The layout params for one dimension (width or height) of the
2405 * window.
2406 *
2407 * @return The measure spec to use to measure the root view.
2408 */
Romain Guya998dff2012-03-23 18:58:36 -07002409 private static int getRootMeasureSpec(int windowSize, int rootDimension) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002410 int measureSpec;
2411 switch (rootDimension) {
2412
Romain Guy980a9382010-01-08 15:06:28 -08002413 case ViewGroup.LayoutParams.MATCH_PARENT:
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002414 // Window can't resize. Force root view to be windowSize.
2415 measureSpec = MeasureSpec.makeMeasureSpec(windowSize, MeasureSpec.EXACTLY);
2416 break;
2417 case ViewGroup.LayoutParams.WRAP_CONTENT:
2418 // Window can resize. Set max size for root view.
2419 measureSpec = MeasureSpec.makeMeasureSpec(windowSize, MeasureSpec.AT_MOST);
2420 break;
2421 default:
2422 // Window wants to be an exact size. Force root view to be that size.
2423 measureSpec = MeasureSpec.makeMeasureSpec(rootDimension, MeasureSpec.EXACTLY);
2424 break;
2425 }
2426 return measureSpec;
2427 }
2428
Alan Viveretteccb11e12014-07-08 16:04:02 -07002429 int mHardwareXOffset;
Dianne Hackborn0f761d62010-11-30 22:06:10 -08002430 int mHardwareYOffset;
Dianne Hackborn0f761d62010-11-30 22:06:10 -08002431
Igor Murashkina86ab6402013-08-30 12:58:36 -07002432 @Override
Chris Craikf6829a02015-03-10 10:28:59 -07002433 public void onHardwarePreDraw(DisplayListCanvas canvas) {
Alan Viveretteccb11e12014-07-08 16:04:02 -07002434 canvas.translate(-mHardwareXOffset, -mHardwareYOffset);
Dianne Hackborn0f761d62010-11-30 22:06:10 -08002435 }
2436
Igor Murashkina86ab6402013-08-30 12:58:36 -07002437 @Override
Chris Craikf6829a02015-03-10 10:28:59 -07002438 public void onHardwarePostDraw(DisplayListCanvas canvas) {
Alan Viverette632af842014-10-28 13:45:11 -07002439 drawAccessibilityFocusedDrawableIfNeeded(canvas);
Dianne Hackborn0f761d62010-11-30 22:06:10 -08002440 }
2441
Chet Haaseed30fd82011-04-22 16:18:45 -07002442 /**
2443 * @hide
2444 */
2445 void outputDisplayList(View view) {
Chris Craik356b5fe2015-07-07 10:39:36 -07002446 view.mRenderNode.output();
John Recke248bd12015-08-05 13:53:53 -07002447 if (mAttachInfo.mHardwareRenderer != null) {
2448 ((ThreadedRenderer)mAttachInfo.mHardwareRenderer).serializeDisplayListTree();
2449 }
Romain Guy59a12ca2011-06-09 17:48:21 -07002450 }
2451
2452 /**
2453 * @see #PROPERTY_PROFILE_RENDERING
2454 */
2455 private void profileRendering(boolean enabled) {
2456 if (mProfileRendering) {
2457 mRenderProfilingEnabled = enabled;
Chris Craikae4f32042013-02-07 12:57:10 -08002458
2459 if (mRenderProfiler != null) {
2460 mChoreographer.removeFrameCallback(mRenderProfiler);
2461 }
2462 if (mRenderProfilingEnabled) {
2463 if (mRenderProfiler == null) {
2464 mRenderProfiler = new Choreographer.FrameCallback() {
2465 @Override
2466 public void doFrame(long frameTimeNanos) {
2467 mDirty.set(0, 0, mWidth, mHeight);
2468 scheduleTraversals();
2469 if (mRenderProfilingEnabled) {
2470 mChoreographer.postFrameCallback(mRenderProfiler);
2471 }
Romain Guy59a12ca2011-06-09 17:48:21 -07002472 }
Chris Craikae4f32042013-02-07 12:57:10 -08002473 };
2474 }
Romain Guy5bb3c732012-11-29 17:52:58 -08002475 mChoreographer.postFrameCallback(mRenderProfiler);
Romain Guy59a12ca2011-06-09 17:48:21 -07002476 } else {
Romain Guy59a12ca2011-06-09 17:48:21 -07002477 mRenderProfiler = null;
Chet Haaseed30fd82011-04-22 16:18:45 -07002478 }
2479 }
2480 }
2481
Chet Haase2f2022a2011-10-11 06:41:59 -07002482 /**
2483 * Called from draw() when DEBUG_FPS is enabled
2484 */
2485 private void trackFPS() {
2486 // Tracks frames per second drawn. First value in a series of draws may be bogus
2487 // because it down not account for the intervening idle time
2488 long nowTime = System.currentTimeMillis();
2489 if (mFpsStartTime < 0) {
2490 mFpsStartTime = mFpsPrevTime = nowTime;
2491 mFpsNumFrames = 0;
2492 } else {
2493 ++mFpsNumFrames;
2494 String thisHash = Integer.toHexString(System.identityHashCode(this));
2495 long frameTime = nowTime - mFpsPrevTime;
2496 long totalTime = nowTime - mFpsStartTime;
Filip Gruszczynski34dab0b2015-12-22 08:29:07 -08002497 Log.v(mTag, "0x" + thisHash + "\tFrame time:\t" + frameTime);
Chet Haase2f2022a2011-10-11 06:41:59 -07002498 mFpsPrevTime = nowTime;
2499 if (totalTime > 1000) {
2500 float fps = (float) mFpsNumFrames * 1000 / totalTime;
Filip Gruszczynski34dab0b2015-12-22 08:29:07 -08002501 Log.v(mTag, "0x" + thisHash + "\tFPS:\t" + fps);
Chet Haase2f2022a2011-10-11 06:41:59 -07002502 mFpsStartTime = nowTime;
2503 mFpsNumFrames = 0;
2504 }
2505 }
2506 }
2507
Jeff Brown96e942d2011-11-30 19:55:01 -08002508 private void performDraw() {
Jeff Brownd912e1f2014-04-11 18:46:22 -07002509 if (mAttachInfo.mDisplayState == Display.STATE_OFF && !mReportNextDraw) {
Craig Mautner006f0e42012-03-21 11:00:32 -07002510 return;
2511 }
Romain Guy7e4e5612012-03-05 14:37:29 -08002512
Jeff Brown96e942d2011-11-30 19:55:01 -08002513 final boolean fullRedrawNeeded = mFullRedrawNeeded;
2514 mFullRedrawNeeded = false;
Jeff Brown481c1572012-03-09 14:41:15 -08002515
Romain Guy1f59e5c2012-05-06 14:11:16 -07002516 mIsDrawing = true;
Jeff Brown481c1572012-03-09 14:41:15 -08002517 Trace.traceBegin(Trace.TRACE_TAG_VIEW, "draw");
2518 try {
2519 draw(fullRedrawNeeded);
2520 } finally {
Romain Guy1f59e5c2012-05-06 14:11:16 -07002521 mIsDrawing = false;
Jeff Brown481c1572012-03-09 14:41:15 -08002522 Trace.traceEnd(Trace.TRACE_TAG_VIEW);
2523 }
Jeff Brown96e942d2011-11-30 19:55:01 -08002524
John Reck119907c2014-08-14 09:02:01 -07002525 // For whatever reason we didn't create a HardwareRenderer, end any
2526 // hardware animations that are now dangling
2527 if (mAttachInfo.mPendingAnimatingRenderNodes != null) {
2528 final int count = mAttachInfo.mPendingAnimatingRenderNodes.size();
2529 for (int i = 0; i < count; i++) {
2530 mAttachInfo.mPendingAnimatingRenderNodes.get(i).endAllAnimators();
2531 }
2532 mAttachInfo.mPendingAnimatingRenderNodes.clear();
2533 }
2534
Jeff Brown96e942d2011-11-30 19:55:01 -08002535 if (mReportNextDraw) {
2536 mReportNextDraw = false;
Chong Zhang8dbd9ad2015-10-09 10:06:11 -07002537
2538 // if we're using multi-thread renderer, wait for the window frame draws
2539 if (mWindowDrawCountDown != null) {
2540 try {
2541 mWindowDrawCountDown.await();
2542 } catch (InterruptedException e) {
Filip Gruszczynski34dab0b2015-12-22 08:29:07 -08002543 Log.e(mTag, "Window redraw count down interruped!");
Chong Zhang8dbd9ad2015-10-09 10:06:11 -07002544 }
2545 mWindowDrawCountDown = null;
2546 }
2547
John Reck28ad7b52014-04-07 16:59:25 -07002548 if (mAttachInfo.mHardwareRenderer != null) {
2549 mAttachInfo.mHardwareRenderer.fence();
2550 }
Jeff Brown96e942d2011-11-30 19:55:01 -08002551
2552 if (LOCAL_LOGV) {
Filip Gruszczynski34dab0b2015-12-22 08:29:07 -08002553 Log.v(mTag, "FINISHED DRAWING: " + mWindowAttributes.getTitle());
Jeff Brown96e942d2011-11-30 19:55:01 -08002554 }
2555 if (mSurfaceHolder != null && mSurface.isValid()) {
2556 mSurfaceHolderCallback.surfaceRedrawNeeded(mSurfaceHolder);
2557 SurfaceHolder.Callback callbacks[] = mSurfaceHolder.getCallbacks();
2558 if (callbacks != null) {
2559 for (SurfaceHolder.Callback c : callbacks) {
2560 if (c instanceof SurfaceHolder.Callback2) {
Filip Gruszczynski1a4dfe52015-11-15 10:58:57 -08002561 ((SurfaceHolder.Callback2)c).surfaceRedrawNeeded(mSurfaceHolder);
Jeff Brown96e942d2011-11-30 19:55:01 -08002562 }
2563 }
2564 }
2565 }
2566 try {
Jeff Brown98365d72012-08-19 20:30:52 -07002567 mWindowSession.finishDrawing(mWindow);
Jeff Brown96e942d2011-11-30 19:55:01 -08002568 } catch (RemoteException e) {
2569 }
2570 }
2571 }
2572
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002573 private void draw(boolean fullRedrawNeeded) {
2574 Surface surface = mSurface;
Romain Guyfbb93fa2012-12-03 18:50:35 -08002575 if (!surface.isValid()) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002576 return;
2577 }
2578
Chet Haase2f2022a2011-10-11 06:41:59 -07002579 if (DEBUG_FPS) {
2580 trackFPS();
2581 }
2582
Dianne Hackborn2a9094d2010-02-03 19:20:09 -08002583 if (!sFirstDrawComplete) {
2584 synchronized (sFirstDrawHandlers) {
2585 sFirstDrawComplete = true;
Romain Guy812ccbe2010-06-01 14:07:24 -07002586 final int count = sFirstDrawHandlers.size();
2587 for (int i = 0; i< count; i++) {
Jeff Browna175a5b2012-02-15 19:18:31 -08002588 mHandler.post(sFirstDrawHandlers.get(i));
Dianne Hackborn2a9094d2010-02-03 19:20:09 -08002589 }
2590 }
2591 }
Romain Guy59a12ca2011-06-09 17:48:21 -07002592
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002593 scrollToRectOrFocus(null, false);
2594
Chris Craikd36a81f2014-07-17 10:16:51 -07002595 if (mAttachInfo.mViewScrollChanged) {
2596 mAttachInfo.mViewScrollChanged = false;
2597 mAttachInfo.mTreeObserver.dispatchOnScrollChanged();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002598 }
Romain Guy8506ab42009-06-11 17:35:47 -07002599
Dianne Hackborn0f761d62010-11-30 22:06:10 -08002600 boolean animating = mScroller != null && mScroller.computeScrollOffset();
Alan Viveretteccb11e12014-07-08 16:04:02 -07002601 final int curScrollY;
Dianne Hackborn0f761d62010-11-30 22:06:10 -08002602 if (animating) {
Alan Viveretteccb11e12014-07-08 16:04:02 -07002603 curScrollY = mScroller.getCurrY();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002604 } else {
Alan Viveretteccb11e12014-07-08 16:04:02 -07002605 curScrollY = mScrollY;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002606 }
Alan Viveretteccb11e12014-07-08 16:04:02 -07002607 if (mCurScrollY != curScrollY) {
2608 mCurScrollY = curScrollY;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002609 fullRedrawNeeded = true;
Adrian Roos0e7ae4e2014-10-01 15:33:22 +02002610 if (mView instanceof RootViewSurfaceTaker) {
2611 ((RootViewSurfaceTaker) mView).onRootViewScrollYChanged(mCurScrollY);
2612 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002613 }
Jeff Brown96e942d2011-11-30 19:55:01 -08002614
Chris Craikd36a81f2014-07-17 10:16:51 -07002615 final float appScale = mAttachInfo.mApplicationScale;
2616 final boolean scalingRequired = mAttachInfo.mScalingRequired;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002617
Dianne Hackborn0f761d62010-11-30 22:06:10 -08002618 int resizeAlpha = 0;
Dianne Hackborn0f761d62010-11-30 22:06:10 -08002619
Jeff Brown96e942d2011-11-30 19:55:01 -08002620 final Rect dirty = mDirty;
Dianne Hackborndc8a7f62010-05-10 11:29:34 -07002621 if (mSurfaceHolder != null) {
2622 // The app owns the surface, we won't draw.
2623 dirty.setEmpty();
Derek Sollenberger8d948352015-07-16 09:27:59 -04002624 if (animating && mScroller != null) {
2625 mScroller.abortAnimation();
Dianne Hackborn0f761d62010-11-30 22:06:10 -08002626 }
Dianne Hackborndc8a7f62010-05-10 11:29:34 -07002627 return;
2628 }
Romain Guy58ef7fb2010-09-13 12:52:37 -07002629
2630 if (fullRedrawNeeded) {
Chris Craikd36a81f2014-07-17 10:16:51 -07002631 mAttachInfo.mIgnoreDirtyState = true;
Romain Guyc3166e12011-08-08 15:00:03 -07002632 dirty.set(0, 0, (int) (mWidth * appScale + 0.5f), (int) (mHeight * appScale + 0.5f));
Romain Guy58ef7fb2010-09-13 12:52:37 -07002633 }
Chet Haasead4f7032011-06-22 09:18:31 -07002634
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002635 if (DEBUG_ORIENTATION || DEBUG_DRAW) {
Filip Gruszczynski34dab0b2015-12-22 08:29:07 -08002636 Log.v(mTag, "Draw " + mView + "/"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002637 + mWindowAttributes.getTitle()
2638 + ": dirty={" + dirty.left + "," + dirty.top
2639 + "," + dirty.right + "," + dirty.bottom + "} surface="
Mitsuru Oshima9189cab2009-06-03 11:19:12 -07002640 + surface + " surface.isValid()=" + surface.isValid() + ", appScale:" +
2641 appScale + ", width=" + mWidth + ", height=" + mHeight);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002642 }
2643
Chris Craikd36a81f2014-07-17 10:16:51 -07002644 mAttachInfo.mTreeObserver.dispatchOnDraw();
Romain Guy25eba5c2012-04-04 17:29:03 -07002645
Chong Zhang0275e392015-09-17 10:41:44 -07002646 int xOffset = -mCanvasOffsetX;
2647 int yOffset = -mCanvasOffsetY + curScrollY;
Alan Viverettea51cab92014-07-16 15:15:49 -07002648 final WindowManager.LayoutParams params = mWindowAttributes;
2649 final Rect surfaceInsets = params != null ? params.surfaceInsets : null;
2650 if (surfaceInsets != null) {
2651 xOffset -= surfaceInsets.left;
2652 yOffset -= surfaceInsets.top;
2653
2654 // Offset dirty rect for surface insets.
2655 dirty.offset(surfaceInsets.left, surfaceInsets.right);
2656 }
2657
Alan Viverette632af842014-10-28 13:45:11 -07002658 boolean accessibilityFocusDirty = false;
2659 final Drawable drawable = mAttachInfo.mAccessibilityFocusDrawable;
2660 if (drawable != null) {
2661 final Rect bounds = mAttachInfo.mTmpInvalRect;
2662 final boolean hasFocus = getAccessibilityFocusedRect(bounds);
2663 if (!hasFocus) {
2664 bounds.setEmpty();
2665 }
2666 if (!bounds.equals(drawable.getBounds())) {
2667 accessibilityFocusDirty = true;
2668 }
2669 }
2670
John Reckba6adf62015-02-19 14:36:50 -08002671 mAttachInfo.mDrawingTime =
2672 mChoreographer.getFrameTimeNanos() / TimeUtils.NANOS_PER_MS;
2673
Alan Viverette632af842014-10-28 13:45:11 -07002674 if (!dirty.isEmpty() || mIsAnimating || accessibilityFocusDirty) {
Chris Craikd36a81f2014-07-17 10:16:51 -07002675 if (mAttachInfo.mHardwareRenderer != null && mAttachInfo.mHardwareRenderer.isEnabled()) {
Alan Viverette632af842014-10-28 13:45:11 -07002676 // If accessibility focus moved, always invalidate the root.
2677 boolean invalidateRoot = accessibilityFocusDirty;
2678
Jeff Brown96e942d2011-11-30 19:55:01 -08002679 // Draw with hardware renderer.
2680 mIsAnimating = false;
Alan Viverette632af842014-10-28 13:45:11 -07002681
John Reck0a973302014-07-16 13:29:45 -07002682 if (mHardwareYOffset != yOffset || mHardwareXOffset != xOffset) {
2683 mHardwareYOffset = yOffset;
2684 mHardwareXOffset = xOffset;
Alan Viverette632af842014-10-28 13:45:11 -07002685 invalidateRoot = true;
Alan Viverettef6cf1a02014-08-11 14:13:02 -07002686 }
2687
Alan Viverette632af842014-10-28 13:45:11 -07002688 if (invalidateRoot) {
2689 mAttachInfo.mHardwareRenderer.invalidateRoot();
2690 }
2691
Jeff Brown96e942d2011-11-30 19:55:01 -08002692 dirty.setEmpty();
2693
Skuhne980ee472015-10-06 11:31:31 -07002694 // Stage the content drawn size now. It will be transferred to the renderer
2695 // shortly before the draw commands get send to the renderer.
Chong Zhang8dbd9ad2015-10-09 10:06:11 -07002696 final boolean updated = updateContentDrawBounds();
2697
John Reck61375a82014-09-18 19:27:48 +00002698 mAttachInfo.mHardwareRenderer.draw(mView, mAttachInfo, this);
Chong Zhang8dbd9ad2015-10-09 10:06:11 -07002699
2700 if (updated) {
2701 requestDrawWindow();
2702 }
Romain Guy3696779b2013-01-28 14:04:07 -08002703 } else {
2704 // If we get here with a disabled & requested hardware renderer, something went
2705 // wrong (an invalidate posted right before we destroyed the hardware surface
2706 // for instance) so we should just bail out. Locking the surface with software
2707 // rendering at this point would lock it forever and prevent hardware renderer
2708 // from doing its job when it comes back.
2709 // Before we request a new frame we must however attempt to reinitiliaze the
2710 // hardware renderer if it's in requested state. This would happen after an
2711 // eglTerminate() for instance.
Chris Craikd36a81f2014-07-17 10:16:51 -07002712 if (mAttachInfo.mHardwareRenderer != null &&
2713 !mAttachInfo.mHardwareRenderer.isEnabled() &&
2714 mAttachInfo.mHardwareRenderer.isRequested()) {
Romain Guy3696779b2013-01-28 14:04:07 -08002715
2716 try {
Chris Craikd36a81f2014-07-17 10:16:51 -07002717 mAttachInfo.mHardwareRenderer.initializeIfNeeded(
Alan Viverette50210d92015-05-14 18:05:36 -07002718 mWidth, mHeight, mAttachInfo, mSurface, surfaceInsets);
Igor Murashkina86ab6402013-08-30 12:58:36 -07002719 } catch (OutOfResourcesException e) {
Romain Guy3696779b2013-01-28 14:04:07 -08002720 handleOutOfResourcesException(e);
2721 return;
2722 }
2723
2724 mFullRedrawNeeded = true;
2725 scheduleTraversals();
2726 return;
2727 }
2728
Chris Craikd36a81f2014-07-17 10:16:51 -07002729 if (!drawSoftware(surface, mAttachInfo, xOffset, yOffset, scalingRequired, dirty)) {
Romain Guy3696779b2013-01-28 14:04:07 -08002730 return;
2731 }
Jeff Brown95db2b22011-11-30 19:54:41 -08002732 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002733 }
Romain Guy8506ab42009-06-11 17:35:47 -07002734
Dianne Hackborn0f761d62010-11-30 22:06:10 -08002735 if (animating) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002736 mFullRedrawNeeded = true;
2737 scheduleTraversals();
2738 }
2739 }
2740
Romain Guy25eba5c2012-04-04 17:29:03 -07002741 /**
Alan Viveretteccb11e12014-07-08 16:04:02 -07002742 * @return true if drawing was successful, false if an error occurred
Romain Guy25eba5c2012-04-04 17:29:03 -07002743 */
Alan Viveretteccb11e12014-07-08 16:04:02 -07002744 private boolean drawSoftware(Surface surface, AttachInfo attachInfo, int xoff, int yoff,
Romain Guy25eba5c2012-04-04 17:29:03 -07002745 boolean scalingRequired, Rect dirty) {
2746
2747 // Draw with software renderer.
Alan Viverettea51cab92014-07-16 15:15:49 -07002748 final Canvas canvas;
Romain Guy25eba5c2012-04-04 17:29:03 -07002749 try {
Alan Viverettea51cab92014-07-16 15:15:49 -07002750 final int left = dirty.left;
2751 final int top = dirty.top;
2752 final int right = dirty.right;
2753 final int bottom = dirty.bottom;
Romain Guy25eba5c2012-04-04 17:29:03 -07002754
Romain Guy25eba5c2012-04-04 17:29:03 -07002755 canvas = mSurface.lockCanvas(dirty);
2756
Romain Guye55945e2013-04-04 15:26:04 -07002757 // The dirty rectangle can be modified by Surface.lockCanvas()
2758 //noinspection ConstantConditions
Alan Viverettea51cab92014-07-16 15:15:49 -07002759 if (left != dirty.left || top != dirty.top || right != dirty.right
2760 || bottom != dirty.bottom) {
Romain Guy25eba5c2012-04-04 17:29:03 -07002761 attachInfo.mIgnoreDirtyState = true;
2762 }
2763
2764 // TODO: Do this in native
2765 canvas.setDensity(mDensity);
2766 } catch (Surface.OutOfResourcesException e) {
Romain Guy3696779b2013-01-28 14:04:07 -08002767 handleOutOfResourcesException(e);
Romain Guy25eba5c2012-04-04 17:29:03 -07002768 return false;
2769 } catch (IllegalArgumentException e) {
Filip Gruszczynski34dab0b2015-12-22 08:29:07 -08002770 Log.e(mTag, "Could not lock surface", e);
Romain Guy25eba5c2012-04-04 17:29:03 -07002771 // Don't assume this is due to out of memory, it could be
2772 // something else, and if it is something else then we could
2773 // kill stuff (or ourself) for no reason.
2774 mLayoutRequested = true; // ask wm for a new surface next time.
2775 return false;
2776 }
2777
2778 try {
2779 if (DEBUG_ORIENTATION || DEBUG_DRAW) {
Filip Gruszczynski34dab0b2015-12-22 08:29:07 -08002780 Log.v(mTag, "Surface " + surface + " drawing to bitmap w="
Romain Guy25eba5c2012-04-04 17:29:03 -07002781 + canvas.getWidth() + ", h=" + canvas.getHeight());
2782 //canvas.drawARGB(255, 255, 0, 0);
2783 }
2784
Romain Guy25eba5c2012-04-04 17:29:03 -07002785 // If this bitmap's format includes an alpha channel, we
2786 // need to clear it before drawing so that the child will
2787 // properly re-composite its drawing on a transparent
2788 // background. This automatically respects the clip/dirty region
2789 // or
2790 // If we are applying an offset, we need to clear the area
2791 // where the offset doesn't appear to avoid having garbage
2792 // left in the blank areas.
Alan Viveretteccb11e12014-07-08 16:04:02 -07002793 if (!canvas.isOpaque() || yoff != 0 || xoff != 0) {
Romain Guy25eba5c2012-04-04 17:29:03 -07002794 canvas.drawColor(0, PorterDuff.Mode.CLEAR);
2795 }
2796
2797 dirty.setEmpty();
2798 mIsAnimating = false;
Dianne Hackborn4702a852012-08-17 15:18:29 -07002799 mView.mPrivateFlags |= View.PFLAG_DRAWN;
Romain Guy25eba5c2012-04-04 17:29:03 -07002800
2801 if (DEBUG_DRAW) {
2802 Context cxt = mView.getContext();
Filip Gruszczynski34dab0b2015-12-22 08:29:07 -08002803 Log.i(mTag, "Drawing: package:" + cxt.getPackageName() +
Romain Guy25eba5c2012-04-04 17:29:03 -07002804 ", metrics=" + cxt.getResources().getDisplayMetrics() +
2805 ", compatibilityInfo=" + cxt.getResources().getCompatibilityInfo());
2806 }
2807 try {
Alan Viveretteccb11e12014-07-08 16:04:02 -07002808 canvas.translate(-xoff, -yoff);
Romain Guy25eba5c2012-04-04 17:29:03 -07002809 if (mTranslator != null) {
2810 mTranslator.translateCanvas(canvas);
2811 }
Dianne Hackborn908aecc2012-07-31 16:37:34 -07002812 canvas.setScreenDensity(scalingRequired ? mNoncompatDensity : 0);
Romain Guy25eba5c2012-04-04 17:29:03 -07002813 attachInfo.mSetIgnoreDirtyState = false;
2814
Romain Guy25eba5c2012-04-04 17:29:03 -07002815 mView.draw(canvas);
Alan Viverette632af842014-10-28 13:45:11 -07002816
2817 drawAccessibilityFocusedDrawableIfNeeded(canvas);
Romain Guy25eba5c2012-04-04 17:29:03 -07002818 } finally {
2819 if (!attachInfo.mSetIgnoreDirtyState) {
2820 // Only clear the flag if it was not set during the mView.draw() call
2821 attachInfo.mIgnoreDirtyState = false;
2822 }
2823 }
Romain Guy25eba5c2012-04-04 17:29:03 -07002824 } finally {
Romain Guydddcd222012-05-18 15:33:57 -07002825 try {
2826 surface.unlockCanvasAndPost(canvas);
2827 } catch (IllegalArgumentException e) {
Filip Gruszczynski34dab0b2015-12-22 08:29:07 -08002828 Log.e(mTag, "Could not unlock surface", e);
Romain Guydddcd222012-05-18 15:33:57 -07002829 mLayoutRequested = true; // ask wm for a new surface next time.
2830 //noinspection ReturnInsideFinallyBlock
2831 return false;
2832 }
Romain Guy25eba5c2012-04-04 17:29:03 -07002833
Romain Guy25eba5c2012-04-04 17:29:03 -07002834 if (LOCAL_LOGV) {
Filip Gruszczynski34dab0b2015-12-22 08:29:07 -08002835 Log.v(mTag, "Surface " + surface + " unlockCanvasAndPost");
Romain Guy25eba5c2012-04-04 17:29:03 -07002836 }
2837 }
2838 return true;
2839 }
2840
Alan Viverette632af842014-10-28 13:45:11 -07002841 /**
2842 * We want to draw a highlight around the current accessibility focused.
2843 * Since adding a style for all possible view is not a viable option we
2844 * have this specialized drawing method.
2845 *
2846 * Note: We are doing this here to be able to draw the highlight for
2847 * virtual views in addition to real ones.
2848 *
2849 * @param canvas The canvas on which to draw.
2850 */
2851 private void drawAccessibilityFocusedDrawableIfNeeded(Canvas canvas) {
2852 final Rect bounds = mAttachInfo.mTmpInvalRect;
2853 if (getAccessibilityFocusedRect(bounds)) {
2854 final Drawable drawable = getAccessibilityFocusedDrawable();
2855 if (drawable != null) {
2856 drawable.setBounds(bounds);
2857 drawable.draw(canvas);
2858 }
2859 } else if (mAttachInfo.mAccessibilityFocusDrawable != null) {
2860 mAttachInfo.mAccessibilityFocusDrawable.setBounds(0, 0, 0, 0);
2861 }
2862 }
2863
2864 private boolean getAccessibilityFocusedRect(Rect bounds) {
2865 final AccessibilityManager manager = AccessibilityManager.getInstance(mView.mContext);
2866 if (!manager.isEnabled() || !manager.isTouchExplorationEnabled()) {
2867 return false;
2868 }
2869
2870 final View host = mAccessibilityFocusedHost;
2871 if (host == null || host.mAttachInfo == null) {
2872 return false;
2873 }
2874
2875 final AccessibilityNodeProvider provider = host.getAccessibilityNodeProvider();
2876 if (provider == null) {
Svetoslavded133c2015-01-30 20:28:41 -08002877 host.getBoundsOnScreen(bounds, true);
Alan Viverette632af842014-10-28 13:45:11 -07002878 } else if (mAccessibilityFocusedVirtualView != null) {
2879 mAccessibilityFocusedVirtualView.getBoundsInScreen(bounds);
2880 } else {
2881 return false;
2882 }
2883
Alan Viverette2232add2015-05-26 15:24:18 -07002884 // Transform the rect into window-relative coordinates.
Alan Viverette632af842014-10-28 13:45:11 -07002885 final AttachInfo attachInfo = mAttachInfo;
Alan Viverette2232add2015-05-26 15:24:18 -07002886 bounds.offset(0, attachInfo.mViewRootImpl.mScrollY);
Alan Viverette632af842014-10-28 13:45:11 -07002887 bounds.offset(-attachInfo.mWindowLeft, -attachInfo.mWindowTop);
Doris Liu9607fbe2015-05-28 17:17:28 -07002888 if (!bounds.intersect(0, 0, attachInfo.mViewRootImpl.mWidth,
2889 attachInfo.mViewRootImpl.mHeight)) {
2890 // If no intersection, set bounds to empty.
2891 bounds.setEmpty();
2892 }
Alan Viverette632af842014-10-28 13:45:11 -07002893 return !bounds.isEmpty();
2894 }
2895
2896 private Drawable getAccessibilityFocusedDrawable() {
Chris Craikd36a81f2014-07-17 10:16:51 -07002897 // Lazily load the accessibility focus drawable.
2898 if (mAttachInfo.mAccessibilityFocusDrawable == null) {
Alan Viverettef6cf1a02014-08-11 14:13:02 -07002899 final TypedValue value = new TypedValue();
Chris Craikd36a81f2014-07-17 10:16:51 -07002900 final boolean resolved = mView.mContext.getTheme().resolveAttribute(
2901 R.attr.accessibilityFocusedDrawable, value, true);
2902 if (resolved) {
2903 mAttachInfo.mAccessibilityFocusDrawable =
Alan Viverette8eea3ea2014-02-03 18:40:20 -08002904 mView.mContext.getDrawable(value.resourceId);
Svetoslav Ganov42138042012-03-20 11:51:39 -07002905 }
Svetoslav Ganov42138042012-03-20 11:51:39 -07002906 }
Chris Craikd36a81f2014-07-17 10:16:51 -07002907 return mAttachInfo.mAccessibilityFocusDrawable;
Svetoslav Ganov42138042012-03-20 11:51:39 -07002908 }
2909
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002910 boolean scrollToRectOrFocus(Rect rectangle, boolean immediate) {
Chris Craikd36a81f2014-07-17 10:16:51 -07002911 final Rect ci = mAttachInfo.mContentInsets;
2912 final Rect vi = mAttachInfo.mVisibleInsets;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002913 int scrollY = 0;
2914 boolean handled = false;
Romain Guy8506ab42009-06-11 17:35:47 -07002915
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002916 if (vi.left > ci.left || vi.top > ci.top
2917 || vi.right > ci.right || vi.bottom > ci.bottom) {
2918 // We'll assume that we aren't going to change the scroll
2919 // offset, since we want to avoid that unless it is actually
2920 // going to make the focus visible... otherwise we scroll
2921 // all over the place.
2922 scrollY = mScrollY;
2923 // We can be called for two different situations: during a draw,
2924 // to update the scroll position if the focus has changed (in which
2925 // case 'rectangle' is null), or in response to a
2926 // requestChildRectangleOnScreen() call (in which case 'rectangle'
2927 // is non-null and we just want to scroll to whatever that
2928 // rectangle is).
Craig Mautner26a84df2013-04-11 19:09:05 -07002929 final View focus = mView.findFocus();
Svetoslav Ganov149567f2013-01-08 15:23:34 -08002930 if (focus == null) {
Romain Guye8b16522009-07-14 13:06:42 -07002931 return false;
2932 }
Svetoslav Ganov149567f2013-01-08 15:23:34 -08002933 View lastScrolledFocus = (mLastScrolledFocus != null) ? mLastScrolledFocus.get() : null;
Craig Mautner26a84df2013-04-11 19:09:05 -07002934 if (focus != lastScrolledFocus) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002935 // If the focus has changed, then ignore any requests to scroll
2936 // to a rectangle; first we want to make sure the entire focus
2937 // view is visible.
2938 rectangle = null;
2939 }
Filip Gruszczynski34dab0b2015-12-22 08:29:07 -08002940 if (DEBUG_INPUT_RESIZE) Log.v(mTag, "Eval scroll: focus=" + focus
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002941 + " rectangle=" + rectangle + " ci=" + ci
2942 + " vi=" + vi);
Svetoslav Ganov149567f2013-01-08 15:23:34 -08002943 if (focus == lastScrolledFocus && !mScrollMayChange && rectangle == null) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002944 // Optimization: if the focus hasn't changed since last
2945 // time, and no layout has happened, then just leave things
2946 // as they are.
Filip Gruszczynski34dab0b2015-12-22 08:29:07 -08002947 if (DEBUG_INPUT_RESIZE) Log.v(mTag, "Keeping scroll y="
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002948 + mScrollY + " vi=" + vi.toShortString());
Craig Mautner26a84df2013-04-11 19:09:05 -07002949 } else {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002950 // We need to determine if the currently focused view is
2951 // within the visible part of the window and, if not, apply
2952 // a pan so it can be seen.
Svetoslav Ganov149567f2013-01-08 15:23:34 -08002953 mLastScrolledFocus = new WeakReference<View>(focus);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002954 mScrollMayChange = false;
Filip Gruszczynski34dab0b2015-12-22 08:29:07 -08002955 if (DEBUG_INPUT_RESIZE) Log.v(mTag, "Need to scroll?");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002956 // Try to find the rectangle from the focus view.
2957 if (focus.getGlobalVisibleRect(mVisRect, null)) {
Filip Gruszczynski34dab0b2015-12-22 08:29:07 -08002958 if (DEBUG_INPUT_RESIZE) Log.v(mTag, "Root w="
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002959 + mView.getWidth() + " h=" + mView.getHeight()
2960 + " ci=" + ci.toShortString()
2961 + " vi=" + vi.toShortString());
2962 if (rectangle == null) {
2963 focus.getFocusedRect(mTempRect);
Filip Gruszczynski34dab0b2015-12-22 08:29:07 -08002964 if (DEBUG_INPUT_RESIZE) Log.v(mTag, "Focus " + focus
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002965 + ": focusRect=" + mTempRect.toShortString());
Dianne Hackborn1c6a8942010-03-23 16:34:20 -07002966 if (mView instanceof ViewGroup) {
2967 ((ViewGroup) mView).offsetDescendantRectToMyCoords(
2968 focus, mTempRect);
2969 }
Filip Gruszczynski34dab0b2015-12-22 08:29:07 -08002970 if (DEBUG_INPUT_RESIZE) Log.v(mTag,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002971 "Focus in window: focusRect="
2972 + mTempRect.toShortString()
2973 + " visRect=" + mVisRect.toShortString());
2974 } else {
2975 mTempRect.set(rectangle);
Filip Gruszczynski34dab0b2015-12-22 08:29:07 -08002976 if (DEBUG_INPUT_RESIZE) Log.v(mTag,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002977 "Request scroll to rect: "
2978 + mTempRect.toShortString()
2979 + " visRect=" + mVisRect.toShortString());
2980 }
2981 if (mTempRect.intersect(mVisRect)) {
Filip Gruszczynski34dab0b2015-12-22 08:29:07 -08002982 if (DEBUG_INPUT_RESIZE) Log.v(mTag,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002983 "Focus window visible rect: "
2984 + mTempRect.toShortString());
2985 if (mTempRect.height() >
2986 (mView.getHeight()-vi.top-vi.bottom)) {
2987 // If the focus simply is not going to fit, then
2988 // best is probably just to leave things as-is.
Filip Gruszczynski34dab0b2015-12-22 08:29:07 -08002989 if (DEBUG_INPUT_RESIZE) Log.v(mTag,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002990 "Too tall; leaving scrollY=" + scrollY);
2991 } else if ((mTempRect.top-scrollY) < vi.top) {
2992 scrollY -= vi.top - (mTempRect.top-scrollY);
Filip Gruszczynski34dab0b2015-12-22 08:29:07 -08002993 if (DEBUG_INPUT_RESIZE) Log.v(mTag,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002994 "Top covered; scrollY=" + scrollY);
2995 } else if ((mTempRect.bottom-scrollY)
2996 > (mView.getHeight()-vi.bottom)) {
2997 scrollY += (mTempRect.bottom-scrollY)
2998 - (mView.getHeight()-vi.bottom);
Filip Gruszczynski34dab0b2015-12-22 08:29:07 -08002999 if (DEBUG_INPUT_RESIZE) Log.v(mTag,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003000 "Bottom covered; scrollY=" + scrollY);
3001 }
3002 handled = true;
3003 }
3004 }
3005 }
3006 }
Romain Guy8506ab42009-06-11 17:35:47 -07003007
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003008 if (scrollY != mScrollY) {
Filip Gruszczynski34dab0b2015-12-22 08:29:07 -08003009 if (DEBUG_INPUT_RESIZE) Log.v(mTag, "Pan scroll changed: old="
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003010 + mScrollY + " , new=" + scrollY);
Derek Sollenberger8d948352015-07-16 09:27:59 -04003011 if (!immediate) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003012 if (mScroller == null) {
3013 mScroller = new Scroller(mView.getContext());
3014 }
3015 mScroller.startScroll(0, mScrollY, 0, scrollY-mScrollY);
3016 } else if (mScroller != null) {
3017 mScroller.abortAnimation();
3018 }
3019 mScrollY = scrollY;
3020 }
Romain Guy8506ab42009-06-11 17:35:47 -07003021
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003022 return handled;
3023 }
Romain Guy8506ab42009-06-11 17:35:47 -07003024
Svetoslav Ganove5dfa47d2012-05-08 15:58:32 -07003025 /**
3026 * @hide
3027 */
3028 public View getAccessibilityFocusedHost() {
3029 return mAccessibilityFocusedHost;
3030 }
3031
3032 /**
3033 * @hide
3034 */
3035 public AccessibilityNodeInfo getAccessibilityFocusedVirtualView() {
3036 return mAccessibilityFocusedVirtualView;
3037 }
3038
Svetoslav Ganov45a02e02012-06-17 15:07:29 -07003039 void setAccessibilityFocus(View view, AccessibilityNodeInfo node) {
Svetoslav Ganov791fd312012-05-14 15:12:30 -07003040 // If we have a virtual view with accessibility focus we need
3041 // to clear the focus and invalidate the virtual view bounds.
3042 if (mAccessibilityFocusedVirtualView != null) {
3043
3044 AccessibilityNodeInfo focusNode = mAccessibilityFocusedVirtualView;
3045 View focusHost = mAccessibilityFocusedHost;
Svetoslav Ganov791fd312012-05-14 15:12:30 -07003046
3047 // Wipe the state of the current accessibility focus since
3048 // the call into the provider to clear accessibility focus
3049 // will fire an accessibility event which will end up calling
3050 // this method and we want to have clean state when this
3051 // invocation happens.
3052 mAccessibilityFocusedHost = null;
3053 mAccessibilityFocusedVirtualView = null;
3054
Alan Viverette239a0c02013-05-07 17:17:35 -07003055 // Clear accessibility focus on the host after clearing state since
3056 // this method may be reentrant.
3057 focusHost.clearAccessibilityFocusNoCallbacks();
3058
Svetoslav Ganov791fd312012-05-14 15:12:30 -07003059 AccessibilityNodeProvider provider = focusHost.getAccessibilityNodeProvider();
3060 if (provider != null) {
3061 // Invalidate the area of the cleared accessibility focus.
3062 focusNode.getBoundsInParent(mTempRect);
3063 focusHost.invalidate(mTempRect);
3064 // Clear accessibility focus in the virtual node.
3065 final int virtualNodeId = AccessibilityNodeInfo.getVirtualDescendantId(
3066 focusNode.getSourceNodeId());
3067 provider.performAction(virtualNodeId,
3068 AccessibilityNodeInfo.ACTION_CLEAR_ACCESSIBILITY_FOCUS, null);
3069 }
Svetoslav Ganov45a02e02012-06-17 15:07:29 -07003070 focusNode.recycle();
Svetoslav Ganov791fd312012-05-14 15:12:30 -07003071 }
3072 if (mAccessibilityFocusedHost != null) {
3073 // Clear accessibility focus in the view.
Svetoslav Ganov42138042012-03-20 11:51:39 -07003074 mAccessibilityFocusedHost.clearAccessibilityFocusNoCallbacks();
3075 }
Svetoslav Ganov791fd312012-05-14 15:12:30 -07003076
Svetoslav Ganov45a02e02012-06-17 15:07:29 -07003077 // Set the new focus host and node.
3078 mAccessibilityFocusedHost = view;
3079 mAccessibilityFocusedVirtualView = node;
John Reck0a973302014-07-16 13:29:45 -07003080
3081 if (mAttachInfo.mHardwareRenderer != null) {
3082 mAttachInfo.mHardwareRenderer.invalidateRoot();
3083 }
Svetoslav Ganov42138042012-03-20 11:51:39 -07003084 }
3085
Jun Mukai347e5d42015-12-03 01:13:31 -08003086 void setPointerCapture(View view) {
3087 if (!mAttachInfo.mHasWindowFocus) {
Filip Gruszczynski34dab0b2015-12-22 08:29:07 -08003088 Log.w(mTag, "Can't set capture if it's not focused.");
Jun Mukai347e5d42015-12-03 01:13:31 -08003089 return;
3090 }
3091 if (mCapturingView == view) {
3092 return;
3093 }
3094 mCapturingView = view;
3095 InputManager.getInstance().setPointerIconDetached(true);
3096 }
3097
3098 void releasePointerCapture(View view) {
3099 if (mCapturingView != view || mCapturingView == null) {
3100 return;
3101 }
3102
3103 mCapturingView = null;
3104 InputManager.getInstance().setPointerIconDetached(false);
3105 }
3106
3107 boolean hasPointerCapture(View view) {
3108 return view != null && mCapturingView == view;
3109 }
3110
Igor Murashkina86ab6402013-08-30 12:58:36 -07003111 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003112 public void requestChildFocus(View child, View focused) {
Svetoslav Ganovb36a0ac2012-02-14 17:46:47 -08003113 if (DEBUG_INPUT_RESIZE) {
Filip Gruszczynski34dab0b2015-12-22 08:29:07 -08003114 Log.v(mTag, "Request child focus: focus now " + focused);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003115 }
Svetoslav Ganov149567f2013-01-08 15:23:34 -08003116 checkThread();
Svetoslav Ganovb36a0ac2012-02-14 17:46:47 -08003117 scheduleTraversals();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003118 }
3119
Igor Murashkina86ab6402013-08-30 12:58:36 -07003120 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003121 public void clearChildFocus(View child) {
Svetoslav Ganovb36a0ac2012-02-14 17:46:47 -08003122 if (DEBUG_INPUT_RESIZE) {
Filip Gruszczynski34dab0b2015-12-22 08:29:07 -08003123 Log.v(mTag, "Clearing child focus");
Amith Yamasani73eb97f2012-02-14 15:45:15 -08003124 }
Svetoslav Ganov149567f2013-01-08 15:23:34 -08003125 checkThread();
3126 scheduleTraversals();
Svetoslav Ganovb36a0ac2012-02-14 17:46:47 -08003127 }
Amith Yamasani73eb97f2012-02-14 15:45:15 -08003128
Svetoslav Ganov42138042012-03-20 11:51:39 -07003129 @Override
3130 public ViewParent getParentForAccessibility() {
3131 return null;
3132 }
3133
Igor Murashkina86ab6402013-08-30 12:58:36 -07003134 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003135 public void focusableViewAvailable(View v) {
3136 checkThread();
Romain Guy1c90f032011-05-24 14:59:50 -07003137 if (mView != null) {
3138 if (!mView.hasFocus()) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003139 v.requestFocus();
Romain Guy1c90f032011-05-24 14:59:50 -07003140 } else {
3141 // the one case where will transfer focus away from the current one
3142 // is if the current view is a view group that prefers to give focus
3143 // to its children first AND the view is a descendant of it.
Svetoslav Ganov149567f2013-01-08 15:23:34 -08003144 View focused = mView.findFocus();
3145 if (focused instanceof ViewGroup) {
3146 ViewGroup group = (ViewGroup) focused;
3147 if (group.getDescendantFocusability() == ViewGroup.FOCUS_AFTER_DESCENDANTS
3148 && isViewDescendantOf(v, focused)) {
3149 v.requestFocus();
3150 }
Romain Guy1c90f032011-05-24 14:59:50 -07003151 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003152 }
3153 }
3154 }
3155
Igor Murashkina86ab6402013-08-30 12:58:36 -07003156 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003157 public void recomputeViewAttributes(View child) {
3158 checkThread();
3159 if (mView == child) {
3160 mAttachInfo.mRecomputeGlobalAttributes = true;
3161 if (!mWillDrawSoon) {
3162 scheduleTraversals();
3163 }
3164 }
3165 }
3166
3167 void dispatchDetachedFromWindow() {
Romain Guy90fc03b2011-01-16 13:07:15 -08003168 if (mView != null && mView.mAttachInfo != null) {
Dianne Hackborn961cae92013-03-20 14:59:43 -07003169 mAttachInfo.mTreeObserver.dispatchOnWindowAttachedChange(false);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003170 mView.dispatchDetachedFromWindow();
3171 }
3172
Svetoslav Ganov8643aa02011-04-20 12:12:33 -07003173 mAccessibilityInteractionConnectionManager.ensureNoConnection();
3174 mAccessibilityManager.removeAccessibilityStateChangeListener(
3175 mAccessibilityInteractionConnectionManager);
Chris Craikcce47eb2014-07-16 15:12:15 -07003176 mAccessibilityManager.removeHighTextContrastStateChangeListener(
3177 mHighContrastTextManager);
Svetoslav Ganoveeee4d22011-06-10 20:51:30 -07003178 removeSendWindowContentChangedCallback();
Svetoslav Ganov8643aa02011-04-20 12:12:33 -07003179
Romain Guya998dff2012-03-23 18:58:36 -07003180 destroyHardwareRenderer();
3181
Svetoslav Ganov45a02e02012-06-17 15:07:29 -07003182 setAccessibilityFocus(null, null);
Svetoslav Ganov791fd312012-05-14 15:12:30 -07003183
Craig Mautner8f303ad2013-06-14 11:32:22 -07003184 mView.assignParent(null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003185 mView = null;
3186 mAttachInfo.mRootView = null;
3187
Jun Mukai347e5d42015-12-03 01:13:31 -08003188 if (mCapturingView != null) {
3189 releasePointerCapture(mCapturingView);
3190 }
3191
Dianne Hackborn0586a1b2009-09-06 21:08:27 -07003192 mSurface.release();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003193
Jeff Browncc4f7db2011-08-30 20:34:48 -07003194 if (mInputQueueCallback != null && mInputQueue != null) {
3195 mInputQueueCallback.onInputQueueDestroyed(mInputQueue);
Michael Wrighta44dd262013-04-10 21:12:00 -07003196 mInputQueue.dispose();
Jeff Browncc4f7db2011-08-30 20:34:48 -07003197 mInputQueueCallback = null;
3198 mInputQueue = null;
Michael Wrighta44dd262013-04-10 21:12:00 -07003199 }
3200 if (mInputEventReceiver != null) {
Jeff Brown32cbc38552011-12-01 14:01:49 -08003201 mInputEventReceiver.dispose();
3202 mInputEventReceiver = null;
Jeff Brown46b9ac02010-04-22 18:58:52 -07003203 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003204 try {
Jeff Brown98365d72012-08-19 20:30:52 -07003205 mWindowSession.remove(mWindow);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003206 } catch (RemoteException e) {
3207 }
Jeff Brownf9e989d2013-04-04 23:04:03 -07003208
Jeff Brown00fa7bd2010-07-02 15:37:36 -07003209 // Dispose the input channel after removing the window so the Window Manager
3210 // doesn't interpret the input channel being closed as an abnormal termination.
3211 if (mInputChannel != null) {
3212 mInputChannel.dispose();
3213 mInputChannel = null;
Jeff Brown349703e2010-06-22 01:27:15 -07003214 }
Jeff Brown96e942d2011-11-30 19:55:01 -08003215
Jeff Brownd912e1f2014-04-11 18:46:22 -07003216 mDisplayManager.unregisterDisplayListener(mDisplayListener);
3217
Jeff Brownebb2d8d2012-03-23 17:14:34 -07003218 unscheduleTraversals();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003219 }
Romain Guy8506ab42009-06-11 17:35:47 -07003220
Dianne Hackborn694f79b2010-03-17 19:44:59 -07003221 void updateConfiguration(Configuration config, boolean force) {
Filip Gruszczynski34dab0b2015-12-22 08:29:07 -08003222 if (DEBUG_CONFIGURATION) Log.v(mTag,
Dianne Hackborn694f79b2010-03-17 19:44:59 -07003223 "Applying new config to window "
3224 + mWindowAttributes.getTitle()
3225 + ": " + config);
Dianne Hackborn5fd21692011-06-07 14:09:47 -07003226
Craig Mautner48d0d182013-06-11 07:53:06 -07003227 CompatibilityInfo ci = mDisplayAdjustments.getCompatibilityInfo();
3228 if (!ci.equals(CompatibilityInfo.DEFAULT_COMPATIBILITY_INFO)) {
Dianne Hackborn5fd21692011-06-07 14:09:47 -07003229 config = new Configuration(config);
Dianne Hackborn908aecc2012-07-31 16:37:34 -07003230 ci.applyToConfiguration(mNoncompatDensity, config);
Dianne Hackborn5fd21692011-06-07 14:09:47 -07003231 }
3232
Dianne Hackborn694f79b2010-03-17 19:44:59 -07003233 synchronized (sConfigCallbacks) {
3234 for (int i=sConfigCallbacks.size()-1; i>=0; i--) {
3235 sConfigCallbacks.get(i).onConfigurationChanged(config);
3236 }
3237 }
3238 if (mView != null) {
3239 // At this point the resources have been updated to
3240 // have the most recent config, whatever that is. Use
Dianne Hackborn908aecc2012-07-31 16:37:34 -07003241 // the one in them which may be newer.
Romain Guy1c90f032011-05-24 14:59:50 -07003242 config = mView.getResources().getConfiguration();
Dianne Hackborn694f79b2010-03-17 19:44:59 -07003243 if (force || mLastConfiguration.diff(config) != 0) {
Fabrice Di Megliocf128972012-10-16 20:51:12 -07003244 final int lastLayoutDirection = mLastConfiguration.getLayoutDirection();
3245 final int currentLayoutDirection = config.getLayoutDirection();
Dianne Hackborn694f79b2010-03-17 19:44:59 -07003246 mLastConfiguration.setTo(config);
Fabrice Di Megliob003e282012-10-17 17:20:19 -07003247 if (lastLayoutDirection != currentLayoutDirection &&
3248 mViewLayoutDirectionInitial == View.LAYOUT_DIRECTION_INHERIT) {
Fabrice Di Megliocf128972012-10-16 20:51:12 -07003249 mView.setLayoutDirection(currentLayoutDirection);
3250 }
Dianne Hackborn694f79b2010-03-17 19:44:59 -07003251 mView.dispatchConfigurationChanged(config);
3252 }
3253 }
3254 }
John Reck05e85842014-04-23 14:48:28 -07003255
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003256 /**
3257 * Return true if child is an ancestor of parent, (or equal to the parent).
3258 */
Svetoslav Ganove5dfa47d2012-05-08 15:58:32 -07003259 public static boolean isViewDescendantOf(View child, View parent) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003260 if (child == parent) {
3261 return true;
3262 }
3263
3264 final ViewParent theParent = child.getParent();
3265 return (theParent instanceof ViewGroup) && isViewDescendantOf((View) theParent, parent);
3266 }
3267
Yohei Yukawad2e56472015-07-28 17:00:33 -07003268 private static void forceLayout(View view) {
3269 view.forceLayout();
3270 if (view instanceof ViewGroup) {
3271 ViewGroup group = (ViewGroup) view;
3272 final int count = group.getChildCount();
3273 for (int i = 0; i < count; i++) {
3274 forceLayout(group.getChildAt(i));
3275 }
3276 }
3277 }
3278
Jeff Browna175a5b2012-02-15 19:18:31 -08003279 private final static int MSG_INVALIDATE = 1;
3280 private final static int MSG_INVALIDATE_RECT = 2;
3281 private final static int MSG_DIE = 3;
3282 private final static int MSG_RESIZED = 4;
3283 private final static int MSG_RESIZED_REPORT = 5;
3284 private final static int MSG_WINDOW_FOCUS_CHANGED = 6;
keunyoung30f420f2013-08-02 14:23:10 -07003285 private final static int MSG_DISPATCH_INPUT_EVENT = 7;
Jeff Browna175a5b2012-02-15 19:18:31 -08003286 private final static int MSG_DISPATCH_APP_VISIBILITY = 8;
3287 private final static int MSG_DISPATCH_GET_NEW_SURFACE = 9;
Jeff Browna175a5b2012-02-15 19:18:31 -08003288 private final static int MSG_DISPATCH_KEY_FROM_IME = 11;
3289 private final static int MSG_FINISH_INPUT_CONNECTION = 12;
3290 private final static int MSG_CHECK_FOCUS = 13;
3291 private final static int MSG_CLOSE_SYSTEM_DIALOGS = 14;
3292 private final static int MSG_DISPATCH_DRAG_EVENT = 15;
3293 private final static int MSG_DISPATCH_DRAG_LOCATION_EVENT = 16;
3294 private final static int MSG_DISPATCH_SYSTEM_UI_VISIBILITY = 17;
3295 private final static int MSG_UPDATE_CONFIGURATION = 18;
Svetoslav Ganov42138042012-03-20 11:51:39 -07003296 private final static int MSG_PROCESS_INPUT_EVENTS = 19;
Romain Guyfbb93fa2012-12-03 18:50:35 -08003297 private final static int MSG_CLEAR_ACCESSIBILITY_FOCUS_HOST = 21;
Jorim Jaggi827e0fa2015-05-07 11:41:41 -07003298 private final static int MSG_INVALIDATE_WORLD = 22;
3299 private final static int MSG_WINDOW_MOVED = 23;
3300 private final static int MSG_SYNTHESIZE_INPUT_EVENT = 24;
3301 private final static int MSG_DISPATCH_WINDOW_SHOWN = 25;
Clara Bayarri75e09792015-07-29 16:20:40 +01003302 private final static int MSG_REQUEST_KEYBOARD_SHORTCUTS = 26;
Vladislav Kaznacheevec6a4472016-01-22 12:21:52 -08003303 private final static int MSG_UPDATE_POINTER_ICON = 27;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003304
Jeff Browna175a5b2012-02-15 19:18:31 -08003305 final class ViewRootHandler extends Handler {
3306 @Override
3307 public String getMessageName(Message message) {
3308 switch (message.what) {
3309 case MSG_INVALIDATE:
3310 return "MSG_INVALIDATE";
3311 case MSG_INVALIDATE_RECT:
3312 return "MSG_INVALIDATE_RECT";
3313 case MSG_DIE:
3314 return "MSG_DIE";
3315 case MSG_RESIZED:
3316 return "MSG_RESIZED";
3317 case MSG_RESIZED_REPORT:
3318 return "MSG_RESIZED_REPORT";
3319 case MSG_WINDOW_FOCUS_CHANGED:
3320 return "MSG_WINDOW_FOCUS_CHANGED";
keunyoung30f420f2013-08-02 14:23:10 -07003321 case MSG_DISPATCH_INPUT_EVENT:
3322 return "MSG_DISPATCH_INPUT_EVENT";
Jeff Browna175a5b2012-02-15 19:18:31 -08003323 case MSG_DISPATCH_APP_VISIBILITY:
3324 return "MSG_DISPATCH_APP_VISIBILITY";
3325 case MSG_DISPATCH_GET_NEW_SURFACE:
3326 return "MSG_DISPATCH_GET_NEW_SURFACE";
Jeff Browna175a5b2012-02-15 19:18:31 -08003327 case MSG_DISPATCH_KEY_FROM_IME:
3328 return "MSG_DISPATCH_KEY_FROM_IME";
3329 case MSG_FINISH_INPUT_CONNECTION:
3330 return "MSG_FINISH_INPUT_CONNECTION";
3331 case MSG_CHECK_FOCUS:
3332 return "MSG_CHECK_FOCUS";
3333 case MSG_CLOSE_SYSTEM_DIALOGS:
3334 return "MSG_CLOSE_SYSTEM_DIALOGS";
3335 case MSG_DISPATCH_DRAG_EVENT:
3336 return "MSG_DISPATCH_DRAG_EVENT";
3337 case MSG_DISPATCH_DRAG_LOCATION_EVENT:
3338 return "MSG_DISPATCH_DRAG_LOCATION_EVENT";
3339 case MSG_DISPATCH_SYSTEM_UI_VISIBILITY:
3340 return "MSG_DISPATCH_SYSTEM_UI_VISIBILITY";
3341 case MSG_UPDATE_CONFIGURATION:
3342 return "MSG_UPDATE_CONFIGURATION";
Jeff Browna175a5b2012-02-15 19:18:31 -08003343 case MSG_PROCESS_INPUT_EVENTS:
3344 return "MSG_PROCESS_INPUT_EVENTS";
Svetoslav Ganov005b83b2012-04-16 18:17:17 -07003345 case MSG_CLEAR_ACCESSIBILITY_FOCUS_HOST:
3346 return "MSG_CLEAR_ACCESSIBILITY_FOCUS_HOST";
Craig Mautner5702d4d2012-06-30 14:10:16 -07003347 case MSG_WINDOW_MOVED:
3348 return "MSG_WINDOW_MOVED";
Michael Wright899d7052014-04-23 17:23:39 -07003349 case MSG_SYNTHESIZE_INPUT_EVENT:
3350 return "MSG_SYNTHESIZE_INPUT_EVENT";
Craig Mautner9c795042014-10-28 19:59:59 -07003351 case MSG_DISPATCH_WINDOW_SHOWN:
3352 return "MSG_DISPATCH_WINDOW_SHOWN";
Vladislav Kaznacheevec6a4472016-01-22 12:21:52 -08003353 case MSG_UPDATE_POINTER_ICON:
3354 return "MSG_UPDATE_POINTER_ICON";
Jeff Browna175a5b2012-02-15 19:18:31 -08003355 }
3356 return super.getMessageName(message);
Romain Guyf9284692011-07-13 18:46:21 -07003357 }
Romain Guyf9284692011-07-13 18:46:21 -07003358
Jeff Browna175a5b2012-02-15 19:18:31 -08003359 @Override
3360 public void handleMessage(Message msg) {
3361 switch (msg.what) {
3362 case MSG_INVALIDATE:
3363 ((View) msg.obj).invalidate();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003364 break;
Jeff Browna175a5b2012-02-15 19:18:31 -08003365 case MSG_INVALIDATE_RECT:
3366 final View.AttachInfo.InvalidateInfo info = (View.AttachInfo.InvalidateInfo) msg.obj;
3367 info.target.invalidate(info.left, info.top, info.right, info.bottom);
Svetoslav Ganovabae2a12012-11-27 16:59:37 -08003368 info.recycle();
Jeff Browna175a5b2012-02-15 19:18:31 -08003369 break;
Jeff Browna175a5b2012-02-15 19:18:31 -08003370 case MSG_PROCESS_INPUT_EVENTS:
3371 mProcessInputEventsScheduled = false;
3372 doProcessInputEvents();
3373 break;
3374 case MSG_DISPATCH_APP_VISIBILITY:
3375 handleAppVisibility(msg.arg1 != 0);
3376 break;
3377 case MSG_DISPATCH_GET_NEW_SURFACE:
3378 handleGetNewSurface();
3379 break;
Svetoslav Ganov758143e2012-08-06 16:40:27 -07003380 case MSG_RESIZED: {
3381 // Recycled in the fall through...
3382 SomeArgs args = (SomeArgs) msg.obj;
Romain Guydfab3632012-10-03 14:53:25 -07003383 if (mWinFrame.equals(args.arg1)
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003384 && mPendingOverscanInsets.equals(args.arg5)
Romain Guydfab3632012-10-03 14:53:25 -07003385 && mPendingContentInsets.equals(args.arg2)
Adrian Roosfa104232014-06-20 16:10:14 -07003386 && mPendingStableInsets.equals(args.arg6)
Romain Guydfab3632012-10-03 14:53:25 -07003387 && mPendingVisibleInsets.equals(args.arg3)
Filip Gruszczynski2217f612015-05-26 11:32:08 -07003388 && mPendingOutsets.equals(args.arg7)
Jorim Jaggi0fe356e2016-01-05 14:43:25 +01003389 && mPendingBackDropFrame.equals(args.arg8)
Jorim Jaggia4a58ef2016-01-27 02:10:08 -08003390 && args.arg4 == null
3391 && args.argi1 == 0) {
Jeff Browna175a5b2012-02-15 19:18:31 -08003392 break;
Romain Guycdb86672010-03-18 18:54:50 -07003393 }
Svetoslav Ganov758143e2012-08-06 16:40:27 -07003394 } // fall through...
Jeff Browna175a5b2012-02-15 19:18:31 -08003395 case MSG_RESIZED_REPORT:
3396 if (mAdded) {
Svetoslav Ganov758143e2012-08-06 16:40:27 -07003397 SomeArgs args = (SomeArgs) msg.obj;
3398
3399 Configuration config = (Configuration) args.arg4;
Jeff Browna175a5b2012-02-15 19:18:31 -08003400 if (config != null) {
3401 updateConfiguration(config, false);
3402 }
Svetoslav Ganov758143e2012-08-06 16:40:27 -07003403
3404 mWinFrame.set((Rect) args.arg1);
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003405 mPendingOverscanInsets.set((Rect) args.arg5);
Svetoslav Ganov758143e2012-08-06 16:40:27 -07003406 mPendingContentInsets.set((Rect) args.arg2);
Adrian Roosfa104232014-06-20 16:10:14 -07003407 mPendingStableInsets.set((Rect) args.arg6);
Svetoslav Ganov758143e2012-08-06 16:40:27 -07003408 mPendingVisibleInsets.set((Rect) args.arg3);
Filip Gruszczynski2217f612015-05-26 11:32:08 -07003409 mPendingOutsets.set((Rect) args.arg7);
Jorim Jaggia7262a82015-11-03 15:15:40 +01003410 mPendingBackDropFrame.set((Rect) args.arg8);
Jorim Jaggia4a58ef2016-01-27 02:10:08 -08003411 mForceNextWindowRelayout = args.argi1 != 0;
Jorim Jaggi0ffd49c2016-02-12 15:04:21 -08003412 mPendingAlwaysConsumeNavBar = args.argi2 != 0;
Svetoslav Ganov758143e2012-08-06 16:40:27 -07003413
3414 args.recycle();
3415
Jeff Browna175a5b2012-02-15 19:18:31 -08003416 if (msg.what == MSG_RESIZED_REPORT) {
3417 mReportNextDraw = true;
3418 }
Romain Guy59a12ca2011-06-09 17:48:21 -07003419
Yohei Yukawad2e56472015-07-28 17:00:33 -07003420 if (mView != null) {
3421 forceLayout(mView);
3422 }
3423
Jeff Browna175a5b2012-02-15 19:18:31 -08003424 requestLayout();
3425 }
3426 break;
Craig Mautner5702d4d2012-06-30 14:10:16 -07003427 case MSG_WINDOW_MOVED:
3428 if (mAdded) {
3429 final int w = mWinFrame.width();
3430 final int h = mWinFrame.height();
3431 final int l = msg.arg1;
3432 final int t = msg.arg2;
3433 mWinFrame.left = l;
3434 mWinFrame.right = l + w;
3435 mWinFrame.top = t;
3436 mWinFrame.bottom = t + h;
3437
Jorim Jaggia7262a82015-11-03 15:15:40 +01003438 mPendingBackDropFrame.set(mWinFrame);
3439
Jorim Jaggi844e1712016-01-13 17:39:25 -08003440 // Suppress layouts during resizing - a correct layout will happen when resizing
3441 // is done, and this just increases system load.
Jorim Jaggi2e95a482016-01-14 17:36:55 -08003442 boolean isDockedDivider = mWindowAttributes.type == TYPE_DOCK_DIVIDER;
3443 boolean suppress = (mDragResizing && mResizeMode == RESIZE_MODE_DOCKED_DIVIDER)
3444 || isDockedDivider;
Jorim Jaggi844e1712016-01-13 17:39:25 -08003445 if (!suppress) {
3446 if (mView != null) {
3447 forceLayout(mView);
3448 }
3449 requestLayout();
Jorim Jaggi2e95a482016-01-14 17:36:55 -08003450 } else {
3451 maybeHandleWindowMove(mWinFrame);
Yohei Yukawad2e56472015-07-28 17:00:33 -07003452 }
Craig Mautner5702d4d2012-06-30 14:10:16 -07003453 }
3454 break;
Jeff Browna175a5b2012-02-15 19:18:31 -08003455 case MSG_WINDOW_FOCUS_CHANGED: {
3456 if (mAdded) {
3457 boolean hasWindowFocus = msg.arg1 != 0;
3458 mAttachInfo.mHasWindowFocus = hasWindowFocus;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003459
Jeff Browna175a5b2012-02-15 19:18:31 -08003460 profileRendering(hasWindowFocus);
3461
3462 if (hasWindowFocus) {
3463 boolean inTouchMode = msg.arg2 != 0;
3464 ensureTouchModeLocally(inTouchMode);
3465
Romain Guye55945e2013-04-04 15:26:04 -07003466 if (mAttachInfo.mHardwareRenderer != null && mSurface.isValid()){
Jeff Browna175a5b2012-02-15 19:18:31 -08003467 mFullRedrawNeeded = true;
Dianne Hackborn64825172011-03-02 21:32:58 -08003468 try {
Alan Viveretteccb11e12014-07-08 16:04:02 -07003469 final WindowManager.LayoutParams lp = mWindowAttributes;
Alan Viverette49a22e82014-07-12 20:01:27 -07003470 final Rect surfaceInsets = lp != null ? lp.surfaceInsets : null;
Romain Guy3696779b2013-01-28 14:04:07 -08003471 mAttachInfo.mHardwareRenderer.initializeIfNeeded(
Alan Viverette50210d92015-05-14 18:05:36 -07003472 mWidth, mHeight, mAttachInfo, mSurface, surfaceInsets);
Igor Murashkina86ab6402013-08-30 12:58:36 -07003473 } catch (OutOfResourcesException e) {
Filip Gruszczynski34dab0b2015-12-22 08:29:07 -08003474 Log.e(mTag, "OutOfResourcesException locking surface", e);
Jeff Browna175a5b2012-02-15 19:18:31 -08003475 try {
Jeff Brown98365d72012-08-19 20:30:52 -07003476 if (!mWindowSession.outOfMemory(mWindow)) {
Filip Gruszczynski34dab0b2015-12-22 08:29:07 -08003477 Slog.w(mTag, "No processes killed for memory; killing self");
Jeff Browna175a5b2012-02-15 19:18:31 -08003478 Process.killProcess(Process.myPid());
3479 }
3480 } catch (RemoteException ex) {
Dianne Hackborn64825172011-03-02 21:32:58 -08003481 }
Jeff Browna175a5b2012-02-15 19:18:31 -08003482 // Retry in a bit.
3483 sendMessageDelayed(obtainMessage(msg.what, msg.arg1, msg.arg2), 500);
3484 return;
Dianne Hackborn64825172011-03-02 21:32:58 -08003485 }
Dianne Hackborn64825172011-03-02 21:32:58 -08003486 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003487 }
Romain Guy8506ab42009-06-11 17:35:47 -07003488
Jeff Browna175a5b2012-02-15 19:18:31 -08003489 mLastWasImTarget = WindowManager.LayoutParams
3490 .mayUseInputMethod(mWindowAttributes.flags);
Romain Guy8506ab42009-06-11 17:35:47 -07003491
Jeff Browna175a5b2012-02-15 19:18:31 -08003492 InputMethodManager imm = InputMethodManager.peekInstance();
Yohei Yukawa5f059652015-05-14 22:16:41 -07003493 if (imm != null && mLastWasImTarget && !isInLocalFocusMode()) {
3494 imm.onPreWindowFocus(mView, hasWindowFocus);
3495 }
Jeff Browna175a5b2012-02-15 19:18:31 -08003496 if (mView != null) {
Jeff Browna175a5b2012-02-15 19:18:31 -08003497 mAttachInfo.mKeyDispatchState.reset();
3498 mView.dispatchWindowFocusChanged(hasWindowFocus);
Dianne Hackborn961cae92013-03-20 14:59:43 -07003499 mAttachInfo.mTreeObserver.dispatchOnWindowFocusChange(hasWindowFocus);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003500 }
svetoslavganov75986cf2009-05-14 22:28:01 -07003501
Jeff Browna175a5b2012-02-15 19:18:31 -08003502 // Note: must be done after the focus change callbacks,
3503 // so all of the view state is set up correctly.
3504 if (hasWindowFocus) {
keunyoung30f420f2013-08-02 14:23:10 -07003505 if (imm != null && mLastWasImTarget && !isInLocalFocusMode()) {
Yohei Yukawa5f059652015-05-14 22:16:41 -07003506 imm.onPostWindowFocus(mView, mView.findFocus(),
Jeff Browna175a5b2012-02-15 19:18:31 -08003507 mWindowAttributes.softInputMode,
3508 !mHasHadWindowFocus, mWindowAttributes.flags);
3509 }
3510 // Clear the forward bit. We can just do this directly, since
3511 // the window manager doesn't care about it.
3512 mWindowAttributes.softInputMode &=
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003513 ~WindowManager.LayoutParams.SOFT_INPUT_IS_FORWARD_NAVIGATION;
Jeff Browna175a5b2012-02-15 19:18:31 -08003514 ((WindowManager.LayoutParams)mView.getLayoutParams())
3515 .softInputMode &=
3516 ~WindowManager.LayoutParams.SOFT_INPUT_IS_FORWARD_NAVIGATION;
3517 mHasHadWindowFocus = true;
Jun Mukai347e5d42015-12-03 01:13:31 -08003518 } else if (mCapturingView != null) {
3519 releasePointerCapture(mCapturingView);
Jeff Browna175a5b2012-02-15 19:18:31 -08003520 }
svetoslavganov75986cf2009-05-14 22:28:01 -07003521 }
Jeff Browna175a5b2012-02-15 19:18:31 -08003522 } break;
3523 case MSG_DIE:
3524 doDie();
3525 break;
keunyoung30f420f2013-08-02 14:23:10 -07003526 case MSG_DISPATCH_INPUT_EVENT: {
Jae Seo6a6059a2014-04-17 21:35:29 -07003527 SomeArgs args = (SomeArgs)msg.obj;
3528 InputEvent event = (InputEvent)args.arg1;
3529 InputEventReceiver receiver = (InputEventReceiver)args.arg2;
3530 enqueueInputEvent(event, receiver, 0, true);
3531 args.recycle();
Jeff Browna175a5b2012-02-15 19:18:31 -08003532 } break;
Michael Wright899d7052014-04-23 17:23:39 -07003533 case MSG_SYNTHESIZE_INPUT_EVENT: {
3534 InputEvent event = (InputEvent)msg.obj;
3535 enqueueInputEvent(event, null, QueuedInputEvent.FLAG_UNHANDLED, true);
3536 } break;
Jeff Browna175a5b2012-02-15 19:18:31 -08003537 case MSG_DISPATCH_KEY_FROM_IME: {
3538 if (LOCAL_LOGV) Log.v(
3539 TAG, "Dispatching key "
3540 + msg.obj + " from IME to " + mView);
3541 KeyEvent event = (KeyEvent)msg.obj;
3542 if ((event.getFlags()&KeyEvent.FLAG_FROM_SYSTEM) != 0) {
3543 // The IME is trying to say this event is from the
3544 // system! Bad bad bad!
3545 //noinspection UnusedAssignment
Michael Wright899d7052014-04-23 17:23:39 -07003546 event = KeyEvent.changeFlags(event, event.getFlags() &
3547 ~KeyEvent.FLAG_FROM_SYSTEM);
Jeff Browna175a5b2012-02-15 19:18:31 -08003548 }
3549 enqueueInputEvent(event, null, QueuedInputEvent.FLAG_DELIVER_POST_IME, true);
3550 } break;
3551 case MSG_FINISH_INPUT_CONNECTION: {
3552 InputMethodManager imm = InputMethodManager.peekInstance();
3553 if (imm != null) {
3554 imm.reportFinishInputConnection((InputConnection)msg.obj);
3555 }
3556 } break;
3557 case MSG_CHECK_FOCUS: {
3558 InputMethodManager imm = InputMethodManager.peekInstance();
3559 if (imm != null) {
3560 imm.checkFocus();
3561 }
3562 } break;
3563 case MSG_CLOSE_SYSTEM_DIALOGS: {
3564 if (mView != null) {
3565 mView.onCloseSystemDialogs((String)msg.obj);
3566 }
3567 } break;
3568 case MSG_DISPATCH_DRAG_EVENT:
3569 case MSG_DISPATCH_DRAG_LOCATION_EVENT: {
3570 DragEvent event = (DragEvent)msg.obj;
3571 event.mLocalState = mLocalDragState; // only present when this app called startDrag()
3572 handleDragEvent(event);
3573 } break;
3574 case MSG_DISPATCH_SYSTEM_UI_VISIBILITY: {
Romain Guyfbb93fa2012-12-03 18:50:35 -08003575 handleDispatchSystemUiVisibilityChanged((SystemUiVisibilityInfo) msg.obj);
Jeff Browna175a5b2012-02-15 19:18:31 -08003576 } break;
3577 case MSG_UPDATE_CONFIGURATION: {
3578 Configuration config = (Configuration)msg.obj;
3579 if (config.isOtherSeqNewer(mLastConfiguration)) {
3580 config = mLastConfiguration;
3581 }
3582 updateConfiguration(config, false);
3583 } break;
Svetoslav Ganov005b83b2012-04-16 18:17:17 -07003584 case MSG_CLEAR_ACCESSIBILITY_FOCUS_HOST: {
Svetoslav Ganov45a02e02012-06-17 15:07:29 -07003585 setAccessibilityFocus(null, null);
Svetoslav Ganov005b83b2012-04-16 18:17:17 -07003586 } break;
Dianne Hackborna53de062012-05-08 18:53:51 -07003587 case MSG_INVALIDATE_WORLD: {
Romain Guyf84208f2012-09-13 22:50:18 -07003588 if (mView != null) {
3589 invalidateWorld(mView);
3590 }
Dianne Hackborna53de062012-05-08 18:53:51 -07003591 } break;
Craig Mautner9c795042014-10-28 19:59:59 -07003592 case MSG_DISPATCH_WINDOW_SHOWN: {
3593 handleDispatchWindowShown();
Clara Bayarri75e09792015-07-29 16:20:40 +01003594 } break;
3595 case MSG_REQUEST_KEYBOARD_SHORTCUTS: {
3596 IResultReceiver receiver = (IResultReceiver) msg.obj;
3597 handleRequestKeyboardShortcuts(receiver);
3598 } break;
Vladislav Kaznacheevec6a4472016-01-22 12:21:52 -08003599 case MSG_UPDATE_POINTER_ICON: {
3600 MotionEvent event = (MotionEvent) msg.obj;
3601 resetPointerIcon(event);
3602 } break;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003603 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003604 }
3605 }
Romain Guy51e4d4d2012-03-15 18:30:47 -07003606
Jeff Browna175a5b2012-02-15 19:18:31 -08003607 final ViewRootHandler mHandler = new ViewRootHandler();
Svetoslav Ganov8643aa02011-04-20 12:12:33 -07003608
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003609 /**
3610 * Something in the current window tells us we need to change the touch mode. For
3611 * example, we are not in touch mode, and the user touches the screen.
3612 *
3613 * If the touch mode has changed, tell the window manager, and handle it locally.
3614 *
3615 * @param inTouchMode Whether we want to be in touch mode.
3616 * @return True if the touch mode changed and focus changed was changed as a result
3617 */
3618 boolean ensureTouchMode(boolean inTouchMode) {
3619 if (DBG) Log.d("touchmode", "ensureTouchMode(" + inTouchMode + "), current "
3620 + "touch mode is " + mAttachInfo.mInTouchMode);
3621 if (mAttachInfo.mInTouchMode == inTouchMode) return false;
3622
3623 // tell the window manager
3624 try {
Matt Wud6bc96d2016-01-14 12:59:24 -08003625 mWindowSession.setInTouchMode(inTouchMode);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003626 } catch (RemoteException e) {
3627 throw new RuntimeException(e);
3628 }
3629
3630 // handle the change
Romain Guy2d4cff62010-04-09 15:39:00 -07003631 return ensureTouchModeLocally(inTouchMode);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003632 }
3633
3634 /**
3635 * Ensure that the touch mode for this window is set, and if it is changing,
3636 * take the appropriate action.
3637 * @param inTouchMode Whether we want to be in touch mode.
3638 * @return True if the touch mode changed and focus changed was changed as a result
3639 */
Romain Guy2d4cff62010-04-09 15:39:00 -07003640 private boolean ensureTouchModeLocally(boolean inTouchMode) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003641 if (DBG) Log.d("touchmode", "ensureTouchModeLocally(" + inTouchMode + "), current "
3642 + "touch mode is " + mAttachInfo.mInTouchMode);
3643
3644 if (mAttachInfo.mInTouchMode == inTouchMode) return false;
3645
3646 mAttachInfo.mInTouchMode = inTouchMode;
3647 mAttachInfo.mTreeObserver.dispatchOnTouchModeChanged(inTouchMode);
3648
Romain Guy2d4cff62010-04-09 15:39:00 -07003649 return (inTouchMode) ? enterTouchMode() : leaveTouchMode();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003650 }
3651
3652 private boolean enterTouchMode() {
Alan Viveretteed7821a2013-07-24 15:49:23 -07003653 if (mView != null && mView.hasFocus()) {
3654 // note: not relying on mFocusedView here because this could
3655 // be when the window is first being added, and mFocused isn't
3656 // set yet.
3657 final View focused = mView.findFocus();
3658 if (focused != null && !focused.isFocusableInTouchMode()) {
3659 final ViewGroup ancestorToTakeFocus = findAncestorToTakeFocusInTouchMode(focused);
3660 if (ancestorToTakeFocus != null) {
3661 // there is an ancestor that wants focus after its
3662 // descendants that is focusable in touch mode.. give it
3663 // focus
3664 return ancestorToTakeFocus.requestFocus();
3665 } else {
Alan Viverette973f3b42013-08-13 16:57:28 -07003666 // There's nothing to focus. Clear and propagate through the
3667 // hierarchy, but don't attempt to place new focus.
Alan Viverette223622a2013-12-17 13:29:02 -08003668 focused.clearFocusInternal(null, true, false);
Alan Viveretteed7821a2013-07-24 15:49:23 -07003669 return true;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003670 }
3671 }
3672 }
3673 return false;
3674 }
3675
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003676 /**
3677 * Find an ancestor of focused that wants focus after its descendants and is
3678 * focusable in touch mode.
3679 * @param focused The currently focused view.
3680 * @return An appropriate view, or null if no such view exists.
3681 */
Romain Guya998dff2012-03-23 18:58:36 -07003682 private static ViewGroup findAncestorToTakeFocusInTouchMode(View focused) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003683 ViewParent parent = focused.getParent();
3684 while (parent instanceof ViewGroup) {
3685 final ViewGroup vgParent = (ViewGroup) parent;
3686 if (vgParent.getDescendantFocusability() == ViewGroup.FOCUS_AFTER_DESCENDANTS
3687 && vgParent.isFocusableInTouchMode()) {
3688 return vgParent;
3689 }
3690 if (vgParent.isRootNamespace()) {
3691 return null;
3692 } else {
3693 parent = vgParent.getParent();
3694 }
3695 }
3696 return null;
3697 }
3698
3699 private boolean leaveTouchMode() {
3700 if (mView != null) {
3701 if (mView.hasFocus()) {
Svetoslav Ganov149567f2013-01-08 15:23:34 -08003702 View focusedView = mView.findFocus();
3703 if (!(focusedView instanceof ViewGroup)) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003704 // some view has focus, let it keep it
Svetoslav Ganovcf8a3b82012-04-30 16:49:59 -07003705 return false;
Svetoslav Ganov149567f2013-01-08 15:23:34 -08003706 } else if (((ViewGroup) focusedView).getDescendantFocusability() !=
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003707 ViewGroup.FOCUS_AFTER_DESCENDANTS) {
3708 // some view group has focus, and doesn't prefer its children
3709 // over itself for focus, so let them keep it.
Svetoslav Ganovcf8a3b82012-04-30 16:49:59 -07003710 return false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003711 }
3712 }
Svetoslav Ganovcf8a3b82012-04-30 16:49:59 -07003713
3714 // find the best view to give focus to in this brave new non-touch-mode
3715 // world
3716 final View focused = focusSearch(null, View.FOCUS_DOWN);
3717 if (focused != null) {
3718 return focused.requestFocus(View.FOCUS_DOWN);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003719 }
3720 }
3721 return false;
3722 }
3723
Jeff Brownf9e989d2013-04-04 23:04:03 -07003724 /**
3725 * Base class for implementing a stage in the chain of responsibility
3726 * for processing input events.
3727 * <p>
3728 * Events are delivered to the stage by the {@link #deliver} method. The stage
3729 * then has the choice of finishing the event or forwarding it to the next stage.
3730 * </p>
3731 */
3732 abstract class InputStage {
3733 private final InputStage mNext;
3734
3735 protected static final int FORWARD = 0;
3736 protected static final int FINISH_HANDLED = 1;
3737 protected static final int FINISH_NOT_HANDLED = 2;
3738
3739 /**
3740 * Creates an input stage.
3741 * @param next The next stage to which events should be forwarded.
3742 */
3743 public InputStage(InputStage next) {
3744 mNext = next;
3745 }
3746
3747 /**
3748 * Delivers an event to be processed.
3749 */
3750 public final void deliver(QueuedInputEvent q) {
3751 if ((q.mFlags & QueuedInputEvent.FLAG_FINISHED) != 0) {
3752 forward(q);
Michael Wright17d28ca2013-10-31 17:47:45 -07003753 } else if (shouldDropInputEvent(q)) {
Jeff Brownf9e989d2013-04-04 23:04:03 -07003754 finish(q, false);
3755 } else {
3756 apply(q, onProcess(q));
3757 }
3758 }
3759
3760 /**
3761 * Marks the the input event as finished then forwards it to the next stage.
3762 */
3763 protected void finish(QueuedInputEvent q, boolean handled) {
3764 q.mFlags |= QueuedInputEvent.FLAG_FINISHED;
3765 if (handled) {
3766 q.mFlags |= QueuedInputEvent.FLAG_FINISHED_HANDLED;
3767 }
3768 forward(q);
3769 }
3770
3771 /**
3772 * Forwards the event to the next stage.
3773 */
3774 protected void forward(QueuedInputEvent q) {
3775 onDeliverToNext(q);
3776 }
3777
3778 /**
3779 * Applies a result code from {@link #onProcess} to the specified event.
3780 */
3781 protected void apply(QueuedInputEvent q, int result) {
3782 if (result == FORWARD) {
3783 forward(q);
3784 } else if (result == FINISH_HANDLED) {
3785 finish(q, true);
3786 } else if (result == FINISH_NOT_HANDLED) {
3787 finish(q, false);
3788 } else {
3789 throw new IllegalArgumentException("Invalid result: " + result);
3790 }
3791 }
3792
3793 /**
3794 * Called when an event is ready to be processed.
3795 * @return A result code indicating how the event was handled.
3796 */
3797 protected int onProcess(QueuedInputEvent q) {
3798 return FORWARD;
3799 }
3800
3801 /**
3802 * Called when an event is being delivered to the next stage.
3803 */
3804 protected void onDeliverToNext(QueuedInputEvent q) {
Michael Wright06a79252014-05-05 17:45:29 -07003805 if (DEBUG_INPUT_STAGES) {
Filip Gruszczynski34dab0b2015-12-22 08:29:07 -08003806 Log.v(mTag, "Done with " + getClass().getSimpleName() + ". " + q);
Michael Wright06a79252014-05-05 17:45:29 -07003807 }
Jeff Brownf9e989d2013-04-04 23:04:03 -07003808 if (mNext != null) {
3809 mNext.deliver(q);
3810 } else {
3811 finishInputEvent(q);
3812 }
3813 }
Jeff Brown5182c782013-10-15 20:31:52 -07003814
Michael Wright17d28ca2013-10-31 17:47:45 -07003815 protected boolean shouldDropInputEvent(QueuedInputEvent q) {
3816 if (mView == null || !mAdded) {
Filip Gruszczynski34dab0b2015-12-22 08:29:07 -08003817 Slog.w(mTag, "Dropping event due to root view being removed: " + q.mEvent);
Michael Wright17d28ca2013-10-31 17:47:45 -07003818 return true;
George Mount41725de2015-04-09 08:23:05 -07003819 } else if ((!mAttachInfo.mHasWindowFocus
3820 && !q.mEvent.isFromSource(InputDevice.SOURCE_CLASS_POINTER)) || mStopped
Joe LaPenna90776de2016-01-22 07:11:49 -08003821 || (mIsAmbientMode && !q.mEvent.isFromSource(InputDevice.SOURCE_CLASS_BUTTON))
3822 || (mPausedForTransition && !isBack(q.mEvent))) {
Wale Ogunwalec3672cd2014-11-05 15:17:35 -08003823 // This is a focus event and the window doesn't currently have input focus or
3824 // has stopped. This could be an event that came back from the previous stage
3825 // but the window has lost focus or stopped in the meantime.
3826 if (isTerminalInputEvent(q.mEvent)) {
3827 // Don't drop terminal input events, however mark them as canceled.
3828 q.mEvent.cancel();
Filip Gruszczynski34dab0b2015-12-22 08:29:07 -08003829 Slog.w(mTag, "Cancelling event due to no window focus: " + q.mEvent);
Wale Ogunwalec3672cd2014-11-05 15:17:35 -08003830 return false;
3831 }
3832
3833 // Drop non-terminal input events.
Filip Gruszczynski34dab0b2015-12-22 08:29:07 -08003834 Slog.w(mTag, "Dropping event due to no window focus: " + q.mEvent);
Michael Wright17d28ca2013-10-31 17:47:45 -07003835 return true;
3836 }
3837 return false;
3838 }
3839
Jeff Brown5182c782013-10-15 20:31:52 -07003840 void dump(String prefix, PrintWriter writer) {
3841 if (mNext != null) {
3842 mNext.dump(prefix, writer);
3843 }
3844 }
George Mount41725de2015-04-09 08:23:05 -07003845
3846 private boolean isBack(InputEvent event) {
3847 if (event instanceof KeyEvent) {
3848 return ((KeyEvent) event).getKeyCode() == KeyEvent.KEYCODE_BACK;
3849 } else {
3850 return false;
3851 }
3852 }
Jeff Brownf9e989d2013-04-04 23:04:03 -07003853 }
3854
3855 /**
3856 * Base class for implementing an input pipeline stage that supports
3857 * asynchronous and out-of-order processing of input events.
3858 * <p>
3859 * In addition to what a normal input stage can do, an asynchronous
3860 * input stage may also defer an input event that has been delivered to it
3861 * and finish or forward it later.
3862 * </p>
3863 */
3864 abstract class AsyncInputStage extends InputStage {
3865 private final String mTraceCounter;
3866
3867 private QueuedInputEvent mQueueHead;
3868 private QueuedInputEvent mQueueTail;
3869 private int mQueueLength;
3870
3871 protected static final int DEFER = 3;
3872
3873 /**
3874 * Creates an asynchronous input stage.
3875 * @param next The next stage to which events should be forwarded.
3876 * @param traceCounter The name of a counter to record the size of
3877 * the queue of pending events.
3878 */
3879 public AsyncInputStage(InputStage next, String traceCounter) {
3880 super(next);
3881 mTraceCounter = traceCounter;
3882 }
3883
3884 /**
3885 * Marks the event as deferred, which is to say that it will be handled
3886 * asynchronously. The caller is responsible for calling {@link #forward}
3887 * or {@link #finish} later when it is done handling the event.
3888 */
3889 protected void defer(QueuedInputEvent q) {
3890 q.mFlags |= QueuedInputEvent.FLAG_DEFERRED;
3891 enqueue(q);
3892 }
3893
3894 @Override
3895 protected void forward(QueuedInputEvent q) {
3896 // Clear the deferred flag.
3897 q.mFlags &= ~QueuedInputEvent.FLAG_DEFERRED;
3898
3899 // Fast path if the queue is empty.
3900 QueuedInputEvent curr = mQueueHead;
3901 if (curr == null) {
3902 super.forward(q);
3903 return;
3904 }
3905
3906 // Determine whether the event must be serialized behind any others
3907 // before it can be delivered to the next stage. This is done because
3908 // deferred events might be handled out of order by the stage.
3909 final int deviceId = q.mEvent.getDeviceId();
3910 QueuedInputEvent prev = null;
3911 boolean blocked = false;
3912 while (curr != null && curr != q) {
3913 if (!blocked && deviceId == curr.mEvent.getDeviceId()) {
3914 blocked = true;
3915 }
3916 prev = curr;
3917 curr = curr.mNext;
3918 }
3919
3920 // If the event is blocked, then leave it in the queue to be delivered later.
3921 // Note that the event might not yet be in the queue if it was not previously
3922 // deferred so we will enqueue it if needed.
3923 if (blocked) {
3924 if (curr == null) {
3925 enqueue(q);
3926 }
3927 return;
3928 }
3929
3930 // The event is not blocked. Deliver it immediately.
3931 if (curr != null) {
3932 curr = curr.mNext;
3933 dequeue(q, prev);
3934 }
3935 super.forward(q);
3936
3937 // Dequeuing this event may have unblocked successors. Deliver them.
3938 while (curr != null) {
3939 if (deviceId == curr.mEvent.getDeviceId()) {
3940 if ((curr.mFlags & QueuedInputEvent.FLAG_DEFERRED) != 0) {
3941 break;
3942 }
3943 QueuedInputEvent next = curr.mNext;
3944 dequeue(curr, prev);
3945 super.forward(curr);
3946 curr = next;
3947 } else {
3948 prev = curr;
3949 curr = curr.mNext;
3950 }
3951 }
3952 }
3953
3954 @Override
3955 protected void apply(QueuedInputEvent q, int result) {
3956 if (result == DEFER) {
3957 defer(q);
3958 } else {
3959 super.apply(q, result);
3960 }
3961 }
3962
3963 private void enqueue(QueuedInputEvent q) {
3964 if (mQueueTail == null) {
3965 mQueueHead = q;
3966 mQueueTail = q;
3967 } else {
3968 mQueueTail.mNext = q;
3969 mQueueTail = q;
3970 }
3971
3972 mQueueLength += 1;
3973 Trace.traceCounter(Trace.TRACE_TAG_INPUT, mTraceCounter, mQueueLength);
3974 }
3975
3976 private void dequeue(QueuedInputEvent q, QueuedInputEvent prev) {
3977 if (prev == null) {
3978 mQueueHead = q.mNext;
3979 } else {
3980 prev.mNext = q.mNext;
3981 }
3982 if (mQueueTail == q) {
3983 mQueueTail = prev;
3984 }
3985 q.mNext = null;
3986
3987 mQueueLength -= 1;
3988 Trace.traceCounter(Trace.TRACE_TAG_INPUT, mTraceCounter, mQueueLength);
3989 }
Jeff Brown5182c782013-10-15 20:31:52 -07003990
3991 @Override
3992 void dump(String prefix, PrintWriter writer) {
3993 writer.print(prefix);
3994 writer.print(getClass().getName());
3995 writer.print(": mQueueLength=");
3996 writer.println(mQueueLength);
3997
3998 super.dump(prefix, writer);
3999 }
Jeff Brownf9e989d2013-04-04 23:04:03 -07004000 }
4001
4002 /**
4003 * Delivers pre-ime input events to a native activity.
4004 * Does not support pointer events.
4005 */
Michael Wrighta44dd262013-04-10 21:12:00 -07004006 final class NativePreImeInputStage extends AsyncInputStage
4007 implements InputQueue.FinishedInputEventCallback {
Jeff Brownf9e989d2013-04-04 23:04:03 -07004008 public NativePreImeInputStage(InputStage next, String traceCounter) {
4009 super(next, traceCounter);
4010 }
4011
4012 @Override
4013 protected int onProcess(QueuedInputEvent q) {
Michael Wrighta44dd262013-04-10 21:12:00 -07004014 if (mInputQueue != null && q.mEvent instanceof KeyEvent) {
4015 mInputQueue.sendInputEvent(q.mEvent, q, true, this);
4016 return DEFER;
4017 }
Jeff Brownf9e989d2013-04-04 23:04:03 -07004018 return FORWARD;
4019 }
Michael Wrighta44dd262013-04-10 21:12:00 -07004020
4021 @Override
4022 public void onFinishedInputEvent(Object token, boolean handled) {
4023 QueuedInputEvent q = (QueuedInputEvent)token;
4024 if (handled) {
4025 finish(q, true);
4026 return;
4027 }
4028 forward(q);
4029 }
Jeff Brownf9e989d2013-04-04 23:04:03 -07004030 }
4031
4032 /**
4033 * Delivers pre-ime input events to the view hierarchy.
4034 * Does not support pointer events.
4035 */
4036 final class ViewPreImeInputStage extends InputStage {
4037 public ViewPreImeInputStage(InputStage next) {
4038 super(next);
4039 }
4040
4041 @Override
4042 protected int onProcess(QueuedInputEvent q) {
Jeff Brown481c1572012-03-09 14:41:15 -08004043 if (q.mEvent instanceof KeyEvent) {
Jeff Brownf9e989d2013-04-04 23:04:03 -07004044 return processKeyEvent(q);
4045 }
4046 return FORWARD;
4047 }
4048
4049 private int processKeyEvent(QueuedInputEvent q) {
4050 final KeyEvent event = (KeyEvent)q.mEvent;
4051 if (mView.dispatchKeyEventPreIme(event)) {
4052 return FINISH_HANDLED;
4053 }
4054 return FORWARD;
4055 }
4056 }
4057
4058 /**
4059 * Delivers input events to the ime.
4060 * Does not support pointer events.
4061 */
4062 final class ImeInputStage extends AsyncInputStage
4063 implements InputMethodManager.FinishedInputEventCallback {
4064 public ImeInputStage(InputStage next, String traceCounter) {
4065 super(next, traceCounter);
4066 }
4067
4068 @Override
4069 protected int onProcess(QueuedInputEvent q) {
keunyoung30f420f2013-08-02 14:23:10 -07004070 if (mLastWasImTarget && !isInLocalFocusMode()) {
Jeff Brownf9e989d2013-04-04 23:04:03 -07004071 InputMethodManager imm = InputMethodManager.peekInstance();
4072 if (imm != null) {
4073 final InputEvent event = q.mEvent;
Filip Gruszczynski34dab0b2015-12-22 08:29:07 -08004074 if (DEBUG_IMF) Log.v(mTag, "Sending input event to IME: " + event);
Jeff Brownf9e989d2013-04-04 23:04:03 -07004075 int result = imm.dispatchInputEvent(event, q, this, mHandler);
4076 if (result == InputMethodManager.DISPATCH_HANDLED) {
4077 return FINISH_HANDLED;
4078 } else if (result == InputMethodManager.DISPATCH_NOT_HANDLED) {
Adam Lesinskic0f6eed2013-10-28 16:03:19 -07004079 // The IME could not handle it, so skip along to the next InputStage
4080 return FORWARD;
Jeff Brownf9e989d2013-04-04 23:04:03 -07004081 } else {
4082 return DEFER; // callback will be invoked later
4083 }
4084 }
4085 }
4086 return FORWARD;
4087 }
4088
4089 @Override
4090 public void onFinishedInputEvent(Object token, boolean handled) {
4091 QueuedInputEvent q = (QueuedInputEvent)token;
4092 if (handled) {
4093 finish(q, true);
4094 return;
4095 }
Jeff Brownf9e989d2013-04-04 23:04:03 -07004096 forward(q);
4097 }
4098 }
4099
4100 /**
4101 * Performs early processing of post-ime input events.
4102 */
4103 final class EarlyPostImeInputStage extends InputStage {
4104 public EarlyPostImeInputStage(InputStage next) {
4105 super(next);
4106 }
4107
4108 @Override
4109 protected int onProcess(QueuedInputEvent q) {
4110 if (q.mEvent instanceof KeyEvent) {
4111 return processKeyEvent(q);
Jeff Brown4952dfd2011-11-30 19:23:22 -08004112 } else {
Jeff Brown481c1572012-03-09 14:41:15 -08004113 final int source = q.mEvent.getSource();
4114 if ((source & InputDevice.SOURCE_CLASS_POINTER) != 0) {
Jeff Brownf9e989d2013-04-04 23:04:03 -07004115 return processPointerEvent(q);
Jeff Brown481c1572012-03-09 14:41:15 -08004116 }
Jeff Brown4952dfd2011-11-30 19:23:22 -08004117 }
Jeff Brownf9e989d2013-04-04 23:04:03 -07004118 return FORWARD;
4119 }
4120
4121 private int processKeyEvent(QueuedInputEvent q) {
4122 final KeyEvent event = (KeyEvent)q.mEvent;
4123
4124 // If the key's purpose is to exit touch mode then we consume it
4125 // and consider it handled.
4126 if (checkForLeavingTouchModeAndConsume(event)) {
4127 return FINISH_HANDLED;
4128 }
4129
4130 // Make sure the fallback event policy sees all keys that will be
4131 // delivered to the view hierarchy.
4132 mFallbackEventHandler.preDispatchKeyEvent(event);
4133 return FORWARD;
4134 }
4135
4136 private int processPointerEvent(QueuedInputEvent q) {
4137 final MotionEvent event = (MotionEvent)q.mEvent;
4138
4139 // Translate the pointer event for compatibility, if needed.
4140 if (mTranslator != null) {
4141 mTranslator.translateEventInScreenToAppWindow(event);
4142 }
4143
4144 // Enter touch mode on down or scroll.
4145 final int action = event.getAction();
4146 if (action == MotionEvent.ACTION_DOWN || action == MotionEvent.ACTION_SCROLL) {
4147 ensureTouchMode(true);
4148 }
4149
4150 // Offset the scroll position.
4151 if (mCurScrollY != 0) {
4152 event.offsetLocation(0, mCurScrollY);
4153 }
4154
4155 // Remember the touch position for possible drag-initiation.
4156 if (event.isTouchEvent()) {
4157 mLastTouchPoint.x = event.getRawX();
4158 mLastTouchPoint.y = event.getRawY();
Vladislav Kaznacheevba761122016-01-22 12:09:45 -08004159 mLastTouchSource = event.getSource();
Jeff Brownf9e989d2013-04-04 23:04:03 -07004160 }
4161 return FORWARD;
Jeff Brown4952dfd2011-11-30 19:23:22 -08004162 }
4163 }
4164
Jeff Brownf9e989d2013-04-04 23:04:03 -07004165 /**
4166 * Delivers post-ime input events to a native activity.
4167 */
Michael Wrighta44dd262013-04-10 21:12:00 -07004168 final class NativePostImeInputStage extends AsyncInputStage
4169 implements InputQueue.FinishedInputEventCallback {
Jeff Brownf9e989d2013-04-04 23:04:03 -07004170 public NativePostImeInputStage(InputStage next, String traceCounter) {
4171 super(next, traceCounter);
4172 }
4173
4174 @Override
4175 protected int onProcess(QueuedInputEvent q) {
Michael Wrighta44dd262013-04-10 21:12:00 -07004176 if (mInputQueue != null) {
4177 mInputQueue.sendInputEvent(q.mEvent, q, false, this);
4178 return DEFER;
4179 }
Jeff Brownf9e989d2013-04-04 23:04:03 -07004180 return FORWARD;
4181 }
Michael Wrighta44dd262013-04-10 21:12:00 -07004182
4183 @Override
4184 public void onFinishedInputEvent(Object token, boolean handled) {
4185 QueuedInputEvent q = (QueuedInputEvent)token;
4186 if (handled) {
4187 finish(q, true);
4188 return;
4189 }
4190 forward(q);
4191 }
Jeff Brownf9e989d2013-04-04 23:04:03 -07004192 }
4193
4194 /**
4195 * Delivers post-ime input events to the view hierarchy.
4196 */
4197 final class ViewPostImeInputStage extends InputStage {
4198 public ViewPostImeInputStage(InputStage next) {
4199 super(next);
4200 }
4201
4202 @Override
4203 protected int onProcess(QueuedInputEvent q) {
Jeff Brown29c0ed22013-01-14 13:50:37 -08004204 if (q.mEvent instanceof KeyEvent) {
Jeff Brownf9e989d2013-04-04 23:04:03 -07004205 return processKeyEvent(q);
Jeff Brown29c0ed22013-01-14 13:50:37 -08004206 } else {
4207 final int source = q.mEvent.getSource();
Jeff Brownf9e989d2013-04-04 23:04:03 -07004208 if ((source & InputDevice.SOURCE_CLASS_POINTER) != 0) {
4209 return processPointerEvent(q);
4210 } else if ((source & InputDevice.SOURCE_CLASS_TRACKBALL) != 0) {
4211 return processTrackballEvent(q);
Jeff Brown29c0ed22013-01-14 13:50:37 -08004212 } else {
Jeff Brownf9e989d2013-04-04 23:04:03 -07004213 return processGenericMotionEvent(q);
Jeff Brown29c0ed22013-01-14 13:50:37 -08004214 }
4215 }
Jeff Brown29c0ed22013-01-14 13:50:37 -08004216 }
Jeff Brown29c0ed22013-01-14 13:50:37 -08004217
Michael Wright9d744c72014-02-18 21:27:42 -08004218 @Override
4219 protected void onDeliverToNext(QueuedInputEvent q) {
4220 if (mUnbufferedInputDispatch
4221 && q.mEvent instanceof MotionEvent
4222 && ((MotionEvent)q.mEvent).isTouchEvent()
4223 && isTerminalInputEvent(q.mEvent)) {
4224 mUnbufferedInputDispatch = false;
4225 scheduleConsumeBatchedInput();
4226 }
4227 super.onDeliverToNext(q);
4228 }
4229
Jeff Brownf9e989d2013-04-04 23:04:03 -07004230 private int processKeyEvent(QueuedInputEvent q) {
4231 final KeyEvent event = (KeyEvent)q.mEvent;
4232
4233 // Deliver the key to the view hierarchy.
4234 if (mView.dispatchKeyEvent(event)) {
4235 return FINISH_HANDLED;
Jeff Brown21bc5c92011-02-28 18:27:14 -08004236 }
Jeff Brownf9e989d2013-04-04 23:04:03 -07004237
Michael Wright17d28ca2013-10-31 17:47:45 -07004238 if (shouldDropInputEvent(q)) {
4239 return FINISH_NOT_HANDLED;
4240 }
4241
Jeff Brownf9e989d2013-04-04 23:04:03 -07004242 // If the Control modifier is held, try to interpret the key as a shortcut.
4243 if (event.getAction() == KeyEvent.ACTION_DOWN
4244 && event.isCtrlPressed()
4245 && event.getRepeatCount() == 0
4246 && !KeyEvent.isModifierKey(event.getKeyCode())) {
4247 if (mView.dispatchKeyShortcutEvent(event)) {
4248 return FINISH_HANDLED;
4249 }
Michael Wright17d28ca2013-10-31 17:47:45 -07004250 if (shouldDropInputEvent(q)) {
4251 return FINISH_NOT_HANDLED;
4252 }
Jeff Brownf9e989d2013-04-04 23:04:03 -07004253 }
4254
4255 // Apply the fallback event policy.
4256 if (mFallbackEventHandler.dispatchKeyEvent(event)) {
4257 return FINISH_HANDLED;
4258 }
Michael Wright17d28ca2013-10-31 17:47:45 -07004259 if (shouldDropInputEvent(q)) {
4260 return FINISH_NOT_HANDLED;
4261 }
Jeff Brownf9e989d2013-04-04 23:04:03 -07004262
4263 // Handle automatic focus changes.
4264 if (event.getAction() == KeyEvent.ACTION_DOWN) {
4265 int direction = 0;
4266 switch (event.getKeyCode()) {
4267 case KeyEvent.KEYCODE_DPAD_LEFT:
4268 if (event.hasNoModifiers()) {
4269 direction = View.FOCUS_LEFT;
4270 }
4271 break;
4272 case KeyEvent.KEYCODE_DPAD_RIGHT:
4273 if (event.hasNoModifiers()) {
4274 direction = View.FOCUS_RIGHT;
4275 }
4276 break;
4277 case KeyEvent.KEYCODE_DPAD_UP:
4278 if (event.hasNoModifiers()) {
4279 direction = View.FOCUS_UP;
4280 }
4281 break;
4282 case KeyEvent.KEYCODE_DPAD_DOWN:
4283 if (event.hasNoModifiers()) {
4284 direction = View.FOCUS_DOWN;
4285 }
4286 break;
4287 case KeyEvent.KEYCODE_TAB:
4288 if (event.hasNoModifiers()) {
4289 direction = View.FOCUS_FORWARD;
4290 } else if (event.hasModifiers(KeyEvent.META_SHIFT_ON)) {
4291 direction = View.FOCUS_BACKWARD;
4292 }
4293 break;
4294 }
4295 if (direction != 0) {
4296 View focused = mView.findFocus();
4297 if (focused != null) {
4298 View v = focused.focusSearch(direction);
4299 if (v != null && v != focused) {
4300 // do the math the get the interesting rect
4301 // of previous focused into the coord system of
4302 // newly focused view
4303 focused.getFocusedRect(mTempRect);
4304 if (mView instanceof ViewGroup) {
4305 ((ViewGroup) mView).offsetDescendantRectToMyCoords(
4306 focused, mTempRect);
4307 ((ViewGroup) mView).offsetRectIntoDescendantCoords(
4308 v, mTempRect);
4309 }
4310 if (v.requestFocus(direction, mTempRect)) {
4311 playSoundEffect(SoundEffectConstants
4312 .getContantForFocusDirection(direction));
4313 return FINISH_HANDLED;
4314 }
4315 }
4316
4317 // Give the focused view a last chance to handle the dpad key.
4318 if (mView.dispatchUnhandledMove(focused, direction)) {
4319 return FINISH_HANDLED;
4320 }
4321 } else {
4322 // find the best view to give focus to in this non-touch-mode with no-focus
4323 View v = focusSearch(null, direction);
4324 if (v != null && v.requestFocus(direction)) {
4325 return FINISH_HANDLED;
4326 }
4327 }
4328 }
4329 }
4330 return FORWARD;
Jeff Brown21bc5c92011-02-28 18:27:14 -08004331 }
4332
Jeff Brownf9e989d2013-04-04 23:04:03 -07004333 private int processPointerEvent(QueuedInputEvent q) {
4334 final MotionEvent event = (MotionEvent)q.mEvent;
4335
Vladislav Kaznacheev527905e2016-02-16 16:20:56 -08004336 mAttachInfo.mUnbufferedDispatchRequested = false;
4337 final View eventTarget =
4338 (event.isFromSource(InputDevice.SOURCE_MOUSE) && mCapturingView != null) ?
4339 mCapturingView : mView;
4340 mAttachInfo.mHandlingPointerEvent = true;
4341 boolean handled = eventTarget.dispatchPointerEvent(event);
4342 maybeUpdatePointerIcon(event);
4343 mAttachInfo.mHandlingPointerEvent = false;
4344 if (mAttachInfo.mUnbufferedDispatchRequested && !mUnbufferedInputDispatch) {
4345 mUnbufferedInputDispatch = true;
4346 if (mConsumeBatchedInputScheduled) {
4347 scheduleConsumeBatchedInputImmediately();
4348 }
4349 }
4350 return handled ? FINISH_HANDLED : FORWARD;
4351 }
4352
4353 private void maybeUpdatePointerIcon(MotionEvent event) {
Jun Mukai1db53972015-09-11 18:08:31 -07004354 if (event.getPointerCount() == 1
4355 && event.isFromSource(InputDevice.SOURCE_MOUSE)) {
4356 if (event.getActionMasked() == MotionEvent.ACTION_HOVER_ENTER
4357 || event.getActionMasked() == MotionEvent.ACTION_HOVER_EXIT) {
4358 // Other apps or the window manager may change the icon shape outside of
4359 // this app, therefore the icon shape has to be reset on enter/exit event.
4360 mPointerIconShape = PointerIcon.STYLE_NOT_SPECIFIED;
4361 }
4362
Vladislav Kaznacheevec6a4472016-01-22 12:21:52 -08004363 if (event.getActionMasked() != MotionEvent.ACTION_HOVER_EXIT) {
4364 if (!updatePointerIcon(event) &&
4365 event.getActionMasked() == MotionEvent.ACTION_HOVER_MOVE) {
4366 mPointerIconShape = PointerIcon.STYLE_NOT_SPECIFIED;
Jun Mukai1db53972015-09-11 18:08:31 -07004367 }
4368 }
4369 }
Jeff Brown3915bb82010-11-05 15:02:16 -07004370 }
4371
Jeff Brownf9e989d2013-04-04 23:04:03 -07004372 private int processTrackballEvent(QueuedInputEvent q) {
4373 final MotionEvent event = (MotionEvent)q.mEvent;
4374
4375 if (mView.dispatchTrackballEvent(event)) {
4376 return FINISH_HANDLED;
4377 }
4378 return FORWARD;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004379 }
4380
Jeff Brownf9e989d2013-04-04 23:04:03 -07004381 private int processGenericMotionEvent(QueuedInputEvent q) {
4382 final MotionEvent event = (MotionEvent)q.mEvent;
Jeff Brown00fa7bd2010-07-02 15:37:36 -07004383
Jeff Brownf9e989d2013-04-04 23:04:03 -07004384 // Deliver the event to the view.
4385 if (mView.dispatchGenericMotionEvent(event)) {
4386 return FINISH_HANDLED;
4387 }
4388 return FORWARD;
Jeff Brown3915bb82010-11-05 15:02:16 -07004389 }
Jeff Brown00fa7bd2010-07-02 15:37:36 -07004390 }
4391
Vladislav Kaznacheevec6a4472016-01-22 12:21:52 -08004392 private void resetPointerIcon(MotionEvent event) {
4393 mPointerIconShape = PointerIcon.STYLE_NOT_SPECIFIED;
4394 updatePointerIcon(event);
4395 }
4396
4397 private boolean updatePointerIcon(MotionEvent event) {
4398 final float x = event.getX();
4399 final float y = event.getY();
Andrii Kulian33c1bc52016-02-29 10:38:59 -08004400 if (mView == null) {
4401 // E.g. click outside a popup to dismiss it
4402 Slog.d(mTag, "updatePointerIcon called after view was removed");
4403 return false;
4404 }
Vladislav Kaznacheevec6a4472016-01-22 12:21:52 -08004405 if (x < 0 || x >= mView.getWidth() || y < 0 || y >= mView.getHeight()) {
Andrii Kulian33c1bc52016-02-29 10:38:59 -08004406 // E.g. when moving window divider with mouse
4407 Slog.d(mTag, "updatePointerIcon called with position out of bounds");
Vladislav Kaznacheevec6a4472016-01-22 12:21:52 -08004408 return false;
4409 }
4410 final PointerIcon pointerIcon = mView.getPointerIcon(event, x, y);
4411 final int pointerShape = (pointerIcon != null) ?
4412 pointerIcon.getStyle() : PointerIcon.STYLE_DEFAULT;
4413
4414 if (mPointerIconShape != pointerShape) {
4415 mPointerIconShape = pointerShape;
4416 if (mPointerIconShape != PointerIcon.STYLE_CUSTOM) {
4417 mCustomPointerIcon = null;
4418 InputManager.getInstance().setPointerIconShape(pointerShape);
4419 return true;
4420 }
4421 }
4422 if (mPointerIconShape == PointerIcon.STYLE_CUSTOM &&
4423 !pointerIcon.equals(mCustomPointerIcon)) {
4424 mCustomPointerIcon = pointerIcon;
4425 InputManager.getInstance().setCustomPointerIcon(mCustomPointerIcon);
4426 }
4427 return true;
4428 }
4429
Jeff Brownf9e989d2013-04-04 23:04:03 -07004430 /**
Jeff Brown678a1252013-04-09 17:46:25 -07004431 * Performs synthesis of new input events from unhandled input events.
Jeff Brownf9e989d2013-04-04 23:04:03 -07004432 */
4433 final class SyntheticInputStage extends InputStage {
Jeff Brown678a1252013-04-09 17:46:25 -07004434 private final SyntheticTrackballHandler mTrackball = new SyntheticTrackballHandler();
4435 private final SyntheticJoystickHandler mJoystick = new SyntheticJoystickHandler();
4436 private final SyntheticTouchNavigationHandler mTouchNavigation =
4437 new SyntheticTouchNavigationHandler();
Michael Wright899d7052014-04-23 17:23:39 -07004438 private final SyntheticKeyboardHandler mKeyboard = new SyntheticKeyboardHandler();
Jeff Brownf9e989d2013-04-04 23:04:03 -07004439
4440 public SyntheticInputStage() {
4441 super(null);
Jeff Brown21bc5c92011-02-28 18:27:14 -08004442 }
4443
Jeff Brownf9e989d2013-04-04 23:04:03 -07004444 @Override
4445 protected int onProcess(QueuedInputEvent q) {
4446 q.mFlags |= QueuedInputEvent.FLAG_RESYNTHESIZED;
4447 if (q.mEvent instanceof MotionEvent) {
Jeff Brown678a1252013-04-09 17:46:25 -07004448 final MotionEvent event = (MotionEvent)q.mEvent;
4449 final int source = event.getSource();
Jeff Brownf9e989d2013-04-04 23:04:03 -07004450 if ((source & InputDevice.SOURCE_CLASS_TRACKBALL) != 0) {
Jeff Brown678a1252013-04-09 17:46:25 -07004451 mTrackball.process(event);
4452 return FINISH_HANDLED;
Jeff Brownf9e989d2013-04-04 23:04:03 -07004453 } else if ((source & InputDevice.SOURCE_CLASS_JOYSTICK) != 0) {
Jeff Brown678a1252013-04-09 17:46:25 -07004454 mJoystick.process(event);
4455 return FINISH_HANDLED;
Jeff Brownf9e989d2013-04-04 23:04:03 -07004456 } else if ((source & InputDevice.SOURCE_TOUCH_NAVIGATION)
4457 == InputDevice.SOURCE_TOUCH_NAVIGATION) {
Jeff Brown678a1252013-04-09 17:46:25 -07004458 mTouchNavigation.process(event);
4459 return FINISH_HANDLED;
Jeff Brownf9e989d2013-04-04 23:04:03 -07004460 }
Michael Wright899d7052014-04-23 17:23:39 -07004461 } else if ((q.mFlags & QueuedInputEvent.FLAG_UNHANDLED) != 0) {
4462 mKeyboard.process((KeyEvent)q.mEvent);
4463 return FINISH_HANDLED;
Jeff Brownf9e989d2013-04-04 23:04:03 -07004464 }
Michael Wright899d7052014-04-23 17:23:39 -07004465
Jeff Brownf9e989d2013-04-04 23:04:03 -07004466 return FORWARD;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004467 }
4468
Jeff Brownf9e989d2013-04-04 23:04:03 -07004469 @Override
4470 protected void onDeliverToNext(QueuedInputEvent q) {
4471 if ((q.mFlags & QueuedInputEvent.FLAG_RESYNTHESIZED) == 0) {
4472 // Cancel related synthetic events if any prior stage has handled the event.
4473 if (q.mEvent instanceof MotionEvent) {
Jeff Brown678a1252013-04-09 17:46:25 -07004474 final MotionEvent event = (MotionEvent)q.mEvent;
4475 final int source = event.getSource();
Jeff Brownf9e989d2013-04-04 23:04:03 -07004476 if ((source & InputDevice.SOURCE_CLASS_TRACKBALL) != 0) {
Jeff Brown678a1252013-04-09 17:46:25 -07004477 mTrackball.cancel(event);
Jeff Brownf9e989d2013-04-04 23:04:03 -07004478 } else if ((source & InputDevice.SOURCE_CLASS_JOYSTICK) != 0) {
Jeff Brown678a1252013-04-09 17:46:25 -07004479 mJoystick.cancel(event);
Jeff Brownf9e989d2013-04-04 23:04:03 -07004480 } else if ((source & InputDevice.SOURCE_TOUCH_NAVIGATION)
4481 == InputDevice.SOURCE_TOUCH_NAVIGATION) {
Jeff Brown678a1252013-04-09 17:46:25 -07004482 mTouchNavigation.cancel(event);
Jeff Brownf9e989d2013-04-04 23:04:03 -07004483 }
4484 }
4485 }
4486 super.onDeliverToNext(q);
4487 }
Jeff Brown678a1252013-04-09 17:46:25 -07004488 }
Jeff Brownf9e989d2013-04-04 23:04:03 -07004489
Jeff Brown678a1252013-04-09 17:46:25 -07004490 /**
4491 * Creates dpad events from unhandled trackball movements.
4492 */
4493 final class SyntheticTrackballHandler {
4494 private final TrackballAxis mX = new TrackballAxis();
4495 private final TrackballAxis mY = new TrackballAxis();
4496 private long mLastTime;
Jeff Brownf9e989d2013-04-04 23:04:03 -07004497
Jeff Brown678a1252013-04-09 17:46:25 -07004498 public void process(MotionEvent event) {
Jeff Brownf9e989d2013-04-04 23:04:03 -07004499 // Translate the trackball event into DPAD keys and try to deliver those.
Jeff Brownf9e989d2013-04-04 23:04:03 -07004500 long curTime = SystemClock.uptimeMillis();
Jeff Brown678a1252013-04-09 17:46:25 -07004501 if ((mLastTime + MAX_TRACKBALL_DELAY) < curTime) {
Jeff Brownf9e989d2013-04-04 23:04:03 -07004502 // It has been too long since the last movement,
4503 // so restart at the beginning.
Jeff Brown678a1252013-04-09 17:46:25 -07004504 mX.reset(0);
4505 mY.reset(0);
4506 mLastTime = curTime;
Jeff Brownf9e989d2013-04-04 23:04:03 -07004507 }
4508
4509 final int action = event.getAction();
4510 final int metaState = event.getMetaState();
4511 switch (action) {
4512 case MotionEvent.ACTION_DOWN:
Jeff Brown678a1252013-04-09 17:46:25 -07004513 mX.reset(2);
4514 mY.reset(2);
Jeff Brownf9e989d2013-04-04 23:04:03 -07004515 enqueueInputEvent(new KeyEvent(curTime, curTime,
4516 KeyEvent.ACTION_DOWN, KeyEvent.KEYCODE_DPAD_CENTER, 0, metaState,
4517 KeyCharacterMap.VIRTUAL_KEYBOARD, 0, KeyEvent.FLAG_FALLBACK,
4518 InputDevice.SOURCE_KEYBOARD));
4519 break;
4520 case MotionEvent.ACTION_UP:
Jeff Brown678a1252013-04-09 17:46:25 -07004521 mX.reset(2);
4522 mY.reset(2);
Jeff Brownf9e989d2013-04-04 23:04:03 -07004523 enqueueInputEvent(new KeyEvent(curTime, curTime,
4524 KeyEvent.ACTION_UP, KeyEvent.KEYCODE_DPAD_CENTER, 0, metaState,
4525 KeyCharacterMap.VIRTUAL_KEYBOARD, 0, KeyEvent.FLAG_FALLBACK,
4526 InputDevice.SOURCE_KEYBOARD));
4527 break;
4528 }
4529
Filip Gruszczynski34dab0b2015-12-22 08:29:07 -08004530 if (DEBUG_TRACKBALL) Log.v(mTag, "TB X=" + mX.position + " step="
Jeff Brown678a1252013-04-09 17:46:25 -07004531 + mX.step + " dir=" + mX.dir + " acc=" + mX.acceleration
Jeff Brownf9e989d2013-04-04 23:04:03 -07004532 + " move=" + event.getX()
Jeff Brown678a1252013-04-09 17:46:25 -07004533 + " / Y=" + mY.position + " step="
4534 + mY.step + " dir=" + mY.dir + " acc=" + mY.acceleration
Jeff Brownf9e989d2013-04-04 23:04:03 -07004535 + " move=" + event.getY());
Jeff Brown678a1252013-04-09 17:46:25 -07004536 final float xOff = mX.collect(event.getX(), event.getEventTime(), "X");
4537 final float yOff = mY.collect(event.getY(), event.getEventTime(), "Y");
Jeff Brownf9e989d2013-04-04 23:04:03 -07004538
4539 // Generate DPAD events based on the trackball movement.
4540 // We pick the axis that has moved the most as the direction of
4541 // the DPAD. When we generate DPAD events for one axis, then the
4542 // other axis is reset -- we don't want to perform DPAD jumps due
4543 // to slight movements in the trackball when making major movements
4544 // along the other axis.
4545 int keycode = 0;
4546 int movement = 0;
4547 float accel = 1;
4548 if (xOff > yOff) {
Jeff Brown678a1252013-04-09 17:46:25 -07004549 movement = mX.generate();
Jeff Brownf9e989d2013-04-04 23:04:03 -07004550 if (movement != 0) {
4551 keycode = movement > 0 ? KeyEvent.KEYCODE_DPAD_RIGHT
4552 : KeyEvent.KEYCODE_DPAD_LEFT;
Jeff Brown678a1252013-04-09 17:46:25 -07004553 accel = mX.acceleration;
4554 mY.reset(2);
Jeff Brownf9e989d2013-04-04 23:04:03 -07004555 }
4556 } else if (yOff > 0) {
Jeff Brown678a1252013-04-09 17:46:25 -07004557 movement = mY.generate();
Jeff Brownf9e989d2013-04-04 23:04:03 -07004558 if (movement != 0) {
4559 keycode = movement > 0 ? KeyEvent.KEYCODE_DPAD_DOWN
4560 : KeyEvent.KEYCODE_DPAD_UP;
Jeff Brown678a1252013-04-09 17:46:25 -07004561 accel = mY.acceleration;
4562 mX.reset(2);
Jeff Brownf9e989d2013-04-04 23:04:03 -07004563 }
4564 }
4565
4566 if (keycode != 0) {
4567 if (movement < 0) movement = -movement;
4568 int accelMovement = (int)(movement * accel);
Filip Gruszczynski34dab0b2015-12-22 08:29:07 -08004569 if (DEBUG_TRACKBALL) Log.v(mTag, "Move: movement=" + movement
Jeff Brownf9e989d2013-04-04 23:04:03 -07004570 + " accelMovement=" + accelMovement
4571 + " accel=" + accel);
4572 if (accelMovement > movement) {
Filip Gruszczynski34dab0b2015-12-22 08:29:07 -08004573 if (DEBUG_TRACKBALL) Log.v(mTag, "Delivering fake DPAD: "
Jeff Brownf9e989d2013-04-04 23:04:03 -07004574 + keycode);
4575 movement--;
4576 int repeatCount = accelMovement - movement;
4577 enqueueInputEvent(new KeyEvent(curTime, curTime,
4578 KeyEvent.ACTION_MULTIPLE, keycode, repeatCount, metaState,
4579 KeyCharacterMap.VIRTUAL_KEYBOARD, 0, KeyEvent.FLAG_FALLBACK,
4580 InputDevice.SOURCE_KEYBOARD));
4581 }
4582 while (movement > 0) {
Filip Gruszczynski34dab0b2015-12-22 08:29:07 -08004583 if (DEBUG_TRACKBALL) Log.v(mTag, "Delivering fake DPAD: "
Jeff Brownf9e989d2013-04-04 23:04:03 -07004584 + keycode);
4585 movement--;
4586 curTime = SystemClock.uptimeMillis();
4587 enqueueInputEvent(new KeyEvent(curTime, curTime,
4588 KeyEvent.ACTION_DOWN, keycode, 0, metaState,
4589 KeyCharacterMap.VIRTUAL_KEYBOARD, 0, KeyEvent.FLAG_FALLBACK,
4590 InputDevice.SOURCE_KEYBOARD));
4591 enqueueInputEvent(new KeyEvent(curTime, curTime,
4592 KeyEvent.ACTION_UP, keycode, 0, metaState,
4593 KeyCharacterMap.VIRTUAL_KEYBOARD, 0, KeyEvent.FLAG_FALLBACK,
4594 InputDevice.SOURCE_KEYBOARD));
4595 }
Jeff Brown678a1252013-04-09 17:46:25 -07004596 mLastTime = curTime;
Jeff Brownf9e989d2013-04-04 23:04:03 -07004597 }
Jeff Brownf9e989d2013-04-04 23:04:03 -07004598 }
4599
Jeff Brown678a1252013-04-09 17:46:25 -07004600 public void cancel(MotionEvent event) {
4601 mLastTime = Integer.MIN_VALUE;
Jeff Brown3915bb82010-11-05 15:02:16 -07004602
Jeff Brownf9e989d2013-04-04 23:04:03 -07004603 // If we reach this, we consumed a trackball event.
4604 // Because we will not translate the trackball event into a key event,
4605 // touch mode will not exit, so we exit touch mode here.
4606 if (mView != null && mAdded) {
4607 ensureTouchMode(false);
Jeff Brown00fa7bd2010-07-02 15:37:36 -07004608 }
4609 }
Jeff Brown678a1252013-04-09 17:46:25 -07004610 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004611
Jeff Brown678a1252013-04-09 17:46:25 -07004612 /**
4613 * Maintains state information for a single trackball axis, generating
4614 * discrete (DPAD) movements based on raw trackball motion.
4615 */
4616 static final class TrackballAxis {
4617 /**
4618 * The maximum amount of acceleration we will apply.
4619 */
4620 static final float MAX_ACCELERATION = 20;
4621
4622 /**
4623 * The maximum amount of time (in milliseconds) between events in order
4624 * for us to consider the user to be doing fast trackball movements,
4625 * and thus apply an acceleration.
4626 */
4627 static final long FAST_MOVE_TIME = 150;
4628
4629 /**
4630 * Scaling factor to the time (in milliseconds) between events to how
4631 * much to multiple/divide the current acceleration. When movement
4632 * is < FAST_MOVE_TIME this multiplies the acceleration; when >
4633 * FAST_MOVE_TIME it divides it.
4634 */
4635 static final float ACCEL_MOVE_SCALING_FACTOR = (1.0f/40);
4636
4637 static final float FIRST_MOVEMENT_THRESHOLD = 0.5f;
4638 static final float SECOND_CUMULATIVE_MOVEMENT_THRESHOLD = 2.0f;
4639 static final float SUBSEQUENT_INCREMENTAL_MOVEMENT_THRESHOLD = 1.0f;
4640
4641 float position;
4642 float acceleration = 1;
4643 long lastMoveTime = 0;
4644 int step;
4645 int dir;
4646 int nonAccelMovement;
4647
4648 void reset(int _step) {
4649 position = 0;
4650 acceleration = 1;
4651 lastMoveTime = 0;
4652 step = _step;
4653 dir = 0;
Jeff Brown6f2fba42011-02-19 01:08:02 -08004654 }
4655
Jeff Brown678a1252013-04-09 17:46:25 -07004656 /**
4657 * Add trackball movement into the state. If the direction of movement
4658 * has been reversed, the state is reset before adding the
4659 * movement (so that you don't have to compensate for any previously
4660 * collected movement before see the result of the movement in the
4661 * new direction).
4662 *
4663 * @return Returns the absolute value of the amount of movement
4664 * collected so far.
4665 */
4666 float collect(float off, long time, String axis) {
4667 long normTime;
4668 if (off > 0) {
4669 normTime = (long)(off * FAST_MOVE_TIME);
4670 if (dir < 0) {
4671 if (DEBUG_TRACKBALL) Log.v(TAG, axis + " reversed to positive!");
4672 position = 0;
4673 step = 0;
4674 acceleration = 1;
4675 lastMoveTime = 0;
4676 }
4677 dir = 1;
4678 } else if (off < 0) {
4679 normTime = (long)((-off) * FAST_MOVE_TIME);
4680 if (dir > 0) {
4681 if (DEBUG_TRACKBALL) Log.v(TAG, axis + " reversed to negative!");
4682 position = 0;
4683 step = 0;
4684 acceleration = 1;
4685 lastMoveTime = 0;
4686 }
4687 dir = -1;
4688 } else {
4689 normTime = 0;
4690 }
4691
4692 // The number of milliseconds between each movement that is
4693 // considered "normal" and will not result in any acceleration
4694 // or deceleration, scaled by the offset we have here.
4695 if (normTime > 0) {
4696 long delta = time - lastMoveTime;
4697 lastMoveTime = time;
4698 float acc = acceleration;
4699 if (delta < normTime) {
4700 // The user is scrolling rapidly, so increase acceleration.
4701 float scale = (normTime-delta) * ACCEL_MOVE_SCALING_FACTOR;
4702 if (scale > 1) acc *= scale;
4703 if (DEBUG_TRACKBALL) Log.v(TAG, axis + " accelerate: off="
4704 + off + " normTime=" + normTime + " delta=" + delta
4705 + " scale=" + scale + " acc=" + acc);
4706 acceleration = acc < MAX_ACCELERATION ? acc : MAX_ACCELERATION;
4707 } else {
4708 // The user is scrolling slowly, so decrease acceleration.
4709 float scale = (delta-normTime) * ACCEL_MOVE_SCALING_FACTOR;
4710 if (scale > 1) acc /= scale;
4711 if (DEBUG_TRACKBALL) Log.v(TAG, axis + " deccelerate: off="
4712 + off + " normTime=" + normTime + " delta=" + delta
4713 + " scale=" + scale + " acc=" + acc);
4714 acceleration = acc > 1 ? acc : 1;
4715 }
4716 }
4717 position += off;
4718 return Math.abs(position);
Jeff Brown6f2fba42011-02-19 01:08:02 -08004719 }
Jeff Browncb1404e2011-01-15 18:14:15 -08004720
Jeff Brown678a1252013-04-09 17:46:25 -07004721 /**
4722 * Generate the number of discrete movement events appropriate for
4723 * the currently collected trackball movement.
4724 *
4725 * @return Returns the number of discrete movements, either positive
4726 * or negative, or 0 if there is not enough trackball movement yet
4727 * for a discrete movement.
4728 */
4729 int generate() {
4730 int movement = 0;
4731 nonAccelMovement = 0;
4732 do {
4733 final int dir = position >= 0 ? 1 : -1;
4734 switch (step) {
4735 // If we are going to execute the first step, then we want
4736 // to do this as soon as possible instead of waiting for
4737 // a full movement, in order to make things look responsive.
4738 case 0:
4739 if (Math.abs(position) < FIRST_MOVEMENT_THRESHOLD) {
4740 return movement;
4741 }
4742 movement += dir;
4743 nonAccelMovement += dir;
4744 step = 1;
4745 break;
4746 // If we have generated the first movement, then we need
4747 // to wait for the second complete trackball motion before
4748 // generating the second discrete movement.
4749 case 1:
4750 if (Math.abs(position) < SECOND_CUMULATIVE_MOVEMENT_THRESHOLD) {
4751 return movement;
4752 }
4753 movement += dir;
4754 nonAccelMovement += dir;
4755 position -= SECOND_CUMULATIVE_MOVEMENT_THRESHOLD * dir;
4756 step = 2;
4757 break;
4758 // After the first two, we generate discrete movements
4759 // consistently with the trackball, applying an acceleration
4760 // if the trackball is moving quickly. This is a simple
4761 // acceleration on top of what we already compute based
4762 // on how quickly the wheel is being turned, to apply
4763 // a longer increasing acceleration to continuous movement
4764 // in one direction.
4765 default:
4766 if (Math.abs(position) < SUBSEQUENT_INCREMENTAL_MOVEMENT_THRESHOLD) {
4767 return movement;
4768 }
4769 movement += dir;
4770 position -= dir * SUBSEQUENT_INCREMENTAL_MOVEMENT_THRESHOLD;
4771 float acc = acceleration;
4772 acc *= 1.1f;
4773 acceleration = acc < MAX_ACCELERATION ? acc : acceleration;
4774 break;
4775 }
4776 } while (true);
4777 }
4778 }
4779
4780 /**
4781 * Creates dpad events from unhandled joystick movements.
4782 */
4783 final class SyntheticJoystickHandler extends Handler {
Michael Wright9adca062014-03-19 11:51:26 -07004784 private final static String TAG = "SyntheticJoystickHandler";
Jeff Brown678a1252013-04-09 17:46:25 -07004785 private final static int MSG_ENQUEUE_X_AXIS_KEY_REPEAT = 1;
4786 private final static int MSG_ENQUEUE_Y_AXIS_KEY_REPEAT = 2;
4787
4788 private int mLastXDirection;
4789 private int mLastYDirection;
4790 private int mLastXKeyCode;
4791 private int mLastYKeyCode;
4792
4793 public SyntheticJoystickHandler() {
4794 super(true);
4795 }
4796
4797 @Override
4798 public void handleMessage(Message msg) {
4799 switch (msg.what) {
4800 case MSG_ENQUEUE_X_AXIS_KEY_REPEAT:
4801 case MSG_ENQUEUE_Y_AXIS_KEY_REPEAT: {
4802 KeyEvent oldEvent = (KeyEvent)msg.obj;
4803 KeyEvent e = KeyEvent.changeTimeRepeat(oldEvent,
4804 SystemClock.uptimeMillis(),
4805 oldEvent.getRepeatCount() + 1);
4806 if (mAttachInfo.mHasWindowFocus) {
4807 enqueueInputEvent(e);
4808 Message m = obtainMessage(msg.what, e);
4809 m.setAsynchronous(true);
4810 sendMessageDelayed(m, ViewConfiguration.getKeyRepeatDelay());
4811 }
4812 } break;
4813 }
4814 }
4815
4816 public void process(MotionEvent event) {
Michael Wright9adca062014-03-19 11:51:26 -07004817 switch(event.getActionMasked()) {
4818 case MotionEvent.ACTION_CANCEL:
4819 cancel(event);
4820 break;
4821 case MotionEvent.ACTION_MOVE:
4822 update(event, true);
4823 break;
4824 default:
Filip Gruszczynski34dab0b2015-12-22 08:29:07 -08004825 Log.w(mTag, "Unexpected action: " + event.getActionMasked());
Michael Wright9adca062014-03-19 11:51:26 -07004826 }
Jeff Brown678a1252013-04-09 17:46:25 -07004827 }
4828
Michael Wright9adca062014-03-19 11:51:26 -07004829 private void cancel(MotionEvent event) {
4830 removeMessages(MSG_ENQUEUE_X_AXIS_KEY_REPEAT);
4831 removeMessages(MSG_ENQUEUE_Y_AXIS_KEY_REPEAT);
Jeff Brown678a1252013-04-09 17:46:25 -07004832 update(event, false);
4833 }
4834
4835 private void update(MotionEvent event, boolean synthesizeNewKeys) {
Jeff Brownf9e989d2013-04-04 23:04:03 -07004836 final long time = event.getEventTime();
4837 final int metaState = event.getMetaState();
4838 final int deviceId = event.getDeviceId();
4839 final int source = event.getSource();
4840
4841 int xDirection = joystickAxisValueToDirection(
4842 event.getAxisValue(MotionEvent.AXIS_HAT_X));
4843 if (xDirection == 0) {
4844 xDirection = joystickAxisValueToDirection(event.getX());
Jeff Browncb1404e2011-01-15 18:14:15 -08004845 }
4846
Jeff Brownf9e989d2013-04-04 23:04:03 -07004847 int yDirection = joystickAxisValueToDirection(
4848 event.getAxisValue(MotionEvent.AXIS_HAT_Y));
4849 if (yDirection == 0) {
4850 yDirection = joystickAxisValueToDirection(event.getY());
4851 }
Jeff Browncb1404e2011-01-15 18:14:15 -08004852
Jeff Brown678a1252013-04-09 17:46:25 -07004853 if (xDirection != mLastXDirection) {
4854 if (mLastXKeyCode != 0) {
4855 removeMessages(MSG_ENQUEUE_X_AXIS_KEY_REPEAT);
Jeff Brownf9e989d2013-04-04 23:04:03 -07004856 enqueueInputEvent(new KeyEvent(time, time,
Jeff Brown678a1252013-04-09 17:46:25 -07004857 KeyEvent.ACTION_UP, mLastXKeyCode, 0, metaState,
Jeff Brownf9e989d2013-04-04 23:04:03 -07004858 deviceId, 0, KeyEvent.FLAG_FALLBACK, source));
Jeff Brown678a1252013-04-09 17:46:25 -07004859 mLastXKeyCode = 0;
Jeff Brownf9e989d2013-04-04 23:04:03 -07004860 }
4861
Jeff Brown678a1252013-04-09 17:46:25 -07004862 mLastXDirection = xDirection;
Jeff Brownf9e989d2013-04-04 23:04:03 -07004863
4864 if (xDirection != 0 && synthesizeNewKeys) {
Jeff Brown678a1252013-04-09 17:46:25 -07004865 mLastXKeyCode = xDirection > 0
Jeff Brownf9e989d2013-04-04 23:04:03 -07004866 ? KeyEvent.KEYCODE_DPAD_RIGHT : KeyEvent.KEYCODE_DPAD_LEFT;
4867 final KeyEvent e = new KeyEvent(time, time,
Jeff Brown678a1252013-04-09 17:46:25 -07004868 KeyEvent.ACTION_DOWN, mLastXKeyCode, 0, metaState,
Jeff Brownf9e989d2013-04-04 23:04:03 -07004869 deviceId, 0, KeyEvent.FLAG_FALLBACK, source);
4870 enqueueInputEvent(e);
Jeff Brown678a1252013-04-09 17:46:25 -07004871 Message m = obtainMessage(MSG_ENQUEUE_X_AXIS_KEY_REPEAT, e);
Jeff Brownf9e989d2013-04-04 23:04:03 -07004872 m.setAsynchronous(true);
Michael Wrightb9618522013-04-10 15:20:56 -07004873 sendMessageDelayed(m, ViewConfiguration.getKeyRepeatTimeout());
Jeff Brownf9e989d2013-04-04 23:04:03 -07004874 }
4875 }
4876
Jeff Brown678a1252013-04-09 17:46:25 -07004877 if (yDirection != mLastYDirection) {
4878 if (mLastYKeyCode != 0) {
4879 removeMessages(MSG_ENQUEUE_Y_AXIS_KEY_REPEAT);
Jeff Brownf9e989d2013-04-04 23:04:03 -07004880 enqueueInputEvent(new KeyEvent(time, time,
Jeff Brown678a1252013-04-09 17:46:25 -07004881 KeyEvent.ACTION_UP, mLastYKeyCode, 0, metaState,
Jeff Brownf9e989d2013-04-04 23:04:03 -07004882 deviceId, 0, KeyEvent.FLAG_FALLBACK, source));
Jeff Brown678a1252013-04-09 17:46:25 -07004883 mLastYKeyCode = 0;
Jeff Brownf9e989d2013-04-04 23:04:03 -07004884 }
4885
Jeff Brown678a1252013-04-09 17:46:25 -07004886 mLastYDirection = yDirection;
Jeff Brownf9e989d2013-04-04 23:04:03 -07004887
4888 if (yDirection != 0 && synthesizeNewKeys) {
Jeff Brown678a1252013-04-09 17:46:25 -07004889 mLastYKeyCode = yDirection > 0
Jeff Brownf9e989d2013-04-04 23:04:03 -07004890 ? KeyEvent.KEYCODE_DPAD_DOWN : KeyEvent.KEYCODE_DPAD_UP;
4891 final KeyEvent e = new KeyEvent(time, time,
Jeff Brown678a1252013-04-09 17:46:25 -07004892 KeyEvent.ACTION_DOWN, mLastYKeyCode, 0, metaState,
Jeff Brownf9e989d2013-04-04 23:04:03 -07004893 deviceId, 0, KeyEvent.FLAG_FALLBACK, source);
4894 enqueueInputEvent(e);
Jeff Brown678a1252013-04-09 17:46:25 -07004895 Message m = obtainMessage(MSG_ENQUEUE_Y_AXIS_KEY_REPEAT, e);
Jeff Brownf9e989d2013-04-04 23:04:03 -07004896 m.setAsynchronous(true);
Jeff Brown678a1252013-04-09 17:46:25 -07004897 sendMessageDelayed(m, ViewConfiguration.getKeyRepeatTimeout());
Jeff Brownf9e989d2013-04-04 23:04:03 -07004898 }
Jeff Browncb1404e2011-01-15 18:14:15 -08004899 }
4900 }
4901
Jeff Brownf9e989d2013-04-04 23:04:03 -07004902 private int joystickAxisValueToDirection(float value) {
4903 if (value >= 0.5f) {
4904 return 1;
4905 } else if (value <= -0.5f) {
4906 return -1;
4907 } else {
4908 return 0;
Jeff Browncb1404e2011-01-15 18:14:15 -08004909 }
4910 }
Jeff Brown678a1252013-04-09 17:46:25 -07004911 }
Jeff Browncb1404e2011-01-15 18:14:15 -08004912
Jeff Brown678a1252013-04-09 17:46:25 -07004913 /**
4914 * Creates dpad events from unhandled touch navigation movements.
4915 */
4916 final class SyntheticTouchNavigationHandler extends Handler {
Jeff Brown4dac9012013-04-10 01:03:19 -07004917 private static final String LOCAL_TAG = "SyntheticTouchNavigationHandler";
4918 private static final boolean LOCAL_DEBUG = false;
Jeff Brown678a1252013-04-09 17:46:25 -07004919
Jeff Brown4dac9012013-04-10 01:03:19 -07004920 // Assumed nominal width and height in millimeters of a touch navigation pad,
4921 // if no resolution information is available from the input system.
4922 private static final float DEFAULT_WIDTH_MILLIMETERS = 48;
4923 private static final float DEFAULT_HEIGHT_MILLIMETERS = 48;
Jeff Brown678a1252013-04-09 17:46:25 -07004924
Jeff Brown4dac9012013-04-10 01:03:19 -07004925 /* TODO: These constants should eventually be moved to ViewConfiguration. */
Jeff Brown678a1252013-04-09 17:46:25 -07004926
Jeff Brown4dac9012013-04-10 01:03:19 -07004927 // The nominal distance traveled to move by one unit.
4928 private static final int TICK_DISTANCE_MILLIMETERS = 12;
4929
4930 // Minimum and maximum fling velocity in ticks per second.
4931 // The minimum velocity should be set such that we perform enough ticks per
4932 // second that the fling appears to be fluid. For example, if we set the minimum
4933 // to 2 ticks per second, then there may be up to half a second delay between the next
4934 // to last and last ticks which is noticeably discrete and jerky. This value should
4935 // probably not be set to anything less than about 4.
4936 // If fling accuracy is a problem then consider tuning the tick distance instead.
4937 private static final float MIN_FLING_VELOCITY_TICKS_PER_SECOND = 6f;
4938 private static final float MAX_FLING_VELOCITY_TICKS_PER_SECOND = 20f;
4939
4940 // Fling velocity decay factor applied after each new key is emitted.
4941 // This parameter controls the deceleration and overall duration of the fling.
4942 // The fling stops automatically when its velocity drops below the minimum
4943 // fling velocity defined above.
4944 private static final float FLING_TICK_DECAY = 0.8f;
4945
4946 /* The input device that we are tracking. */
4947
4948 private int mCurrentDeviceId = -1;
4949 private int mCurrentSource;
4950 private boolean mCurrentDeviceSupported;
4951
4952 /* Configuration for the current input device. */
4953
Jeff Brown4dac9012013-04-10 01:03:19 -07004954 // The scaled tick distance. A movement of this amount should generally translate
4955 // into a single dpad event in a given direction.
4956 private float mConfigTickDistance;
4957
4958 // The minimum and maximum scaled fling velocity.
4959 private float mConfigMinFlingVelocity;
4960 private float mConfigMaxFlingVelocity;
4961
4962 /* Tracking state. */
4963
4964 // The velocity tracker for detecting flings.
4965 private VelocityTracker mVelocityTracker;
4966
4967 // The active pointer id, or -1 if none.
4968 private int mActivePointerId = -1;
4969
John Reck79d81e62013-11-05 13:26:57 -08004970 // Location where tracking started.
Jeff Brown4dac9012013-04-10 01:03:19 -07004971 private float mStartX;
4972 private float mStartY;
4973
4974 // Most recently observed position.
4975 private float mLastX;
4976 private float mLastY;
4977
4978 // Accumulated movement delta since the last direction key was sent.
Jeff Brown678a1252013-04-09 17:46:25 -07004979 private float mAccumulatedX;
4980 private float mAccumulatedY;
4981
Jeff Brown4dac9012013-04-10 01:03:19 -07004982 // Set to true if any movement was delivered to the app.
4983 // Implies that tap slop was exceeded.
4984 private boolean mConsumedMovement;
Jeff Brown678a1252013-04-09 17:46:25 -07004985
Jeff Brown4dac9012013-04-10 01:03:19 -07004986 // The most recently sent key down event.
4987 // The keycode remains set until the direction changes or a fling ends
4988 // so that repeated key events may be generated as required.
4989 private long mPendingKeyDownTime;
4990 private int mPendingKeyCode = KeyEvent.KEYCODE_UNKNOWN;
4991 private int mPendingKeyRepeatCount;
4992 private int mPendingKeyMetaState;
Jeff Brown678a1252013-04-09 17:46:25 -07004993
Jeff Brown4dac9012013-04-10 01:03:19 -07004994 // The current fling velocity while a fling is in progress.
4995 private boolean mFlinging;
4996 private float mFlingVelocity;
Jeff Brown678a1252013-04-09 17:46:25 -07004997
4998 public SyntheticTouchNavigationHandler() {
4999 super(true);
Jeff Brown678a1252013-04-09 17:46:25 -07005000 }
5001
5002 public void process(MotionEvent event) {
Jeff Brown4dac9012013-04-10 01:03:19 -07005003 // Update the current device information.
5004 final long time = event.getEventTime();
5005 final int deviceId = event.getDeviceId();
5006 final int source = event.getSource();
5007 if (mCurrentDeviceId != deviceId || mCurrentSource != source) {
5008 finishKeys(time);
5009 finishTracking(time);
5010 mCurrentDeviceId = deviceId;
5011 mCurrentSource = source;
5012 mCurrentDeviceSupported = false;
5013 InputDevice device = event.getDevice();
5014 if (device != null) {
5015 // In order to support an input device, we must know certain
5016 // characteristics about it, such as its size and resolution.
5017 InputDevice.MotionRange xRange = device.getMotionRange(MotionEvent.AXIS_X);
5018 InputDevice.MotionRange yRange = device.getMotionRange(MotionEvent.AXIS_Y);
5019 if (xRange != null && yRange != null) {
5020 mCurrentDeviceSupported = true;
Jeff Brown678a1252013-04-09 17:46:25 -07005021
Jeff Brown4dac9012013-04-10 01:03:19 -07005022 // Infer the resolution if it not actually known.
5023 float xRes = xRange.getResolution();
5024 if (xRes <= 0) {
5025 xRes = xRange.getRange() / DEFAULT_WIDTH_MILLIMETERS;
5026 }
5027 float yRes = yRange.getResolution();
5028 if (yRes <= 0) {
5029 yRes = yRange.getRange() / DEFAULT_HEIGHT_MILLIMETERS;
5030 }
5031 float nominalRes = (xRes + yRes) * 0.5f;
Jeff Brown678a1252013-04-09 17:46:25 -07005032
Jeff Brown4dac9012013-04-10 01:03:19 -07005033 // Precompute all of the configuration thresholds we will need.
Jeff Brown4dac9012013-04-10 01:03:19 -07005034 mConfigTickDistance = TICK_DISTANCE_MILLIMETERS * nominalRes;
5035 mConfigMinFlingVelocity =
5036 MIN_FLING_VELOCITY_TICKS_PER_SECOND * mConfigTickDistance;
5037 mConfigMaxFlingVelocity =
5038 MAX_FLING_VELOCITY_TICKS_PER_SECOND * mConfigTickDistance;
5039
5040 if (LOCAL_DEBUG) {
5041 Log.d(LOCAL_TAG, "Configured device " + mCurrentDeviceId
5042 + " (" + Integer.toHexString(mCurrentSource) + "): "
Jeff Brown4dac9012013-04-10 01:03:19 -07005043 + ", mConfigTickDistance=" + mConfigTickDistance
5044 + ", mConfigMinFlingVelocity=" + mConfigMinFlingVelocity
5045 + ", mConfigMaxFlingVelocity=" + mConfigMaxFlingVelocity);
5046 }
5047 }
5048 }
Jeff Brown678a1252013-04-09 17:46:25 -07005049 }
Jeff Brown4dac9012013-04-10 01:03:19 -07005050 if (!mCurrentDeviceSupported) {
Jeff Brown678a1252013-04-09 17:46:25 -07005051 return;
5052 }
5053
Jeff Brown4dac9012013-04-10 01:03:19 -07005054 // Handle the event.
5055 final int action = event.getActionMasked();
5056 switch (action) {
Jeff Brown678a1252013-04-09 17:46:25 -07005057 case MotionEvent.ACTION_DOWN: {
Jeff Brown4dac9012013-04-10 01:03:19 -07005058 boolean caughtFling = mFlinging;
5059 finishKeys(time);
5060 finishTracking(time);
5061 mActivePointerId = event.getPointerId(0);
5062 mVelocityTracker = VelocityTracker.obtain();
5063 mVelocityTracker.addMovement(event);
Jeff Brown4dac9012013-04-10 01:03:19 -07005064 mStartX = event.getX();
5065 mStartY = event.getY();
5066 mLastX = mStartX;
5067 mLastY = mStartY;
Jeff Brown678a1252013-04-09 17:46:25 -07005068 mAccumulatedX = 0;
5069 mAccumulatedY = 0;
Jeff Brown4dac9012013-04-10 01:03:19 -07005070
5071 // If we caught a fling, then pretend that the tap slop has already
5072 // been exceeded to suppress taps whose only purpose is to stop the fling.
5073 mConsumedMovement = caughtFling;
Jeff Brown678a1252013-04-09 17:46:25 -07005074 break;
5075 }
5076
Jeff Brown4dac9012013-04-10 01:03:19 -07005077 case MotionEvent.ACTION_MOVE:
Jeff Brown678a1252013-04-09 17:46:25 -07005078 case MotionEvent.ACTION_UP: {
Jeff Brown4dac9012013-04-10 01:03:19 -07005079 if (mActivePointerId < 0) {
5080 break;
5081 }
5082 final int index = event.findPointerIndex(mActivePointerId);
5083 if (index < 0) {
5084 finishKeys(time);
5085 finishTracking(time);
5086 break;
5087 }
Jeff Brown678a1252013-04-09 17:46:25 -07005088
Jeff Brown4dac9012013-04-10 01:03:19 -07005089 mVelocityTracker.addMovement(event);
5090 final float x = event.getX(index);
5091 final float y = event.getY(index);
5092 mAccumulatedX += x - mLastX;
5093 mAccumulatedY += y - mLastY;
5094 mLastX = x;
5095 mLastY = y;
5096
5097 // Consume any accumulated movement so far.
5098 final int metaState = event.getMetaState();
5099 consumeAccumulatedMovement(time, metaState);
5100
5101 // Detect taps and flings.
5102 if (action == MotionEvent.ACTION_UP) {
Michael Wright88d7f792013-08-27 15:45:42 -07005103 if (mConsumedMovement && mPendingKeyCode != KeyEvent.KEYCODE_UNKNOWN) {
Jeff Brown4dac9012013-04-10 01:03:19 -07005104 // It might be a fling.
5105 mVelocityTracker.computeCurrentVelocity(1000, mConfigMaxFlingVelocity);
5106 final float vx = mVelocityTracker.getXVelocity(mActivePointerId);
5107 final float vy = mVelocityTracker.getYVelocity(mActivePointerId);
5108 if (!startFling(time, vx, vy)) {
5109 finishKeys(time);
Jeff Brown678a1252013-04-09 17:46:25 -07005110 }
5111 }
Jeff Brown4dac9012013-04-10 01:03:19 -07005112 finishTracking(time);
Jeff Brown678a1252013-04-09 17:46:25 -07005113 }
Jeff Brown4dac9012013-04-10 01:03:19 -07005114 break;
5115 }
5116
5117 case MotionEvent.ACTION_CANCEL: {
5118 finishKeys(time);
5119 finishTracking(time);
Jeff Brown678a1252013-04-09 17:46:25 -07005120 break;
5121 }
5122 }
Jeff Browncb1404e2011-01-15 18:14:15 -08005123 }
Jeff Brown4dac9012013-04-10 01:03:19 -07005124
5125 public void cancel(MotionEvent event) {
5126 if (mCurrentDeviceId == event.getDeviceId()
5127 && mCurrentSource == event.getSource()) {
5128 final long time = event.getEventTime();
5129 finishKeys(time);
5130 finishTracking(time);
5131 }
5132 }
5133
5134 private void finishKeys(long time) {
5135 cancelFling();
5136 sendKeyUp(time);
5137 }
5138
5139 private void finishTracking(long time) {
5140 if (mActivePointerId >= 0) {
5141 mActivePointerId = -1;
5142 mVelocityTracker.recycle();
5143 mVelocityTracker = null;
5144 }
5145 }
5146
5147 private void consumeAccumulatedMovement(long time, int metaState) {
5148 final float absX = Math.abs(mAccumulatedX);
5149 final float absY = Math.abs(mAccumulatedY);
5150 if (absX >= absY) {
5151 if (absX >= mConfigTickDistance) {
5152 mAccumulatedX = consumeAccumulatedMovement(time, metaState, mAccumulatedX,
5153 KeyEvent.KEYCODE_DPAD_LEFT, KeyEvent.KEYCODE_DPAD_RIGHT);
5154 mAccumulatedY = 0;
5155 mConsumedMovement = true;
5156 }
5157 } else {
5158 if (absY >= mConfigTickDistance) {
5159 mAccumulatedY = consumeAccumulatedMovement(time, metaState, mAccumulatedY,
5160 KeyEvent.KEYCODE_DPAD_UP, KeyEvent.KEYCODE_DPAD_DOWN);
5161 mAccumulatedX = 0;
5162 mConsumedMovement = true;
5163 }
5164 }
5165 }
5166
5167 private float consumeAccumulatedMovement(long time, int metaState,
5168 float accumulator, int negativeKeyCode, int positiveKeyCode) {
5169 while (accumulator <= -mConfigTickDistance) {
5170 sendKeyDownOrRepeat(time, negativeKeyCode, metaState);
5171 accumulator += mConfigTickDistance;
5172 }
5173 while (accumulator >= mConfigTickDistance) {
5174 sendKeyDownOrRepeat(time, positiveKeyCode, metaState);
5175 accumulator -= mConfigTickDistance;
5176 }
5177 return accumulator;
5178 }
5179
5180 private void sendKeyDownOrRepeat(long time, int keyCode, int metaState) {
5181 if (mPendingKeyCode != keyCode) {
5182 sendKeyUp(time);
5183 mPendingKeyDownTime = time;
5184 mPendingKeyCode = keyCode;
5185 mPendingKeyRepeatCount = 0;
5186 } else {
5187 mPendingKeyRepeatCount += 1;
5188 }
5189 mPendingKeyMetaState = metaState;
5190
5191 // Note: Normally we would pass FLAG_LONG_PRESS when the repeat count is 1
5192 // but it doesn't quite make sense when simulating the events in this way.
5193 if (LOCAL_DEBUG) {
5194 Log.d(LOCAL_TAG, "Sending key down: keyCode=" + mPendingKeyCode
5195 + ", repeatCount=" + mPendingKeyRepeatCount
5196 + ", metaState=" + Integer.toHexString(mPendingKeyMetaState));
5197 }
5198 enqueueInputEvent(new KeyEvent(mPendingKeyDownTime, time,
5199 KeyEvent.ACTION_DOWN, mPendingKeyCode, mPendingKeyRepeatCount,
5200 mPendingKeyMetaState, mCurrentDeviceId,
5201 KeyEvent.FLAG_FALLBACK, mCurrentSource));
5202 }
5203
5204 private void sendKeyUp(long time) {
5205 if (mPendingKeyCode != KeyEvent.KEYCODE_UNKNOWN) {
5206 if (LOCAL_DEBUG) {
5207 Log.d(LOCAL_TAG, "Sending key up: keyCode=" + mPendingKeyCode
5208 + ", metaState=" + Integer.toHexString(mPendingKeyMetaState));
5209 }
5210 enqueueInputEvent(new KeyEvent(mPendingKeyDownTime, time,
5211 KeyEvent.ACTION_UP, mPendingKeyCode, 0, mPendingKeyMetaState,
5212 mCurrentDeviceId, 0, KeyEvent.FLAG_FALLBACK,
5213 mCurrentSource));
5214 mPendingKeyCode = KeyEvent.KEYCODE_UNKNOWN;
5215 }
5216 }
5217
5218 private boolean startFling(long time, float vx, float vy) {
5219 if (LOCAL_DEBUG) {
5220 Log.d(LOCAL_TAG, "Considering fling: vx=" + vx + ", vy=" + vy
5221 + ", min=" + mConfigMinFlingVelocity);
5222 }
5223
5224 // Flings must be oriented in the same direction as the preceding movements.
5225 switch (mPendingKeyCode) {
5226 case KeyEvent.KEYCODE_DPAD_LEFT:
5227 if (-vx >= mConfigMinFlingVelocity
5228 && Math.abs(vy) < mConfigMinFlingVelocity) {
5229 mFlingVelocity = -vx;
5230 break;
5231 }
5232 return false;
5233
5234 case KeyEvent.KEYCODE_DPAD_RIGHT:
5235 if (vx >= mConfigMinFlingVelocity
5236 && Math.abs(vy) < mConfigMinFlingVelocity) {
5237 mFlingVelocity = vx;
5238 break;
5239 }
5240 return false;
5241
5242 case KeyEvent.KEYCODE_DPAD_UP:
5243 if (-vy >= mConfigMinFlingVelocity
5244 && Math.abs(vx) < mConfigMinFlingVelocity) {
5245 mFlingVelocity = -vy;
5246 break;
5247 }
5248 return false;
5249
5250 case KeyEvent.KEYCODE_DPAD_DOWN:
5251 if (vy >= mConfigMinFlingVelocity
5252 && Math.abs(vx) < mConfigMinFlingVelocity) {
5253 mFlingVelocity = vy;
5254 break;
5255 }
5256 return false;
5257 }
5258
5259 // Post the first fling event.
5260 mFlinging = postFling(time);
5261 return mFlinging;
5262 }
5263
5264 private boolean postFling(long time) {
5265 // The idea here is to estimate the time when the pointer would have
5266 // traveled one tick distance unit given the current fling velocity.
5267 // This effect creates continuity of motion.
5268 if (mFlingVelocity >= mConfigMinFlingVelocity) {
5269 long delay = (long)(mConfigTickDistance / mFlingVelocity * 1000);
5270 postAtTime(mFlingRunnable, time + delay);
5271 if (LOCAL_DEBUG) {
5272 Log.d(LOCAL_TAG, "Posted fling: velocity="
5273 + mFlingVelocity + ", delay=" + delay
5274 + ", keyCode=" + mPendingKeyCode);
5275 }
5276 return true;
5277 }
5278 return false;
5279 }
5280
5281 private void cancelFling() {
5282 if (mFlinging) {
5283 removeCallbacks(mFlingRunnable);
5284 mFlinging = false;
5285 }
5286 }
5287
5288 private final Runnable mFlingRunnable = new Runnable() {
5289 @Override
5290 public void run() {
5291 final long time = SystemClock.uptimeMillis();
5292 sendKeyDownOrRepeat(time, mPendingKeyCode, mPendingKeyMetaState);
5293 mFlingVelocity *= FLING_TICK_DECAY;
5294 if (!postFling(time)) {
5295 mFlinging = false;
5296 finishKeys(time);
5297 }
5298 }
5299 };
Jeff Browncb1404e2011-01-15 18:14:15 -08005300 }
5301
Michael Wright899d7052014-04-23 17:23:39 -07005302 final class SyntheticKeyboardHandler {
5303 public void process(KeyEvent event) {
5304 if ((event.getFlags() & KeyEvent.FLAG_FALLBACK) != 0) {
5305 return;
5306 }
5307
5308 final KeyCharacterMap kcm = event.getKeyCharacterMap();
5309 final int keyCode = event.getKeyCode();
5310 final int metaState = event.getMetaState();
5311
5312 // Check for fallback actions specified by the key character map.
5313 KeyCharacterMap.FallbackAction fallbackAction =
5314 kcm.getFallbackAction(keyCode, metaState);
5315 if (fallbackAction != null) {
5316 final int flags = event.getFlags() | KeyEvent.FLAG_FALLBACK;
5317 KeyEvent fallbackEvent = KeyEvent.obtain(
5318 event.getDownTime(), event.getEventTime(),
5319 event.getAction(), fallbackAction.keyCode,
5320 event.getRepeatCount(), fallbackAction.metaState,
5321 event.getDeviceId(), event.getScanCode(),
5322 flags, event.getSource(), null);
5323 fallbackAction.recycle();
5324 enqueueInputEvent(fallbackEvent);
5325 }
5326 }
5327 }
5328
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005329 /**
Jeff Brown4e6319b2010-12-13 10:36:51 -08005330 * Returns true if the key is used for keyboard navigation.
5331 * @param keyEvent The key event.
5332 * @return True if the key is used for keyboard navigation.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005333 */
Jeff Brown4e6319b2010-12-13 10:36:51 -08005334 private static boolean isNavigationKey(KeyEvent keyEvent) {
5335 switch (keyEvent.getKeyCode()) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005336 case KeyEvent.KEYCODE_DPAD_LEFT:
5337 case KeyEvent.KEYCODE_DPAD_RIGHT:
5338 case KeyEvent.KEYCODE_DPAD_UP:
5339 case KeyEvent.KEYCODE_DPAD_DOWN:
Jeff Brown4e6319b2010-12-13 10:36:51 -08005340 case KeyEvent.KEYCODE_DPAD_CENTER:
5341 case KeyEvent.KEYCODE_PAGE_UP:
5342 case KeyEvent.KEYCODE_PAGE_DOWN:
5343 case KeyEvent.KEYCODE_MOVE_HOME:
5344 case KeyEvent.KEYCODE_MOVE_END:
5345 case KeyEvent.KEYCODE_TAB:
5346 case KeyEvent.KEYCODE_SPACE:
5347 case KeyEvent.KEYCODE_ENTER:
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005348 return true;
5349 }
5350 return false;
5351 }
5352
5353 /**
Jeff Brown4e6319b2010-12-13 10:36:51 -08005354 * Returns true if the key is used for typing.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005355 * @param keyEvent The key event.
Jeff Brown4e6319b2010-12-13 10:36:51 -08005356 * @return True if the key is used for typing.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005357 */
Jeff Brown4e6319b2010-12-13 10:36:51 -08005358 private static boolean isTypingKey(KeyEvent keyEvent) {
5359 return keyEvent.getUnicodeChar() > 0;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005360 }
5361
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005362 /**
Jeff Brown4e6319b2010-12-13 10:36:51 -08005363 * See if the key event means we should leave touch mode (and leave touch mode if so).
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005364 * @param event The key event.
5365 * @return Whether this key event should be consumed (meaning the act of
5366 * leaving touch mode alone is considered the event).
5367 */
5368 private boolean checkForLeavingTouchModeAndConsume(KeyEvent event) {
Jeff Brown4e6319b2010-12-13 10:36:51 -08005369 // Only relevant in touch mode.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005370 if (!mAttachInfo.mInTouchMode) {
5371 return false;
5372 }
5373
Jeff Brown4e6319b2010-12-13 10:36:51 -08005374 // Only consider leaving touch mode on DOWN or MULTIPLE actions, never on UP.
5375 final int action = event.getAction();
5376 if (action != KeyEvent.ACTION_DOWN && action != KeyEvent.ACTION_MULTIPLE) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005377 return false;
5378 }
5379
Jeff Brown4e6319b2010-12-13 10:36:51 -08005380 // Don't leave touch mode if the IME told us not to.
5381 if ((event.getFlags() & KeyEvent.FLAG_KEEP_TOUCH_MODE) != 0) {
5382 return false;
5383 }
5384
5385 // If the key can be used for keyboard navigation then leave touch mode
5386 // and select a focused view if needed (in ensureTouchMode).
5387 // When a new focused view is selected, we consume the navigation key because
5388 // navigation doesn't make much sense unless a view already has focus so
5389 // the key's purpose is to set focus.
5390 if (isNavigationKey(event)) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005391 return ensureTouchMode(false);
5392 }
Jeff Brown4e6319b2010-12-13 10:36:51 -08005393
5394 // If the key can be used for typing then leave touch mode
5395 // and select a focused view if needed (in ensureTouchMode).
5396 // Always allow the view to process the typing key.
5397 if (isTypingKey(event)) {
5398 ensureTouchMode(false);
5399 return false;
5400 }
5401
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005402 return false;
5403 }
5404
Christopher Tatea53146c2010-09-07 11:57:52 -07005405 /* drag/drop */
Christopher Tate407b4e92010-11-30 17:14:08 -08005406 void setLocalDragState(Object obj) {
5407 mLocalDragState = obj;
5408 }
5409
Christopher Tatea53146c2010-09-07 11:57:52 -07005410 private void handleDragEvent(DragEvent event) {
5411 // From the root, only drag start/end/location are dispatched. entered/exited
5412 // are determined and dispatched by the viewgroup hierarchy, who then report
5413 // that back here for ultimate reporting back to the framework.
5414 if (mView != null && mAdded) {
5415 final int what = event.mAction;
5416
5417 if (what == DragEvent.ACTION_DRAG_EXITED) {
5418 // A direct EXITED event means that the window manager knows we've just crossed
5419 // a window boundary, so the current drag target within this one must have
5420 // just been exited. Send it the usual notifications and then we're done
5421 // for now.
Chris Tate9d1ab882010-11-02 15:55:39 -07005422 mView.dispatchDragEvent(event);
Christopher Tatea53146c2010-09-07 11:57:52 -07005423 } else {
5424 // Cache the drag description when the operation starts, then fill it in
5425 // on subsequent calls as a convenience
5426 if (what == DragEvent.ACTION_DRAG_STARTED) {
Chris Tate9d1ab882010-11-02 15:55:39 -07005427 mCurrentDragView = null; // Start the current-recipient tracking
Christopher Tatea53146c2010-09-07 11:57:52 -07005428 mDragDescription = event.mClipDescription;
5429 } else {
5430 event.mClipDescription = mDragDescription;
5431 }
5432
5433 // For events with a [screen] location, translate into window coordinates
5434 if ((what == DragEvent.ACTION_DRAG_LOCATION) || (what == DragEvent.ACTION_DROP)) {
5435 mDragPoint.set(event.mX, event.mY);
5436 if (mTranslator != null) {
5437 mTranslator.translatePointInScreenToAppWindow(mDragPoint);
5438 }
5439
5440 if (mCurScrollY != 0) {
5441 mDragPoint.offset(0, mCurScrollY);
5442 }
5443
5444 event.mX = mDragPoint.x;
5445 event.mY = mDragPoint.y;
5446 }
5447
5448 // Remember who the current drag target is pre-dispatch
5449 final View prevDragView = mCurrentDragView;
5450
5451 // Now dispatch the drag/drop event
Chris Tated4533f12010-10-19 15:15:08 -07005452 boolean result = mView.dispatchDragEvent(event);
Christopher Tatea53146c2010-09-07 11:57:52 -07005453
5454 // If we changed apparent drag target, tell the OS about it
5455 if (prevDragView != mCurrentDragView) {
5456 try {
5457 if (prevDragView != null) {
Jeff Brown98365d72012-08-19 20:30:52 -07005458 mWindowSession.dragRecipientExited(mWindow);
Christopher Tatea53146c2010-09-07 11:57:52 -07005459 }
5460 if (mCurrentDragView != null) {
Jeff Brown98365d72012-08-19 20:30:52 -07005461 mWindowSession.dragRecipientEntered(mWindow);
Christopher Tatea53146c2010-09-07 11:57:52 -07005462 }
5463 } catch (RemoteException e) {
Filip Gruszczynski34dab0b2015-12-22 08:29:07 -08005464 Slog.e(mTag, "Unable to note drag target change");
Christopher Tatea53146c2010-09-07 11:57:52 -07005465 }
Christopher Tatea53146c2010-09-07 11:57:52 -07005466 }
Chris Tated4533f12010-10-19 15:15:08 -07005467
Christopher Tate407b4e92010-11-30 17:14:08 -08005468 // Report the drop result when we're done
Chris Tated4533f12010-10-19 15:15:08 -07005469 if (what == DragEvent.ACTION_DROP) {
Christopher Tate1fc014f2011-01-19 12:56:26 -08005470 mDragDescription = null;
Chris Tated4533f12010-10-19 15:15:08 -07005471 try {
Filip Gruszczynski34dab0b2015-12-22 08:29:07 -08005472 Log.i(mTag, "Reporting drop result: " + result);
Jeff Brown98365d72012-08-19 20:30:52 -07005473 mWindowSession.reportDropResult(mWindow, result);
Chris Tated4533f12010-10-19 15:15:08 -07005474 } catch (RemoteException e) {
Filip Gruszczynski34dab0b2015-12-22 08:29:07 -08005475 Log.e(mTag, "Unable to report drop result");
Chris Tated4533f12010-10-19 15:15:08 -07005476 }
5477 }
Christopher Tate407b4e92010-11-30 17:14:08 -08005478
Vladislav Kaznacheev82063912015-11-20 14:20:13 -08005479 // When the drag operation ends, reset drag-related state
Christopher Tate407b4e92010-11-30 17:14:08 -08005480 if (what == DragEvent.ACTION_DRAG_ENDED) {
5481 setLocalDragState(null);
Vladislav Kaznacheev82063912015-11-20 14:20:13 -08005482 mAttachInfo.mDragToken = null;
Vladislav Kaznacheev4f639742015-11-18 13:21:35 -08005483 if (mAttachInfo.mDragSurface != null) {
5484 mAttachInfo.mDragSurface.release();
5485 mAttachInfo.mDragSurface = null;
5486 }
Christopher Tate407b4e92010-11-30 17:14:08 -08005487 }
Christopher Tatea53146c2010-09-07 11:57:52 -07005488 }
5489 }
5490 event.recycle();
5491 }
5492
Dianne Hackborn9a230e02011-10-06 11:51:27 -07005493 public void handleDispatchSystemUiVisibilityChanged(SystemUiVisibilityInfo args) {
5494 if (mSeq != args.seq) {
5495 // The sequence has changed, so we need to update our value and make
5496 // sure to do a traversal afterward so the window manager is given our
5497 // most recent data.
5498 mSeq = args.seq;
5499 mAttachInfo.mForceReportNewAttributes = true;
Igor Murashkina86ab6402013-08-30 12:58:36 -07005500 scheduleTraversals();
Joe Onorato14782f72011-01-25 19:53:17 -08005501 }
Dianne Hackborn9a230e02011-10-06 11:51:27 -07005502 if (mView == null) return;
5503 if (args.localChanges != 0) {
Dianne Hackborn9a230e02011-10-06 11:51:27 -07005504 mView.updateLocalSystemUiVisibility(args.localValue, args.localChanges);
Dianne Hackborn9a230e02011-10-06 11:51:27 -07005505 }
Chris Craikd36a81f2014-07-17 10:16:51 -07005506
5507 int visibility = args.globalVisibility&View.SYSTEM_UI_CLEARABLE_FLAGS;
5508 if (visibility != mAttachInfo.mGlobalSystemUiVisibility) {
5509 mAttachInfo.mGlobalSystemUiVisibility = visibility;
5510 mView.dispatchSystemUiVisibilityChanged(visibility);
Dianne Hackborncf675782012-05-10 15:07:24 -07005511 }
Joe Onorato664644d2011-01-23 17:53:23 -08005512 }
5513
Craig Mautner9c795042014-10-28 19:59:59 -07005514 public void handleDispatchWindowShown() {
5515 mAttachInfo.mTreeObserver.dispatchOnWindowShown();
5516 }
5517
Clara Bayarri75e09792015-07-29 16:20:40 +01005518 public void handleRequestKeyboardShortcuts(IResultReceiver receiver) {
5519 Bundle data = new Bundle();
5520 ArrayList<KeyboardShortcutGroup> list = new ArrayList<>();
5521 if (mView != null) {
5522 mView.requestKeyboardShortcuts(list);
5523 }
5524 data.putParcelableArrayList(WindowManager.PARCEL_KEY_SHORTCUTS_ARRAY, list);
5525 try {
5526 receiver.send(0, data);
5527 } catch (RemoteException e) {
5528 }
5529 }
5530
Christopher Tate2c095f32010-10-04 14:13:40 -07005531 public void getLastTouchPoint(Point outLocation) {
5532 outLocation.x = (int) mLastTouchPoint.x;
5533 outLocation.y = (int) mLastTouchPoint.y;
5534 }
5535
Vladislav Kaznacheevba761122016-01-22 12:09:45 -08005536 public int getLastTouchSource() {
5537 return mLastTouchSource;
5538 }
5539
Chris Tate9d1ab882010-11-02 15:55:39 -07005540 public void setDragFocus(View newDragTarget) {
Christopher Tatea53146c2010-09-07 11:57:52 -07005541 if (mCurrentDragView != newDragTarget) {
Chris Tate048691c2010-10-12 17:39:18 -07005542 mCurrentDragView = newDragTarget;
Christopher Tatea53146c2010-09-07 11:57:52 -07005543 }
Christopher Tatea53146c2010-09-07 11:57:52 -07005544 }
5545
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005546 private AudioManager getAudioManager() {
5547 if (mView == null) {
5548 throw new IllegalStateException("getAudioManager called when there is no mView");
5549 }
5550 if (mAudioManager == null) {
5551 mAudioManager = (AudioManager) mView.getContext().getSystemService(Context.AUDIO_SERVICE);
5552 }
5553 return mAudioManager;
5554 }
5555
Svetoslav Ganov8643aa02011-04-20 12:12:33 -07005556 public AccessibilityInteractionController getAccessibilityInteractionController() {
5557 if (mView == null) {
5558 throw new IllegalStateException("getAccessibilityInteractionController"
5559 + " called when there is no mView");
5560 }
Gilles Debunne5ac84422011-10-19 09:35:58 -07005561 if (mAccessibilityInteractionController == null) {
Svetoslav Ganov42138042012-03-20 11:51:39 -07005562 mAccessibilityInteractionController = new AccessibilityInteractionController(this);
Svetoslav Ganov8643aa02011-04-20 12:12:33 -07005563 }
Gilles Debunne5ac84422011-10-19 09:35:58 -07005564 return mAccessibilityInteractionController;
Svetoslav Ganov8643aa02011-04-20 12:12:33 -07005565 }
5566
Mitsuru Oshima8169dae2009-04-28 18:12:09 -07005567 private int relayoutWindow(WindowManager.LayoutParams params, int viewVisibility,
5568 boolean insetsPending) throws RemoteException {
Mitsuru Oshima64f59342009-06-21 00:03:11 -07005569
5570 float appScale = mAttachInfo.mApplicationScale;
Mitsuru Oshima3d914922009-05-13 22:29:15 -07005571 boolean restore = false;
Mitsuru Oshima64f59342009-06-21 00:03:11 -07005572 if (params != null && mTranslator != null) {
Mitsuru Oshimae5fb3282009-06-09 21:16:08 -07005573 restore = true;
5574 params.backup();
Mitsuru Oshima64f59342009-06-21 00:03:11 -07005575 mTranslator.translateWindowLayout(params);
Mitsuru Oshima9189cab2009-06-03 11:19:12 -07005576 }
Mitsuru Oshima64f59342009-06-21 00:03:11 -07005577 if (params != null) {
Filip Gruszczynski34dab0b2015-12-22 08:29:07 -08005578 if (DBG) Log.d(mTag, "WindowLayout in layoutWindow:" + params);
Mitsuru Oshima3d914922009-05-13 22:29:15 -07005579 }
Dianne Hackborn694f79b2010-03-17 19:44:59 -07005580 mPendingConfiguration.seq = 0;
Filip Gruszczynski34dab0b2015-12-22 08:29:07 -08005581 //Log.d(mTag, ">>>>>> CALLING relayout");
Dianne Hackborn180c4842011-09-13 12:39:25 -07005582 if (params != null && mOrigWindowType != params.type) {
5583 // For compatibility with old apps, don't crash here.
Michael Wright5bd69e62015-05-14 14:48:08 +01005584 if (mTargetSdkVersion < Build.VERSION_CODES.ICE_CREAM_SANDWICH) {
Filip Gruszczynski34dab0b2015-12-22 08:29:07 -08005585 Slog.w(mTag, "Window type can not be changed after "
Dianne Hackborn180c4842011-09-13 12:39:25 -07005586 + "the window is added; ignoring change of " + mView);
5587 params.type = mOrigWindowType;
5588 }
5589 }
Jeff Brown98365d72012-08-19 20:30:52 -07005590 int relayoutResult = mWindowSession.relayout(
Dianne Hackborn9a230e02011-10-06 11:51:27 -07005591 mWindow, mSeq, params,
Dianne Hackborn189ee182010-12-02 21:48:53 -08005592 (int) (mView.getMeasuredWidth() * appScale + 0.5f),
5593 (int) (mView.getMeasuredHeight() * appScale + 0.5f),
Jeff Brown98365d72012-08-19 20:30:52 -07005594 viewVisibility, insetsPending ? WindowManagerGlobal.RELAYOUT_INSETS_PENDING : 0,
Dianne Hackbornc4aad012013-02-22 15:05:25 -08005595 mWinFrame, mPendingOverscanInsets, mPendingContentInsets, mPendingVisibleInsets,
Jorim Jaggi2e95a482016-01-14 17:36:55 -08005596 mPendingStableInsets, mPendingOutsets, mPendingBackDropFrame, mPendingConfiguration,
5597 mSurface);
Jorim Jaggi0ffd49c2016-02-12 15:04:21 -08005598
5599 mPendingAlwaysConsumeNavBar =
5600 (relayoutResult & WindowManagerGlobal.RELAYOUT_RES_CONSUME_ALWAYS_NAV_BAR) != 0;
5601
Filip Gruszczynski34dab0b2015-12-22 08:29:07 -08005602 //Log.d(mTag, "<<<<<< BACK FROM relayout");
Mitsuru Oshima3d914922009-05-13 22:29:15 -07005603 if (restore) {
Mitsuru Oshimae5fb3282009-06-09 21:16:08 -07005604 params.restore();
Mitsuru Oshima3d914922009-05-13 22:29:15 -07005605 }
Igor Murashkina86ab6402013-08-30 12:58:36 -07005606
Mitsuru Oshima64f59342009-06-21 00:03:11 -07005607 if (mTranslator != null) {
5608 mTranslator.translateRectInScreenToAppWinFrame(mWinFrame);
Dianne Hackbornc4aad012013-02-22 15:05:25 -08005609 mTranslator.translateRectInScreenToAppWindow(mPendingOverscanInsets);
Mitsuru Oshima64f59342009-06-21 00:03:11 -07005610 mTranslator.translateRectInScreenToAppWindow(mPendingContentInsets);
5611 mTranslator.translateRectInScreenToAppWindow(mPendingVisibleInsets);
Adrian Roosfa104232014-06-20 16:10:14 -07005612 mTranslator.translateRectInScreenToAppWindow(mPendingStableInsets);
Mitsuru Oshima9189cab2009-06-03 11:19:12 -07005613 }
Mitsuru Oshima8169dae2009-04-28 18:12:09 -07005614 return relayoutResult;
5615 }
Romain Guy8506ab42009-06-11 17:35:47 -07005616
Mitsuru Oshima9189cab2009-06-03 11:19:12 -07005617 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005618 * {@inheritDoc}
5619 */
Igor Murashkina86ab6402013-08-30 12:58:36 -07005620 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005621 public void playSoundEffect(int effectId) {
5622 checkThread();
5623
Jean-Michel Trivi13b18fd2010-05-05 09:18:15 -07005624 try {
5625 final AudioManager audioManager = getAudioManager();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005626
Jean-Michel Trivi13b18fd2010-05-05 09:18:15 -07005627 switch (effectId) {
5628 case SoundEffectConstants.CLICK:
5629 audioManager.playSoundEffect(AudioManager.FX_KEY_CLICK);
5630 return;
5631 case SoundEffectConstants.NAVIGATION_DOWN:
5632 audioManager.playSoundEffect(AudioManager.FX_FOCUS_NAVIGATION_DOWN);
5633 return;
5634 case SoundEffectConstants.NAVIGATION_LEFT:
5635 audioManager.playSoundEffect(AudioManager.FX_FOCUS_NAVIGATION_LEFT);
5636 return;
5637 case SoundEffectConstants.NAVIGATION_RIGHT:
5638 audioManager.playSoundEffect(AudioManager.FX_FOCUS_NAVIGATION_RIGHT);
5639 return;
5640 case SoundEffectConstants.NAVIGATION_UP:
5641 audioManager.playSoundEffect(AudioManager.FX_FOCUS_NAVIGATION_UP);
5642 return;
5643 default:
5644 throw new IllegalArgumentException("unknown effect id " + effectId +
5645 " not defined in " + SoundEffectConstants.class.getCanonicalName());
5646 }
5647 } catch (IllegalStateException e) {
5648 // Exception thrown by getAudioManager() when mView is null
Filip Gruszczynski34dab0b2015-12-22 08:29:07 -08005649 Log.e(mTag, "FATAL EXCEPTION when attempting to play sound effect: " + e);
Jean-Michel Trivi13b18fd2010-05-05 09:18:15 -07005650 e.printStackTrace();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005651 }
5652 }
5653
5654 /**
5655 * {@inheritDoc}
5656 */
Igor Murashkina86ab6402013-08-30 12:58:36 -07005657 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005658 public boolean performHapticFeedback(int effectId, boolean always) {
5659 try {
Jeff Brown98365d72012-08-19 20:30:52 -07005660 return mWindowSession.performHapticFeedback(mWindow, effectId, always);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005661 } catch (RemoteException e) {
5662 return false;
5663 }
5664 }
5665
5666 /**
5667 * {@inheritDoc}
5668 */
Igor Murashkina86ab6402013-08-30 12:58:36 -07005669 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005670 public View focusSearch(View focused, int direction) {
5671 checkThread();
5672 if (!(mView instanceof ViewGroup)) {
5673 return null;
5674 }
5675 return FocusFinder.getInstance().findNextFocus((ViewGroup) mView, focused, direction);
5676 }
5677
5678 public void debug() {
5679 mView.debug();
5680 }
Igor Murashkina86ab6402013-08-30 12:58:36 -07005681
Jeff Brown5182c782013-10-15 20:31:52 -07005682 public void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args) {
5683 String innerPrefix = prefix + " ";
5684 writer.print(prefix); writer.println("ViewRoot:");
5685 writer.print(innerPrefix); writer.print("mAdded="); writer.print(mAdded);
5686 writer.print(" mRemoved="); writer.println(mRemoved);
5687 writer.print(innerPrefix); writer.print("mConsumeBatchedInputScheduled=");
5688 writer.println(mConsumeBatchedInputScheduled);
Michael Wright9d744c72014-02-18 21:27:42 -08005689 writer.print(innerPrefix); writer.print("mConsumeBatchedInputImmediatelyScheduled=");
5690 writer.println(mConsumeBatchedInputImmediatelyScheduled);
Jeff Brown5182c782013-10-15 20:31:52 -07005691 writer.print(innerPrefix); writer.print("mPendingInputEventCount=");
5692 writer.println(mPendingInputEventCount);
5693 writer.print(innerPrefix); writer.print("mProcessInputEventsScheduled=");
5694 writer.println(mProcessInputEventsScheduled);
5695 writer.print(innerPrefix); writer.print("mTraversalScheduled=");
5696 writer.print(mTraversalScheduled);
Daniel Koulomzin087ae472015-12-16 17:52:25 -05005697 writer.print(innerPrefix); writer.print("mIsAmbientMode=");
5698 writer.print(mIsAmbientMode);
Jeff Brown5182c782013-10-15 20:31:52 -07005699 if (mTraversalScheduled) {
5700 writer.print(" (barrier="); writer.print(mTraversalBarrier); writer.println(")");
5701 } else {
5702 writer.println();
5703 }
5704 mFirstInputStage.dump(innerPrefix, writer);
5705
5706 mChoreographer.dump(prefix, writer);
5707
5708 writer.print(prefix); writer.println("View Hierarchy:");
5709 dumpViewHierarchy(innerPrefix, writer, mView);
5710 }
5711
5712 private void dumpViewHierarchy(String prefix, PrintWriter writer, View view) {
5713 writer.print(prefix);
5714 if (view == null) {
5715 writer.println("null");
5716 return;
5717 }
5718 writer.println(view.toString());
5719 if (!(view instanceof ViewGroup)) {
5720 return;
5721 }
5722 ViewGroup grp = (ViewGroup)view;
5723 final int N = grp.getChildCount();
5724 if (N <= 0) {
5725 return;
5726 }
5727 prefix = prefix + " ";
5728 for (int i=0; i<N; i++) {
5729 dumpViewHierarchy(prefix, writer, grp.getChildAt(i));
5730 }
5731 }
5732
Romain Guy211370f2012-02-01 16:10:55 -08005733 public void dumpGfxInfo(int[] info) {
Romain Guy54ab3472012-06-14 12:52:53 -07005734 info[0] = info[1] = 0;
Romain Guy65b345f2011-07-27 18:51:50 -07005735 if (mView != null) {
5736 getGfxInfo(mView, info);
Romain Guy65b345f2011-07-27 18:51:50 -07005737 }
5738 }
5739
Romain Guya998dff2012-03-23 18:58:36 -07005740 private static void getGfxInfo(View view, int[] info) {
Chris Craik64a12e12014-03-28 18:12:12 -07005741 RenderNode renderNode = view.mRenderNode;
Romain Guy65b345f2011-07-27 18:51:50 -07005742 info[0]++;
Chris Craik64a12e12014-03-28 18:12:12 -07005743 if (renderNode != null) {
John Reckfe5e7b72014-05-23 17:42:28 -07005744 info[1] += renderNode.getDebugSize();
Romain Guy65b345f2011-07-27 18:51:50 -07005745 }
5746
5747 if (view instanceof ViewGroup) {
5748 ViewGroup group = (ViewGroup) view;
5749
5750 int count = group.getChildCount();
5751 for (int i = 0; i < count; i++) {
5752 getGfxInfo(group.getChildAt(i), info);
5753 }
5754 }
5755 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005756
Craig Mautner8f303ad2013-06-14 11:32:22 -07005757 /**
5758 * @param immediate True, do now if not in traversal. False, put on queue and do later.
5759 * @return True, request has been queued. False, request has been completed.
5760 */
5761 boolean die(boolean immediate) {
Craig Mautnerdf2390a2012-08-29 20:59:22 -07005762 // Make sure we do execute immediately if we are in the middle of a traversal or the damage
5763 // done by dispatchDetachedFromWindow will cause havoc on return.
5764 if (immediate && !mIsInTraversal) {
Dianne Hackborn94d69142009-09-28 22:14:42 -07005765 doDie();
Craig Mautner8f303ad2013-06-14 11:32:22 -07005766 return false;
Dianne Hackborn94d69142009-09-28 22:14:42 -07005767 }
Craig Mautner8f303ad2013-06-14 11:32:22 -07005768
5769 if (!mIsDrawing) {
5770 destroyHardwareRenderer();
5771 } else {
Filip Gruszczynski34dab0b2015-12-22 08:29:07 -08005772 Log.e(mTag, "Attempting to destroy the window while drawing!\n" +
Craig Mautner8f303ad2013-06-14 11:32:22 -07005773 " window=" + this + ", title=" + mWindowAttributes.getTitle());
5774 }
5775 mHandler.sendEmptyMessage(MSG_DIE);
5776 return true;
Dianne Hackborn94d69142009-09-28 22:14:42 -07005777 }
5778
5779 void doDie() {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005780 checkThread();
Filip Gruszczynski34dab0b2015-12-22 08:29:07 -08005781 if (LOCAL_LOGV) Log.v(mTag, "DIE in " + this + " of " + mSurface);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005782 synchronized (this) {
Craig Mautner8f303ad2013-06-14 11:32:22 -07005783 if (mRemoved) {
5784 return;
5785 }
5786 mRemoved = true;
Romain Guy16260e72011-09-01 14:26:11 -07005787 if (mAdded) {
Romain Guy16260e72011-09-01 14:26:11 -07005788 dispatchDetachedFromWindow();
5789 }
5790
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005791 if (mAdded && !mFirst) {
Romain Guy29d89972010-09-22 16:10:57 -07005792 destroyHardwareRenderer();
5793
Romain Guyedbca122012-04-04 18:25:53 -07005794 if (mView != null) {
5795 int viewVisibility = mView.getVisibility();
5796 boolean viewVisibilityChanged = mViewVisibility != viewVisibility;
5797 if (mWindowAttributesChanged || viewVisibilityChanged) {
5798 // If layout params have been changed, first give them
5799 // to the window manager to make sure it has the correct
5800 // animation info.
5801 try {
5802 if ((relayoutWindow(mWindowAttributes, viewVisibility, false)
Jeff Brown98365d72012-08-19 20:30:52 -07005803 & WindowManagerGlobal.RELAYOUT_RES_FIRST_TIME) != 0) {
5804 mWindowSession.finishDrawing(mWindow);
Romain Guyedbca122012-04-04 18:25:53 -07005805 }
5806 } catch (RemoteException e) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005807 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005808 }
Craig Mautner8f303ad2013-06-14 11:32:22 -07005809
Romain Guyedbca122012-04-04 18:25:53 -07005810 mSurface.release();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005811 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005812 }
Romain Guyedbca122012-04-04 18:25:53 -07005813
5814 mAdded = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005815 }
Craig Mautner05eb7302013-06-03 17:24:21 -07005816 WindowManagerGlobal.getInstance().doRemoveView(this);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005817 }
5818
Dianne Hackborn5fd21692011-06-07 14:09:47 -07005819 public void requestUpdateConfiguration(Configuration config) {
Jeff Browna175a5b2012-02-15 19:18:31 -08005820 Message msg = mHandler.obtainMessage(MSG_UPDATE_CONFIGURATION, config);
5821 mHandler.sendMessage(msg);
Dianne Hackborn5fd21692011-06-07 14:09:47 -07005822 }
5823
Dianne Hackborna53de062012-05-08 18:53:51 -07005824 public void loadSystemProperties() {
Romain Guy5bb3c732012-11-29 17:52:58 -08005825 mHandler.post(new Runnable() {
5826 @Override
5827 public void run() {
5828 // Profiling
5829 mProfileRendering = SystemProperties.getBoolean(PROPERTY_PROFILE_RENDERING, false);
5830 profileRendering(mAttachInfo.mHasWindowFocus);
5831
5832 // Hardware rendering
5833 if (mAttachInfo.mHardwareRenderer != null) {
John Reckcec24ae2013-11-05 13:27:50 -08005834 if (mAttachInfo.mHardwareRenderer.loadSystemProperties()) {
Romain Guy5bb3c732012-11-29 17:52:58 -08005835 invalidate();
5836 }
5837 }
5838
5839 // Layout debugging
5840 boolean layout = SystemProperties.getBoolean(View.DEBUG_LAYOUT_PROPERTY, false);
5841 if (layout != mAttachInfo.mDebugLayout) {
5842 mAttachInfo.mDebugLayout = layout;
5843 if (!mHandler.hasMessages(MSG_INVALIDATE_WORLD)) {
5844 mHandler.sendEmptyMessageDelayed(MSG_INVALIDATE_WORLD, 200);
5845 }
5846 }
Dianne Hackborna53de062012-05-08 18:53:51 -07005847 }
Romain Guy5bb3c732012-11-29 17:52:58 -08005848 });
Dianne Hackborna53de062012-05-08 18:53:51 -07005849 }
5850
Romain Guy29d89972010-09-22 16:10:57 -07005851 private void destroyHardwareRenderer() {
John Reck51aaf902015-12-02 15:08:07 -08005852 ThreadedRenderer hardwareRenderer = mAttachInfo.mHardwareRenderer;
Romain Guya998dff2012-03-23 18:58:36 -07005853
5854 if (hardwareRenderer != null) {
5855 if (mView != null) {
5856 hardwareRenderer.destroyHardwareResources(mView);
5857 }
John Reckf47a5942014-06-30 16:20:04 -07005858 hardwareRenderer.destroy();
Romain Guya998dff2012-03-23 18:58:36 -07005859 hardwareRenderer.setRequested(false);
5860
Chris Craikd36a81f2014-07-17 10:16:51 -07005861 mAttachInfo.mHardwareRenderer = null;
5862 mAttachInfo.mHardwareAccelerated = false;
Romain Guy29d89972010-09-22 16:10:57 -07005863 }
5864 }
5865
Jeff Browna175a5b2012-02-15 19:18:31 -08005866 public void dispatchFinishInputConnection(InputConnection connection) {
5867 Message msg = mHandler.obtainMessage(MSG_FINISH_INPUT_CONNECTION, connection);
5868 mHandler.sendMessage(msg);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005869 }
Mitsuru Oshima3d914922009-05-13 22:29:15 -07005870
Dianne Hackbornc4aad012013-02-22 15:05:25 -08005871 public void dispatchResized(Rect frame, Rect overscanInsets, Rect contentInsets,
Filip Gruszczynski2217f612015-05-26 11:32:08 -07005872 Rect visibleInsets, Rect stableInsets, Rect outsets, boolean reportDraw,
Jorim Jaggi0ffd49c2016-02-12 15:04:21 -08005873 Configuration newConfig, Rect backDropFrame, boolean forceLayout,
5874 boolean alwaysConsumeNavBar) {
Filip Gruszczynski34dab0b2015-12-22 08:29:07 -08005875 if (DEBUG_LAYOUT) Log.v(mTag, "Resizing " + this + ": frame=" + frame.toShortString()
Svetoslav Ganov758143e2012-08-06 16:40:27 -07005876 + " contentInsets=" + contentInsets.toShortString()
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005877 + " visibleInsets=" + visibleInsets.toShortString()
Chong Zhangd153c4f2015-11-06 20:26:40 -08005878 + " reportDraw=" + reportDraw
5879 + " backDropFrame=" + backDropFrame);
Chong Zhangdcee1de2015-10-06 10:26:00 -07005880
5881 // Tell all listeners that we are resizing the window so that the chrome can get
5882 // updated as fast as possible on a separate thread,
5883 if (mDragResizing) {
Jorim Jaggi9511b0f2016-01-29 19:12:44 -08005884 boolean fullscreen = frame.equals(backDropFrame);
Chong Zhangdcee1de2015-10-06 10:26:00 -07005885 synchronized (mWindowCallbacks) {
5886 for (int i = mWindowCallbacks.size() - 1; i >= 0; i--) {
Jorim Jaggi9511b0f2016-01-29 19:12:44 -08005887 mWindowCallbacks.get(i).onWindowSizeIsChanging(backDropFrame, fullscreen,
5888 visibleInsets, stableInsets);
Chong Zhangdcee1de2015-10-06 10:26:00 -07005889 }
5890 }
5891 }
5892
Svetoslav Ganov758143e2012-08-06 16:40:27 -07005893 Message msg = mHandler.obtainMessage(reportDraw ? MSG_RESIZED_REPORT : MSG_RESIZED);
Mitsuru Oshima64f59342009-06-21 00:03:11 -07005894 if (mTranslator != null) {
Svetoslav Ganov758143e2012-08-06 16:40:27 -07005895 mTranslator.translateRectInScreenToAppWindow(frame);
Dianne Hackbornc4aad012013-02-22 15:05:25 -08005896 mTranslator.translateRectInScreenToAppWindow(overscanInsets);
Dianne Hackborn3556c9a2012-05-04 16:31:25 -07005897 mTranslator.translateRectInScreenToAppWindow(contentInsets);
Mitsuru Oshima64f59342009-06-21 00:03:11 -07005898 mTranslator.translateRectInScreenToAppWindow(visibleInsets);
Mitsuru Oshima9189cab2009-06-03 11:19:12 -07005899 }
Svetoslav Ganov758143e2012-08-06 16:40:27 -07005900 SomeArgs args = SomeArgs.obtain();
5901 final boolean sameProcessCall = (Binder.getCallingPid() == android.os.Process.myPid());
5902 args.arg1 = sameProcessCall ? new Rect(frame) : frame;
5903 args.arg2 = sameProcessCall ? new Rect(contentInsets) : contentInsets;
5904 args.arg3 = sameProcessCall ? new Rect(visibleInsets) : visibleInsets;
5905 args.arg4 = sameProcessCall && newConfig != null ? new Configuration(newConfig) : newConfig;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08005906 args.arg5 = sameProcessCall ? new Rect(overscanInsets) : overscanInsets;
Adrian Roosfa104232014-06-20 16:10:14 -07005907 args.arg6 = sameProcessCall ? new Rect(stableInsets) : stableInsets;
Filip Gruszczynski2217f612015-05-26 11:32:08 -07005908 args.arg7 = sameProcessCall ? new Rect(outsets) : outsets;
Jorim Jaggia7262a82015-11-03 15:15:40 +01005909 args.arg8 = sameProcessCall ? new Rect(backDropFrame) : backDropFrame;
Jorim Jaggia4a58ef2016-01-27 02:10:08 -08005910 args.argi1 = forceLayout ? 1 : 0;
Jorim Jaggi0ffd49c2016-02-12 15:04:21 -08005911 args.argi2 = alwaysConsumeNavBar ? 1 : 0;
Svetoslav Ganov758143e2012-08-06 16:40:27 -07005912 msg.obj = args;
Jeff Browna175a5b2012-02-15 19:18:31 -08005913 mHandler.sendMessage(msg);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005914 }
Chet Haase1f4786b2011-11-02 10:51:52 -07005915
Craig Mautner5702d4d2012-06-30 14:10:16 -07005916 public void dispatchMoved(int newX, int newY) {
Filip Gruszczynski34dab0b2015-12-22 08:29:07 -08005917 if (DEBUG_LAYOUT) Log.v(mTag, "Window moved " + this + ": newX=" + newX + " newY=" + newY);
Craig Mautner5702d4d2012-06-30 14:10:16 -07005918 if (mTranslator != null) {
5919 PointF point = new PointF(newX, newY);
5920 mTranslator.translatePointInScreenToAppWindow(point);
5921 newX = (int) (point.x + 0.5);
5922 newY = (int) (point.y + 0.5);
5923 }
5924 Message msg = mHandler.obtainMessage(MSG_WINDOW_MOVED, newX, newY);
5925 mHandler.sendMessage(msg);
5926 }
5927
Jeff Brown4952dfd2011-11-30 19:23:22 -08005928 /**
5929 * Represents a pending input event that is waiting in a queue.
5930 *
5931 * Input events are processed in serial order by the timestamp specified by
Romain Guy211370f2012-02-01 16:10:55 -08005932 * {@link InputEvent#getEventTimeNano()}. In general, the input dispatcher delivers
Jeff Brown4952dfd2011-11-30 19:23:22 -08005933 * one input event to the application at a time and waits for the application
5934 * to finish handling it before delivering the next one.
5935 *
5936 * However, because the application or IME can synthesize and inject multiple
5937 * key events at a time without going through the input dispatcher, we end up
5938 * needing a queue on the application's side.
5939 */
5940 private static final class QueuedInputEvent {
Jeff Brownf9e989d2013-04-04 23:04:03 -07005941 public static final int FLAG_DELIVER_POST_IME = 1 << 0;
5942 public static final int FLAG_DEFERRED = 1 << 1;
5943 public static final int FLAG_FINISHED = 1 << 2;
5944 public static final int FLAG_FINISHED_HANDLED = 1 << 3;
5945 public static final int FLAG_RESYNTHESIZED = 1 << 4;
Michael Wright899d7052014-04-23 17:23:39 -07005946 public static final int FLAG_UNHANDLED = 1 << 5;
Jeff Brown4952dfd2011-11-30 19:23:22 -08005947
5948 public QueuedInputEvent mNext;
5949
5950 public InputEvent mEvent;
Jeff Brown32cbc38552011-12-01 14:01:49 -08005951 public InputEventReceiver mReceiver;
Jeff Brown4952dfd2011-11-30 19:23:22 -08005952 public int mFlags;
Jeff Brownf9e989d2013-04-04 23:04:03 -07005953
5954 public boolean shouldSkipIme() {
5955 if ((mFlags & FLAG_DELIVER_POST_IME) != 0) {
5956 return true;
5957 }
5958 return mEvent instanceof MotionEvent
5959 && mEvent.isFromSource(InputDevice.SOURCE_CLASS_POINTER);
5960 }
Michael Wright899d7052014-04-23 17:23:39 -07005961
5962 public boolean shouldSendToSynthesizer() {
5963 if ((mFlags & FLAG_UNHANDLED) != 0) {
5964 return true;
5965 }
5966
5967 return false;
5968 }
Michael Wright06a79252014-05-05 17:45:29 -07005969
5970 @Override
5971 public String toString() {
5972 StringBuilder sb = new StringBuilder("QueuedInputEvent{flags=");
5973 boolean hasPrevious = false;
5974 hasPrevious = flagToString("DELIVER_POST_IME", FLAG_DELIVER_POST_IME, hasPrevious, sb);
5975 hasPrevious = flagToString("DEFERRED", FLAG_DEFERRED, hasPrevious, sb);
5976 hasPrevious = flagToString("FINISHED", FLAG_FINISHED, hasPrevious, sb);
5977 hasPrevious = flagToString("FINISHED_HANDLED", FLAG_FINISHED_HANDLED, hasPrevious, sb);
5978 hasPrevious = flagToString("RESYNTHESIZED", FLAG_RESYNTHESIZED, hasPrevious, sb);
5979 hasPrevious = flagToString("UNHANDLED", FLAG_UNHANDLED, hasPrevious, sb);
5980 if (!hasPrevious) {
5981 sb.append("0");
5982 }
5983 sb.append(", hasNextQueuedEvent=" + (mEvent != null ? "true" : "false"));
5984 sb.append(", hasInputEventReceiver=" + (mReceiver != null ? "true" : "false"));
5985 sb.append(", mEvent=" + mEvent + "}");
5986 return sb.toString();
5987 }
5988
5989 private boolean flagToString(String name, int flag,
5990 boolean hasPrevious, StringBuilder sb) {
5991 if ((mFlags & flag) != 0) {
5992 if (hasPrevious) {
5993 sb.append("|");
5994 }
5995 sb.append(name);
5996 return true;
5997 }
5998 return hasPrevious;
5999 }
Jeff Brown4952dfd2011-11-30 19:23:22 -08006000 }
6001
6002 private QueuedInputEvent obtainQueuedInputEvent(InputEvent event,
Jeff Brown32cbc38552011-12-01 14:01:49 -08006003 InputEventReceiver receiver, int flags) {
Jeff Brown4952dfd2011-11-30 19:23:22 -08006004 QueuedInputEvent q = mQueuedInputEventPool;
6005 if (q != null) {
6006 mQueuedInputEventPoolSize -= 1;
6007 mQueuedInputEventPool = q.mNext;
6008 q.mNext = null;
6009 } else {
6010 q = new QueuedInputEvent();
Jeff Brown46b9ac02010-04-22 18:58:52 -07006011 }
6012
Jeff Brown4952dfd2011-11-30 19:23:22 -08006013 q.mEvent = event;
Jeff Brown32cbc38552011-12-01 14:01:49 -08006014 q.mReceiver = receiver;
Jeff Brown4952dfd2011-11-30 19:23:22 -08006015 q.mFlags = flags;
Jeff Brown4952dfd2011-11-30 19:23:22 -08006016 return q;
6017 }
6018
6019 private void recycleQueuedInputEvent(QueuedInputEvent q) {
6020 q.mEvent = null;
Jeff Brown32cbc38552011-12-01 14:01:49 -08006021 q.mReceiver = null;
Jeff Brown4952dfd2011-11-30 19:23:22 -08006022
6023 if (mQueuedInputEventPoolSize < MAX_QUEUED_INPUT_EVENT_POOL_SIZE) {
6024 mQueuedInputEventPoolSize += 1;
6025 q.mNext = mQueuedInputEventPool;
6026 mQueuedInputEventPool = q;
6027 }
6028 }
6029
Jeff Brownf9261d22012-02-03 13:49:15 -08006030 void enqueueInputEvent(InputEvent event) {
6031 enqueueInputEvent(event, null, 0, false);
6032 }
6033
Jeff Brown4952dfd2011-11-30 19:23:22 -08006034 void enqueueInputEvent(InputEvent event,
Jeff Brownf9261d22012-02-03 13:49:15 -08006035 InputEventReceiver receiver, int flags, boolean processImmediately) {
Michael Wright5bd69e62015-05-14 14:48:08 +01006036 adjustInputEventForCompatibility(event);
Jeff Brown32cbc38552011-12-01 14:01:49 -08006037 QueuedInputEvent q = obtainQueuedInputEvent(event, receiver, flags);
Jeff Brown4952dfd2011-11-30 19:23:22 -08006038
Jeff Brown4952dfd2011-11-30 19:23:22 -08006039 // Always enqueue the input event in order, regardless of its time stamp.
6040 // We do this because the application or the IME may inject key events
6041 // in response to touch events and we want to ensure that the injected keys
6042 // are processed in the order they were received and we cannot trust that
6043 // the time stamp of injected events are monotonic.
Michael Wrightc8a7e542013-03-20 17:58:33 -07006044 QueuedInputEvent last = mPendingInputEventTail;
Jeff Brown4952dfd2011-11-30 19:23:22 -08006045 if (last == null) {
Michael Wrightc8a7e542013-03-20 17:58:33 -07006046 mPendingInputEventHead = q;
6047 mPendingInputEventTail = q;
Jeff Brown4952dfd2011-11-30 19:23:22 -08006048 } else {
Jeff Brown4952dfd2011-11-30 19:23:22 -08006049 last.mNext = q;
Michael Wrightc8a7e542013-03-20 17:58:33 -07006050 mPendingInputEventTail = q;
Jeff Brown4952dfd2011-11-30 19:23:22 -08006051 }
Michael Wright95ae9422013-03-14 10:58:50 -07006052 mPendingInputEventCount += 1;
6053 Trace.traceCounter(Trace.TRACE_TAG_INPUT, mPendingInputEventQueueLengthCounterName,
6054 mPendingInputEventCount);
Jeff Brown4952dfd2011-11-30 19:23:22 -08006055
Jeff Brownf9261d22012-02-03 13:49:15 -08006056 if (processImmediately) {
6057 doProcessInputEvents();
6058 } else {
6059 scheduleProcessInputEvents();
6060 }
Jeff Brown4952dfd2011-11-30 19:23:22 -08006061 }
6062
6063 private void scheduleProcessInputEvents() {
Jeff Brown96e942d2011-11-30 19:55:01 -08006064 if (!mProcessInputEventsScheduled) {
6065 mProcessInputEventsScheduled = true;
Jeff Brownebb2d8d2012-03-23 17:14:34 -07006066 Message msg = mHandler.obtainMessage(MSG_PROCESS_INPUT_EVENTS);
6067 msg.setAsynchronous(true);
6068 mHandler.sendMessage(msg);
Jeff Brown4952dfd2011-11-30 19:23:22 -08006069 }
6070 }
6071
Jeff Brownebb2d8d2012-03-23 17:14:34 -07006072 void doProcessInputEvents() {
Jeff Brownf9e989d2013-04-04 23:04:03 -07006073 // Deliver all pending input events in the queue.
Michael Wrightc8a7e542013-03-20 17:58:33 -07006074 while (mPendingInputEventHead != null) {
6075 QueuedInputEvent q = mPendingInputEventHead;
6076 mPendingInputEventHead = q.mNext;
6077 if (mPendingInputEventHead == null) {
6078 mPendingInputEventTail = null;
6079 }
Jeff Brown4952dfd2011-11-30 19:23:22 -08006080 q.mNext = null;
Jeff Brown29c0ed22013-01-14 13:50:37 -08006081
Michael Wright95ae9422013-03-14 10:58:50 -07006082 mPendingInputEventCount -= 1;
6083 Trace.traceCounter(Trace.TRACE_TAG_INPUT, mPendingInputEventQueueLengthCounterName,
6084 mPendingInputEventCount);
6085
John Reckba6adf62015-02-19 14:36:50 -08006086 long eventTime = q.mEvent.getEventTimeNano();
6087 long oldestEventTime = eventTime;
6088 if (q.mEvent instanceof MotionEvent) {
6089 MotionEvent me = (MotionEvent)q.mEvent;
6090 if (me.getHistorySize() > 0) {
6091 oldestEventTime = me.getHistoricalEventTimeNano(0);
6092 }
6093 }
6094 mChoreographer.mFrameInfo.updateInputEventTime(eventTime, oldestEventTime);
6095
Jeff Brownf9e989d2013-04-04 23:04:03 -07006096 deliverInputEvent(q);
Jeff Brown4952dfd2011-11-30 19:23:22 -08006097 }
6098
6099 // We are done processing all input events that we can process right now
6100 // so we can clear the pending flag immediately.
Jeff Brown96e942d2011-11-30 19:55:01 -08006101 if (mProcessInputEventsScheduled) {
6102 mProcessInputEventsScheduled = false;
Jeff Browna175a5b2012-02-15 19:18:31 -08006103 mHandler.removeMessages(MSG_PROCESS_INPUT_EVENTS);
Jeff Brown4952dfd2011-11-30 19:23:22 -08006104 }
6105 }
6106
Jeff Brownf9e989d2013-04-04 23:04:03 -07006107 private void deliverInputEvent(QueuedInputEvent q) {
Michael Wrightd2c3adc2014-02-18 22:50:50 -08006108 Trace.asyncTraceBegin(Trace.TRACE_TAG_VIEW, "deliverInputEvent",
6109 q.mEvent.getSequenceNumber());
6110 if (mInputEventConsistencyVerifier != null) {
6111 mInputEventConsistencyVerifier.onInputEvent(q.mEvent, 0);
6112 }
Michael Wrightc8a7e542013-03-20 17:58:33 -07006113
Michael Wright899d7052014-04-23 17:23:39 -07006114 InputStage stage;
6115 if (q.shouldSendToSynthesizer()) {
6116 stage = mSyntheticInputStage;
6117 } else {
6118 stage = q.shouldSkipIme() ? mFirstPostImeInputStage : mFirstInputStage;
6119 }
6120
Michael Wrightd2c3adc2014-02-18 22:50:50 -08006121 if (stage != null) {
6122 stage.deliver(q);
6123 } else {
6124 finishInputEvent(q);
Michael Wrightbf020962013-03-28 17:27:50 -07006125 }
Michael Wrightbf020962013-03-28 17:27:50 -07006126 }
6127
Jeff Brownf9e989d2013-04-04 23:04:03 -07006128 private void finishInputEvent(QueuedInputEvent q) {
Michael Wrightd2c3adc2014-02-18 22:50:50 -08006129 Trace.asyncTraceEnd(Trace.TRACE_TAG_VIEW, "deliverInputEvent",
6130 q.mEvent.getSequenceNumber());
Michael Wright9d744c72014-02-18 21:27:42 -08006131
Jeff Brown32cbc38552011-12-01 14:01:49 -08006132 if (q.mReceiver != null) {
Jeff Brownf9e989d2013-04-04 23:04:03 -07006133 boolean handled = (q.mFlags & QueuedInputEvent.FLAG_FINISHED_HANDLED) != 0;
Jeff Brown32cbc38552011-12-01 14:01:49 -08006134 q.mReceiver.finishInputEvent(q.mEvent, handled);
Jeff Brown92cc2d82011-12-02 01:19:47 -08006135 } else {
6136 q.mEvent.recycleIfNeededAfterDispatch();
Jeff Brown4952dfd2011-11-30 19:23:22 -08006137 }
6138
6139 recycleQueuedInputEvent(q);
Jeff Brown29c0ed22013-01-14 13:50:37 -08006140 }
Jeff Brown4952dfd2011-11-30 19:23:22 -08006141
Michael Wright5bd69e62015-05-14 14:48:08 +01006142 private void adjustInputEventForCompatibility(InputEvent e) {
Dianne Hackborn0e3de6c2015-07-29 15:20:21 -07006143 if (mTargetSdkVersion < Build.VERSION_CODES.M && e instanceof MotionEvent) {
Michael Wright5bd69e62015-05-14 14:48:08 +01006144 MotionEvent motion = (MotionEvent) e;
6145 final int mask =
6146 MotionEvent.BUTTON_STYLUS_PRIMARY | MotionEvent.BUTTON_STYLUS_SECONDARY;
6147 final int buttonState = motion.getButtonState();
6148 final int compatButtonState = (buttonState & mask) >> 4;
6149 if (compatButtonState != 0) {
6150 motion.setButtonState(buttonState | compatButtonState);
6151 }
6152 }
6153 }
6154
Jeff Brownf9e989d2013-04-04 23:04:03 -07006155 static boolean isTerminalInputEvent(InputEvent event) {
Jeff Brown29c0ed22013-01-14 13:50:37 -08006156 if (event instanceof KeyEvent) {
6157 final KeyEvent keyEvent = (KeyEvent)event;
6158 return keyEvent.getAction() == KeyEvent.ACTION_UP;
6159 } else {
6160 final MotionEvent motionEvent = (MotionEvent)event;
6161 final int action = motionEvent.getAction();
6162 return action == MotionEvent.ACTION_UP
6163 || action == MotionEvent.ACTION_CANCEL
6164 || action == MotionEvent.ACTION_HOVER_EXIT;
Jeff Brown4952dfd2011-11-30 19:23:22 -08006165 }
6166 }
6167
Jeff Brownebb2d8d2012-03-23 17:14:34 -07006168 void scheduleConsumeBatchedInput() {
6169 if (!mConsumeBatchedInputScheduled) {
6170 mConsumeBatchedInputScheduled = true;
6171 mChoreographer.postCallback(Choreographer.CALLBACK_INPUT,
6172 mConsumedBatchedInputRunnable, null);
Jeff Brown4a06c802012-02-15 15:06:01 -08006173 }
6174 }
Jeff Brownebb2d8d2012-03-23 17:14:34 -07006175
6176 void unscheduleConsumeBatchedInput() {
6177 if (mConsumeBatchedInputScheduled) {
6178 mConsumeBatchedInputScheduled = false;
6179 mChoreographer.removeCallbacks(Choreographer.CALLBACK_INPUT,
6180 mConsumedBatchedInputRunnable, null);
6181 }
6182 }
6183
Michael Wright9d744c72014-02-18 21:27:42 -08006184 void scheduleConsumeBatchedInputImmediately() {
6185 if (!mConsumeBatchedInputImmediatelyScheduled) {
6186 unscheduleConsumeBatchedInput();
6187 mConsumeBatchedInputImmediatelyScheduled = true;
6188 mHandler.post(mConsumeBatchedInputImmediatelyRunnable);
6189 }
6190 }
6191
Jeff Brown771526c2012-04-27 15:13:25 -07006192 void doConsumeBatchedInput(long frameTimeNanos) {
Jeff Brownebb2d8d2012-03-23 17:14:34 -07006193 if (mConsumeBatchedInputScheduled) {
6194 mConsumeBatchedInputScheduled = false;
Jeff Brown330314c2012-04-27 02:20:22 -07006195 if (mInputEventReceiver != null) {
Michael Wright9d744c72014-02-18 21:27:42 -08006196 if (mInputEventReceiver.consumeBatchedInputEvents(frameTimeNanos)
6197 && frameTimeNanos != -1) {
Michael Wright62ce65d2013-10-25 14:50:36 -07006198 // If we consumed a batch here, we want to go ahead and schedule the
6199 // consumption of batched input events on the next frame. Otherwise, we would
6200 // wait until we have more input events pending and might get starved by other
Michael Wright9d744c72014-02-18 21:27:42 -08006201 // things occurring in the process. If the frame time is -1, however, then
6202 // we're in a non-batching mode, so there's no need to schedule this.
Michael Wright62ce65d2013-10-25 14:50:36 -07006203 scheduleConsumeBatchedInput();
6204 }
Jeff Brownebb2d8d2012-03-23 17:14:34 -07006205 }
Jeff Brown330314c2012-04-27 02:20:22 -07006206 doProcessInputEvents();
Jeff Brownebb2d8d2012-03-23 17:14:34 -07006207 }
6208 }
6209
6210 final class TraversalRunnable implements Runnable {
6211 @Override
6212 public void run() {
6213 doTraversal();
6214 }
6215 }
6216 final TraversalRunnable mTraversalRunnable = new TraversalRunnable();
Jeff Brown4a06c802012-02-15 15:06:01 -08006217
Jeff Brown32cbc38552011-12-01 14:01:49 -08006218 final class WindowInputEventReceiver extends InputEventReceiver {
6219 public WindowInputEventReceiver(InputChannel inputChannel, Looper looper) {
6220 super(inputChannel, looper);
Jeff Brown46b9ac02010-04-22 18:58:52 -07006221 }
Jeff Brown32cbc38552011-12-01 14:01:49 -08006222
6223 @Override
6224 public void onInputEvent(InputEvent event) {
Jeff Brownf9261d22012-02-03 13:49:15 -08006225 enqueueInputEvent(event, this, 0, true);
Jeff Brown32cbc38552011-12-01 14:01:49 -08006226 }
Jeff Brown072ec962012-02-07 14:46:57 -08006227
6228 @Override
6229 public void onBatchedInputEventPending() {
Michael Wright9d744c72014-02-18 21:27:42 -08006230 if (mUnbufferedInputDispatch) {
6231 super.onBatchedInputEventPending();
6232 } else {
6233 scheduleConsumeBatchedInput();
6234 }
Jeff Brownebb2d8d2012-03-23 17:14:34 -07006235 }
6236
6237 @Override
6238 public void dispose() {
6239 unscheduleConsumeBatchedInput();
6240 super.dispose();
Jeff Brown072ec962012-02-07 14:46:57 -08006241 }
Jeff Brown32cbc38552011-12-01 14:01:49 -08006242 }
6243 WindowInputEventReceiver mInputEventReceiver;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006244
Jeff Brownebb2d8d2012-03-23 17:14:34 -07006245 final class ConsumeBatchedInputRunnable implements Runnable {
6246 @Override
6247 public void run() {
Jeff Brown771526c2012-04-27 15:13:25 -07006248 doConsumeBatchedInput(mChoreographer.getFrameTimeNanos());
Jeff Brownebb2d8d2012-03-23 17:14:34 -07006249 }
6250 }
6251 final ConsumeBatchedInputRunnable mConsumedBatchedInputRunnable =
6252 new ConsumeBatchedInputRunnable();
6253 boolean mConsumeBatchedInputScheduled;
6254
Michael Wright9d744c72014-02-18 21:27:42 -08006255 final class ConsumeBatchedInputImmediatelyRunnable implements Runnable {
6256 @Override
6257 public void run() {
6258 doConsumeBatchedInput(-1);
6259 }
6260 }
6261 final ConsumeBatchedInputImmediatelyRunnable mConsumeBatchedInputImmediatelyRunnable =
6262 new ConsumeBatchedInputImmediatelyRunnable();
6263 boolean mConsumeBatchedInputImmediatelyScheduled;
6264
Jeff Brown6cb7b462012-03-05 13:21:17 -08006265 final class InvalidateOnAnimationRunnable implements Runnable {
6266 private boolean mPosted;
Igor Murashkina86ab6402013-08-30 12:58:36 -07006267 private final ArrayList<View> mViews = new ArrayList<View>();
6268 private final ArrayList<AttachInfo.InvalidateInfo> mViewRects =
Jeff Brown6cb7b462012-03-05 13:21:17 -08006269 new ArrayList<AttachInfo.InvalidateInfo>();
6270 private View[] mTempViews;
6271 private AttachInfo.InvalidateInfo[] mTempViewRects;
6272
6273 public void addView(View view) {
6274 synchronized (this) {
6275 mViews.add(view);
6276 postIfNeededLocked();
6277 }
6278 }
6279
6280 public void addViewRect(AttachInfo.InvalidateInfo info) {
6281 synchronized (this) {
6282 mViewRects.add(info);
6283 postIfNeededLocked();
6284 }
6285 }
6286
6287 public void removeView(View view) {
6288 synchronized (this) {
6289 mViews.remove(view);
6290
6291 for (int i = mViewRects.size(); i-- > 0; ) {
6292 AttachInfo.InvalidateInfo info = mViewRects.get(i);
6293 if (info.target == view) {
6294 mViewRects.remove(i);
Svetoslav Ganovabae2a12012-11-27 16:59:37 -08006295 info.recycle();
Jeff Brown6cb7b462012-03-05 13:21:17 -08006296 }
6297 }
6298
6299 if (mPosted && mViews.isEmpty() && mViewRects.isEmpty()) {
Jeff Brownebb2d8d2012-03-23 17:14:34 -07006300 mChoreographer.removeCallbacks(Choreographer.CALLBACK_ANIMATION, this, null);
Jeff Brown6cb7b462012-03-05 13:21:17 -08006301 mPosted = false;
6302 }
6303 }
6304 }
6305
6306 @Override
6307 public void run() {
6308 final int viewCount;
6309 final int viewRectCount;
6310 synchronized (this) {
6311 mPosted = false;
6312
6313 viewCount = mViews.size();
6314 if (viewCount != 0) {
6315 mTempViews = mViews.toArray(mTempViews != null
6316 ? mTempViews : new View[viewCount]);
6317 mViews.clear();
6318 }
6319
6320 viewRectCount = mViewRects.size();
6321 if (viewRectCount != 0) {
6322 mTempViewRects = mViewRects.toArray(mTempViewRects != null
6323 ? mTempViewRects : new AttachInfo.InvalidateInfo[viewRectCount]);
6324 mViewRects.clear();
6325 }
6326 }
6327
6328 for (int i = 0; i < viewCount; i++) {
6329 mTempViews[i].invalidate();
Adam Powell3e3c4ee2012-05-16 17:34:21 -07006330 mTempViews[i] = null;
Jeff Brown6cb7b462012-03-05 13:21:17 -08006331 }
6332
6333 for (int i = 0; i < viewRectCount; i++) {
6334 final View.AttachInfo.InvalidateInfo info = mTempViewRects[i];
6335 info.target.invalidate(info.left, info.top, info.right, info.bottom);
Svetoslav Ganovabae2a12012-11-27 16:59:37 -08006336 info.recycle();
Jeff Brown6cb7b462012-03-05 13:21:17 -08006337 }
6338 }
6339
6340 private void postIfNeededLocked() {
6341 if (!mPosted) {
Jeff Brownebb2d8d2012-03-23 17:14:34 -07006342 mChoreographer.postCallback(Choreographer.CALLBACK_ANIMATION, this, null);
Jeff Brown6cb7b462012-03-05 13:21:17 -08006343 mPosted = true;
6344 }
6345 }
6346 }
6347 final InvalidateOnAnimationRunnable mInvalidateOnAnimationRunnable =
6348 new InvalidateOnAnimationRunnable();
6349
Jeff Browna175a5b2012-02-15 19:18:31 -08006350 public void dispatchInvalidateDelayed(View view, long delayMilliseconds) {
6351 Message msg = mHandler.obtainMessage(MSG_INVALIDATE, view);
6352 mHandler.sendMessageDelayed(msg, delayMilliseconds);
6353 }
6354
Jeff Browna175a5b2012-02-15 19:18:31 -08006355 public void dispatchInvalidateRectDelayed(AttachInfo.InvalidateInfo info,
6356 long delayMilliseconds) {
6357 final Message msg = mHandler.obtainMessage(MSG_INVALIDATE_RECT, info);
6358 mHandler.sendMessageDelayed(msg, delayMilliseconds);
6359 }
6360
Jeff Brown6cb7b462012-03-05 13:21:17 -08006361 public void dispatchInvalidateOnAnimation(View view) {
6362 mInvalidateOnAnimationRunnable.addView(view);
6363 }
6364
6365 public void dispatchInvalidateRectOnAnimation(AttachInfo.InvalidateInfo info) {
6366 mInvalidateOnAnimationRunnable.addViewRect(info);
6367 }
6368
6369 public void cancelInvalidate(View view) {
6370 mHandler.removeMessages(MSG_INVALIDATE, view);
6371 // fixme: might leak the AttachInfo.InvalidateInfo objects instead of returning
6372 // them to the pool
6373 mHandler.removeMessages(MSG_INVALIDATE_RECT, view);
6374 mInvalidateOnAnimationRunnable.removeView(view);
6375 }
6376
keunyoung30f420f2013-08-02 14:23:10 -07006377 public void dispatchInputEvent(InputEvent event) {
Jae Seo6a6059a2014-04-17 21:35:29 -07006378 dispatchInputEvent(event, null);
6379 }
6380
6381 public void dispatchInputEvent(InputEvent event, InputEventReceiver receiver) {
6382 SomeArgs args = SomeArgs.obtain();
6383 args.arg1 = event;
6384 args.arg2 = receiver;
6385 Message msg = mHandler.obtainMessage(MSG_DISPATCH_INPUT_EVENT, args);
Jeff Browne0dbd002012-02-15 19:34:58 -08006386 msg.setAsynchronous(true);
Jeff Browna175a5b2012-02-15 19:18:31 -08006387 mHandler.sendMessage(msg);
6388 }
6389
Michael Wright899d7052014-04-23 17:23:39 -07006390 public void synthesizeInputEvent(InputEvent event) {
6391 Message msg = mHandler.obtainMessage(MSG_SYNTHESIZE_INPUT_EVENT, event);
6392 msg.setAsynchronous(true);
6393 mHandler.sendMessage(msg);
6394 }
6395
Jeff Browna175a5b2012-02-15 19:18:31 -08006396 public void dispatchKeyFromIme(KeyEvent event) {
6397 Message msg = mHandler.obtainMessage(MSG_DISPATCH_KEY_FROM_IME, event);
Jeff Browne0dbd002012-02-15 19:34:58 -08006398 msg.setAsynchronous(true);
Jeff Browna175a5b2012-02-15 19:18:31 -08006399 mHandler.sendMessage(msg);
Jeff Browncb1404e2011-01-15 18:14:15 -08006400 }
6401
Michael Wright899d7052014-04-23 17:23:39 -07006402 /**
6403 * Reinject unhandled {@link InputEvent}s in order to synthesize fallbacks events.
6404 *
6405 * Note that it is the responsibility of the caller of this API to recycle the InputEvent it
6406 * passes in.
6407 */
Michael Wright3da28342014-04-22 17:00:11 -07006408 public void dispatchUnhandledInputEvent(InputEvent event) {
Michael Wright899d7052014-04-23 17:23:39 -07006409 if (event instanceof MotionEvent) {
6410 event = MotionEvent.obtain((MotionEvent) event);
Michael Wright3da28342014-04-22 17:00:11 -07006411 }
Michael Wright899d7052014-04-23 17:23:39 -07006412 synthesizeInputEvent(event);
Michael Wright3da28342014-04-22 17:00:11 -07006413 }
6414
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006415 public void dispatchAppVisibility(boolean visible) {
Jeff Browna175a5b2012-02-15 19:18:31 -08006416 Message msg = mHandler.obtainMessage(MSG_DISPATCH_APP_VISIBILITY);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006417 msg.arg1 = visible ? 1 : 0;
Jeff Browna175a5b2012-02-15 19:18:31 -08006418 mHandler.sendMessage(msg);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006419 }
6420
6421 public void dispatchGetNewSurface() {
Jeff Browna175a5b2012-02-15 19:18:31 -08006422 Message msg = mHandler.obtainMessage(MSG_DISPATCH_GET_NEW_SURFACE);
6423 mHandler.sendMessage(msg);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006424 }
6425
6426 public void windowFocusChanged(boolean hasFocus, boolean inTouchMode) {
6427 Message msg = Message.obtain();
Jeff Browna175a5b2012-02-15 19:18:31 -08006428 msg.what = MSG_WINDOW_FOCUS_CHANGED;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006429 msg.arg1 = hasFocus ? 1 : 0;
6430 msg.arg2 = inTouchMode ? 1 : 0;
Jeff Browna175a5b2012-02-15 19:18:31 -08006431 mHandler.sendMessage(msg);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006432 }
6433
Craig Mautner9c795042014-10-28 19:59:59 -07006434 public void dispatchWindowShown() {
6435 mHandler.sendEmptyMessage(MSG_DISPATCH_WINDOW_SHOWN);
6436 }
6437
Dianne Hackbornffa42482009-09-23 22:20:11 -07006438 public void dispatchCloseSystemDialogs(String reason) {
6439 Message msg = Message.obtain();
Jeff Browna175a5b2012-02-15 19:18:31 -08006440 msg.what = MSG_CLOSE_SYSTEM_DIALOGS;
Dianne Hackbornffa42482009-09-23 22:20:11 -07006441 msg.obj = reason;
Jeff Browna175a5b2012-02-15 19:18:31 -08006442 mHandler.sendMessage(msg);
Dianne Hackbornffa42482009-09-23 22:20:11 -07006443 }
Christopher Tatea53146c2010-09-07 11:57:52 -07006444
6445 public void dispatchDragEvent(DragEvent event) {
Chris Tate91e9bb32010-10-12 12:58:43 -07006446 final int what;
6447 if (event.getAction() == DragEvent.ACTION_DRAG_LOCATION) {
Jeff Browna175a5b2012-02-15 19:18:31 -08006448 what = MSG_DISPATCH_DRAG_LOCATION_EVENT;
6449 mHandler.removeMessages(what);
Chris Tate91e9bb32010-10-12 12:58:43 -07006450 } else {
Jeff Browna175a5b2012-02-15 19:18:31 -08006451 what = MSG_DISPATCH_DRAG_EVENT;
Chris Tate91e9bb32010-10-12 12:58:43 -07006452 }
Jeff Browna175a5b2012-02-15 19:18:31 -08006453 Message msg = mHandler.obtainMessage(what, event);
6454 mHandler.sendMessage(msg);
Christopher Tatea53146c2010-09-07 11:57:52 -07006455 }
6456
Vladislav Kaznacheevec6a4472016-01-22 12:21:52 -08006457 public void updatePointerIcon(float x, float y) {
6458 final int what = MSG_UPDATE_POINTER_ICON;
6459 mHandler.removeMessages(what);
6460 final long now = SystemClock.uptimeMillis();
6461 final MotionEvent event = MotionEvent.obtain(
6462 0, now, MotionEvent.ACTION_HOVER_MOVE, x, y, 0);
6463 Message msg = mHandler.obtainMessage(what, event);
6464 mHandler.sendMessage(msg);
6465 }
6466
Dianne Hackborn9a230e02011-10-06 11:51:27 -07006467 public void dispatchSystemUiVisibilityChanged(int seq, int globalVisibility,
6468 int localValue, int localChanges) {
6469 SystemUiVisibilityInfo args = new SystemUiVisibilityInfo();
6470 args.seq = seq;
6471 args.globalVisibility = globalVisibility;
6472 args.localValue = localValue;
6473 args.localChanges = localChanges;
Jeff Browna175a5b2012-02-15 19:18:31 -08006474 mHandler.sendMessage(mHandler.obtainMessage(MSG_DISPATCH_SYSTEM_UI_VISIBILITY, args));
6475 }
6476
6477 public void dispatchCheckFocus() {
6478 if (!mHandler.hasMessages(MSG_CHECK_FOCUS)) {
6479 // This will result in a call to checkFocus() below.
6480 mHandler.sendEmptyMessage(MSG_CHECK_FOCUS);
6481 }
Joe Onorato664644d2011-01-23 17:53:23 -08006482 }
6483
Clara Bayarri75e09792015-07-29 16:20:40 +01006484 public void dispatchRequestKeyboardShortcuts(IResultReceiver receiver) {
6485 mHandler.obtainMessage(MSG_REQUEST_KEYBOARD_SHORTCUTS, receiver).sendToTarget();
6486 }
6487
svetoslavganov75986cf2009-05-14 22:28:01 -07006488 /**
Svetoslav Ganoveeee4d22011-06-10 20:51:30 -07006489 * Post a callback to send a
6490 * {@link AccessibilityEvent#TYPE_WINDOW_CONTENT_CHANGED} event.
Svetoslav Ganova0156172011-06-26 17:55:44 -07006491 * This event is send at most once every
6492 * {@link ViewConfiguration#getSendRecurringAccessibilityEventsInterval()}.
Svetoslav Ganoveeee4d22011-06-10 20:51:30 -07006493 */
Alan Viverette77e9a282013-09-12 17:16:09 -07006494 private void postSendWindowContentChangedCallback(View source, int changeType) {
Svetoslav Ganova0156172011-06-26 17:55:44 -07006495 if (mSendWindowContentChangedAccessibilityEvent == null) {
6496 mSendWindowContentChangedAccessibilityEvent =
6497 new SendWindowContentChangedAccessibilityEvent();
Svetoslav Ganoveeee4d22011-06-10 20:51:30 -07006498 }
Alan Viverette77e9a282013-09-12 17:16:09 -07006499 mSendWindowContentChangedAccessibilityEvent.runOrPost(source, changeType);
Svetoslav Ganoveeee4d22011-06-10 20:51:30 -07006500 }
6501
6502 /**
6503 * Remove a posted callback to send a
6504 * {@link AccessibilityEvent#TYPE_WINDOW_CONTENT_CHANGED} event.
6505 */
6506 private void removeSendWindowContentChangedCallback() {
Svetoslav Ganova0156172011-06-26 17:55:44 -07006507 if (mSendWindowContentChangedAccessibilityEvent != null) {
Jeff Browna175a5b2012-02-15 19:18:31 -08006508 mHandler.removeCallbacks(mSendWindowContentChangedAccessibilityEvent);
Svetoslav Ganoveeee4d22011-06-10 20:51:30 -07006509 }
6510 }
6511
Igor Murashkina86ab6402013-08-30 12:58:36 -07006512 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006513 public boolean showContextMenuForChild(View originalView) {
6514 return false;
6515 }
6516
Igor Murashkina86ab6402013-08-30 12:58:36 -07006517 @Override
Oren Blasberged391262015-09-01 12:12:51 -07006518 public boolean showContextMenuForChild(View originalView, float x, float y) {
6519 return false;
6520 }
6521
6522 @Override
Adam Powell6e346362010-07-23 10:18:23 -07006523 public ActionMode startActionModeForChild(View originalView, ActionMode.Callback callback) {
6524 return null;
6525 }
6526
Igor Murashkina86ab6402013-08-30 12:58:36 -07006527 @Override
Clara Bayarri4423d912015-03-02 19:42:48 +00006528 public ActionMode startActionModeForChild(
6529 View originalView, ActionMode.Callback callback, int type) {
6530 return null;
6531 }
6532
6533 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006534 public void createContextMenu(ContextMenu menu) {
6535 }
6536
Igor Murashkina86ab6402013-08-30 12:58:36 -07006537 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006538 public void childDrawableStateChanged(View child) {
6539 }
6540
Igor Murashkina86ab6402013-08-30 12:58:36 -07006541 @Override
Svetoslav Ganov736c2752011-04-22 18:30:36 -07006542 public boolean requestSendAccessibilityEvent(View child, AccessibilityEvent event) {
George Mount41725de2015-04-09 08:23:05 -07006543 if (mView == null || mStopped || mPausedForTransition) {
Svetoslav Ganov736c2752011-04-22 18:30:36 -07006544 return false;
6545 }
Svetoslav Ganov45a02e02012-06-17 15:07:29 -07006546 // Intercept accessibility focus events fired by virtual nodes to keep
6547 // track of accessibility focus position in such nodes.
Svetoslav Ganov791fd312012-05-14 15:12:30 -07006548 final int eventType = event.getEventType();
6549 switch (eventType) {
6550 case AccessibilityEvent.TYPE_VIEW_ACCESSIBILITY_FOCUSED: {
Svetoslav Ganov45a02e02012-06-17 15:07:29 -07006551 final long sourceNodeId = event.getSourceNodeId();
6552 final int accessibilityViewId = AccessibilityNodeInfo.getAccessibilityViewId(
6553 sourceNodeId);
6554 View source = mView.findViewByAccessibilityId(accessibilityViewId);
6555 if (source != null) {
6556 AccessibilityNodeProvider provider = source.getAccessibilityNodeProvider();
6557 if (provider != null) {
Svetoslavb3ba1d42014-09-26 15:20:40 -07006558 final int virtualNodeId = AccessibilityNodeInfo.getVirtualDescendantId(
6559 sourceNodeId);
6560 final AccessibilityNodeInfo node;
6561 if (virtualNodeId == AccessibilityNodeInfo.UNDEFINED_ITEM_ID) {
6562 node = provider.createAccessibilityNodeInfo(
6563 AccessibilityNodeProvider.HOST_VIEW_ID);
6564 } else {
6565 node = provider.createAccessibilityNodeInfo(virtualNodeId);
6566 }
Svetoslav Ganov45a02e02012-06-17 15:07:29 -07006567 setAccessibilityFocus(source, node);
6568 }
Svetoslav Ganov791fd312012-05-14 15:12:30 -07006569 }
Svetoslav Ganov791fd312012-05-14 15:12:30 -07006570 } break;
6571 case AccessibilityEvent.TYPE_VIEW_ACCESSIBILITY_FOCUS_CLEARED: {
Svetoslav Ganov45a02e02012-06-17 15:07:29 -07006572 final long sourceNodeId = event.getSourceNodeId();
6573 final int accessibilityViewId = AccessibilityNodeInfo.getAccessibilityViewId(
6574 sourceNodeId);
6575 View source = mView.findViewByAccessibilityId(accessibilityViewId);
6576 if (source != null) {
6577 AccessibilityNodeProvider provider = source.getAccessibilityNodeProvider();
6578 if (provider != null) {
6579 setAccessibilityFocus(null, null);
6580 }
Svetoslav Ganov791fd312012-05-14 15:12:30 -07006581 }
Svetoslav Ganov791fd312012-05-14 15:12:30 -07006582 } break;
Svetoslavf0c758b2014-09-03 17:47:37 -07006583
6584
6585 case AccessibilityEvent.TYPE_WINDOW_CONTENT_CHANGED: {
Alan Viverette34457f52015-03-25 13:09:20 -07006586 handleWindowContentChangedEvent(event);
Svetoslavf0c758b2014-09-03 17:47:37 -07006587 } break;
Svetoslav Ganov791fd312012-05-14 15:12:30 -07006588 }
Svetoslav Ganov8643aa02011-04-20 12:12:33 -07006589 mAccessibilityManager.sendAccessibilityEvent(event);
Svetoslav Ganov736c2752011-04-22 18:30:36 -07006590 return true;
6591 }
6592
Alan Viverette34457f52015-03-25 13:09:20 -07006593 /**
6594 * Updates the focused virtual view, when necessary, in response to a
6595 * content changed event.
6596 * <p>
6597 * This is necessary to get updated bounds after a position change.
6598 *
6599 * @param event an accessibility event of type
6600 * {@link AccessibilityEvent#TYPE_WINDOW_CONTENT_CHANGED}
6601 */
6602 private void handleWindowContentChangedEvent(AccessibilityEvent event) {
Alan Viverette25acc7e2015-05-19 11:32:08 -07006603 final View focusedHost = mAccessibilityFocusedHost;
6604 if (focusedHost == null || mAccessibilityFocusedVirtualView == null) {
6605 // No virtual view focused, nothing to do here.
Alan Viverette34457f52015-03-25 13:09:20 -07006606 return;
6607 }
6608
Alan Viverette25acc7e2015-05-19 11:32:08 -07006609 final AccessibilityNodeProvider provider = focusedHost.getAccessibilityNodeProvider();
Alan Viverette34457f52015-03-25 13:09:20 -07006610 if (provider == null) {
Alan Viverette25acc7e2015-05-19 11:32:08 -07006611 // Error state: virtual view with no provider. Clear focus.
6612 mAccessibilityFocusedHost = null;
6613 mAccessibilityFocusedVirtualView = null;
6614 focusedHost.clearAccessibilityFocusNoCallbacks();
Alan Viverette34457f52015-03-25 13:09:20 -07006615 return;
6616 }
6617
6618 // We only care about change types that may affect the bounds of the
6619 // focused virtual view.
6620 final int changes = event.getContentChangeTypes();
6621 if ((changes & AccessibilityEvent.CONTENT_CHANGE_TYPE_SUBTREE) == 0
6622 && changes != AccessibilityEvent.CONTENT_CHANGE_TYPE_UNDEFINED) {
6623 return;
6624 }
6625
6626 final long eventSourceNodeId = event.getSourceNodeId();
6627 final int changedViewId = AccessibilityNodeInfo.getAccessibilityViewId(eventSourceNodeId);
6628
6629 // Search up the tree for subtree containment.
6630 boolean hostInSubtree = false;
6631 View root = mAccessibilityFocusedHost;
6632 while (root != null && !hostInSubtree) {
6633 if (changedViewId == root.getAccessibilityViewId()) {
6634 hostInSubtree = true;
6635 } else {
6636 final ViewParent parent = root.getParent();
6637 if (parent instanceof View) {
6638 root = (View) parent;
6639 } else {
6640 root = null;
6641 }
6642 }
6643 }
6644
6645 // We care only about changes in subtrees containing the host view.
6646 if (!hostInSubtree) {
6647 return;
6648 }
6649
6650 final long focusedSourceNodeId = mAccessibilityFocusedVirtualView.getSourceNodeId();
6651 int focusedChildId = AccessibilityNodeInfo.getVirtualDescendantId(focusedSourceNodeId);
6652 if (focusedChildId == AccessibilityNodeInfo.UNDEFINED_ITEM_ID) {
6653 // TODO: Should we clear the focused virtual view?
6654 focusedChildId = AccessibilityNodeProvider.HOST_VIEW_ID;
6655 }
6656
6657 // Refresh the node for the focused virtual view.
Alan Viverettea7ea65e2015-05-15 11:30:21 -07006658 final Rect oldBounds = mTempRect;
6659 mAccessibilityFocusedVirtualView.getBoundsInScreen(oldBounds);
Alan Viverette34457f52015-03-25 13:09:20 -07006660 mAccessibilityFocusedVirtualView = provider.createAccessibilityNodeInfo(focusedChildId);
Alan Viverette25acc7e2015-05-19 11:32:08 -07006661 if (mAccessibilityFocusedVirtualView == null) {
6662 // Error state: The node no longer exists. Clear focus.
6663 mAccessibilityFocusedHost = null;
6664 focusedHost.clearAccessibilityFocusNoCallbacks();
6665
6666 // This will probably fail, but try to keep the provider's internal
6667 // state consistent by clearing focus.
6668 provider.performAction(focusedChildId,
6669 AccessibilityAction.ACTION_CLEAR_ACCESSIBILITY_FOCUS.getId(), null);
Alan Viverettea7ea65e2015-05-15 11:30:21 -07006670 invalidateRectOnScreen(oldBounds);
Alan Viverette25acc7e2015-05-19 11:32:08 -07006671 } else {
6672 // The node was refreshed, invalidate bounds if necessary.
6673 final Rect newBounds = mAccessibilityFocusedVirtualView.getBoundsInScreen();
6674 if (!oldBounds.equals(newBounds)) {
6675 oldBounds.union(newBounds);
6676 invalidateRectOnScreen(oldBounds);
6677 }
Alan Viverettea7ea65e2015-05-15 11:30:21 -07006678 }
Alan Viverette34457f52015-03-25 13:09:20 -07006679 }
6680
Svetoslav Ganov42138042012-03-20 11:51:39 -07006681 @Override
Alan Viverette77e9a282013-09-12 17:16:09 -07006682 public void notifySubtreeAccessibilityStateChanged(View child, View source, int changeType) {
6683 postSendWindowContentChangedCallback(source, changeType);
Svetoslav Ganov42138042012-03-20 11:51:39 -07006684 }
6685
Fabrice Di Meglio9dd4c5c2013-02-08 18:15:07 -08006686 @Override
6687 public boolean canResolveLayoutDirection() {
6688 return true;
6689 }
6690
6691 @Override
6692 public boolean isLayoutDirectionResolved() {
6693 return true;
6694 }
6695
6696 @Override
6697 public int getLayoutDirection() {
6698 return View.LAYOUT_DIRECTION_RESOLVED_DEFAULT;
6699 }
6700
6701 @Override
6702 public boolean canResolveTextDirection() {
6703 return true;
6704 }
6705
6706 @Override
6707 public boolean isTextDirectionResolved() {
6708 return true;
6709 }
6710
6711 @Override
6712 public int getTextDirection() {
6713 return View.TEXT_DIRECTION_RESOLVED_DEFAULT;
6714 }
6715
6716 @Override
6717 public boolean canResolveTextAlignment() {
6718 return true;
6719 }
6720
6721 @Override
6722 public boolean isTextAlignmentResolved() {
6723 return true;
6724 }
6725
6726 @Override
6727 public int getTextAlignment() {
6728 return View.TEXT_ALIGNMENT_RESOLVED_DEFAULT;
6729 }
6730
Svetoslav Ganov42138042012-03-20 11:51:39 -07006731 private View getCommonPredecessor(View first, View second) {
Chris Craikd36a81f2014-07-17 10:16:51 -07006732 if (mTempHashSet == null) {
6733 mTempHashSet = new HashSet<View>();
Svetoslav Ganov42138042012-03-20 11:51:39 -07006734 }
Chris Craikd36a81f2014-07-17 10:16:51 -07006735 HashSet<View> seen = mTempHashSet;
6736 seen.clear();
6737 View firstCurrent = first;
6738 while (firstCurrent != null) {
6739 seen.add(firstCurrent);
6740 ViewParent firstCurrentParent = firstCurrent.mParent;
6741 if (firstCurrentParent instanceof View) {
6742 firstCurrent = (View) firstCurrentParent;
6743 } else {
6744 firstCurrent = null;
6745 }
6746 }
6747 View secondCurrent = second;
6748 while (secondCurrent != null) {
6749 if (seen.contains(secondCurrent)) {
6750 seen.clear();
6751 return secondCurrent;
6752 }
6753 ViewParent secondCurrentParent = secondCurrent.mParent;
6754 if (secondCurrentParent instanceof View) {
6755 secondCurrent = (View) secondCurrentParent;
6756 } else {
6757 secondCurrent = null;
6758 }
6759 }
6760 seen.clear();
Svetoslav Ganov42138042012-03-20 11:51:39 -07006761 return null;
6762 }
6763
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006764 void checkThread() {
6765 if (mThread != Thread.currentThread()) {
6766 throw new CalledFromWrongThreadException(
6767 "Only the original thread that created a view hierarchy can touch its views.");
6768 }
6769 }
6770
Igor Murashkina86ab6402013-08-30 12:58:36 -07006771 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006772 public void requestDisallowInterceptTouchEvent(boolean disallowIntercept) {
Joe Onoratoc6cc0f82011-04-12 11:53:13 -07006773 // ViewAncestor never intercepts touch event, so this can be a no-op
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006774 }
6775
Igor Murashkina86ab6402013-08-30 12:58:36 -07006776 @Override
Svetoslav Ganov1cf70bb2012-08-06 10:53:34 -07006777 public boolean requestChildRectangleOnScreen(View child, Rect rectangle, boolean immediate) {
Yigit Boyard62d5e92016-01-19 18:56:20 -08006778 if (rectangle == null) {
6779 return scrollToRectOrFocus(null, immediate);
6780 }
6781 rectangle.offset(child.getLeft() - child.getScrollX(),
6782 child.getTop() - child.getScrollY());
Svetoslav Ganov1cf70bb2012-08-06 10:53:34 -07006783 final boolean scrolled = scrollToRectOrFocus(rectangle, immediate);
Yigit Boyard62d5e92016-01-19 18:56:20 -08006784 mTempRect.set(rectangle);
6785 mTempRect.offset(0, -mCurScrollY);
6786 mTempRect.offset(mAttachInfo.mWindowLeft, mAttachInfo.mWindowTop);
6787 try {
6788 mWindowSession.onRectangleOnScreenRequested(mWindow, mTempRect);
6789 } catch (RemoteException re) {
6790 /* ignore */
Svetoslav Ganov1cf70bb2012-08-06 10:53:34 -07006791 }
6792 return scrolled;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006793 }
Romain Guy8506ab42009-06-11 17:35:47 -07006794
Igor Murashkina86ab6402013-08-30 12:58:36 -07006795 @Override
Adam Powell539ee872012-02-03 19:00:49 -08006796 public void childHasTransientStateChanged(View child, boolean hasTransientState) {
6797 // Do nothing.
6798 }
6799
Adam Powell10ba2772014-04-15 09:46:51 -07006800 @Override
6801 public boolean onStartNestedScroll(View child, View target, int nestedScrollAxes) {
6802 return false;
6803 }
6804
6805 @Override
6806 public void onStopNestedScroll(View target) {
6807 }
6808
6809 @Override
6810 public void onNestedScrollAccepted(View child, View target, int nestedScrollAxes) {
6811 }
6812
6813 @Override
6814 public void onNestedScroll(View target, int dxConsumed, int dyConsumed,
6815 int dxUnconsumed, int dyUnconsumed) {
6816 }
6817
6818 @Override
6819 public void onNestedPreScroll(View target, int dx, int dy, int[] consumed) {
6820 }
6821
6822 @Override
Adam Powellb36e4f92014-05-01 10:23:33 -07006823 public boolean onNestedFling(View target, float velocityX, float velocityY, boolean consumed) {
Adam Powell10ba2772014-04-15 09:46:51 -07006824 return false;
6825 }
6826
Adam Powellb72be592014-07-16 21:41:31 -07006827 @Override
6828 public boolean onNestedPreFling(View target, float velocityX, float velocityY) {
6829 return false;
6830 }
6831
Adam Powellb6ab0982015-01-07 17:00:12 -08006832 @Override
6833 public boolean onNestedPrePerformAccessibilityAction(View target, int action, Bundle args) {
6834 return false;
6835 }
6836
Jorim Jaggib774e552015-08-24 14:52:45 -07006837 /**
6838 * Force the window to report its next draw.
6839 * <p>
6840 * This method is only supposed to be used to speed up the interaction from SystemUI and window
6841 * manager when waiting for the first frame to be drawn when turning on the screen. DO NOT USE
6842 * unless you fully understand this interaction.
6843 * @hide
6844 */
6845 public void setReportNextDraw() {
6846 mReportNextDraw = true;
6847 invalidate();
6848 }
6849
Craig Mautnerbc57cd12013-08-19 15:47:42 -07006850 void changeCanvasOpacity(boolean opaque) {
Filip Gruszczynski34dab0b2015-12-22 08:29:07 -08006851 Log.d(mTag, "changeCanvasOpacity: opaque=" + opaque);
John Reck63a06672014-05-07 13:45:54 -07006852 if (mAttachInfo.mHardwareRenderer != null) {
6853 mAttachInfo.mHardwareRenderer.setOpaque(opaque);
6854 }
Craig Mautnerbc57cd12013-08-19 15:47:42 -07006855 }
6856
Dianne Hackborndc8a7f62010-05-10 11:29:34 -07006857 class TakenSurfaceHolder extends BaseSurfaceHolder {
6858 @Override
6859 public boolean onAllowLockCanvas() {
6860 return mDrawingAllowed;
6861 }
6862
6863 @Override
6864 public void onRelayoutContainer() {
6865 // Not currently interesting -- from changing between fixed and layout size.
6866 }
6867
Igor Murashkina86ab6402013-08-30 12:58:36 -07006868 @Override
Dianne Hackborndc8a7f62010-05-10 11:29:34 -07006869 public void setFormat(int format) {
6870 ((RootViewSurfaceTaker)mView).setSurfaceFormat(format);
6871 }
6872
Igor Murashkina86ab6402013-08-30 12:58:36 -07006873 @Override
Dianne Hackborndc8a7f62010-05-10 11:29:34 -07006874 public void setType(int type) {
6875 ((RootViewSurfaceTaker)mView).setSurfaceType(type);
6876 }
Igor Murashkina86ab6402013-08-30 12:58:36 -07006877
Dianne Hackborndc8a7f62010-05-10 11:29:34 -07006878 @Override
6879 public void onUpdateSurface() {
6880 // We take care of format and type changes on our own.
6881 throw new IllegalStateException("Shouldn't be here");
6882 }
6883
Igor Murashkina86ab6402013-08-30 12:58:36 -07006884 @Override
Dianne Hackborndc8a7f62010-05-10 11:29:34 -07006885 public boolean isCreating() {
6886 return mIsCreating;
6887 }
6888
6889 @Override
6890 public void setFixedSize(int width, int height) {
6891 throw new UnsupportedOperationException(
6892 "Currently only support sizing from layout");
6893 }
Igor Murashkina86ab6402013-08-30 12:58:36 -07006894
6895 @Override
Dianne Hackborndc8a7f62010-05-10 11:29:34 -07006896 public void setKeepScreenOn(boolean screenOn) {
6897 ((RootViewSurfaceTaker)mView).setSurfaceKeepScreenOn(screenOn);
6898 }
6899 }
Romain Guy8506ab42009-06-11 17:35:47 -07006900
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006901 static class W extends IWindow.Stub {
Dianne Hackborn6dd005b2011-07-18 13:22:50 -07006902 private final WeakReference<ViewRootImpl> mViewAncestor;
Jeff Brown98365d72012-08-19 20:30:52 -07006903 private final IWindowSession mWindowSession;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006904
Dianne Hackborn6dd005b2011-07-18 13:22:50 -07006905 W(ViewRootImpl viewAncestor) {
6906 mViewAncestor = new WeakReference<ViewRootImpl>(viewAncestor);
Jeff Brown98365d72012-08-19 20:30:52 -07006907 mWindowSession = viewAncestor.mWindowSession;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006908 }
6909
Igor Murashkina86ab6402013-08-30 12:58:36 -07006910 @Override
Dianne Hackbornc4aad012013-02-22 15:05:25 -08006911 public void resized(Rect frame, Rect overscanInsets, Rect contentInsets,
Filip Gruszczynski2217f612015-05-26 11:32:08 -07006912 Rect visibleInsets, Rect stableInsets, Rect outsets, boolean reportDraw,
Jorim Jaggi0ffd49c2016-02-12 15:04:21 -08006913 Configuration newConfig, Rect backDropFrame, boolean forceLayout,
6914 boolean alwaysConsumeNavBar) {
Dianne Hackborn6dd005b2011-07-18 13:22:50 -07006915 final ViewRootImpl viewAncestor = mViewAncestor.get();
Svetoslav Ganov8643aa02011-04-20 12:12:33 -07006916 if (viewAncestor != null) {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08006917 viewAncestor.dispatchResized(frame, overscanInsets, contentInsets,
Jorim Jaggia4a58ef2016-01-27 02:10:08 -08006918 visibleInsets, stableInsets, outsets, reportDraw, newConfig, backDropFrame,
Jorim Jaggi0ffd49c2016-02-12 15:04:21 -08006919 forceLayout, alwaysConsumeNavBar);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006920 }
6921 }
6922
Craig Mautner5702d4d2012-06-30 14:10:16 -07006923 @Override
6924 public void moved(int newX, int newY) {
6925 final ViewRootImpl viewAncestor = mViewAncestor.get();
6926 if (viewAncestor != null) {
6927 viewAncestor.dispatchMoved(newX, newY);
6928 }
6929 }
6930
Igor Murashkina86ab6402013-08-30 12:58:36 -07006931 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006932 public void dispatchAppVisibility(boolean visible) {
Dianne Hackborn6dd005b2011-07-18 13:22:50 -07006933 final ViewRootImpl viewAncestor = mViewAncestor.get();
Svetoslav Ganov8643aa02011-04-20 12:12:33 -07006934 if (viewAncestor != null) {
6935 viewAncestor.dispatchAppVisibility(visible);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006936 }
6937 }
6938
Igor Murashkina86ab6402013-08-30 12:58:36 -07006939 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006940 public void dispatchGetNewSurface() {
Dianne Hackborn6dd005b2011-07-18 13:22:50 -07006941 final ViewRootImpl viewAncestor = mViewAncestor.get();
Svetoslav Ganov8643aa02011-04-20 12:12:33 -07006942 if (viewAncestor != null) {
6943 viewAncestor.dispatchGetNewSurface();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006944 }
6945 }
6946
Igor Murashkina86ab6402013-08-30 12:58:36 -07006947 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006948 public void windowFocusChanged(boolean hasFocus, boolean inTouchMode) {
Dianne Hackborn6dd005b2011-07-18 13:22:50 -07006949 final ViewRootImpl viewAncestor = mViewAncestor.get();
Svetoslav Ganov8643aa02011-04-20 12:12:33 -07006950 if (viewAncestor != null) {
6951 viewAncestor.windowFocusChanged(hasFocus, inTouchMode);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006952 }
6953 }
6954
6955 private static int checkCallingPermission(String permission) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006956 try {
6957 return ActivityManagerNative.getDefault().checkPermission(
6958 permission, Binder.getCallingPid(), Binder.getCallingUid());
6959 } catch (RemoteException e) {
6960 return PackageManager.PERMISSION_DENIED;
6961 }
6962 }
6963
Igor Murashkina86ab6402013-08-30 12:58:36 -07006964 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006965 public void executeCommand(String command, String parameters, ParcelFileDescriptor out) {
Dianne Hackborn6dd005b2011-07-18 13:22:50 -07006966 final ViewRootImpl viewAncestor = mViewAncestor.get();
Svetoslav Ganov8643aa02011-04-20 12:12:33 -07006967 if (viewAncestor != null) {
6968 final View view = viewAncestor.mView;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006969 if (view != null) {
6970 if (checkCallingPermission(Manifest.permission.DUMP) !=
6971 PackageManager.PERMISSION_GRANTED) {
6972 throw new SecurityException("Insufficient permissions to invoke"
6973 + " executeCommand() from pid=" + Binder.getCallingPid()
6974 + ", uid=" + Binder.getCallingUid());
6975 }
6976
6977 OutputStream clientStream = null;
6978 try {
6979 clientStream = new ParcelFileDescriptor.AutoCloseOutputStream(out);
6980 ViewDebug.dispatchCommand(view, command, parameters, clientStream);
6981 } catch (IOException e) {
6982 e.printStackTrace();
6983 } finally {
6984 if (clientStream != null) {
6985 try {
6986 clientStream.close();
6987 } catch (IOException e) {
6988 e.printStackTrace();
6989 }
6990 }
6991 }
6992 }
6993 }
6994 }
Igor Murashkina86ab6402013-08-30 12:58:36 -07006995
6996 @Override
Dianne Hackbornffa42482009-09-23 22:20:11 -07006997 public void closeSystemDialogs(String reason) {
Dianne Hackborn6dd005b2011-07-18 13:22:50 -07006998 final ViewRootImpl viewAncestor = mViewAncestor.get();
Svetoslav Ganov8643aa02011-04-20 12:12:33 -07006999 if (viewAncestor != null) {
7000 viewAncestor.dispatchCloseSystemDialogs(reason);
Dianne Hackbornffa42482009-09-23 22:20:11 -07007001 }
7002 }
Igor Murashkina86ab6402013-08-30 12:58:36 -07007003
7004 @Override
Marco Nelissenbf6956b2009-11-09 15:21:13 -08007005 public void dispatchWallpaperOffsets(float x, float y, float xStep, float yStep,
7006 boolean sync) {
Dianne Hackborn19382ac2009-09-11 21:13:37 -07007007 if (sync) {
7008 try {
Jeff Brown98365d72012-08-19 20:30:52 -07007009 mWindowSession.wallpaperOffsetsComplete(asBinder());
Dianne Hackborn19382ac2009-09-11 21:13:37 -07007010 } catch (RemoteException e) {
7011 }
7012 }
Dianne Hackborn72c82ab2009-08-11 21:13:54 -07007013 }
Svetoslav Ganov8643aa02011-04-20 12:12:33 -07007014
Igor Murashkina86ab6402013-08-30 12:58:36 -07007015 @Override
Dianne Hackborn75804932009-10-20 20:15:20 -07007016 public void dispatchWallpaperCommand(String action, int x, int y,
7017 int z, Bundle extras, boolean sync) {
7018 if (sync) {
7019 try {
Jeff Brown98365d72012-08-19 20:30:52 -07007020 mWindowSession.wallpaperCommandComplete(asBinder(), null);
Dianne Hackborn75804932009-10-20 20:15:20 -07007021 } catch (RemoteException e) {
7022 }
7023 }
7024 }
Christopher Tatea53146c2010-09-07 11:57:52 -07007025
7026 /* Drag/drop */
Igor Murashkina86ab6402013-08-30 12:58:36 -07007027 @Override
Christopher Tatea53146c2010-09-07 11:57:52 -07007028 public void dispatchDragEvent(DragEvent event) {
Dianne Hackborn6dd005b2011-07-18 13:22:50 -07007029 final ViewRootImpl viewAncestor = mViewAncestor.get();
Svetoslav Ganov8643aa02011-04-20 12:12:33 -07007030 if (viewAncestor != null) {
7031 viewAncestor.dispatchDragEvent(event);
Christopher Tatea53146c2010-09-07 11:57:52 -07007032 }
7033 }
Joe Onorato664644d2011-01-23 17:53:23 -08007034
Igor Murashkina86ab6402013-08-30 12:58:36 -07007035 @Override
Vladislav Kaznacheevec6a4472016-01-22 12:21:52 -08007036 public void updatePointerIcon(float x, float y) {
7037 final ViewRootImpl viewAncestor = mViewAncestor.get();
7038 if (viewAncestor != null) {
7039 viewAncestor.updatePointerIcon(x, y);
7040 }
7041 }
7042
7043 @Override
Dianne Hackborn9a230e02011-10-06 11:51:27 -07007044 public void dispatchSystemUiVisibilityChanged(int seq, int globalVisibility,
7045 int localValue, int localChanges) {
Dianne Hackborn6dd005b2011-07-18 13:22:50 -07007046 final ViewRootImpl viewAncestor = mViewAncestor.get();
Svetoslav Ganov8643aa02011-04-20 12:12:33 -07007047 if (viewAncestor != null) {
Dianne Hackborn9a230e02011-10-06 11:51:27 -07007048 viewAncestor.dispatchSystemUiVisibilityChanged(seq, globalVisibility,
7049 localValue, localChanges);
Joe Onorato664644d2011-01-23 17:53:23 -08007050 }
7051 }
Dianne Hackborn12d3a942012-04-27 14:16:30 -07007052
Igor Murashkina86ab6402013-08-30 12:58:36 -07007053 @Override
Craig Mautner9c795042014-10-28 19:59:59 -07007054 public void dispatchWindowShown() {
7055 final ViewRootImpl viewAncestor = mViewAncestor.get();
7056 if (viewAncestor != null) {
7057 viewAncestor.dispatchWindowShown();
7058 }
7059 }
Clara Bayarri75e09792015-07-29 16:20:40 +01007060
7061 @Override
7062 public void requestAppKeyboardShortcuts(IResultReceiver receiver) {
7063 ViewRootImpl viewAncestor = mViewAncestor.get();
7064 if (viewAncestor != null) {
7065 viewAncestor.dispatchRequestKeyboardShortcuts(receiver);
7066 }
7067 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007068 }
7069
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007070 public static final class CalledFromWrongThreadException extends AndroidRuntimeException {
7071 public CalledFromWrongThreadException(String msg) {
7072 super(msg);
7073 }
7074 }
7075
Alan Viverettebea0c7da2015-09-01 16:00:20 -04007076 static HandlerActionQueue getRunQueue() {
7077 HandlerActionQueue rq = sRunQueues.get();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007078 if (rq != null) {
7079 return rq;
7080 }
Alan Viverettebea0c7da2015-09-01 16:00:20 -04007081 rq = new HandlerActionQueue();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007082 sRunQueues.set(rq);
7083 return rq;
7084 }
Romain Guy8506ab42009-06-11 17:35:47 -07007085
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007086 /**
Skuhneb8160872015-09-22 09:51:39 -07007087 * Start a drag resizing which will inform all listeners that a window resize is taking place.
7088 */
Jorim Jaggi9511b0f2016-01-29 19:12:44 -08007089 private void startDragResizing(Rect initialBounds, boolean fullscreen, Rect systemInsets,
7090 Rect stableInsets) {
Skuhneb8160872015-09-22 09:51:39 -07007091 if (!mDragResizing) {
7092 mDragResizing = true;
Chong Zhangdcee1de2015-10-06 10:26:00 -07007093 synchronized (mWindowCallbacks) {
7094 for (int i = mWindowCallbacks.size() - 1; i >= 0; i--) {
Jorim Jaggi9511b0f2016-01-29 19:12:44 -08007095 mWindowCallbacks.get(i).onWindowDragResizeStart(initialBounds, fullscreen,
7096 systemInsets, stableInsets);
Skuhneb8160872015-09-22 09:51:39 -07007097 }
7098 }
7099 mFullRedrawNeeded = true;
7100 }
7101 }
7102
7103 /**
7104 * End a drag resize which will inform all listeners that a window resize has ended.
7105 */
7106 private void endDragResizing() {
7107 if (mDragResizing) {
7108 mDragResizing = false;
Chong Zhangdcee1de2015-10-06 10:26:00 -07007109 synchronized (mWindowCallbacks) {
7110 for (int i = mWindowCallbacks.size() - 1; i >= 0; i--) {
7111 mWindowCallbacks.get(i).onWindowDragResizeEnd();
Skuhneb8160872015-09-22 09:51:39 -07007112 }
7113 }
7114 mFullRedrawNeeded = true;
7115 }
7116 }
7117
Chong Zhang8dbd9ad2015-10-09 10:06:11 -07007118 private boolean updateContentDrawBounds() {
7119 boolean updated = false;
7120 synchronized (mWindowCallbacks) {
7121 for (int i = mWindowCallbacks.size() - 1; i >= 0; i--) {
7122 updated |= mWindowCallbacks.get(i).onContentDrawn(
7123 mWindowAttributes.surfaceInsets.left,
7124 mWindowAttributes.surfaceInsets.top,
7125 mWidth, mHeight);
7126 }
7127 }
7128 return updated | (mDragResizing && mReportNextDraw);
7129 }
7130
7131 private void requestDrawWindow() {
7132 if (mReportNextDraw) {
7133 mWindowDrawCountDown = new CountDownLatch(mWindowCallbacks.size());
7134 }
7135 synchronized (mWindowCallbacks) {
7136 for (int i = mWindowCallbacks.size() - 1; i >= 0; i--) {
7137 mWindowCallbacks.get(i).onRequestDraw(mReportNextDraw);
7138 }
7139 }
7140 }
7141
Skuhneb8160872015-09-22 09:51:39 -07007142 /**
Jorim Jaggi4846ee32016-01-07 17:39:12 +01007143 * Tells this instance that its corresponding activity has just relaunched. In this case, we
7144 * need to force a relayout of the window to make sure we get the correct bounds from window
7145 * manager.
7146 */
7147 public void reportActivityRelaunched() {
7148 mActivityRelaunched = true;
7149 }
7150
7151 /**
Svetoslav Ganov8643aa02011-04-20 12:12:33 -07007152 * Class for managing the accessibility interaction connection
7153 * based on the global accessibility state.
7154 */
7155 final class AccessibilityInteractionConnectionManager
7156 implements AccessibilityStateChangeListener {
Igor Murashkina86ab6402013-08-30 12:58:36 -07007157 @Override
Svetoslav Ganov8643aa02011-04-20 12:12:33 -07007158 public void onAccessibilityStateChanged(boolean enabled) {
7159 if (enabled) {
7160 ensureConnection();
Chris Craikcce47eb2014-07-16 15:12:15 -07007161 if (mAttachInfo.mHasWindowFocus) {
Svetoslav Ganov0d04e242012-02-21 13:46:36 -08007162 mView.sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
7163 View focusedView = mView.findFocus();
7164 if (focusedView != null && focusedView != mView) {
7165 focusedView.sendAccessibilityEvent(AccessibilityEvent.TYPE_VIEW_FOCUSED);
7166 }
7167 }
Svetoslav Ganov8643aa02011-04-20 12:12:33 -07007168 } else {
7169 ensureNoConnection();
Svetoslav Ganov005b83b2012-04-16 18:17:17 -07007170 mHandler.obtainMessage(MSG_CLEAR_ACCESSIBILITY_FOCUS_HOST).sendToTarget();
Svetoslav Ganov8643aa02011-04-20 12:12:33 -07007171 }
7172 }
7173
7174 public void ensureConnection() {
Chris Craikcce47eb2014-07-16 15:12:15 -07007175 final boolean registered =
Svetoslav8e3feb12014-02-24 13:46:47 -08007176 mAttachInfo.mAccessibilityWindowId != AccessibilityNodeInfo.UNDEFINED_ITEM_ID;
Chris Craikcce47eb2014-07-16 15:12:15 -07007177 if (!registered) {
7178 mAttachInfo.mAccessibilityWindowId =
Svetoslav Ganov0d04e242012-02-21 13:46:36 -08007179 mAccessibilityManager.addAccessibilityInteractionConnection(mWindow,
7180 new AccessibilityInteractionConnection(ViewRootImpl.this));
Svetoslav Ganov8643aa02011-04-20 12:12:33 -07007181 }
7182 }
7183
7184 public void ensureNoConnection() {
Svetoslav Ganov0d04e242012-02-21 13:46:36 -08007185 final boolean registered =
Svetoslav8e3feb12014-02-24 13:46:47 -08007186 mAttachInfo.mAccessibilityWindowId != AccessibilityNodeInfo.UNDEFINED_ITEM_ID;
Svetoslav Ganov8643aa02011-04-20 12:12:33 -07007187 if (registered) {
Svetoslav8e3feb12014-02-24 13:46:47 -08007188 mAttachInfo.mAccessibilityWindowId = AccessibilityNodeInfo.UNDEFINED_ITEM_ID;
Svetoslav Ganov8643aa02011-04-20 12:12:33 -07007189 mAccessibilityManager.removeAccessibilityInteractionConnection(mWindow);
7190 }
7191 }
7192 }
7193
Chris Craikcce47eb2014-07-16 15:12:15 -07007194 final class HighContrastTextManager implements HighTextContrastChangeListener {
7195 HighContrastTextManager() {
7196 mAttachInfo.mHighContrastText = mAccessibilityManager.isHighTextContrastEnabled();
7197 }
7198 @Override
7199 public void onHighTextContrastStateChanged(boolean enabled) {
7200 mAttachInfo.mHighContrastText = enabled;
7201
7202 // Destroy Displaylists so they can be recreated with high contrast recordings
7203 destroyHardwareResources();
Chris Craikd36a81f2014-07-17 10:16:51 -07007204
7205 // Schedule redraw, which will rerecord + redraw all text
7206 invalidate();
Chris Craikcce47eb2014-07-16 15:12:15 -07007207 }
7208 }
7209
Svetoslav Ganov8643aa02011-04-20 12:12:33 -07007210 /**
7211 * This class is an interface this ViewAncestor provides to the
7212 * AccessibilityManagerService to the latter can interact with
7213 * the view hierarchy in this ViewAncestor.
7214 */
Svetoslav Ganovaf5b4f42011-10-28 12:41:38 -07007215 static final class AccessibilityInteractionConnection
Svetoslav Ganov8643aa02011-04-20 12:12:33 -07007216 extends IAccessibilityInteractionConnection.Stub {
Svetoslav Ganov02107852011-10-03 17:06:56 -07007217 private final WeakReference<ViewRootImpl> mViewRootImpl;
Svetoslav Ganov8643aa02011-04-20 12:12:33 -07007218
Svetoslav Ganovf79f4762011-10-28 15:40:32 -07007219 AccessibilityInteractionConnection(ViewRootImpl viewRootImpl) {
7220 mViewRootImpl = new WeakReference<ViewRootImpl>(viewRootImpl);
Svetoslav Ganov8643aa02011-04-20 12:12:33 -07007221 }
7222
Svetoslav Ganov42138042012-03-20 11:51:39 -07007223 @Override
Svetoslav Ganov02107852011-10-03 17:06:56 -07007224 public void findAccessibilityNodeInfoByAccessibilityId(long accessibilityNodeId,
Svetoslav9ae9ed22014-09-02 16:36:35 -07007225 Region interactiveRegion, int interactionId,
7226 IAccessibilityInteractionConnectionCallback callback, int flags,
Svetoslav Ganov152e9bb2012-10-12 20:15:29 -07007227 int interrogatingPid, long interrogatingTid, MagnificationSpec spec) {
Svetoslav Ganov02107852011-10-03 17:06:56 -07007228 ViewRootImpl viewRootImpl = mViewRootImpl.get();
7229 if (viewRootImpl != null && viewRootImpl.mView != null) {
Svetoslav Ganovaf5b4f42011-10-28 12:41:38 -07007230 viewRootImpl.getAccessibilityInteractionController()
Svetoslav Ganov02107852011-10-03 17:06:56 -07007231 .findAccessibilityNodeInfoByAccessibilityIdClientThread(accessibilityNodeId,
Svetoslav9ae9ed22014-09-02 16:36:35 -07007232 interactiveRegion, interactionId, callback, flags, interrogatingPid,
7233 interrogatingTid, spec);
Svetoslav Ganov79311c42012-01-17 20:24:26 -08007234 } else {
7235 // We cannot make the call and notify the caller so it does not wait.
7236 try {
7237 callback.setFindAccessibilityNodeInfosResult(null, interactionId);
7238 } catch (RemoteException re) {
7239 /* best effort - ignore */
7240 }
Svetoslav Ganov601ad802011-06-09 14:47:38 -07007241 }
Svetoslav Ganov8643aa02011-04-20 12:12:33 -07007242 }
7243
Svetoslav Ganov42138042012-03-20 11:51:39 -07007244 @Override
Svetoslav Ganov02107852011-10-03 17:06:56 -07007245 public void performAccessibilityAction(long accessibilityNodeId, int action,
Svetoslav Ganovaa780c12012-04-19 23:01:39 -07007246 Bundle arguments, int interactionId,
7247 IAccessibilityInteractionConnectionCallback callback, int flags,
Svet Ganov7498efd2014-09-03 21:33:00 -07007248 int interrogatingPid, long interrogatingTid) {
Svetoslav Ganov02107852011-10-03 17:06:56 -07007249 ViewRootImpl viewRootImpl = mViewRootImpl.get();
7250 if (viewRootImpl != null && viewRootImpl.mView != null) {
Svetoslav Ganovaf5b4f42011-10-28 12:41:38 -07007251 viewRootImpl.getAccessibilityInteractionController()
Svetoslav Ganovaa780c12012-04-19 23:01:39 -07007252 .performAccessibilityActionClientThread(accessibilityNodeId, action, arguments,
Svet Ganov7498efd2014-09-03 21:33:00 -07007253 interactionId, callback, flags, interrogatingPid, interrogatingTid);
Svetoslav Ganov79311c42012-01-17 20:24:26 -08007254 } else {
Svetoslav Ganov42138042012-03-20 11:51:39 -07007255 // We cannot make the call and notify the caller so it does not wait.
Svetoslav Ganov79311c42012-01-17 20:24:26 -08007256 try {
7257 callback.setPerformAccessibilityActionResult(false, interactionId);
7258 } catch (RemoteException re) {
7259 /* best effort - ignore */
7260 }
Svetoslav Ganov8643aa02011-04-20 12:12:33 -07007261 }
Svetoslav Ganov8643aa02011-04-20 12:12:33 -07007262 }
7263
Svetoslav Ganov42138042012-03-20 11:51:39 -07007264 @Override
Svetoslav Ganov80943d82013-01-02 10:25:37 -08007265 public void findAccessibilityNodeInfosByViewId(long accessibilityNodeId,
Svetoslav9ae9ed22014-09-02 16:36:35 -07007266 String viewId, Region interactiveRegion, int interactionId,
Svetoslav Ganov80943d82013-01-02 10:25:37 -08007267 IAccessibilityInteractionConnectionCallback callback, int flags,
Svetoslav Ganov152e9bb2012-10-12 20:15:29 -07007268 int interrogatingPid, long interrogatingTid, MagnificationSpec spec) {
Svetoslav Ganov02107852011-10-03 17:06:56 -07007269 ViewRootImpl viewRootImpl = mViewRootImpl.get();
7270 if (viewRootImpl != null && viewRootImpl.mView != null) {
Svetoslav Ganovaf5b4f42011-10-28 12:41:38 -07007271 viewRootImpl.getAccessibilityInteractionController()
Svetoslav Ganov80943d82013-01-02 10:25:37 -08007272 .findAccessibilityNodeInfosByViewIdClientThread(accessibilityNodeId,
Svetoslav9ae9ed22014-09-02 16:36:35 -07007273 viewId, interactiveRegion, interactionId, callback, flags,
7274 interrogatingPid, interrogatingTid, spec);
Svetoslav Ganov79311c42012-01-17 20:24:26 -08007275 } else {
Svetoslav Ganov42138042012-03-20 11:51:39 -07007276 // We cannot make the call and notify the caller so it does not wait.
Svetoslav Ganov79311c42012-01-17 20:24:26 -08007277 try {
7278 callback.setFindAccessibilityNodeInfoResult(null, interactionId);
7279 } catch (RemoteException re) {
7280 /* best effort - ignore */
7281 }
7282 }
7283 }
7284
Svetoslav Ganov42138042012-03-20 11:51:39 -07007285 @Override
Svetoslav Ganov79311c42012-01-17 20:24:26 -08007286 public void findAccessibilityNodeInfosByText(long accessibilityNodeId, String text,
Svetoslav9ae9ed22014-09-02 16:36:35 -07007287 Region interactiveRegion, int interactionId,
7288 IAccessibilityInteractionConnectionCallback callback, int flags,
Svetoslav Ganov152e9bb2012-10-12 20:15:29 -07007289 int interrogatingPid, long interrogatingTid, MagnificationSpec spec) {
Svetoslav Ganov79311c42012-01-17 20:24:26 -08007290 ViewRootImpl viewRootImpl = mViewRootImpl.get();
7291 if (viewRootImpl != null && viewRootImpl.mView != null) {
7292 viewRootImpl.getAccessibilityInteractionController()
7293 .findAccessibilityNodeInfosByTextClientThread(accessibilityNodeId, text,
Svetoslav9ae9ed22014-09-02 16:36:35 -07007294 interactiveRegion, interactionId, callback, flags, interrogatingPid,
7295 interrogatingTid, spec);
Svetoslav Ganov79311c42012-01-17 20:24:26 -08007296 } else {
Svetoslav Ganov42138042012-03-20 11:51:39 -07007297 // We cannot make the call and notify the caller so it does not wait.
Svetoslav Ganov79311c42012-01-17 20:24:26 -08007298 try {
7299 callback.setFindAccessibilityNodeInfosResult(null, interactionId);
7300 } catch (RemoteException re) {
7301 /* best effort - ignore */
7302 }
Svetoslav Ganov8643aa02011-04-20 12:12:33 -07007303 }
Svetoslav Ganov8643aa02011-04-20 12:12:33 -07007304 }
Svetoslav Ganov8643aa02011-04-20 12:12:33 -07007305
Svetoslav Ganov42138042012-03-20 11:51:39 -07007306 @Override
Svetoslav9ae9ed22014-09-02 16:36:35 -07007307 public void findFocus(long accessibilityNodeId, int focusType, Region interactiveRegion,
7308 int interactionId, IAccessibilityInteractionConnectionCallback callback, int flags,
Svetoslav Ganov152e9bb2012-10-12 20:15:29 -07007309 int interrogatingPid, long interrogatingTid, MagnificationSpec spec) {
Svetoslav Ganov42138042012-03-20 11:51:39 -07007310 ViewRootImpl viewRootImpl = mViewRootImpl.get();
7311 if (viewRootImpl != null && viewRootImpl.mView != null) {
7312 viewRootImpl.getAccessibilityInteractionController()
Svetoslav9ae9ed22014-09-02 16:36:35 -07007313 .findFocusClientThread(accessibilityNodeId, focusType, interactiveRegion,
7314 interactionId, callback, flags, interrogatingPid, interrogatingTid,
7315 spec);
Svetoslav Ganov8bd69612011-08-23 13:40:30 -07007316 } else {
Svetoslav Ganov42138042012-03-20 11:51:39 -07007317 // We cannot make the call and notify the caller so it does not wait.
Svetoslav Ganov8643aa02011-04-20 12:12:33 -07007318 try {
Svetoslav Ganov42138042012-03-20 11:51:39 -07007319 callback.setFindAccessibilityNodeInfoResult(null, interactionId);
Svetoslav Ganov8643aa02011-04-20 12:12:33 -07007320 } catch (RemoteException re) {
Svetoslav Ganov42138042012-03-20 11:51:39 -07007321 /* best effort - ignore */
Svetoslav Ganov8643aa02011-04-20 12:12:33 -07007322 }
7323 }
7324 }
7325
Svetoslav Ganov42138042012-03-20 11:51:39 -07007326 @Override
Svetoslav9ae9ed22014-09-02 16:36:35 -07007327 public void focusSearch(long accessibilityNodeId, int direction, Region interactiveRegion,
7328 int interactionId, IAccessibilityInteractionConnectionCallback callback, int flags,
Svetoslav Ganov152e9bb2012-10-12 20:15:29 -07007329 int interrogatingPid, long interrogatingTid, MagnificationSpec spec) {
Svetoslav Ganov42138042012-03-20 11:51:39 -07007330 ViewRootImpl viewRootImpl = mViewRootImpl.get();
7331 if (viewRootImpl != null && viewRootImpl.mView != null) {
7332 viewRootImpl.getAccessibilityInteractionController()
Svetoslav9ae9ed22014-09-02 16:36:35 -07007333 .focusSearchClientThread(accessibilityNodeId, direction, interactiveRegion,
7334 interactionId, callback, flags, interrogatingPid, interrogatingTid,
7335 spec);
Svetoslav Ganov8bd69612011-08-23 13:40:30 -07007336 } else {
Svetoslav Ganov42138042012-03-20 11:51:39 -07007337 // We cannot make the call and notify the caller so it does not wait.
Svetoslav Ganov8643aa02011-04-20 12:12:33 -07007338 try {
Svetoslav Ganov42138042012-03-20 11:51:39 -07007339 callback.setFindAccessibilityNodeInfoResult(null, interactionId);
Svetoslav Ganov8643aa02011-04-20 12:12:33 -07007340 } catch (RemoteException re) {
Svetoslav Ganov42138042012-03-20 11:51:39 -07007341 /* best effort - ignore */
Svetoslav Ganov8643aa02011-04-20 12:12:33 -07007342 }
7343 }
7344 }
Svetoslav Ganov8643aa02011-04-20 12:12:33 -07007345 }
Svetoslav Ganoveeee4d22011-06-10 20:51:30 -07007346
Svetoslav Ganova0156172011-06-26 17:55:44 -07007347 private class SendWindowContentChangedAccessibilityEvent implements Runnable {
Alan Viverette77e9a282013-09-12 17:16:09 -07007348 private int mChangeTypes = 0;
7349
Svetoslav Ganov42138042012-03-20 11:51:39 -07007350 public View mSource;
Svetoslav6254f482013-06-04 17:22:14 -07007351 public long mLastEventTimeMillis;
Svetoslav Ganova0156172011-06-26 17:55:44 -07007352
Igor Murashkina86ab6402013-08-30 12:58:36 -07007353 @Override
Svetoslav Ganoveeee4d22011-06-10 20:51:30 -07007354 public void run() {
Svetoslav8d820ecf2013-07-15 17:12:41 -07007355 // The accessibility may be turned off while we were waiting so check again.
7356 if (AccessibilityManager.getInstance(mContext).isEnabled()) {
7357 mLastEventTimeMillis = SystemClock.uptimeMillis();
7358 AccessibilityEvent event = AccessibilityEvent.obtain();
7359 event.setEventType(AccessibilityEvent.TYPE_WINDOW_CONTENT_CHANGED);
Alan Viverette77e9a282013-09-12 17:16:09 -07007360 event.setContentChangeTypes(mChangeTypes);
Svetoslav8d820ecf2013-07-15 17:12:41 -07007361 mSource.sendAccessibilityEventUnchecked(event);
7362 } else {
7363 mLastEventTimeMillis = 0;
7364 }
7365 // In any case reset to initial state.
Svetoslav6254f482013-06-04 17:22:14 -07007366 mSource.resetSubtreeAccessibilityStateChanged();
7367 mSource = null;
Alan Viverette77e9a282013-09-12 17:16:09 -07007368 mChangeTypes = 0;
Svetoslav6254f482013-06-04 17:22:14 -07007369 }
7370
Alan Viverette77e9a282013-09-12 17:16:09 -07007371 public void runOrPost(View source, int changeType) {
Svetoslav Ganov42138042012-03-20 11:51:39 -07007372 if (mSource != null) {
Svetoslav9dafebb2013-06-18 16:29:25 -07007373 // If there is no common predecessor, then mSource points to
7374 // a removed view, hence in this case always prefer the source.
7375 View predecessor = getCommonPredecessor(mSource, source);
7376 mSource = (predecessor != null) ? predecessor : source;
Alan Viverette77e9a282013-09-12 17:16:09 -07007377 mChangeTypes |= changeType;
Svetoslav6254f482013-06-04 17:22:14 -07007378 return;
7379 }
7380 mSource = source;
Alan Viverette77e9a282013-09-12 17:16:09 -07007381 mChangeTypes = changeType;
Svetoslav6254f482013-06-04 17:22:14 -07007382 final long timeSinceLastMillis = SystemClock.uptimeMillis() - mLastEventTimeMillis;
7383 final long minEventIntevalMillis =
7384 ViewConfiguration.getSendRecurringAccessibilityEventsInterval();
7385 if (timeSinceLastMillis >= minEventIntevalMillis) {
Svetoslav9dafebb2013-06-18 16:29:25 -07007386 mSource.removeCallbacks(this);
Svetoslav6254f482013-06-04 17:22:14 -07007387 run();
7388 } else {
7389 mSource.postDelayed(this, minEventIntevalMillis - timeSinceLastMillis);
Svetoslav Ganov79311c42012-01-17 20:24:26 -08007390 }
7391 }
7392 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007393}