View.java revision 4acd0ecc7b2351cadafc02986f8165f811e00cb1
1/*
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
19import android.animation.AnimatorInflater;
20import android.animation.StateListAnimator;
21import android.annotation.IntDef;
22import android.annotation.NonNull;
23import android.annotation.Nullable;
24import android.content.ClipData;
25import android.content.Context;
26import android.content.res.ColorStateList;
27import android.content.res.Configuration;
28import android.content.res.Resources;
29import android.content.res.TypedArray;
30import android.graphics.Bitmap;
31import android.graphics.Canvas;
32import android.graphics.Insets;
33import android.graphics.Interpolator;
34import android.graphics.LinearGradient;
35import android.graphics.Matrix;
36import android.graphics.Outline;
37import android.graphics.Paint;
38import android.graphics.Path;
39import android.graphics.PathMeasure;
40import android.graphics.PixelFormat;
41import android.graphics.Point;
42import android.graphics.PorterDuff;
43import android.graphics.PorterDuffXfermode;
44import android.graphics.Rect;
45import android.graphics.RectF;
46import android.graphics.Region;
47import android.graphics.Shader;
48import android.graphics.drawable.ColorDrawable;
49import android.graphics.drawable.Drawable;
50import android.hardware.display.DisplayManagerGlobal;
51import android.os.Bundle;
52import android.os.Handler;
53import android.os.IBinder;
54import android.os.Parcel;
55import android.os.Parcelable;
56import android.os.RemoteException;
57import android.os.SystemClock;
58import android.os.SystemProperties;
59import android.text.TextUtils;
60import android.util.AttributeSet;
61import android.util.FloatProperty;
62import android.util.LayoutDirection;
63import android.util.Log;
64import android.util.LongSparseLongArray;
65import android.util.Pools.SynchronizedPool;
66import android.util.Property;
67import android.util.SparseArray;
68import android.util.SuperNotCalledException;
69import android.util.TypedValue;
70import android.view.ContextMenu.ContextMenuInfo;
71import android.view.AccessibilityIterators.TextSegmentIterator;
72import android.view.AccessibilityIterators.CharacterTextSegmentIterator;
73import android.view.AccessibilityIterators.WordTextSegmentIterator;
74import android.view.AccessibilityIterators.ParagraphTextSegmentIterator;
75import android.view.accessibility.AccessibilityEvent;
76import android.view.accessibility.AccessibilityEventSource;
77import android.view.accessibility.AccessibilityManager;
78import android.view.accessibility.AccessibilityNodeInfo;
79import android.view.accessibility.AccessibilityNodeProvider;
80import android.view.animation.Animation;
81import android.view.animation.AnimationUtils;
82import android.view.animation.Transformation;
83import android.view.inputmethod.EditorInfo;
84import android.view.inputmethod.InputConnection;
85import android.view.inputmethod.InputMethodManager;
86import android.widget.ScrollBarDrawable;
87
88import static android.os.Build.VERSION_CODES.*;
89import static java.lang.Math.max;
90
91import com.android.internal.R;
92import com.android.internal.util.Predicate;
93import com.android.internal.view.menu.MenuBuilder;
94import com.google.android.collect.Lists;
95import com.google.android.collect.Maps;
96
97import java.lang.annotation.Retention;
98import java.lang.annotation.RetentionPolicy;
99import java.lang.ref.WeakReference;
100import java.lang.reflect.Field;
101import java.lang.reflect.InvocationTargetException;
102import java.lang.reflect.Method;
103import java.lang.reflect.Modifier;
104import java.util.ArrayList;
105import java.util.Arrays;
106import java.util.Collections;
107import java.util.HashMap;
108import java.util.List;
109import java.util.Locale;
110import java.util.Map;
111import java.util.concurrent.CopyOnWriteArrayList;
112import java.util.concurrent.atomic.AtomicInteger;
113
114/**
115 * <p>
116 * This class represents the basic building block for user interface components. A View
117 * occupies a rectangular area on the screen and is responsible for drawing and
118 * event handling. View is the base class for <em>widgets</em>, which are
119 * used to create interactive UI components (buttons, text fields, etc.). The
120 * {@link android.view.ViewGroup} subclass is the base class for <em>layouts</em>, which
121 * are invisible containers that hold other Views (or other ViewGroups) and define
122 * their layout properties.
123 * </p>
124 *
125 * <div class="special reference">
126 * <h3>Developer Guides</h3>
127 * <p>For information about using this class to develop your application's user interface,
128 * read the <a href="{@docRoot}guide/topics/ui/index.html">User Interface</a> developer guide.
129 * </div>
130 *
131 * <a name="Using"></a>
132 * <h3>Using Views</h3>
133 * <p>
134 * All of the views in a window are arranged in a single tree. You can add views
135 * either from code or by specifying a tree of views in one or more XML layout
136 * files. There are many specialized subclasses of views that act as controls or
137 * are capable of displaying text, images, or other content.
138 * </p>
139 * <p>
140 * Once you have created a tree of views, there are typically a few types of
141 * common operations you may wish to perform:
142 * <ul>
143 * <li><strong>Set properties:</strong> for example setting the text of a
144 * {@link android.widget.TextView}. The available properties and the methods
145 * that set them will vary among the different subclasses of views. Note that
146 * properties that are known at build time can be set in the XML layout
147 * files.</li>
148 * <li><strong>Set focus:</strong> The framework will handled moving focus in
149 * response to user input. To force focus to a specific view, call
150 * {@link #requestFocus}.</li>
151 * <li><strong>Set up listeners:</strong> Views allow clients to set listeners
152 * that will be notified when something interesting happens to the view. For
153 * example, all views will let you set a listener to be notified when the view
154 * gains or loses focus. You can register such a listener using
155 * {@link #setOnFocusChangeListener(android.view.View.OnFocusChangeListener)}.
156 * Other view subclasses offer more specialized listeners. For example, a Button
157 * exposes a listener to notify clients when the button is clicked.</li>
158 * <li><strong>Set visibility:</strong> You can hide or show views using
159 * {@link #setVisibility(int)}.</li>
160 * </ul>
161 * </p>
162 * <p><em>
163 * Note: The Android framework is responsible for measuring, laying out and
164 * drawing views. You should not call methods that perform these actions on
165 * views yourself unless you are actually implementing a
166 * {@link android.view.ViewGroup}.
167 * </em></p>
168 *
169 * <a name="Lifecycle"></a>
170 * <h3>Implementing a Custom View</h3>
171 *
172 * <p>
173 * To implement a custom view, you will usually begin by providing overrides for
174 * some of the standard methods that the framework calls on all views. You do
175 * not need to override all of these methods. In fact, you can start by just
176 * overriding {@link #onDraw(android.graphics.Canvas)}.
177 * <table border="2" width="85%" align="center" cellpadding="5">
178 *     <thead>
179 *         <tr><th>Category</th> <th>Methods</th> <th>Description</th></tr>
180 *     </thead>
181 *
182 *     <tbody>
183 *     <tr>
184 *         <td rowspan="2">Creation</td>
185 *         <td>Constructors</td>
186 *         <td>There is a form of the constructor that are called when the view
187 *         is created from code and a form that is called when the view is
188 *         inflated from a layout file. The second form should parse and apply
189 *         any attributes defined in the layout file.
190 *         </td>
191 *     </tr>
192 *     <tr>
193 *         <td><code>{@link #onFinishInflate()}</code></td>
194 *         <td>Called after a view and all of its children has been inflated
195 *         from XML.</td>
196 *     </tr>
197 *
198 *     <tr>
199 *         <td rowspan="3">Layout</td>
200 *         <td><code>{@link #onMeasure(int, int)}</code></td>
201 *         <td>Called to determine the size requirements for this view and all
202 *         of its children.
203 *         </td>
204 *     </tr>
205 *     <tr>
206 *         <td><code>{@link #onLayout(boolean, int, int, int, int)}</code></td>
207 *         <td>Called when this view should assign a size and position to all
208 *         of its children.
209 *         </td>
210 *     </tr>
211 *     <tr>
212 *         <td><code>{@link #onSizeChanged(int, int, int, int)}</code></td>
213 *         <td>Called when the size of this view has changed.
214 *         </td>
215 *     </tr>
216 *
217 *     <tr>
218 *         <td>Drawing</td>
219 *         <td><code>{@link #onDraw(android.graphics.Canvas)}</code></td>
220 *         <td>Called when the view should render its content.
221 *         </td>
222 *     </tr>
223 *
224 *     <tr>
225 *         <td rowspan="4">Event processing</td>
226 *         <td><code>{@link #onKeyDown(int, KeyEvent)}</code></td>
227 *         <td>Called when a new hardware key event occurs.
228 *         </td>
229 *     </tr>
230 *     <tr>
231 *         <td><code>{@link #onKeyUp(int, KeyEvent)}</code></td>
232 *         <td>Called when a hardware key up event occurs.
233 *         </td>
234 *     </tr>
235 *     <tr>
236 *         <td><code>{@link #onTrackballEvent(MotionEvent)}</code></td>
237 *         <td>Called when a trackball motion event occurs.
238 *         </td>
239 *     </tr>
240 *     <tr>
241 *         <td><code>{@link #onTouchEvent(MotionEvent)}</code></td>
242 *         <td>Called when a touch screen motion event occurs.
243 *         </td>
244 *     </tr>
245 *
246 *     <tr>
247 *         <td rowspan="2">Focus</td>
248 *         <td><code>{@link #onFocusChanged(boolean, int, android.graphics.Rect)}</code></td>
249 *         <td>Called when the view gains or loses focus.
250 *         </td>
251 *     </tr>
252 *
253 *     <tr>
254 *         <td><code>{@link #onWindowFocusChanged(boolean)}</code></td>
255 *         <td>Called when the window containing the view gains or loses focus.
256 *         </td>
257 *     </tr>
258 *
259 *     <tr>
260 *         <td rowspan="3">Attaching</td>
261 *         <td><code>{@link #onAttachedToWindow()}</code></td>
262 *         <td>Called when the view is attached to a window.
263 *         </td>
264 *     </tr>
265 *
266 *     <tr>
267 *         <td><code>{@link #onDetachedFromWindow}</code></td>
268 *         <td>Called when the view is detached from its window.
269 *         </td>
270 *     </tr>
271 *
272 *     <tr>
273 *         <td><code>{@link #onWindowVisibilityChanged(int)}</code></td>
274 *         <td>Called when the visibility of the window containing the view
275 *         has changed.
276 *         </td>
277 *     </tr>
278 *     </tbody>
279 *
280 * </table>
281 * </p>
282 *
283 * <a name="IDs"></a>
284 * <h3>IDs</h3>
285 * Views may have an integer id associated with them. These ids are typically
286 * assigned in the layout XML files, and are used to find specific views within
287 * the view tree. A common pattern is to:
288 * <ul>
289 * <li>Define a Button in the layout file and assign it a unique ID.
290 * <pre>
291 * &lt;Button
292 *     android:id="@+id/my_button"
293 *     android:layout_width="wrap_content"
294 *     android:layout_height="wrap_content"
295 *     android:text="@string/my_button_text"/&gt;
296 * </pre></li>
297 * <li>From the onCreate method of an Activity, find the Button
298 * <pre class="prettyprint">
299 *      Button myButton = (Button) findViewById(R.id.my_button);
300 * </pre></li>
301 * </ul>
302 * <p>
303 * View IDs need not be unique throughout the tree, but it is good practice to
304 * ensure that they are at least unique within the part of the tree you are
305 * searching.
306 * </p>
307 *
308 * <a name="Position"></a>
309 * <h3>Position</h3>
310 * <p>
311 * The geometry of a view is that of a rectangle. A view has a location,
312 * expressed as a pair of <em>left</em> and <em>top</em> coordinates, and
313 * two dimensions, expressed as a width and a height. The unit for location
314 * and dimensions is the pixel.
315 * </p>
316 *
317 * <p>
318 * It is possible to retrieve the location of a view by invoking the methods
319 * {@link #getLeft()} and {@link #getTop()}. The former returns the left, or X,
320 * coordinate of the rectangle representing the view. The latter returns the
321 * top, or Y, coordinate of the rectangle representing the view. These methods
322 * both return the location of the view relative to its parent. For instance,
323 * when getLeft() returns 20, that means the view is located 20 pixels to the
324 * right of the left edge of its direct parent.
325 * </p>
326 *
327 * <p>
328 * In addition, several convenience methods are offered to avoid unnecessary
329 * computations, namely {@link #getRight()} and {@link #getBottom()}.
330 * These methods return the coordinates of the right and bottom edges of the
331 * rectangle representing the view. For instance, calling {@link #getRight()}
332 * is similar to the following computation: <code>getLeft() + getWidth()</code>
333 * (see <a href="#SizePaddingMargins">Size</a> for more information about the width.)
334 * </p>
335 *
336 * <a name="SizePaddingMargins"></a>
337 * <h3>Size, padding and margins</h3>
338 * <p>
339 * The size of a view is expressed with a width and a height. A view actually
340 * possess two pairs of width and height values.
341 * </p>
342 *
343 * <p>
344 * The first pair is known as <em>measured width</em> and
345 * <em>measured height</em>. These dimensions define how big a view wants to be
346 * within its parent (see <a href="#Layout">Layout</a> for more details.) The
347 * measured dimensions can be obtained by calling {@link #getMeasuredWidth()}
348 * and {@link #getMeasuredHeight()}.
349 * </p>
350 *
351 * <p>
352 * The second pair is simply known as <em>width</em> and <em>height</em>, or
353 * sometimes <em>drawing width</em> and <em>drawing height</em>. These
354 * dimensions define the actual size of the view on screen, at drawing time and
355 * after layout. These values may, but do not have to, be different from the
356 * measured width and height. The width and height can be obtained by calling
357 * {@link #getWidth()} and {@link #getHeight()}.
358 * </p>
359 *
360 * <p>
361 * To measure its dimensions, a view takes into account its padding. The padding
362 * is expressed in pixels for the left, top, right and bottom parts of the view.
363 * Padding can be used to offset the content of the view by a specific amount of
364 * pixels. For instance, a left padding of 2 will push the view's content by
365 * 2 pixels to the right of the left edge. Padding can be set using the
366 * {@link #setPadding(int, int, int, int)} or {@link #setPaddingRelative(int, int, int, int)}
367 * method and queried by calling {@link #getPaddingLeft()}, {@link #getPaddingTop()},
368 * {@link #getPaddingRight()}, {@link #getPaddingBottom()}, {@link #getPaddingStart()},
369 * {@link #getPaddingEnd()}.
370 * </p>
371 *
372 * <p>
373 * Even though a view can define a padding, it does not provide any support for
374 * margins. However, view groups provide such a support. Refer to
375 * {@link android.view.ViewGroup} and
376 * {@link android.view.ViewGroup.MarginLayoutParams} for further information.
377 * </p>
378 *
379 * <a name="Layout"></a>
380 * <h3>Layout</h3>
381 * <p>
382 * Layout is a two pass process: a measure pass and a layout pass. The measuring
383 * pass is implemented in {@link #measure(int, int)} and is a top-down traversal
384 * of the view tree. Each view pushes dimension specifications down the tree
385 * during the recursion. At the end of the measure pass, every view has stored
386 * its measurements. The second pass happens in
387 * {@link #layout(int,int,int,int)} and is also top-down. During
388 * this pass each parent is responsible for positioning all of its children
389 * using the sizes computed in the measure pass.
390 * </p>
391 *
392 * <p>
393 * When a view's measure() method returns, its {@link #getMeasuredWidth()} and
394 * {@link #getMeasuredHeight()} values must be set, along with those for all of
395 * that view's descendants. A view's measured width and measured height values
396 * must respect the constraints imposed by the view's parents. This guarantees
397 * that at the end of the measure pass, all parents accept all of their
398 * children's measurements. A parent view may call measure() more than once on
399 * its children. For example, the parent may measure each child once with
400 * unspecified dimensions to find out how big they want to be, then call
401 * measure() on them again with actual numbers if the sum of all the children's
402 * unconstrained sizes is too big or too small.
403 * </p>
404 *
405 * <p>
406 * The measure pass uses two classes to communicate dimensions. The
407 * {@link MeasureSpec} class is used by views to tell their parents how they
408 * want to be measured and positioned. The base LayoutParams class just
409 * describes how big the view wants to be for both width and height. For each
410 * dimension, it can specify one of:
411 * <ul>
412 * <li> an exact number
413 * <li>MATCH_PARENT, which means the view wants to be as big as its parent
414 * (minus padding)
415 * <li> WRAP_CONTENT, which means that the view wants to be just big enough to
416 * enclose its content (plus padding).
417 * </ul>
418 * There are subclasses of LayoutParams for different subclasses of ViewGroup.
419 * For example, AbsoluteLayout has its own subclass of LayoutParams which adds
420 * an X and Y value.
421 * </p>
422 *
423 * <p>
424 * MeasureSpecs are used to push requirements down the tree from parent to
425 * child. A MeasureSpec can be in one of three modes:
426 * <ul>
427 * <li>UNSPECIFIED: This is used by a parent to determine the desired dimension
428 * of a child view. For example, a LinearLayout may call measure() on its child
429 * with the height set to UNSPECIFIED and a width of EXACTLY 240 to find out how
430 * tall the child view wants to be given a width of 240 pixels.
431 * <li>EXACTLY: This is used by the parent to impose an exact size on the
432 * child. The child must use this size, and guarantee that all of its
433 * descendants will fit within this size.
434 * <li>AT_MOST: This is used by the parent to impose a maximum size on the
435 * child. The child must guarantee that it and all of its descendants will fit
436 * within this size.
437 * </ul>
438 * </p>
439 *
440 * <p>
441 * To intiate a layout, call {@link #requestLayout}. This method is typically
442 * called by a view on itself when it believes that is can no longer fit within
443 * its current bounds.
444 * </p>
445 *
446 * <a name="Drawing"></a>
447 * <h3>Drawing</h3>
448 * <p>
449 * Drawing is handled by walking the tree and recording the drawing commands of
450 * any View that needs to update. After this, the drawing commands of the
451 * entire tree are issued to screen, clipped to the newly damaged area.
452 * </p>
453 *
454 * <p>
455 * The tree is largely recorded and drawn in order, with parents drawn before
456 * (i.e., behind) their children, with siblings drawn in the order they appear
457 * in the tree. If you set a background drawable for a View, then the View will
458 * draw it before calling back to its <code>onDraw()</code> method. The child
459 * drawing order can be overridden with
460 * {@link ViewGroup#setChildrenDrawingOrderEnabled(boolean) custom child drawing order}
461 * in a ViewGroup, and with {@link #setZ(float)} custom Z values} set on Views.
462 * </p>
463 *
464 * <p>
465 * To force a view to draw, call {@link #invalidate()}.
466 * </p>
467 *
468 * <a name="EventHandlingThreading"></a>
469 * <h3>Event Handling and Threading</h3>
470 * <p>
471 * The basic cycle of a view is as follows:
472 * <ol>
473 * <li>An event comes in and is dispatched to the appropriate view. The view
474 * handles the event and notifies any listeners.</li>
475 * <li>If in the course of processing the event, the view's bounds may need
476 * to be changed, the view will call {@link #requestLayout()}.</li>
477 * <li>Similarly, if in the course of processing the event the view's appearance
478 * may need to be changed, the view will call {@link #invalidate()}.</li>
479 * <li>If either {@link #requestLayout()} or {@link #invalidate()} were called,
480 * the framework will take care of measuring, laying out, and drawing the tree
481 * as appropriate.</li>
482 * </ol>
483 * </p>
484 *
485 * <p><em>Note: The entire view tree is single threaded. You must always be on
486 * the UI thread when calling any method on any view.</em>
487 * If you are doing work on other threads and want to update the state of a view
488 * from that thread, you should use a {@link Handler}.
489 * </p>
490 *
491 * <a name="FocusHandling"></a>
492 * <h3>Focus Handling</h3>
493 * <p>
494 * The framework will handle routine focus movement in response to user input.
495 * This includes changing the focus as views are removed or hidden, or as new
496 * views become available. Views indicate their willingness to take focus
497 * through the {@link #isFocusable} method. To change whether a view can take
498 * focus, call {@link #setFocusable(boolean)}.  When in touch mode (see notes below)
499 * views indicate whether they still would like focus via {@link #isFocusableInTouchMode}
500 * and can change this via {@link #setFocusableInTouchMode(boolean)}.
501 * </p>
502 * <p>
503 * Focus movement is based on an algorithm which finds the nearest neighbor in a
504 * given direction. In rare cases, the default algorithm may not match the
505 * intended behavior of the developer. In these situations, you can provide
506 * explicit overrides by using these XML attributes in the layout file:
507 * <pre>
508 * nextFocusDown
509 * nextFocusLeft
510 * nextFocusRight
511 * nextFocusUp
512 * </pre>
513 * </p>
514 *
515 *
516 * <p>
517 * To get a particular view to take focus, call {@link #requestFocus()}.
518 * </p>
519 *
520 * <a name="TouchMode"></a>
521 * <h3>Touch Mode</h3>
522 * <p>
523 * When a user is navigating a user interface via directional keys such as a D-pad, it is
524 * necessary to give focus to actionable items such as buttons so the user can see
525 * what will take input.  If the device has touch capabilities, however, and the user
526 * begins interacting with the interface by touching it, it is no longer necessary to
527 * always highlight, or give focus to, a particular view.  This motivates a mode
528 * for interaction named 'touch mode'.
529 * </p>
530 * <p>
531 * For a touch capable device, once the user touches the screen, the device
532 * will enter touch mode.  From this point onward, only views for which
533 * {@link #isFocusableInTouchMode} is true will be focusable, such as text editing widgets.
534 * Other views that are touchable, like buttons, will not take focus when touched; they will
535 * only fire the on click listeners.
536 * </p>
537 * <p>
538 * Any time a user hits a directional key, such as a D-pad direction, the view device will
539 * exit touch mode, and find a view to take focus, so that the user may resume interacting
540 * with the user interface without touching the screen again.
541 * </p>
542 * <p>
543 * The touch mode state is maintained across {@link android.app.Activity}s.  Call
544 * {@link #isInTouchMode} to see whether the device is currently in touch mode.
545 * </p>
546 *
547 * <a name="Scrolling"></a>
548 * <h3>Scrolling</h3>
549 * <p>
550 * The framework provides basic support for views that wish to internally
551 * scroll their content. This includes keeping track of the X and Y scroll
552 * offset as well as mechanisms for drawing scrollbars. See
553 * {@link #scrollBy(int, int)}, {@link #scrollTo(int, int)}, and
554 * {@link #awakenScrollBars()} for more details.
555 * </p>
556 *
557 * <a name="Tags"></a>
558 * <h3>Tags</h3>
559 * <p>
560 * Unlike IDs, tags are not used to identify views. Tags are essentially an
561 * extra piece of information that can be associated with a view. They are most
562 * often used as a convenience to store data related to views in the views
563 * themselves rather than by putting them in a separate structure.
564 * </p>
565 *
566 * <a name="Properties"></a>
567 * <h3>Properties</h3>
568 * <p>
569 * The View class exposes an {@link #ALPHA} property, as well as several transform-related
570 * properties, such as {@link #TRANSLATION_X} and {@link #TRANSLATION_Y}. These properties are
571 * available both in the {@link Property} form as well as in similarly-named setter/getter
572 * methods (such as {@link #setAlpha(float)} for {@link #ALPHA}). These properties can
573 * be used to set persistent state associated with these rendering-related properties on the view.
574 * The properties and methods can also be used in conjunction with
575 * {@link android.animation.Animator Animator}-based animations, described more in the
576 * <a href="#Animation">Animation</a> section.
577 * </p>
578 *
579 * <a name="Animation"></a>
580 * <h3>Animation</h3>
581 * <p>
582 * Starting with Android 3.0, the preferred way of animating views is to use the
583 * {@link android.animation} package APIs. These {@link android.animation.Animator Animator}-based
584 * classes change actual properties of the View object, such as {@link #setAlpha(float) alpha} and
585 * {@link #setTranslationX(float) translationX}. This behavior is contrasted to that of the pre-3.0
586 * {@link android.view.animation.Animation Animation}-based classes, which instead animate only
587 * how the view is drawn on the display. In particular, the {@link ViewPropertyAnimator} class
588 * makes animating these View properties particularly easy and efficient.
589 * </p>
590 * <p>
591 * Alternatively, you can use the pre-3.0 animation classes to animate how Views are rendered.
592 * You can attach an {@link Animation} object to a view using
593 * {@link #setAnimation(Animation)} or
594 * {@link #startAnimation(Animation)}. The animation can alter the scale,
595 * rotation, translation and alpha of a view over time. If the animation is
596 * attached to a view that has children, the animation will affect the entire
597 * subtree rooted by that node. When an animation is started, the framework will
598 * take care of redrawing the appropriate views until the animation completes.
599 * </p>
600 *
601 * <a name="Security"></a>
602 * <h3>Security</h3>
603 * <p>
604 * Sometimes it is essential that an application be able to verify that an action
605 * is being performed with the full knowledge and consent of the user, such as
606 * granting a permission request, making a purchase or clicking on an advertisement.
607 * Unfortunately, a malicious application could try to spoof the user into
608 * performing these actions, unaware, by concealing the intended purpose of the view.
609 * As a remedy, the framework offers a touch filtering mechanism that can be used to
610 * improve the security of views that provide access to sensitive functionality.
611 * </p><p>
612 * To enable touch filtering, call {@link #setFilterTouchesWhenObscured(boolean)} or set the
613 * android:filterTouchesWhenObscured layout attribute to true.  When enabled, the framework
614 * will discard touches that are received whenever the view's window is obscured by
615 * another visible window.  As a result, the view will not receive touches whenever a
616 * toast, dialog or other window appears above the view's window.
617 * </p><p>
618 * For more fine-grained control over security, consider overriding the
619 * {@link #onFilterTouchEventForSecurity(MotionEvent)} method to implement your own
620 * security policy. See also {@link MotionEvent#FLAG_WINDOW_IS_OBSCURED}.
621 * </p>
622 *
623 * @attr ref android.R.styleable#View_alpha
624 * @attr ref android.R.styleable#View_background
625 * @attr ref android.R.styleable#View_clickable
626 * @attr ref android.R.styleable#View_contentDescription
627 * @attr ref android.R.styleable#View_drawingCacheQuality
628 * @attr ref android.R.styleable#View_duplicateParentState
629 * @attr ref android.R.styleable#View_id
630 * @attr ref android.R.styleable#View_requiresFadingEdge
631 * @attr ref android.R.styleable#View_fadeScrollbars
632 * @attr ref android.R.styleable#View_fadingEdgeLength
633 * @attr ref android.R.styleable#View_filterTouchesWhenObscured
634 * @attr ref android.R.styleable#View_fitsSystemWindows
635 * @attr ref android.R.styleable#View_isScrollContainer
636 * @attr ref android.R.styleable#View_focusable
637 * @attr ref android.R.styleable#View_focusableInTouchMode
638 * @attr ref android.R.styleable#View_hapticFeedbackEnabled
639 * @attr ref android.R.styleable#View_keepScreenOn
640 * @attr ref android.R.styleable#View_layerType
641 * @attr ref android.R.styleable#View_layoutDirection
642 * @attr ref android.R.styleable#View_longClickable
643 * @attr ref android.R.styleable#View_minHeight
644 * @attr ref android.R.styleable#View_minWidth
645 * @attr ref android.R.styleable#View_nextFocusDown
646 * @attr ref android.R.styleable#View_nextFocusLeft
647 * @attr ref android.R.styleable#View_nextFocusRight
648 * @attr ref android.R.styleable#View_nextFocusUp
649 * @attr ref android.R.styleable#View_onClick
650 * @attr ref android.R.styleable#View_padding
651 * @attr ref android.R.styleable#View_paddingBottom
652 * @attr ref android.R.styleable#View_paddingLeft
653 * @attr ref android.R.styleable#View_paddingRight
654 * @attr ref android.R.styleable#View_paddingTop
655 * @attr ref android.R.styleable#View_paddingStart
656 * @attr ref android.R.styleable#View_paddingEnd
657 * @attr ref android.R.styleable#View_saveEnabled
658 * @attr ref android.R.styleable#View_rotation
659 * @attr ref android.R.styleable#View_rotationX
660 * @attr ref android.R.styleable#View_rotationY
661 * @attr ref android.R.styleable#View_scaleX
662 * @attr ref android.R.styleable#View_scaleY
663 * @attr ref android.R.styleable#View_scrollX
664 * @attr ref android.R.styleable#View_scrollY
665 * @attr ref android.R.styleable#View_scrollbarSize
666 * @attr ref android.R.styleable#View_scrollbarStyle
667 * @attr ref android.R.styleable#View_scrollbars
668 * @attr ref android.R.styleable#View_scrollbarDefaultDelayBeforeFade
669 * @attr ref android.R.styleable#View_scrollbarFadeDuration
670 * @attr ref android.R.styleable#View_scrollbarTrackHorizontal
671 * @attr ref android.R.styleable#View_scrollbarThumbHorizontal
672 * @attr ref android.R.styleable#View_scrollbarThumbVertical
673 * @attr ref android.R.styleable#View_scrollbarTrackVertical
674 * @attr ref android.R.styleable#View_scrollbarAlwaysDrawHorizontalTrack
675 * @attr ref android.R.styleable#View_scrollbarAlwaysDrawVerticalTrack
676 * @attr ref android.R.styleable#View_stateListAnimator
677 * @attr ref android.R.styleable#View_transitionName
678 * @attr ref android.R.styleable#View_soundEffectsEnabled
679 * @attr ref android.R.styleable#View_tag
680 * @attr ref android.R.styleable#View_textAlignment
681 * @attr ref android.R.styleable#View_textDirection
682 * @attr ref android.R.styleable#View_transformPivotX
683 * @attr ref android.R.styleable#View_transformPivotY
684 * @attr ref android.R.styleable#View_translationX
685 * @attr ref android.R.styleable#View_translationY
686 * @attr ref android.R.styleable#View_translationZ
687 * @attr ref android.R.styleable#View_visibility
688 *
689 * @see android.view.ViewGroup
690 */
691public class View implements Drawable.Callback, KeyEvent.Callback,
692        AccessibilityEventSource {
693    private static final boolean DBG = false;
694
695    /**
696     * The logging tag used by this class with android.util.Log.
697     */
698    protected static final String VIEW_LOG_TAG = "View";
699
700    /**
701     * When set to true, apps will draw debugging information about their layouts.
702     *
703     * @hide
704     */
705    public static final String DEBUG_LAYOUT_PROPERTY = "debug.layout";
706
707    /**
708     * When set to true, this view will save its attribute data.
709     *
710     * @hide
711     */
712    public static boolean mDebugViewAttributes = false;
713
714    /**
715     * Used to mark a View that has no ID.
716     */
717    public static final int NO_ID = -1;
718
719    /**
720     * Signals that compatibility booleans have been initialized according to
721     * target SDK versions.
722     */
723    private static boolean sCompatibilityDone = false;
724
725    /**
726     * Use the old (broken) way of building MeasureSpecs.
727     */
728    private static boolean sUseBrokenMakeMeasureSpec = false;
729
730    /**
731     * Ignore any optimizations using the measure cache.
732     */
733    private static boolean sIgnoreMeasureCache = false;
734
735    /**
736     * This view does not want keystrokes. Use with TAKES_FOCUS_MASK when
737     * calling setFlags.
738     */
739    private static final int NOT_FOCUSABLE = 0x00000000;
740
741    /**
742     * This view wants keystrokes. Use with TAKES_FOCUS_MASK when calling
743     * setFlags.
744     */
745    private static final int FOCUSABLE = 0x00000001;
746
747    /**
748     * Mask for use with setFlags indicating bits used for focus.
749     */
750    private static final int FOCUSABLE_MASK = 0x00000001;
751
752    /**
753     * This view will adjust its padding to fit sytem windows (e.g. status bar)
754     */
755    private static final int FITS_SYSTEM_WINDOWS = 0x00000002;
756
757    /** @hide */
758    @IntDef({VISIBLE, INVISIBLE, GONE})
759    @Retention(RetentionPolicy.SOURCE)
760    public @interface Visibility {}
761
762    /**
763     * This view is visible.
764     * Use with {@link #setVisibility} and <a href="#attr_android:visibility">{@code
765     * android:visibility}.
766     */
767    public static final int VISIBLE = 0x00000000;
768
769    /**
770     * This view is invisible, but it still takes up space for layout purposes.
771     * Use with {@link #setVisibility} and <a href="#attr_android:visibility">{@code
772     * android:visibility}.
773     */
774    public static final int INVISIBLE = 0x00000004;
775
776    /**
777     * This view is invisible, and it doesn't take any space for layout
778     * purposes. Use with {@link #setVisibility} and <a href="#attr_android:visibility">{@code
779     * android:visibility}.
780     */
781    public static final int GONE = 0x00000008;
782
783    /**
784     * Mask for use with setFlags indicating bits used for visibility.
785     * {@hide}
786     */
787    static final int VISIBILITY_MASK = 0x0000000C;
788
789    private static final int[] VISIBILITY_FLAGS = {VISIBLE, INVISIBLE, GONE};
790
791    /**
792     * This view is enabled. Interpretation varies by subclass.
793     * Use with ENABLED_MASK when calling setFlags.
794     * {@hide}
795     */
796    static final int ENABLED = 0x00000000;
797
798    /**
799     * This view is disabled. Interpretation varies by subclass.
800     * Use with ENABLED_MASK when calling setFlags.
801     * {@hide}
802     */
803    static final int DISABLED = 0x00000020;
804
805   /**
806    * Mask for use with setFlags indicating bits used for indicating whether
807    * this view is enabled
808    * {@hide}
809    */
810    static final int ENABLED_MASK = 0x00000020;
811
812    /**
813     * This view won't draw. {@link #onDraw(android.graphics.Canvas)} won't be
814     * called and further optimizations will be performed. It is okay to have
815     * this flag set and a background. Use with DRAW_MASK when calling setFlags.
816     * {@hide}
817     */
818    static final int WILL_NOT_DRAW = 0x00000080;
819
820    /**
821     * Mask for use with setFlags indicating bits used for indicating whether
822     * this view is will draw
823     * {@hide}
824     */
825    static final int DRAW_MASK = 0x00000080;
826
827    /**
828     * <p>This view doesn't show scrollbars.</p>
829     * {@hide}
830     */
831    static final int SCROLLBARS_NONE = 0x00000000;
832
833    /**
834     * <p>This view shows horizontal scrollbars.</p>
835     * {@hide}
836     */
837    static final int SCROLLBARS_HORIZONTAL = 0x00000100;
838
839    /**
840     * <p>This view shows vertical scrollbars.</p>
841     * {@hide}
842     */
843    static final int SCROLLBARS_VERTICAL = 0x00000200;
844
845    /**
846     * <p>Mask for use with setFlags indicating bits used for indicating which
847     * scrollbars are enabled.</p>
848     * {@hide}
849     */
850    static final int SCROLLBARS_MASK = 0x00000300;
851
852    /**
853     * Indicates that the view should filter touches when its window is obscured.
854     * Refer to the class comments for more information about this security feature.
855     * {@hide}
856     */
857    static final int FILTER_TOUCHES_WHEN_OBSCURED = 0x00000400;
858
859    /**
860     * Set for framework elements that use FITS_SYSTEM_WINDOWS, to indicate
861     * that they are optional and should be skipped if the window has
862     * requested system UI flags that ignore those insets for layout.
863     */
864    static final int OPTIONAL_FITS_SYSTEM_WINDOWS = 0x00000800;
865
866    /**
867     * <p>This view doesn't show fading edges.</p>
868     * {@hide}
869     */
870    static final int FADING_EDGE_NONE = 0x00000000;
871
872    /**
873     * <p>This view shows horizontal fading edges.</p>
874     * {@hide}
875     */
876    static final int FADING_EDGE_HORIZONTAL = 0x00001000;
877
878    /**
879     * <p>This view shows vertical fading edges.</p>
880     * {@hide}
881     */
882    static final int FADING_EDGE_VERTICAL = 0x00002000;
883
884    /**
885     * <p>Mask for use with setFlags indicating bits used for indicating which
886     * fading edges are enabled.</p>
887     * {@hide}
888     */
889    static final int FADING_EDGE_MASK = 0x00003000;
890
891    /**
892     * <p>Indicates this view can be clicked. When clickable, a View reacts
893     * to clicks by notifying the OnClickListener.<p>
894     * {@hide}
895     */
896    static final int CLICKABLE = 0x00004000;
897
898    /**
899     * <p>Indicates this view is caching its drawing into a bitmap.</p>
900     * {@hide}
901     */
902    static final int DRAWING_CACHE_ENABLED = 0x00008000;
903
904    /**
905     * <p>Indicates that no icicle should be saved for this view.<p>
906     * {@hide}
907     */
908    static final int SAVE_DISABLED = 0x000010000;
909
910    /**
911     * <p>Mask for use with setFlags indicating bits used for the saveEnabled
912     * property.</p>
913     * {@hide}
914     */
915    static final int SAVE_DISABLED_MASK = 0x000010000;
916
917    /**
918     * <p>Indicates that no drawing cache should ever be created for this view.<p>
919     * {@hide}
920     */
921    static final int WILL_NOT_CACHE_DRAWING = 0x000020000;
922
923    /**
924     * <p>Indicates this view can take / keep focus when int touch mode.</p>
925     * {@hide}
926     */
927    static final int FOCUSABLE_IN_TOUCH_MODE = 0x00040000;
928
929    /** @hide */
930    @Retention(RetentionPolicy.SOURCE)
931    @IntDef({DRAWING_CACHE_QUALITY_LOW, DRAWING_CACHE_QUALITY_HIGH, DRAWING_CACHE_QUALITY_AUTO})
932    public @interface DrawingCacheQuality {}
933
934    /**
935     * <p>Enables low quality mode for the drawing cache.</p>
936     */
937    public static final int DRAWING_CACHE_QUALITY_LOW = 0x00080000;
938
939    /**
940     * <p>Enables high quality mode for the drawing cache.</p>
941     */
942    public static final int DRAWING_CACHE_QUALITY_HIGH = 0x00100000;
943
944    /**
945     * <p>Enables automatic quality mode for the drawing cache.</p>
946     */
947    public static final int DRAWING_CACHE_QUALITY_AUTO = 0x00000000;
948
949    private static final int[] DRAWING_CACHE_QUALITY_FLAGS = {
950            DRAWING_CACHE_QUALITY_AUTO, DRAWING_CACHE_QUALITY_LOW, DRAWING_CACHE_QUALITY_HIGH
951    };
952
953    /**
954     * <p>Mask for use with setFlags indicating bits used for the cache
955     * quality property.</p>
956     * {@hide}
957     */
958    static final int DRAWING_CACHE_QUALITY_MASK = 0x00180000;
959
960    /**
961     * <p>
962     * Indicates this view can be long clicked. When long clickable, a View
963     * reacts to long clicks by notifying the OnLongClickListener or showing a
964     * context menu.
965     * </p>
966     * {@hide}
967     */
968    static final int LONG_CLICKABLE = 0x00200000;
969
970    /**
971     * <p>Indicates that this view gets its drawable states from its direct parent
972     * and ignores its original internal states.</p>
973     *
974     * @hide
975     */
976    static final int DUPLICATE_PARENT_STATE = 0x00400000;
977
978    /** @hide */
979    @IntDef({
980        SCROLLBARS_INSIDE_OVERLAY,
981        SCROLLBARS_INSIDE_INSET,
982        SCROLLBARS_OUTSIDE_OVERLAY,
983        SCROLLBARS_OUTSIDE_INSET
984    })
985    @Retention(RetentionPolicy.SOURCE)
986    public @interface ScrollBarStyle {}
987
988    /**
989     * The scrollbar style to display the scrollbars inside the content area,
990     * without increasing the padding. The scrollbars will be overlaid with
991     * translucency on the view's content.
992     */
993    public static final int SCROLLBARS_INSIDE_OVERLAY = 0;
994
995    /**
996     * The scrollbar style to display the scrollbars inside the padded area,
997     * increasing the padding of the view. The scrollbars will not overlap the
998     * content area of the view.
999     */
1000    public static final int SCROLLBARS_INSIDE_INSET = 0x01000000;
1001
1002    /**
1003     * The scrollbar style to display the scrollbars at the edge of the view,
1004     * without increasing the padding. The scrollbars will be overlaid with
1005     * translucency.
1006     */
1007    public static final int SCROLLBARS_OUTSIDE_OVERLAY = 0x02000000;
1008
1009    /**
1010     * The scrollbar style to display the scrollbars at the edge of the view,
1011     * increasing the padding of the view. The scrollbars will only overlap the
1012     * background, if any.
1013     */
1014    public static final int SCROLLBARS_OUTSIDE_INSET = 0x03000000;
1015
1016    /**
1017     * Mask to check if the scrollbar style is overlay or inset.
1018     * {@hide}
1019     */
1020    static final int SCROLLBARS_INSET_MASK = 0x01000000;
1021
1022    /**
1023     * Mask to check if the scrollbar style is inside or outside.
1024     * {@hide}
1025     */
1026    static final int SCROLLBARS_OUTSIDE_MASK = 0x02000000;
1027
1028    /**
1029     * Mask for scrollbar style.
1030     * {@hide}
1031     */
1032    static final int SCROLLBARS_STYLE_MASK = 0x03000000;
1033
1034    /**
1035     * View flag indicating that the screen should remain on while the
1036     * window containing this view is visible to the user.  This effectively
1037     * takes care of automatically setting the WindowManager's
1038     * {@link WindowManager.LayoutParams#FLAG_KEEP_SCREEN_ON}.
1039     */
1040    public static final int KEEP_SCREEN_ON = 0x04000000;
1041
1042    /**
1043     * View flag indicating whether this view should have sound effects enabled
1044     * for events such as clicking and touching.
1045     */
1046    public static final int SOUND_EFFECTS_ENABLED = 0x08000000;
1047
1048    /**
1049     * View flag indicating whether this view should have haptic feedback
1050     * enabled for events such as long presses.
1051     */
1052    public static final int HAPTIC_FEEDBACK_ENABLED = 0x10000000;
1053
1054    /**
1055     * <p>Indicates that the view hierarchy should stop saving state when
1056     * it reaches this view.  If state saving is initiated immediately at
1057     * the view, it will be allowed.
1058     * {@hide}
1059     */
1060    static final int PARENT_SAVE_DISABLED = 0x20000000;
1061
1062    /**
1063     * <p>Mask for use with setFlags indicating bits used for PARENT_SAVE_DISABLED.</p>
1064     * {@hide}
1065     */
1066    static final int PARENT_SAVE_DISABLED_MASK = 0x20000000;
1067
1068    /** @hide */
1069    @IntDef(flag = true,
1070            value = {
1071                FOCUSABLES_ALL,
1072                FOCUSABLES_TOUCH_MODE
1073            })
1074    @Retention(RetentionPolicy.SOURCE)
1075    public @interface FocusableMode {}
1076
1077    /**
1078     * View flag indicating whether {@link #addFocusables(ArrayList, int, int)}
1079     * should add all focusable Views regardless if they are focusable in touch mode.
1080     */
1081    public static final int FOCUSABLES_ALL = 0x00000000;
1082
1083    /**
1084     * View flag indicating whether {@link #addFocusables(ArrayList, int, int)}
1085     * should add only Views focusable in touch mode.
1086     */
1087    public static final int FOCUSABLES_TOUCH_MODE = 0x00000001;
1088
1089    /** @hide */
1090    @IntDef({
1091            FOCUS_BACKWARD,
1092            FOCUS_FORWARD,
1093            FOCUS_LEFT,
1094            FOCUS_UP,
1095            FOCUS_RIGHT,
1096            FOCUS_DOWN
1097    })
1098    @Retention(RetentionPolicy.SOURCE)
1099    public @interface FocusDirection {}
1100
1101    /** @hide */
1102    @IntDef({
1103            FOCUS_LEFT,
1104            FOCUS_UP,
1105            FOCUS_RIGHT,
1106            FOCUS_DOWN
1107    })
1108    @Retention(RetentionPolicy.SOURCE)
1109    public @interface FocusRealDirection {} // Like @FocusDirection, but without forward/backward
1110
1111    /**
1112     * Use with {@link #focusSearch(int)}. Move focus to the previous selectable
1113     * item.
1114     */
1115    public static final int FOCUS_BACKWARD = 0x00000001;
1116
1117    /**
1118     * Use with {@link #focusSearch(int)}. Move focus to the next selectable
1119     * item.
1120     */
1121    public static final int FOCUS_FORWARD = 0x00000002;
1122
1123    /**
1124     * Use with {@link #focusSearch(int)}. Move focus to the left.
1125     */
1126    public static final int FOCUS_LEFT = 0x00000011;
1127
1128    /**
1129     * Use with {@link #focusSearch(int)}. Move focus up.
1130     */
1131    public static final int FOCUS_UP = 0x00000021;
1132
1133    /**
1134     * Use with {@link #focusSearch(int)}. Move focus to the right.
1135     */
1136    public static final int FOCUS_RIGHT = 0x00000042;
1137
1138    /**
1139     * Use with {@link #focusSearch(int)}. Move focus down.
1140     */
1141    public static final int FOCUS_DOWN = 0x00000082;
1142
1143    /**
1144     * Bits of {@link #getMeasuredWidthAndState()} and
1145     * {@link #getMeasuredWidthAndState()} that provide the actual measured size.
1146     */
1147    public static final int MEASURED_SIZE_MASK = 0x00ffffff;
1148
1149    /**
1150     * Bits of {@link #getMeasuredWidthAndState()} and
1151     * {@link #getMeasuredWidthAndState()} that provide the additional state bits.
1152     */
1153    public static final int MEASURED_STATE_MASK = 0xff000000;
1154
1155    /**
1156     * Bit shift of {@link #MEASURED_STATE_MASK} to get to the height bits
1157     * for functions that combine both width and height into a single int,
1158     * such as {@link #getMeasuredState()} and the childState argument of
1159     * {@link #resolveSizeAndState(int, int, int)}.
1160     */
1161    public static final int MEASURED_HEIGHT_STATE_SHIFT = 16;
1162
1163    /**
1164     * Bit of {@link #getMeasuredWidthAndState()} and
1165     * {@link #getMeasuredWidthAndState()} that indicates the measured size
1166     * is smaller that the space the view would like to have.
1167     */
1168    public static final int MEASURED_STATE_TOO_SMALL = 0x01000000;
1169
1170    /**
1171     * Base View state sets
1172     */
1173    // Singles
1174    /**
1175     * Indicates the view has no states set. States are used with
1176     * {@link android.graphics.drawable.Drawable} to change the drawing of the
1177     * view depending on its state.
1178     *
1179     * @see android.graphics.drawable.Drawable
1180     * @see #getDrawableState()
1181     */
1182    protected static final int[] EMPTY_STATE_SET;
1183    /**
1184     * Indicates the view is enabled. States are used with
1185     * {@link android.graphics.drawable.Drawable} to change the drawing of the
1186     * view depending on its state.
1187     *
1188     * @see android.graphics.drawable.Drawable
1189     * @see #getDrawableState()
1190     */
1191    protected static final int[] ENABLED_STATE_SET;
1192    /**
1193     * Indicates the view is focused. States are used with
1194     * {@link android.graphics.drawable.Drawable} to change the drawing of the
1195     * view depending on its state.
1196     *
1197     * @see android.graphics.drawable.Drawable
1198     * @see #getDrawableState()
1199     */
1200    protected static final int[] FOCUSED_STATE_SET;
1201    /**
1202     * Indicates the view is selected. States are used with
1203     * {@link android.graphics.drawable.Drawable} to change the drawing of the
1204     * view depending on its state.
1205     *
1206     * @see android.graphics.drawable.Drawable
1207     * @see #getDrawableState()
1208     */
1209    protected static final int[] SELECTED_STATE_SET;
1210    /**
1211     * Indicates the view is pressed. States are used with
1212     * {@link android.graphics.drawable.Drawable} to change the drawing of the
1213     * view depending on its state.
1214     *
1215     * @see android.graphics.drawable.Drawable
1216     * @see #getDrawableState()
1217     */
1218    protected static final int[] PRESSED_STATE_SET;
1219    /**
1220     * Indicates the view's window has focus. States are used with
1221     * {@link android.graphics.drawable.Drawable} to change the drawing of the
1222     * view depending on its state.
1223     *
1224     * @see android.graphics.drawable.Drawable
1225     * @see #getDrawableState()
1226     */
1227    protected static final int[] WINDOW_FOCUSED_STATE_SET;
1228    // Doubles
1229    /**
1230     * Indicates the view is enabled and has the focus.
1231     *
1232     * @see #ENABLED_STATE_SET
1233     * @see #FOCUSED_STATE_SET
1234     */
1235    protected static final int[] ENABLED_FOCUSED_STATE_SET;
1236    /**
1237     * Indicates the view is enabled and selected.
1238     *
1239     * @see #ENABLED_STATE_SET
1240     * @see #SELECTED_STATE_SET
1241     */
1242    protected static final int[] ENABLED_SELECTED_STATE_SET;
1243    /**
1244     * Indicates the view is enabled and that its window has focus.
1245     *
1246     * @see #ENABLED_STATE_SET
1247     * @see #WINDOW_FOCUSED_STATE_SET
1248     */
1249    protected static final int[] ENABLED_WINDOW_FOCUSED_STATE_SET;
1250    /**
1251     * Indicates the view is focused and selected.
1252     *
1253     * @see #FOCUSED_STATE_SET
1254     * @see #SELECTED_STATE_SET
1255     */
1256    protected static final int[] FOCUSED_SELECTED_STATE_SET;
1257    /**
1258     * Indicates the view has the focus and that its window has the focus.
1259     *
1260     * @see #FOCUSED_STATE_SET
1261     * @see #WINDOW_FOCUSED_STATE_SET
1262     */
1263    protected static final int[] FOCUSED_WINDOW_FOCUSED_STATE_SET;
1264    /**
1265     * Indicates the view is selected and that its window has the focus.
1266     *
1267     * @see #SELECTED_STATE_SET
1268     * @see #WINDOW_FOCUSED_STATE_SET
1269     */
1270    protected static final int[] SELECTED_WINDOW_FOCUSED_STATE_SET;
1271    // Triples
1272    /**
1273     * Indicates the view is enabled, focused and selected.
1274     *
1275     * @see #ENABLED_STATE_SET
1276     * @see #FOCUSED_STATE_SET
1277     * @see #SELECTED_STATE_SET
1278     */
1279    protected static final int[] ENABLED_FOCUSED_SELECTED_STATE_SET;
1280    /**
1281     * Indicates the view is enabled, focused and its window has the focus.
1282     *
1283     * @see #ENABLED_STATE_SET
1284     * @see #FOCUSED_STATE_SET
1285     * @see #WINDOW_FOCUSED_STATE_SET
1286     */
1287    protected static final int[] ENABLED_FOCUSED_WINDOW_FOCUSED_STATE_SET;
1288    /**
1289     * Indicates the view is enabled, selected and its window has the focus.
1290     *
1291     * @see #ENABLED_STATE_SET
1292     * @see #SELECTED_STATE_SET
1293     * @see #WINDOW_FOCUSED_STATE_SET
1294     */
1295    protected static final int[] ENABLED_SELECTED_WINDOW_FOCUSED_STATE_SET;
1296    /**
1297     * Indicates the view is focused, selected and its window has the focus.
1298     *
1299     * @see #FOCUSED_STATE_SET
1300     * @see #SELECTED_STATE_SET
1301     * @see #WINDOW_FOCUSED_STATE_SET
1302     */
1303    protected static final int[] FOCUSED_SELECTED_WINDOW_FOCUSED_STATE_SET;
1304    /**
1305     * Indicates the view is enabled, focused, selected and its window
1306     * has the focus.
1307     *
1308     * @see #ENABLED_STATE_SET
1309     * @see #FOCUSED_STATE_SET
1310     * @see #SELECTED_STATE_SET
1311     * @see #WINDOW_FOCUSED_STATE_SET
1312     */
1313    protected static final int[] ENABLED_FOCUSED_SELECTED_WINDOW_FOCUSED_STATE_SET;
1314    /**
1315     * Indicates the view is pressed and its window has the focus.
1316     *
1317     * @see #PRESSED_STATE_SET
1318     * @see #WINDOW_FOCUSED_STATE_SET
1319     */
1320    protected static final int[] PRESSED_WINDOW_FOCUSED_STATE_SET;
1321    /**
1322     * Indicates the view is pressed and selected.
1323     *
1324     * @see #PRESSED_STATE_SET
1325     * @see #SELECTED_STATE_SET
1326     */
1327    protected static final int[] PRESSED_SELECTED_STATE_SET;
1328    /**
1329     * Indicates the view is pressed, selected and its window has the focus.
1330     *
1331     * @see #PRESSED_STATE_SET
1332     * @see #SELECTED_STATE_SET
1333     * @see #WINDOW_FOCUSED_STATE_SET
1334     */
1335    protected static final int[] PRESSED_SELECTED_WINDOW_FOCUSED_STATE_SET;
1336    /**
1337     * Indicates the view is pressed and focused.
1338     *
1339     * @see #PRESSED_STATE_SET
1340     * @see #FOCUSED_STATE_SET
1341     */
1342    protected static final int[] PRESSED_FOCUSED_STATE_SET;
1343    /**
1344     * Indicates the view is pressed, focused and its window has the focus.
1345     *
1346     * @see #PRESSED_STATE_SET
1347     * @see #FOCUSED_STATE_SET
1348     * @see #WINDOW_FOCUSED_STATE_SET
1349     */
1350    protected static final int[] PRESSED_FOCUSED_WINDOW_FOCUSED_STATE_SET;
1351    /**
1352     * Indicates the view is pressed, focused and selected.
1353     *
1354     * @see #PRESSED_STATE_SET
1355     * @see #SELECTED_STATE_SET
1356     * @see #FOCUSED_STATE_SET
1357     */
1358    protected static final int[] PRESSED_FOCUSED_SELECTED_STATE_SET;
1359    /**
1360     * Indicates the view is pressed, focused, selected and its window has the focus.
1361     *
1362     * @see #PRESSED_STATE_SET
1363     * @see #FOCUSED_STATE_SET
1364     * @see #SELECTED_STATE_SET
1365     * @see #WINDOW_FOCUSED_STATE_SET
1366     */
1367    protected static final int[] PRESSED_FOCUSED_SELECTED_WINDOW_FOCUSED_STATE_SET;
1368    /**
1369     * Indicates the view is pressed and enabled.
1370     *
1371     * @see #PRESSED_STATE_SET
1372     * @see #ENABLED_STATE_SET
1373     */
1374    protected static final int[] PRESSED_ENABLED_STATE_SET;
1375    /**
1376     * Indicates the view is pressed, enabled and its window has the focus.
1377     *
1378     * @see #PRESSED_STATE_SET
1379     * @see #ENABLED_STATE_SET
1380     * @see #WINDOW_FOCUSED_STATE_SET
1381     */
1382    protected static final int[] PRESSED_ENABLED_WINDOW_FOCUSED_STATE_SET;
1383    /**
1384     * Indicates the view is pressed, enabled and selected.
1385     *
1386     * @see #PRESSED_STATE_SET
1387     * @see #ENABLED_STATE_SET
1388     * @see #SELECTED_STATE_SET
1389     */
1390    protected static final int[] PRESSED_ENABLED_SELECTED_STATE_SET;
1391    /**
1392     * Indicates the view is pressed, enabled, selected and its window has the
1393     * focus.
1394     *
1395     * @see #PRESSED_STATE_SET
1396     * @see #ENABLED_STATE_SET
1397     * @see #SELECTED_STATE_SET
1398     * @see #WINDOW_FOCUSED_STATE_SET
1399     */
1400    protected static final int[] PRESSED_ENABLED_SELECTED_WINDOW_FOCUSED_STATE_SET;
1401    /**
1402     * Indicates the view is pressed, enabled and focused.
1403     *
1404     * @see #PRESSED_STATE_SET
1405     * @see #ENABLED_STATE_SET
1406     * @see #FOCUSED_STATE_SET
1407     */
1408    protected static final int[] PRESSED_ENABLED_FOCUSED_STATE_SET;
1409    /**
1410     * Indicates the view is pressed, enabled, focused and its window has the
1411     * focus.
1412     *
1413     * @see #PRESSED_STATE_SET
1414     * @see #ENABLED_STATE_SET
1415     * @see #FOCUSED_STATE_SET
1416     * @see #WINDOW_FOCUSED_STATE_SET
1417     */
1418    protected static final int[] PRESSED_ENABLED_FOCUSED_WINDOW_FOCUSED_STATE_SET;
1419    /**
1420     * Indicates the view is pressed, enabled, focused and selected.
1421     *
1422     * @see #PRESSED_STATE_SET
1423     * @see #ENABLED_STATE_SET
1424     * @see #SELECTED_STATE_SET
1425     * @see #FOCUSED_STATE_SET
1426     */
1427    protected static final int[] PRESSED_ENABLED_FOCUSED_SELECTED_STATE_SET;
1428    /**
1429     * Indicates the view is pressed, enabled, focused, selected and its window
1430     * has the focus.
1431     *
1432     * @see #PRESSED_STATE_SET
1433     * @see #ENABLED_STATE_SET
1434     * @see #SELECTED_STATE_SET
1435     * @see #FOCUSED_STATE_SET
1436     * @see #WINDOW_FOCUSED_STATE_SET
1437     */
1438    protected static final int[] PRESSED_ENABLED_FOCUSED_SELECTED_WINDOW_FOCUSED_STATE_SET;
1439
1440    /**
1441     * The order here is very important to {@link #getDrawableState()}
1442     */
1443    private static final int[][] VIEW_STATE_SETS;
1444
1445    static final int VIEW_STATE_WINDOW_FOCUSED = 1;
1446    static final int VIEW_STATE_SELECTED = 1 << 1;
1447    static final int VIEW_STATE_FOCUSED = 1 << 2;
1448    static final int VIEW_STATE_ENABLED = 1 << 3;
1449    static final int VIEW_STATE_PRESSED = 1 << 4;
1450    static final int VIEW_STATE_ACTIVATED = 1 << 5;
1451    static final int VIEW_STATE_ACCELERATED = 1 << 6;
1452    static final int VIEW_STATE_HOVERED = 1 << 7;
1453    static final int VIEW_STATE_DRAG_CAN_ACCEPT = 1 << 8;
1454    static final int VIEW_STATE_DRAG_HOVERED = 1 << 9;
1455
1456    static final int[] VIEW_STATE_IDS = new int[] {
1457        R.attr.state_window_focused,    VIEW_STATE_WINDOW_FOCUSED,
1458        R.attr.state_selected,          VIEW_STATE_SELECTED,
1459        R.attr.state_focused,           VIEW_STATE_FOCUSED,
1460        R.attr.state_enabled,           VIEW_STATE_ENABLED,
1461        R.attr.state_pressed,           VIEW_STATE_PRESSED,
1462        R.attr.state_activated,         VIEW_STATE_ACTIVATED,
1463        R.attr.state_accelerated,       VIEW_STATE_ACCELERATED,
1464        R.attr.state_hovered,           VIEW_STATE_HOVERED,
1465        R.attr.state_drag_can_accept,   VIEW_STATE_DRAG_CAN_ACCEPT,
1466        R.attr.state_drag_hovered,      VIEW_STATE_DRAG_HOVERED
1467    };
1468
1469    static {
1470        if ((VIEW_STATE_IDS.length/2) != R.styleable.ViewDrawableStates.length) {
1471            throw new IllegalStateException(
1472                    "VIEW_STATE_IDs array length does not match ViewDrawableStates style array");
1473        }
1474        int[] orderedIds = new int[VIEW_STATE_IDS.length];
1475        for (int i = 0; i < R.styleable.ViewDrawableStates.length; i++) {
1476            int viewState = R.styleable.ViewDrawableStates[i];
1477            for (int j = 0; j<VIEW_STATE_IDS.length; j += 2) {
1478                if (VIEW_STATE_IDS[j] == viewState) {
1479                    orderedIds[i * 2] = viewState;
1480                    orderedIds[i * 2 + 1] = VIEW_STATE_IDS[j + 1];
1481                }
1482            }
1483        }
1484        final int NUM_BITS = VIEW_STATE_IDS.length / 2;
1485        VIEW_STATE_SETS = new int[1 << NUM_BITS][];
1486        for (int i = 0; i < VIEW_STATE_SETS.length; i++) {
1487            int numBits = Integer.bitCount(i);
1488            int[] set = new int[numBits];
1489            int pos = 0;
1490            for (int j = 0; j < orderedIds.length; j += 2) {
1491                if ((i & orderedIds[j+1]) != 0) {
1492                    set[pos++] = orderedIds[j];
1493                }
1494            }
1495            VIEW_STATE_SETS[i] = set;
1496        }
1497
1498        EMPTY_STATE_SET = VIEW_STATE_SETS[0];
1499        WINDOW_FOCUSED_STATE_SET = VIEW_STATE_SETS[VIEW_STATE_WINDOW_FOCUSED];
1500        SELECTED_STATE_SET = VIEW_STATE_SETS[VIEW_STATE_SELECTED];
1501        SELECTED_WINDOW_FOCUSED_STATE_SET = VIEW_STATE_SETS[
1502                VIEW_STATE_WINDOW_FOCUSED | VIEW_STATE_SELECTED];
1503        FOCUSED_STATE_SET = VIEW_STATE_SETS[VIEW_STATE_FOCUSED];
1504        FOCUSED_WINDOW_FOCUSED_STATE_SET = VIEW_STATE_SETS[
1505                VIEW_STATE_WINDOW_FOCUSED | VIEW_STATE_FOCUSED];
1506        FOCUSED_SELECTED_STATE_SET = VIEW_STATE_SETS[
1507                VIEW_STATE_SELECTED | VIEW_STATE_FOCUSED];
1508        FOCUSED_SELECTED_WINDOW_FOCUSED_STATE_SET = VIEW_STATE_SETS[
1509                VIEW_STATE_WINDOW_FOCUSED | VIEW_STATE_SELECTED
1510                | VIEW_STATE_FOCUSED];
1511        ENABLED_STATE_SET = VIEW_STATE_SETS[VIEW_STATE_ENABLED];
1512        ENABLED_WINDOW_FOCUSED_STATE_SET = VIEW_STATE_SETS[
1513                VIEW_STATE_WINDOW_FOCUSED | VIEW_STATE_ENABLED];
1514        ENABLED_SELECTED_STATE_SET = VIEW_STATE_SETS[
1515                VIEW_STATE_SELECTED | VIEW_STATE_ENABLED];
1516        ENABLED_SELECTED_WINDOW_FOCUSED_STATE_SET = VIEW_STATE_SETS[
1517                VIEW_STATE_WINDOW_FOCUSED | VIEW_STATE_SELECTED
1518                | VIEW_STATE_ENABLED];
1519        ENABLED_FOCUSED_STATE_SET = VIEW_STATE_SETS[
1520                VIEW_STATE_FOCUSED | VIEW_STATE_ENABLED];
1521        ENABLED_FOCUSED_WINDOW_FOCUSED_STATE_SET = VIEW_STATE_SETS[
1522                VIEW_STATE_WINDOW_FOCUSED | VIEW_STATE_FOCUSED
1523                | VIEW_STATE_ENABLED];
1524        ENABLED_FOCUSED_SELECTED_STATE_SET = VIEW_STATE_SETS[
1525                VIEW_STATE_SELECTED | VIEW_STATE_FOCUSED
1526                | VIEW_STATE_ENABLED];
1527        ENABLED_FOCUSED_SELECTED_WINDOW_FOCUSED_STATE_SET = VIEW_STATE_SETS[
1528                VIEW_STATE_WINDOW_FOCUSED | VIEW_STATE_SELECTED
1529                | VIEW_STATE_FOCUSED| VIEW_STATE_ENABLED];
1530
1531        PRESSED_STATE_SET = VIEW_STATE_SETS[VIEW_STATE_PRESSED];
1532        PRESSED_WINDOW_FOCUSED_STATE_SET = VIEW_STATE_SETS[
1533                VIEW_STATE_WINDOW_FOCUSED | VIEW_STATE_PRESSED];
1534        PRESSED_SELECTED_STATE_SET = VIEW_STATE_SETS[
1535                VIEW_STATE_SELECTED | VIEW_STATE_PRESSED];
1536        PRESSED_SELECTED_WINDOW_FOCUSED_STATE_SET = VIEW_STATE_SETS[
1537                VIEW_STATE_WINDOW_FOCUSED | VIEW_STATE_SELECTED
1538                | VIEW_STATE_PRESSED];
1539        PRESSED_FOCUSED_STATE_SET = VIEW_STATE_SETS[
1540                VIEW_STATE_FOCUSED | VIEW_STATE_PRESSED];
1541        PRESSED_FOCUSED_WINDOW_FOCUSED_STATE_SET = VIEW_STATE_SETS[
1542                VIEW_STATE_WINDOW_FOCUSED | VIEW_STATE_FOCUSED
1543                | VIEW_STATE_PRESSED];
1544        PRESSED_FOCUSED_SELECTED_STATE_SET = VIEW_STATE_SETS[
1545                VIEW_STATE_SELECTED | VIEW_STATE_FOCUSED
1546                | VIEW_STATE_PRESSED];
1547        PRESSED_FOCUSED_SELECTED_WINDOW_FOCUSED_STATE_SET = VIEW_STATE_SETS[
1548                VIEW_STATE_WINDOW_FOCUSED | VIEW_STATE_SELECTED
1549                | VIEW_STATE_FOCUSED | VIEW_STATE_PRESSED];
1550        PRESSED_ENABLED_STATE_SET = VIEW_STATE_SETS[
1551                VIEW_STATE_ENABLED | VIEW_STATE_PRESSED];
1552        PRESSED_ENABLED_WINDOW_FOCUSED_STATE_SET = VIEW_STATE_SETS[
1553                VIEW_STATE_WINDOW_FOCUSED | VIEW_STATE_ENABLED
1554                | VIEW_STATE_PRESSED];
1555        PRESSED_ENABLED_SELECTED_STATE_SET = VIEW_STATE_SETS[
1556                VIEW_STATE_SELECTED | VIEW_STATE_ENABLED
1557                | VIEW_STATE_PRESSED];
1558        PRESSED_ENABLED_SELECTED_WINDOW_FOCUSED_STATE_SET = VIEW_STATE_SETS[
1559                VIEW_STATE_WINDOW_FOCUSED | VIEW_STATE_SELECTED
1560                | VIEW_STATE_ENABLED | VIEW_STATE_PRESSED];
1561        PRESSED_ENABLED_FOCUSED_STATE_SET = VIEW_STATE_SETS[
1562                VIEW_STATE_FOCUSED | VIEW_STATE_ENABLED
1563                | VIEW_STATE_PRESSED];
1564        PRESSED_ENABLED_FOCUSED_WINDOW_FOCUSED_STATE_SET = VIEW_STATE_SETS[
1565                VIEW_STATE_WINDOW_FOCUSED | VIEW_STATE_FOCUSED
1566                | VIEW_STATE_ENABLED | VIEW_STATE_PRESSED];
1567        PRESSED_ENABLED_FOCUSED_SELECTED_STATE_SET = VIEW_STATE_SETS[
1568                VIEW_STATE_SELECTED | VIEW_STATE_FOCUSED
1569                | VIEW_STATE_ENABLED | VIEW_STATE_PRESSED];
1570        PRESSED_ENABLED_FOCUSED_SELECTED_WINDOW_FOCUSED_STATE_SET = VIEW_STATE_SETS[
1571                VIEW_STATE_WINDOW_FOCUSED | VIEW_STATE_SELECTED
1572                | VIEW_STATE_FOCUSED| VIEW_STATE_ENABLED
1573                | VIEW_STATE_PRESSED];
1574    }
1575
1576    /**
1577     * Accessibility event types that are dispatched for text population.
1578     */
1579    private static final int POPULATING_ACCESSIBILITY_EVENT_TYPES =
1580            AccessibilityEvent.TYPE_VIEW_CLICKED
1581            | AccessibilityEvent.TYPE_VIEW_LONG_CLICKED
1582            | AccessibilityEvent.TYPE_VIEW_SELECTED
1583            | AccessibilityEvent.TYPE_VIEW_FOCUSED
1584            | AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED
1585            | AccessibilityEvent.TYPE_VIEW_HOVER_ENTER
1586            | AccessibilityEvent.TYPE_VIEW_HOVER_EXIT
1587            | AccessibilityEvent.TYPE_VIEW_TEXT_CHANGED
1588            | AccessibilityEvent.TYPE_VIEW_TEXT_SELECTION_CHANGED
1589            | AccessibilityEvent.TYPE_VIEW_ACCESSIBILITY_FOCUSED
1590            | AccessibilityEvent.TYPE_VIEW_TEXT_TRAVERSED_AT_MOVEMENT_GRANULARITY;
1591
1592    /**
1593     * Temporary Rect currently for use in setBackground().  This will probably
1594     * be extended in the future to hold our own class with more than just
1595     * a Rect. :)
1596     */
1597    static final ThreadLocal<Rect> sThreadLocal = new ThreadLocal<Rect>();
1598
1599    /**
1600     * Map used to store views' tags.
1601     */
1602    private SparseArray<Object> mKeyedTags;
1603
1604    /**
1605     * The next available accessibility id.
1606     */
1607    private static int sNextAccessibilityViewId;
1608
1609    /**
1610     * The animation currently associated with this view.
1611     * @hide
1612     */
1613    protected Animation mCurrentAnimation = null;
1614
1615    /**
1616     * Width as measured during measure pass.
1617     * {@hide}
1618     */
1619    @ViewDebug.ExportedProperty(category = "measurement")
1620    int mMeasuredWidth;
1621
1622    /**
1623     * Height as measured during measure pass.
1624     * {@hide}
1625     */
1626    @ViewDebug.ExportedProperty(category = "measurement")
1627    int mMeasuredHeight;
1628
1629    /**
1630     * Flag to indicate that this view was marked INVALIDATED, or had its display list
1631     * invalidated, prior to the current drawing iteration. If true, the view must re-draw
1632     * its display list. This flag, used only when hw accelerated, allows us to clear the
1633     * flag while retaining this information until it's needed (at getDisplayList() time and
1634     * in drawChild(), when we decide to draw a view's children's display lists into our own).
1635     *
1636     * {@hide}
1637     */
1638    boolean mRecreateDisplayList = false;
1639
1640    /**
1641     * The view's identifier.
1642     * {@hide}
1643     *
1644     * @see #setId(int)
1645     * @see #getId()
1646     */
1647    @ViewDebug.ExportedProperty(resolveId = true)
1648    int mID = NO_ID;
1649
1650    /**
1651     * The stable ID of this view for accessibility purposes.
1652     */
1653    int mAccessibilityViewId = NO_ID;
1654
1655    private int mAccessibilityCursorPosition = ACCESSIBILITY_CURSOR_POSITION_UNDEFINED;
1656
1657    SendViewStateChangedAccessibilityEvent mSendViewStateChangedAccessibilityEvent;
1658
1659    /**
1660     * The view's tag.
1661     * {@hide}
1662     *
1663     * @see #setTag(Object)
1664     * @see #getTag()
1665     */
1666    protected Object mTag = null;
1667
1668    // for mPrivateFlags:
1669    /** {@hide} */
1670    static final int PFLAG_WANTS_FOCUS                 = 0x00000001;
1671    /** {@hide} */
1672    static final int PFLAG_FOCUSED                     = 0x00000002;
1673    /** {@hide} */
1674    static final int PFLAG_SELECTED                    = 0x00000004;
1675    /** {@hide} */
1676    static final int PFLAG_IS_ROOT_NAMESPACE           = 0x00000008;
1677    /** {@hide} */
1678    static final int PFLAG_HAS_BOUNDS                  = 0x00000010;
1679    /** {@hide} */
1680    static final int PFLAG_DRAWN                       = 0x00000020;
1681    /**
1682     * When this flag is set, this view is running an animation on behalf of its
1683     * children and should therefore not cancel invalidate requests, even if they
1684     * lie outside of this view's bounds.
1685     *
1686     * {@hide}
1687     */
1688    static final int PFLAG_DRAW_ANIMATION              = 0x00000040;
1689    /** {@hide} */
1690    static final int PFLAG_SKIP_DRAW                   = 0x00000080;
1691    /** {@hide} */
1692    static final int PFLAG_ONLY_DRAWS_BACKGROUND       = 0x00000100;
1693    /** {@hide} */
1694    static final int PFLAG_REQUEST_TRANSPARENT_REGIONS = 0x00000200;
1695    /** {@hide} */
1696    static final int PFLAG_DRAWABLE_STATE_DIRTY        = 0x00000400;
1697    /** {@hide} */
1698    static final int PFLAG_MEASURED_DIMENSION_SET      = 0x00000800;
1699    /** {@hide} */
1700    static final int PFLAG_FORCE_LAYOUT                = 0x00001000;
1701    /** {@hide} */
1702    static final int PFLAG_LAYOUT_REQUIRED             = 0x00002000;
1703
1704    private static final int PFLAG_PRESSED             = 0x00004000;
1705
1706    /** {@hide} */
1707    static final int PFLAG_DRAWING_CACHE_VALID         = 0x00008000;
1708    /**
1709     * Flag used to indicate that this view should be drawn once more (and only once
1710     * more) after its animation has completed.
1711     * {@hide}
1712     */
1713    static final int PFLAG_ANIMATION_STARTED           = 0x00010000;
1714
1715    private static final int PFLAG_SAVE_STATE_CALLED   = 0x00020000;
1716
1717    /**
1718     * Indicates that the View returned true when onSetAlpha() was called and that
1719     * the alpha must be restored.
1720     * {@hide}
1721     */
1722    static final int PFLAG_ALPHA_SET                   = 0x00040000;
1723
1724    /**
1725     * Set by {@link #setScrollContainer(boolean)}.
1726     */
1727    static final int PFLAG_SCROLL_CONTAINER            = 0x00080000;
1728
1729    /**
1730     * Set by {@link #setScrollContainer(boolean)}.
1731     */
1732    static final int PFLAG_SCROLL_CONTAINER_ADDED      = 0x00100000;
1733
1734    /**
1735     * View flag indicating whether this view was invalidated (fully or partially.)
1736     *
1737     * @hide
1738     */
1739    static final int PFLAG_DIRTY                       = 0x00200000;
1740
1741    /**
1742     * View flag indicating whether this view was invalidated by an opaque
1743     * invalidate request.
1744     *
1745     * @hide
1746     */
1747    static final int PFLAG_DIRTY_OPAQUE                = 0x00400000;
1748
1749    /**
1750     * Mask for {@link #PFLAG_DIRTY} and {@link #PFLAG_DIRTY_OPAQUE}.
1751     *
1752     * @hide
1753     */
1754    static final int PFLAG_DIRTY_MASK                  = 0x00600000;
1755
1756    /**
1757     * Indicates whether the background is opaque.
1758     *
1759     * @hide
1760     */
1761    static final int PFLAG_OPAQUE_BACKGROUND           = 0x00800000;
1762
1763    /**
1764     * Indicates whether the scrollbars are opaque.
1765     *
1766     * @hide
1767     */
1768    static final int PFLAG_OPAQUE_SCROLLBARS           = 0x01000000;
1769
1770    /**
1771     * Indicates whether the view is opaque.
1772     *
1773     * @hide
1774     */
1775    static final int PFLAG_OPAQUE_MASK                 = 0x01800000;
1776
1777    /**
1778     * Indicates a prepressed state;
1779     * the short time between ACTION_DOWN and recognizing
1780     * a 'real' press. Prepressed is used to recognize quick taps
1781     * even when they are shorter than ViewConfiguration.getTapTimeout().
1782     *
1783     * @hide
1784     */
1785    private static final int PFLAG_PREPRESSED          = 0x02000000;
1786
1787    /**
1788     * Indicates whether the view is temporarily detached.
1789     *
1790     * @hide
1791     */
1792    static final int PFLAG_CANCEL_NEXT_UP_EVENT        = 0x04000000;
1793
1794    /**
1795     * Indicates that we should awaken scroll bars once attached
1796     *
1797     * @hide
1798     */
1799    private static final int PFLAG_AWAKEN_SCROLL_BARS_ON_ATTACH = 0x08000000;
1800
1801    /**
1802     * Indicates that the view has received HOVER_ENTER.  Cleared on HOVER_EXIT.
1803     * @hide
1804     */
1805    private static final int PFLAG_HOVERED             = 0x10000000;
1806
1807    /**
1808     * no longer needed, should be reused
1809     */
1810    private static final int PFLAG_DOES_NOTHING_REUSE_PLEASE = 0x20000000;
1811
1812    /** {@hide} */
1813    static final int PFLAG_ACTIVATED                   = 0x40000000;
1814
1815    /**
1816     * Indicates that this view was specifically invalidated, not just dirtied because some
1817     * child view was invalidated. The flag is used to determine when we need to recreate
1818     * a view's display list (as opposed to just returning a reference to its existing
1819     * display list).
1820     *
1821     * @hide
1822     */
1823    static final int PFLAG_INVALIDATED                 = 0x80000000;
1824
1825    /**
1826     * Masks for mPrivateFlags2, as generated by dumpFlags():
1827     *
1828     * |-------|-------|-------|-------|
1829     *                                 1 PFLAG2_DRAG_CAN_ACCEPT
1830     *                                1  PFLAG2_DRAG_HOVERED
1831     *                              11   PFLAG2_LAYOUT_DIRECTION_MASK
1832     *                             1     PFLAG2_LAYOUT_DIRECTION_RESOLVED_RTL
1833     *                            1      PFLAG2_LAYOUT_DIRECTION_RESOLVED
1834     *                            11     PFLAG2_LAYOUT_DIRECTION_RESOLVED_MASK
1835     *                           1       PFLAG2_TEXT_DIRECTION_FLAGS[1]
1836     *                          1        PFLAG2_TEXT_DIRECTION_FLAGS[2]
1837     *                          11       PFLAG2_TEXT_DIRECTION_FLAGS[3]
1838     *                         1         PFLAG2_TEXT_DIRECTION_FLAGS[4]
1839     *                         1 1       PFLAG2_TEXT_DIRECTION_FLAGS[5]
1840     *                         111       PFLAG2_TEXT_DIRECTION_MASK
1841     *                        1          PFLAG2_TEXT_DIRECTION_RESOLVED
1842     *                       1           PFLAG2_TEXT_DIRECTION_RESOLVED_DEFAULT
1843     *                     111           PFLAG2_TEXT_DIRECTION_RESOLVED_MASK
1844     *                    1              PFLAG2_TEXT_ALIGNMENT_FLAGS[1]
1845     *                   1               PFLAG2_TEXT_ALIGNMENT_FLAGS[2]
1846     *                   11              PFLAG2_TEXT_ALIGNMENT_FLAGS[3]
1847     *                  1                PFLAG2_TEXT_ALIGNMENT_FLAGS[4]
1848     *                  1 1              PFLAG2_TEXT_ALIGNMENT_FLAGS[5]
1849     *                  11               PFLAG2_TEXT_ALIGNMENT_FLAGS[6]
1850     *                  111              PFLAG2_TEXT_ALIGNMENT_MASK
1851     *                 1                 PFLAG2_TEXT_ALIGNMENT_RESOLVED
1852     *                1                  PFLAG2_TEXT_ALIGNMENT_RESOLVED_DEFAULT
1853     *              111                  PFLAG2_TEXT_ALIGNMENT_RESOLVED_MASK
1854     *           111                     PFLAG2_IMPORTANT_FOR_ACCESSIBILITY_MASK
1855     *         11                        PFLAG2_ACCESSIBILITY_LIVE_REGION_MASK
1856     *       1                           PFLAG2_ACCESSIBILITY_FOCUSED
1857     *      1                            PFLAG2_SUBTREE_ACCESSIBILITY_STATE_CHANGED
1858     *     1                             PFLAG2_VIEW_QUICK_REJECTED
1859     *    1                              PFLAG2_PADDING_RESOLVED
1860     *   1                               PFLAG2_DRAWABLE_RESOLVED
1861     *  1                                PFLAG2_HAS_TRANSIENT_STATE
1862     * |-------|-------|-------|-------|
1863     */
1864
1865    /**
1866     * Indicates that this view has reported that it can accept the current drag's content.
1867     * Cleared when the drag operation concludes.
1868     * @hide
1869     */
1870    static final int PFLAG2_DRAG_CAN_ACCEPT            = 0x00000001;
1871
1872    /**
1873     * Indicates that this view is currently directly under the drag location in a
1874     * drag-and-drop operation involving content that it can accept.  Cleared when
1875     * the drag exits the view, or when the drag operation concludes.
1876     * @hide
1877     */
1878    static final int PFLAG2_DRAG_HOVERED               = 0x00000002;
1879
1880    /** @hide */
1881    @IntDef({
1882        LAYOUT_DIRECTION_LTR,
1883        LAYOUT_DIRECTION_RTL,
1884        LAYOUT_DIRECTION_INHERIT,
1885        LAYOUT_DIRECTION_LOCALE
1886    })
1887    @Retention(RetentionPolicy.SOURCE)
1888    // Not called LayoutDirection to avoid conflict with android.util.LayoutDirection
1889    public @interface LayoutDir {}
1890
1891    /** @hide */
1892    @IntDef({
1893        LAYOUT_DIRECTION_LTR,
1894        LAYOUT_DIRECTION_RTL
1895    })
1896    @Retention(RetentionPolicy.SOURCE)
1897    public @interface ResolvedLayoutDir {}
1898
1899    /**
1900     * Horizontal layout direction of this view is from Left to Right.
1901     * Use with {@link #setLayoutDirection}.
1902     */
1903    public static final int LAYOUT_DIRECTION_LTR = LayoutDirection.LTR;
1904
1905    /**
1906     * Horizontal layout direction of this view is from Right to Left.
1907     * Use with {@link #setLayoutDirection}.
1908     */
1909    public static final int LAYOUT_DIRECTION_RTL = LayoutDirection.RTL;
1910
1911    /**
1912     * Horizontal layout direction of this view is inherited from its parent.
1913     * Use with {@link #setLayoutDirection}.
1914     */
1915    public static final int LAYOUT_DIRECTION_INHERIT = LayoutDirection.INHERIT;
1916
1917    /**
1918     * Horizontal layout direction of this view is from deduced from the default language
1919     * script for the locale. Use with {@link #setLayoutDirection}.
1920     */
1921    public static final int LAYOUT_DIRECTION_LOCALE = LayoutDirection.LOCALE;
1922
1923    /**
1924     * Bit shift to get the horizontal layout direction. (bits after DRAG_HOVERED)
1925     * @hide
1926     */
1927    static final int PFLAG2_LAYOUT_DIRECTION_MASK_SHIFT = 2;
1928
1929    /**
1930     * Mask for use with private flags indicating bits used for horizontal layout direction.
1931     * @hide
1932     */
1933    static final int PFLAG2_LAYOUT_DIRECTION_MASK = 0x00000003 << PFLAG2_LAYOUT_DIRECTION_MASK_SHIFT;
1934
1935    /**
1936     * Indicates whether the view horizontal layout direction has been resolved and drawn to the
1937     * right-to-left direction.
1938     * @hide
1939     */
1940    static final int PFLAG2_LAYOUT_DIRECTION_RESOLVED_RTL = 4 << PFLAG2_LAYOUT_DIRECTION_MASK_SHIFT;
1941
1942    /**
1943     * Indicates whether the view horizontal layout direction has been resolved.
1944     * @hide
1945     */
1946    static final int PFLAG2_LAYOUT_DIRECTION_RESOLVED = 8 << PFLAG2_LAYOUT_DIRECTION_MASK_SHIFT;
1947
1948    /**
1949     * Mask for use with private flags indicating bits used for resolved horizontal layout direction.
1950     * @hide
1951     */
1952    static final int PFLAG2_LAYOUT_DIRECTION_RESOLVED_MASK = 0x0000000C
1953            << PFLAG2_LAYOUT_DIRECTION_MASK_SHIFT;
1954
1955    /*
1956     * Array of horizontal layout direction flags for mapping attribute "layoutDirection" to correct
1957     * flag value.
1958     * @hide
1959     */
1960    private static final int[] LAYOUT_DIRECTION_FLAGS = {
1961            LAYOUT_DIRECTION_LTR,
1962            LAYOUT_DIRECTION_RTL,
1963            LAYOUT_DIRECTION_INHERIT,
1964            LAYOUT_DIRECTION_LOCALE
1965    };
1966
1967    /**
1968     * Default horizontal layout direction.
1969     */
1970    private static final int LAYOUT_DIRECTION_DEFAULT = LAYOUT_DIRECTION_INHERIT;
1971
1972    /**
1973     * Default horizontal layout direction.
1974     * @hide
1975     */
1976    static final int LAYOUT_DIRECTION_RESOLVED_DEFAULT = LAYOUT_DIRECTION_LTR;
1977
1978    /**
1979     * Text direction is inherited thru {@link ViewGroup}
1980     */
1981    public static final int TEXT_DIRECTION_INHERIT = 0;
1982
1983    /**
1984     * Text direction is using "first strong algorithm". The first strong directional character
1985     * determines the paragraph direction. If there is no strong directional character, the
1986     * paragraph direction is the view's resolved layout direction.
1987     */
1988    public static final int TEXT_DIRECTION_FIRST_STRONG = 1;
1989
1990    /**
1991     * Text direction is using "any-RTL" algorithm. The paragraph direction is RTL if it contains
1992     * any strong RTL character, otherwise it is LTR if it contains any strong LTR characters.
1993     * If there are neither, the paragraph direction is the view's resolved layout direction.
1994     */
1995    public static final int TEXT_DIRECTION_ANY_RTL = 2;
1996
1997    /**
1998     * Text direction is forced to LTR.
1999     */
2000    public static final int TEXT_DIRECTION_LTR = 3;
2001
2002    /**
2003     * Text direction is forced to RTL.
2004     */
2005    public static final int TEXT_DIRECTION_RTL = 4;
2006
2007    /**
2008     * Text direction is coming from the system Locale.
2009     */
2010    public static final int TEXT_DIRECTION_LOCALE = 5;
2011
2012    /**
2013     * Default text direction is inherited
2014     */
2015    private static final int TEXT_DIRECTION_DEFAULT = TEXT_DIRECTION_INHERIT;
2016
2017    /**
2018     * Default resolved text direction
2019     * @hide
2020     */
2021    static final int TEXT_DIRECTION_RESOLVED_DEFAULT = TEXT_DIRECTION_FIRST_STRONG;
2022
2023    /**
2024     * Bit shift to get the horizontal layout direction. (bits after LAYOUT_DIRECTION_RESOLVED)
2025     * @hide
2026     */
2027    static final int PFLAG2_TEXT_DIRECTION_MASK_SHIFT = 6;
2028
2029    /**
2030     * Mask for use with private flags indicating bits used for text direction.
2031     * @hide
2032     */
2033    static final int PFLAG2_TEXT_DIRECTION_MASK = 0x00000007
2034            << PFLAG2_TEXT_DIRECTION_MASK_SHIFT;
2035
2036    /**
2037     * Array of text direction flags for mapping attribute "textDirection" to correct
2038     * flag value.
2039     * @hide
2040     */
2041    private static final int[] PFLAG2_TEXT_DIRECTION_FLAGS = {
2042            TEXT_DIRECTION_INHERIT << PFLAG2_TEXT_DIRECTION_MASK_SHIFT,
2043            TEXT_DIRECTION_FIRST_STRONG << PFLAG2_TEXT_DIRECTION_MASK_SHIFT,
2044            TEXT_DIRECTION_ANY_RTL << PFLAG2_TEXT_DIRECTION_MASK_SHIFT,
2045            TEXT_DIRECTION_LTR << PFLAG2_TEXT_DIRECTION_MASK_SHIFT,
2046            TEXT_DIRECTION_RTL << PFLAG2_TEXT_DIRECTION_MASK_SHIFT,
2047            TEXT_DIRECTION_LOCALE << PFLAG2_TEXT_DIRECTION_MASK_SHIFT
2048    };
2049
2050    /**
2051     * Indicates whether the view text direction has been resolved.
2052     * @hide
2053     */
2054    static final int PFLAG2_TEXT_DIRECTION_RESOLVED = 0x00000008
2055            << PFLAG2_TEXT_DIRECTION_MASK_SHIFT;
2056
2057    /**
2058     * Bit shift to get the horizontal layout direction. (bits after DRAG_HOVERED)
2059     * @hide
2060     */
2061    static final int PFLAG2_TEXT_DIRECTION_RESOLVED_MASK_SHIFT = 10;
2062
2063    /**
2064     * Mask for use with private flags indicating bits used for resolved text direction.
2065     * @hide
2066     */
2067    static final int PFLAG2_TEXT_DIRECTION_RESOLVED_MASK = 0x00000007
2068            << PFLAG2_TEXT_DIRECTION_RESOLVED_MASK_SHIFT;
2069
2070    /**
2071     * Indicates whether the view text direction has been resolved to the "first strong" heuristic.
2072     * @hide
2073     */
2074    static final int PFLAG2_TEXT_DIRECTION_RESOLVED_DEFAULT =
2075            TEXT_DIRECTION_RESOLVED_DEFAULT << PFLAG2_TEXT_DIRECTION_RESOLVED_MASK_SHIFT;
2076
2077    /** @hide */
2078    @IntDef({
2079        TEXT_ALIGNMENT_INHERIT,
2080        TEXT_ALIGNMENT_GRAVITY,
2081        TEXT_ALIGNMENT_CENTER,
2082        TEXT_ALIGNMENT_TEXT_START,
2083        TEXT_ALIGNMENT_TEXT_END,
2084        TEXT_ALIGNMENT_VIEW_START,
2085        TEXT_ALIGNMENT_VIEW_END
2086    })
2087    @Retention(RetentionPolicy.SOURCE)
2088    public @interface TextAlignment {}
2089
2090    /**
2091     * Default text alignment. The text alignment of this View is inherited from its parent.
2092     * Use with {@link #setTextAlignment(int)}
2093     */
2094    public static final int TEXT_ALIGNMENT_INHERIT = 0;
2095
2096    /**
2097     * Default for the root view. The gravity determines the text alignment, ALIGN_NORMAL,
2098     * ALIGN_CENTER, or ALIGN_OPPOSITE, which are relative to each paragraph’s text direction.
2099     *
2100     * Use with {@link #setTextAlignment(int)}
2101     */
2102    public static final int TEXT_ALIGNMENT_GRAVITY = 1;
2103
2104    /**
2105     * Align to the start of the paragraph, e.g. ALIGN_NORMAL.
2106     *
2107     * Use with {@link #setTextAlignment(int)}
2108     */
2109    public static final int TEXT_ALIGNMENT_TEXT_START = 2;
2110
2111    /**
2112     * Align to the end of the paragraph, e.g. ALIGN_OPPOSITE.
2113     *
2114     * Use with {@link #setTextAlignment(int)}
2115     */
2116    public static final int TEXT_ALIGNMENT_TEXT_END = 3;
2117
2118    /**
2119     * Center the paragraph, e.g. ALIGN_CENTER.
2120     *
2121     * Use with {@link #setTextAlignment(int)}
2122     */
2123    public static final int TEXT_ALIGNMENT_CENTER = 4;
2124
2125    /**
2126     * Align to the start of the view, which is ALIGN_LEFT if the view’s resolved
2127     * layoutDirection is LTR, and ALIGN_RIGHT otherwise.
2128     *
2129     * Use with {@link #setTextAlignment(int)}
2130     */
2131    public static final int TEXT_ALIGNMENT_VIEW_START = 5;
2132
2133    /**
2134     * Align to the end of the view, which is ALIGN_RIGHT if the view’s resolved
2135     * layoutDirection is LTR, and ALIGN_LEFT otherwise.
2136     *
2137     * Use with {@link #setTextAlignment(int)}
2138     */
2139    public static final int TEXT_ALIGNMENT_VIEW_END = 6;
2140
2141    /**
2142     * Default text alignment is inherited
2143     */
2144    private static final int TEXT_ALIGNMENT_DEFAULT = TEXT_ALIGNMENT_GRAVITY;
2145
2146    /**
2147     * Default resolved text alignment
2148     * @hide
2149     */
2150    static final int TEXT_ALIGNMENT_RESOLVED_DEFAULT = TEXT_ALIGNMENT_GRAVITY;
2151
2152    /**
2153      * Bit shift to get the horizontal layout direction. (bits after DRAG_HOVERED)
2154      * @hide
2155      */
2156    static final int PFLAG2_TEXT_ALIGNMENT_MASK_SHIFT = 13;
2157
2158    /**
2159      * Mask for use with private flags indicating bits used for text alignment.
2160      * @hide
2161      */
2162    static final int PFLAG2_TEXT_ALIGNMENT_MASK = 0x00000007 << PFLAG2_TEXT_ALIGNMENT_MASK_SHIFT;
2163
2164    /**
2165     * Array of text direction flags for mapping attribute "textAlignment" to correct
2166     * flag value.
2167     * @hide
2168     */
2169    private static final int[] PFLAG2_TEXT_ALIGNMENT_FLAGS = {
2170            TEXT_ALIGNMENT_INHERIT << PFLAG2_TEXT_ALIGNMENT_MASK_SHIFT,
2171            TEXT_ALIGNMENT_GRAVITY << PFLAG2_TEXT_ALIGNMENT_MASK_SHIFT,
2172            TEXT_ALIGNMENT_TEXT_START << PFLAG2_TEXT_ALIGNMENT_MASK_SHIFT,
2173            TEXT_ALIGNMENT_TEXT_END << PFLAG2_TEXT_ALIGNMENT_MASK_SHIFT,
2174            TEXT_ALIGNMENT_CENTER << PFLAG2_TEXT_ALIGNMENT_MASK_SHIFT,
2175            TEXT_ALIGNMENT_VIEW_START << PFLAG2_TEXT_ALIGNMENT_MASK_SHIFT,
2176            TEXT_ALIGNMENT_VIEW_END << PFLAG2_TEXT_ALIGNMENT_MASK_SHIFT
2177    };
2178
2179    /**
2180     * Indicates whether the view text alignment has been resolved.
2181     * @hide
2182     */
2183    static final int PFLAG2_TEXT_ALIGNMENT_RESOLVED = 0x00000008 << PFLAG2_TEXT_ALIGNMENT_MASK_SHIFT;
2184
2185    /**
2186     * Bit shift to get the resolved text alignment.
2187     * @hide
2188     */
2189    static final int PFLAG2_TEXT_ALIGNMENT_RESOLVED_MASK_SHIFT = 17;
2190
2191    /**
2192     * Mask for use with private flags indicating bits used for text alignment.
2193     * @hide
2194     */
2195    static final int PFLAG2_TEXT_ALIGNMENT_RESOLVED_MASK = 0x00000007
2196            << PFLAG2_TEXT_ALIGNMENT_RESOLVED_MASK_SHIFT;
2197
2198    /**
2199     * Indicates whether if the view text alignment has been resolved to gravity
2200     */
2201    private static final int PFLAG2_TEXT_ALIGNMENT_RESOLVED_DEFAULT =
2202            TEXT_ALIGNMENT_RESOLVED_DEFAULT << PFLAG2_TEXT_ALIGNMENT_RESOLVED_MASK_SHIFT;
2203
2204    // Accessiblity constants for mPrivateFlags2
2205
2206    /**
2207     * Shift for the bits in {@link #mPrivateFlags2} related to the
2208     * "importantForAccessibility" attribute.
2209     */
2210    static final int PFLAG2_IMPORTANT_FOR_ACCESSIBILITY_SHIFT = 20;
2211
2212    /**
2213     * Automatically determine whether a view is important for accessibility.
2214     */
2215    public static final int IMPORTANT_FOR_ACCESSIBILITY_AUTO = 0x00000000;
2216
2217    /**
2218     * The view is important for accessibility.
2219     */
2220    public static final int IMPORTANT_FOR_ACCESSIBILITY_YES = 0x00000001;
2221
2222    /**
2223     * The view is not important for accessibility.
2224     */
2225    public static final int IMPORTANT_FOR_ACCESSIBILITY_NO = 0x00000002;
2226
2227    /**
2228     * The view is not important for accessibility, nor are any of its
2229     * descendant views.
2230     */
2231    public static final int IMPORTANT_FOR_ACCESSIBILITY_NO_HIDE_DESCENDANTS = 0x00000004;
2232
2233    /**
2234     * The default whether the view is important for accessibility.
2235     */
2236    static final int IMPORTANT_FOR_ACCESSIBILITY_DEFAULT = IMPORTANT_FOR_ACCESSIBILITY_AUTO;
2237
2238    /**
2239     * Mask for obtainig the bits which specify how to determine
2240     * whether a view is important for accessibility.
2241     */
2242    static final int PFLAG2_IMPORTANT_FOR_ACCESSIBILITY_MASK = (IMPORTANT_FOR_ACCESSIBILITY_AUTO
2243        | IMPORTANT_FOR_ACCESSIBILITY_YES | IMPORTANT_FOR_ACCESSIBILITY_NO
2244        | IMPORTANT_FOR_ACCESSIBILITY_NO_HIDE_DESCENDANTS)
2245        << PFLAG2_IMPORTANT_FOR_ACCESSIBILITY_SHIFT;
2246
2247    /**
2248     * Shift for the bits in {@link #mPrivateFlags2} related to the
2249     * "accessibilityLiveRegion" attribute.
2250     */
2251    static final int PFLAG2_ACCESSIBILITY_LIVE_REGION_SHIFT = 23;
2252
2253    /**
2254     * Live region mode specifying that accessibility services should not
2255     * automatically announce changes to this view. This is the default live
2256     * region mode for most views.
2257     * <p>
2258     * Use with {@link #setAccessibilityLiveRegion(int)}.
2259     */
2260    public static final int ACCESSIBILITY_LIVE_REGION_NONE = 0x00000000;
2261
2262    /**
2263     * Live region mode specifying that accessibility services should announce
2264     * changes to this view.
2265     * <p>
2266     * Use with {@link #setAccessibilityLiveRegion(int)}.
2267     */
2268    public static final int ACCESSIBILITY_LIVE_REGION_POLITE = 0x00000001;
2269
2270    /**
2271     * Live region mode specifying that accessibility services should interrupt
2272     * ongoing speech to immediately announce changes to this view.
2273     * <p>
2274     * Use with {@link #setAccessibilityLiveRegion(int)}.
2275     */
2276    public static final int ACCESSIBILITY_LIVE_REGION_ASSERTIVE = 0x00000002;
2277
2278    /**
2279     * The default whether the view is important for accessibility.
2280     */
2281    static final int ACCESSIBILITY_LIVE_REGION_DEFAULT = ACCESSIBILITY_LIVE_REGION_NONE;
2282
2283    /**
2284     * Mask for obtaining the bits which specify a view's accessibility live
2285     * region mode.
2286     */
2287    static final int PFLAG2_ACCESSIBILITY_LIVE_REGION_MASK = (ACCESSIBILITY_LIVE_REGION_NONE
2288            | ACCESSIBILITY_LIVE_REGION_POLITE | ACCESSIBILITY_LIVE_REGION_ASSERTIVE)
2289            << PFLAG2_ACCESSIBILITY_LIVE_REGION_SHIFT;
2290
2291    /**
2292     * Flag indicating whether a view has accessibility focus.
2293     */
2294    static final int PFLAG2_ACCESSIBILITY_FOCUSED = 0x04000000;
2295
2296    /**
2297     * Flag whether the accessibility state of the subtree rooted at this view changed.
2298     */
2299    static final int PFLAG2_SUBTREE_ACCESSIBILITY_STATE_CHANGED = 0x08000000;
2300
2301    /**
2302     * Flag indicating whether a view failed the quickReject() check in draw(). This condition
2303     * is used to check whether later changes to the view's transform should invalidate the
2304     * view to force the quickReject test to run again.
2305     */
2306    static final int PFLAG2_VIEW_QUICK_REJECTED = 0x10000000;
2307
2308    /**
2309     * Flag indicating that start/end padding has been resolved into left/right padding
2310     * for use in measurement, layout, drawing, etc. This is set by {@link #resolvePadding()}
2311     * and checked by {@link #measure(int, int)} to determine if padding needs to be resolved
2312     * during measurement. In some special cases this is required such as when an adapter-based
2313     * view measures prospective children without attaching them to a window.
2314     */
2315    static final int PFLAG2_PADDING_RESOLVED = 0x20000000;
2316
2317    /**
2318     * Flag indicating that the start/end drawables has been resolved into left/right ones.
2319     */
2320    static final int PFLAG2_DRAWABLE_RESOLVED = 0x40000000;
2321
2322    /**
2323     * Indicates that the view is tracking some sort of transient state
2324     * that the app should not need to be aware of, but that the framework
2325     * should take special care to preserve.
2326     */
2327    static final int PFLAG2_HAS_TRANSIENT_STATE = 0x80000000;
2328
2329    /**
2330     * Group of bits indicating that RTL properties resolution is done.
2331     */
2332    static final int ALL_RTL_PROPERTIES_RESOLVED = PFLAG2_LAYOUT_DIRECTION_RESOLVED |
2333            PFLAG2_TEXT_DIRECTION_RESOLVED |
2334            PFLAG2_TEXT_ALIGNMENT_RESOLVED |
2335            PFLAG2_PADDING_RESOLVED |
2336            PFLAG2_DRAWABLE_RESOLVED;
2337
2338    // There are a couple of flags left in mPrivateFlags2
2339
2340    /* End of masks for mPrivateFlags2 */
2341
2342    /**
2343     * Masks for mPrivateFlags3, as generated by dumpFlags():
2344     *
2345     * |-------|-------|-------|-------|
2346     *                                 1 PFLAG3_VIEW_IS_ANIMATING_TRANSFORM
2347     *                                1  PFLAG3_VIEW_IS_ANIMATING_ALPHA
2348     *                               1   PFLAG3_IS_LAID_OUT
2349     *                              1    PFLAG3_MEASURE_NEEDED_BEFORE_LAYOUT
2350     *                             1     PFLAG3_CALLED_SUPER
2351     * |-------|-------|-------|-------|
2352     */
2353
2354    /**
2355     * Flag indicating that view has a transform animation set on it. This is used to track whether
2356     * an animation is cleared between successive frames, in order to tell the associated
2357     * DisplayList to clear its animation matrix.
2358     */
2359    static final int PFLAG3_VIEW_IS_ANIMATING_TRANSFORM = 0x1;
2360
2361    /**
2362     * Flag indicating that view has an alpha animation set on it. This is used to track whether an
2363     * animation is cleared between successive frames, in order to tell the associated
2364     * DisplayList to restore its alpha value.
2365     */
2366    static final int PFLAG3_VIEW_IS_ANIMATING_ALPHA = 0x2;
2367
2368    /**
2369     * Flag indicating that the view has been through at least one layout since it
2370     * was last attached to a window.
2371     */
2372    static final int PFLAG3_IS_LAID_OUT = 0x4;
2373
2374    /**
2375     * Flag indicating that a call to measure() was skipped and should be done
2376     * instead when layout() is invoked.
2377     */
2378    static final int PFLAG3_MEASURE_NEEDED_BEFORE_LAYOUT = 0x8;
2379
2380    /**
2381     * Flag indicating that an overridden method correctly called down to
2382     * the superclass implementation as required by the API spec.
2383     */
2384    static final int PFLAG3_CALLED_SUPER = 0x10;
2385
2386    /**
2387     * Flag indicating that we're in the process of applying window insets.
2388     */
2389    static final int PFLAG3_APPLYING_INSETS = 0x20;
2390
2391    /**
2392     * Flag indicating that we're in the process of fitting system windows using the old method.
2393     */
2394    static final int PFLAG3_FITTING_SYSTEM_WINDOWS = 0x40;
2395
2396    /**
2397     * Flag indicating that nested scrolling is enabled for this view.
2398     * The view will optionally cooperate with views up its parent chain to allow for
2399     * integrated nested scrolling along the same axis.
2400     */
2401    static final int PFLAG3_NESTED_SCROLLING_ENABLED = 0x80;
2402
2403    /**
2404     * Flag indicating that outline was invalidated and should be rebuilt the next time
2405     * the DisplayList is updated.
2406     */
2407    static final int PFLAG3_OUTLINE_INVALID = 0x100;
2408
2409    /* End of masks for mPrivateFlags3 */
2410
2411    static final int DRAG_MASK = PFLAG2_DRAG_CAN_ACCEPT | PFLAG2_DRAG_HOVERED;
2412
2413    /**
2414     * Always allow a user to over-scroll this view, provided it is a
2415     * view that can scroll.
2416     *
2417     * @see #getOverScrollMode()
2418     * @see #setOverScrollMode(int)
2419     */
2420    public static final int OVER_SCROLL_ALWAYS = 0;
2421
2422    /**
2423     * Allow a user to over-scroll this view only if the content is large
2424     * enough to meaningfully scroll, provided it is a view that can scroll.
2425     *
2426     * @see #getOverScrollMode()
2427     * @see #setOverScrollMode(int)
2428     */
2429    public static final int OVER_SCROLL_IF_CONTENT_SCROLLS = 1;
2430
2431    /**
2432     * Never allow a user to over-scroll this view.
2433     *
2434     * @see #getOverScrollMode()
2435     * @see #setOverScrollMode(int)
2436     */
2437    public static final int OVER_SCROLL_NEVER = 2;
2438
2439    /**
2440     * Special constant for {@link #setSystemUiVisibility(int)}: View has
2441     * requested the system UI (status bar) to be visible (the default).
2442     *
2443     * @see #setSystemUiVisibility(int)
2444     */
2445    public static final int SYSTEM_UI_FLAG_VISIBLE = 0;
2446
2447    /**
2448     * Flag for {@link #setSystemUiVisibility(int)}: View has requested the
2449     * system UI to enter an unobtrusive "low profile" mode.
2450     *
2451     * <p>This is for use in games, book readers, video players, or any other
2452     * "immersive" application where the usual system chrome is deemed too distracting.
2453     *
2454     * <p>In low profile mode, the status bar and/or navigation icons may dim.
2455     *
2456     * @see #setSystemUiVisibility(int)
2457     */
2458    public static final int SYSTEM_UI_FLAG_LOW_PROFILE = 0x00000001;
2459
2460    /**
2461     * Flag for {@link #setSystemUiVisibility(int)}: View has requested that the
2462     * system navigation be temporarily hidden.
2463     *
2464     * <p>This is an even less obtrusive state than that called for by
2465     * {@link #SYSTEM_UI_FLAG_LOW_PROFILE}; on devices that draw essential navigation controls
2466     * (Home, Back, and the like) on screen, <code>SYSTEM_UI_FLAG_HIDE_NAVIGATION</code> will cause
2467     * those to disappear. This is useful (in conjunction with the
2468     * {@link android.view.WindowManager.LayoutParams#FLAG_FULLSCREEN FLAG_FULLSCREEN} and
2469     * {@link android.view.WindowManager.LayoutParams#FLAG_LAYOUT_IN_SCREEN FLAG_LAYOUT_IN_SCREEN}
2470     * window flags) for displaying content using every last pixel on the display.
2471     *
2472     * <p>There is a limitation: because navigation controls are so important, the least user
2473     * interaction will cause them to reappear immediately.  When this happens, both
2474     * this flag and {@link #SYSTEM_UI_FLAG_FULLSCREEN} will be cleared automatically,
2475     * so that both elements reappear at the same time.
2476     *
2477     * @see #setSystemUiVisibility(int)
2478     */
2479    public static final int SYSTEM_UI_FLAG_HIDE_NAVIGATION = 0x00000002;
2480
2481    /**
2482     * Flag for {@link #setSystemUiVisibility(int)}: View has requested to go
2483     * into the normal fullscreen mode so that its content can take over the screen
2484     * while still allowing the user to interact with the application.
2485     *
2486     * <p>This has the same visual effect as
2487     * {@link android.view.WindowManager.LayoutParams#FLAG_FULLSCREEN
2488     * WindowManager.LayoutParams.FLAG_FULLSCREEN},
2489     * meaning that non-critical screen decorations (such as the status bar) will be
2490     * hidden while the user is in the View's window, focusing the experience on
2491     * that content.  Unlike the window flag, if you are using ActionBar in
2492     * overlay mode with {@link Window#FEATURE_ACTION_BAR_OVERLAY
2493     * Window.FEATURE_ACTION_BAR_OVERLAY}, then enabling this flag will also
2494     * hide the action bar.
2495     *
2496     * <p>This approach to going fullscreen is best used over the window flag when
2497     * it is a transient state -- that is, the application does this at certain
2498     * points in its user interaction where it wants to allow the user to focus
2499     * on content, but not as a continuous state.  For situations where the application
2500     * would like to simply stay full screen the entire time (such as a game that
2501     * wants to take over the screen), the
2502     * {@link android.view.WindowManager.LayoutParams#FLAG_FULLSCREEN window flag}
2503     * is usually a better approach.  The state set here will be removed by the system
2504     * in various situations (such as the user moving to another application) like
2505     * the other system UI states.
2506     *
2507     * <p>When using this flag, the application should provide some easy facility
2508     * for the user to go out of it.  A common example would be in an e-book
2509     * reader, where tapping on the screen brings back whatever screen and UI
2510     * decorations that had been hidden while the user was immersed in reading
2511     * the book.
2512     *
2513     * @see #setSystemUiVisibility(int)
2514     */
2515    public static final int SYSTEM_UI_FLAG_FULLSCREEN = 0x00000004;
2516
2517    /**
2518     * Flag for {@link #setSystemUiVisibility(int)}: When using other layout
2519     * flags, we would like a stable view of the content insets given to
2520     * {@link #fitSystemWindows(Rect)}.  This means that the insets seen there
2521     * will always represent the worst case that the application can expect
2522     * as a continuous state.  In the stock Android UI this is the space for
2523     * the system bar, nav bar, and status bar, but not more transient elements
2524     * such as an input method.
2525     *
2526     * The stable layout your UI sees is based on the system UI modes you can
2527     * switch to.  That is, if you specify {@link #SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN}
2528     * then you will get a stable layout for changes of the
2529     * {@link #SYSTEM_UI_FLAG_FULLSCREEN} mode; if you specify
2530     * {@link #SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN} and
2531     * {@link #SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION}, then you can transition
2532     * to {@link #SYSTEM_UI_FLAG_FULLSCREEN} and {@link #SYSTEM_UI_FLAG_HIDE_NAVIGATION}
2533     * with a stable layout.  (Note that you should avoid using
2534     * {@link #SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION} by itself.)
2535     *
2536     * If you have set the window flag {@link WindowManager.LayoutParams#FLAG_FULLSCREEN}
2537     * to hide the status bar (instead of using {@link #SYSTEM_UI_FLAG_FULLSCREEN}),
2538     * then a hidden status bar will be considered a "stable" state for purposes
2539     * here.  This allows your UI to continually hide the status bar, while still
2540     * using the system UI flags to hide the action bar while still retaining
2541     * a stable layout.  Note that changing the window fullscreen flag will never
2542     * provide a stable layout for a clean transition.
2543     *
2544     * <p>If you are using ActionBar in
2545     * overlay mode with {@link Window#FEATURE_ACTION_BAR_OVERLAY
2546     * Window.FEATURE_ACTION_BAR_OVERLAY}, this flag will also impact the
2547     * insets it adds to those given to the application.
2548     */
2549    public static final int SYSTEM_UI_FLAG_LAYOUT_STABLE = 0x00000100;
2550
2551    /**
2552     * Flag for {@link #setSystemUiVisibility(int)}: View would like its window
2553     * to be layed out as if it has requested
2554     * {@link #SYSTEM_UI_FLAG_HIDE_NAVIGATION}, even if it currently hasn't.  This
2555     * allows it to avoid artifacts when switching in and out of that mode, at
2556     * the expense that some of its user interface may be covered by screen
2557     * decorations when they are shown.  You can perform layout of your inner
2558     * UI elements to account for the navigation system UI through the
2559     * {@link #fitSystemWindows(Rect)} method.
2560     */
2561    public static final int SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION = 0x00000200;
2562
2563    /**
2564     * Flag for {@link #setSystemUiVisibility(int)}: View would like its window
2565     * to be layed out as if it has requested
2566     * {@link #SYSTEM_UI_FLAG_FULLSCREEN}, even if it currently hasn't.  This
2567     * allows it to avoid artifacts when switching in and out of that mode, at
2568     * the expense that some of its user interface may be covered by screen
2569     * decorations when they are shown.  You can perform layout of your inner
2570     * UI elements to account for non-fullscreen system UI through the
2571     * {@link #fitSystemWindows(Rect)} method.
2572     */
2573    public static final int SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN = 0x00000400;
2574
2575    /**
2576     * Flag for {@link #setSystemUiVisibility(int)}: View would like to remain interactive when
2577     * hiding the navigation bar with {@link #SYSTEM_UI_FLAG_HIDE_NAVIGATION}.  If this flag is
2578     * not set, {@link #SYSTEM_UI_FLAG_HIDE_NAVIGATION} will be force cleared by the system on any
2579     * user interaction.
2580     * <p>Since this flag is a modifier for {@link #SYSTEM_UI_FLAG_HIDE_NAVIGATION}, it only
2581     * has an effect when used in combination with that flag.</p>
2582     */
2583    public static final int SYSTEM_UI_FLAG_IMMERSIVE = 0x00000800;
2584
2585    /**
2586     * Flag for {@link #setSystemUiVisibility(int)}: View would like to remain interactive when
2587     * hiding the status bar with {@link #SYSTEM_UI_FLAG_FULLSCREEN} and/or hiding the navigation
2588     * bar with {@link #SYSTEM_UI_FLAG_HIDE_NAVIGATION}.  Use this flag to create an immersive
2589     * experience while also hiding the system bars.  If this flag is not set,
2590     * {@link #SYSTEM_UI_FLAG_HIDE_NAVIGATION} will be force cleared by the system on any user
2591     * interaction, and {@link #SYSTEM_UI_FLAG_FULLSCREEN} will be force-cleared by the system
2592     * if the user swipes from the top of the screen.
2593     * <p>When system bars are hidden in immersive mode, they can be revealed temporarily with
2594     * system gestures, such as swiping from the top of the screen.  These transient system bars
2595     * will overlay app’s content, may have some degree of transparency, and will automatically
2596     * hide after a short timeout.
2597     * </p><p>Since this flag is a modifier for {@link #SYSTEM_UI_FLAG_FULLSCREEN} and
2598     * {@link #SYSTEM_UI_FLAG_HIDE_NAVIGATION}, it only has an effect when used in combination
2599     * with one or both of those flags.</p>
2600     */
2601    public static final int SYSTEM_UI_FLAG_IMMERSIVE_STICKY = 0x00001000;
2602
2603    /**
2604     * @deprecated Use {@link #SYSTEM_UI_FLAG_LOW_PROFILE} instead.
2605     */
2606    public static final int STATUS_BAR_HIDDEN = SYSTEM_UI_FLAG_LOW_PROFILE;
2607
2608    /**
2609     * @deprecated Use {@link #SYSTEM_UI_FLAG_VISIBLE} instead.
2610     */
2611    public static final int STATUS_BAR_VISIBLE = SYSTEM_UI_FLAG_VISIBLE;
2612
2613    /**
2614     * @hide
2615     *
2616     * NOTE: This flag may only be used in subtreeSystemUiVisibility. It is masked
2617     * out of the public fields to keep the undefined bits out of the developer's way.
2618     *
2619     * Flag to make the status bar not expandable.  Unless you also
2620     * set {@link #STATUS_BAR_DISABLE_NOTIFICATION_ICONS}, new notifications will continue to show.
2621     */
2622    public static final int STATUS_BAR_DISABLE_EXPAND = 0x00010000;
2623
2624    /**
2625     * @hide
2626     *
2627     * NOTE: This flag may only be used in subtreeSystemUiVisibility. It is masked
2628     * out of the public fields to keep the undefined bits out of the developer's way.
2629     *
2630     * Flag to hide notification icons and scrolling ticker text.
2631     */
2632    public static final int STATUS_BAR_DISABLE_NOTIFICATION_ICONS = 0x00020000;
2633
2634    /**
2635     * @hide
2636     *
2637     * NOTE: This flag may only be used in subtreeSystemUiVisibility. It is masked
2638     * out of the public fields to keep the undefined bits out of the developer's way.
2639     *
2640     * Flag to disable incoming notification alerts.  This will not block
2641     * icons, but it will block sound, vibrating and other visual or aural notifications.
2642     */
2643    public static final int STATUS_BAR_DISABLE_NOTIFICATION_ALERTS = 0x00040000;
2644
2645    /**
2646     * @hide
2647     *
2648     * NOTE: This flag may only be used in subtreeSystemUiVisibility. It is masked
2649     * out of the public fields to keep the undefined bits out of the developer's way.
2650     *
2651     * Flag to hide only the scrolling ticker.  Note that
2652     * {@link #STATUS_BAR_DISABLE_NOTIFICATION_ICONS} implies
2653     * {@link #STATUS_BAR_DISABLE_NOTIFICATION_TICKER}.
2654     */
2655    public static final int STATUS_BAR_DISABLE_NOTIFICATION_TICKER = 0x00080000;
2656
2657    /**
2658     * @hide
2659     *
2660     * NOTE: This flag may only be used in subtreeSystemUiVisibility. It is masked
2661     * out of the public fields to keep the undefined bits out of the developer's way.
2662     *
2663     * Flag to hide the center system info area.
2664     */
2665    public static final int STATUS_BAR_DISABLE_SYSTEM_INFO = 0x00100000;
2666
2667    /**
2668     * @hide
2669     *
2670     * NOTE: This flag may only be used in subtreeSystemUiVisibility. It is masked
2671     * out of the public fields to keep the undefined bits out of the developer's way.
2672     *
2673     * Flag to hide only the home button.  Don't use this
2674     * unless you're a special part of the system UI (i.e., setup wizard, keyguard).
2675     */
2676    public static final int STATUS_BAR_DISABLE_HOME = 0x00200000;
2677
2678    /**
2679     * @hide
2680     *
2681     * NOTE: This flag may only be used in subtreeSystemUiVisibility. It is masked
2682     * out of the public fields to keep the undefined bits out of the developer's way.
2683     *
2684     * Flag to hide only the back button. Don't use this
2685     * unless you're a special part of the system UI (i.e., setup wizard, keyguard).
2686     */
2687    public static final int STATUS_BAR_DISABLE_BACK = 0x00400000;
2688
2689    /**
2690     * @hide
2691     *
2692     * NOTE: This flag may only be used in subtreeSystemUiVisibility. It is masked
2693     * out of the public fields to keep the undefined bits out of the developer's way.
2694     *
2695     * Flag to hide only the clock.  You might use this if your activity has
2696     * its own clock making the status bar's clock redundant.
2697     */
2698    public static final int STATUS_BAR_DISABLE_CLOCK = 0x00800000;
2699
2700    /**
2701     * @hide
2702     *
2703     * NOTE: This flag may only be used in subtreeSystemUiVisibility. It is masked
2704     * out of the public fields to keep the undefined bits out of the developer's way.
2705     *
2706     * Flag to hide only the recent apps button. Don't use this
2707     * unless you're a special part of the system UI (i.e., setup wizard, keyguard).
2708     */
2709    public static final int STATUS_BAR_DISABLE_RECENT = 0x01000000;
2710
2711    /**
2712     * @hide
2713     *
2714     * NOTE: This flag may only be used in subtreeSystemUiVisibility. It is masked
2715     * out of the public fields to keep the undefined bits out of the developer's way.
2716     *
2717     * Flag to disable the global search gesture. Don't use this
2718     * unless you're a special part of the system UI (i.e., setup wizard, keyguard).
2719     */
2720    public static final int STATUS_BAR_DISABLE_SEARCH = 0x02000000;
2721
2722    /**
2723     * @hide
2724     *
2725     * NOTE: This flag may only be used in subtreeSystemUiVisibility. It is masked
2726     * out of the public fields to keep the undefined bits out of the developer's way.
2727     *
2728     * Flag to specify that the status bar is displayed in transient mode.
2729     */
2730    public static final int STATUS_BAR_TRANSIENT = 0x04000000;
2731
2732    /**
2733     * @hide
2734     *
2735     * NOTE: This flag may only be used in subtreeSystemUiVisibility. It is masked
2736     * out of the public fields to keep the undefined bits out of the developer's way.
2737     *
2738     * Flag to specify that the navigation bar is displayed in transient mode.
2739     */
2740    public static final int NAVIGATION_BAR_TRANSIENT = 0x08000000;
2741
2742    /**
2743     * @hide
2744     *
2745     * NOTE: This flag may only be used in subtreeSystemUiVisibility. It is masked
2746     * out of the public fields to keep the undefined bits out of the developer's way.
2747     *
2748     * Flag to specify that the hidden status bar would like to be shown.
2749     */
2750    public static final int STATUS_BAR_UNHIDE = 0x10000000;
2751
2752    /**
2753     * @hide
2754     *
2755     * NOTE: This flag may only be used in subtreeSystemUiVisibility. It is masked
2756     * out of the public fields to keep the undefined bits out of the developer's way.
2757     *
2758     * Flag to specify that the hidden navigation bar would like to be shown.
2759     */
2760    public static final int NAVIGATION_BAR_UNHIDE = 0x20000000;
2761
2762    /**
2763     * @hide
2764     *
2765     * NOTE: This flag may only be used in subtreeSystemUiVisibility. It is masked
2766     * out of the public fields to keep the undefined bits out of the developer's way.
2767     *
2768     * Flag to specify that the status bar is displayed in translucent mode.
2769     */
2770    public static final int STATUS_BAR_TRANSLUCENT = 0x40000000;
2771
2772    /**
2773     * @hide
2774     *
2775     * NOTE: This flag may only be used in subtreeSystemUiVisibility. It is masked
2776     * out of the public fields to keep the undefined bits out of the developer's way.
2777     *
2778     * Flag to specify that the navigation bar is displayed in translucent mode.
2779     */
2780    public static final int NAVIGATION_BAR_TRANSLUCENT = 0x80000000;
2781
2782    /**
2783     * @hide
2784     *
2785     * Whether Recents is visible or not.
2786     */
2787    public static final int RECENT_APPS_VISIBLE = 0x00004000;
2788
2789    /**
2790     * @hide
2791     *
2792     * Makes system ui transparent.
2793     */
2794    public static final int SYSTEM_UI_TRANSPARENT = 0x00008000;
2795
2796    /**
2797     * @hide
2798     */
2799    public static final int PUBLIC_STATUS_BAR_VISIBILITY_MASK = 0x00003FFF;
2800
2801    /**
2802     * These are the system UI flags that can be cleared by events outside
2803     * of an application.  Currently this is just the ability to tap on the
2804     * screen while hiding the navigation bar to have it return.
2805     * @hide
2806     */
2807    public static final int SYSTEM_UI_CLEARABLE_FLAGS =
2808            SYSTEM_UI_FLAG_LOW_PROFILE | SYSTEM_UI_FLAG_HIDE_NAVIGATION
2809            | SYSTEM_UI_FLAG_FULLSCREEN;
2810
2811    /**
2812     * Flags that can impact the layout in relation to system UI.
2813     */
2814    public static final int SYSTEM_UI_LAYOUT_FLAGS =
2815            SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION
2816            | SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN;
2817
2818    /** @hide */
2819    @IntDef(flag = true,
2820            value = { FIND_VIEWS_WITH_TEXT, FIND_VIEWS_WITH_CONTENT_DESCRIPTION })
2821    @Retention(RetentionPolicy.SOURCE)
2822    public @interface FindViewFlags {}
2823
2824    /**
2825     * Find views that render the specified text.
2826     *
2827     * @see #findViewsWithText(ArrayList, CharSequence, int)
2828     */
2829    public static final int FIND_VIEWS_WITH_TEXT = 0x00000001;
2830
2831    /**
2832     * Find find views that contain the specified content description.
2833     *
2834     * @see #findViewsWithText(ArrayList, CharSequence, int)
2835     */
2836    public static final int FIND_VIEWS_WITH_CONTENT_DESCRIPTION = 0x00000002;
2837
2838    /**
2839     * Find views that contain {@link AccessibilityNodeProvider}. Such
2840     * a View is a root of virtual view hierarchy and may contain the searched
2841     * text. If this flag is set Views with providers are automatically
2842     * added and it is a responsibility of the client to call the APIs of
2843     * the provider to determine whether the virtual tree rooted at this View
2844     * contains the text, i.e. getting the list of {@link AccessibilityNodeInfo}s
2845     * representing the virtual views with this text.
2846     *
2847     * @see #findViewsWithText(ArrayList, CharSequence, int)
2848     *
2849     * @hide
2850     */
2851    public static final int FIND_VIEWS_WITH_ACCESSIBILITY_NODE_PROVIDERS = 0x00000004;
2852
2853    /**
2854     * The undefined cursor position.
2855     *
2856     * @hide
2857     */
2858    public static final int ACCESSIBILITY_CURSOR_POSITION_UNDEFINED = -1;
2859
2860    /**
2861     * Indicates that the screen has changed state and is now off.
2862     *
2863     * @see #onScreenStateChanged(int)
2864     */
2865    public static final int SCREEN_STATE_OFF = 0x0;
2866
2867    /**
2868     * Indicates that the screen has changed state and is now on.
2869     *
2870     * @see #onScreenStateChanged(int)
2871     */
2872    public static final int SCREEN_STATE_ON = 0x1;
2873
2874    /**
2875     * Indicates no axis of view scrolling.
2876     */
2877    public static final int SCROLL_AXIS_NONE = 0;
2878
2879    /**
2880     * Indicates scrolling along the horizontal axis.
2881     */
2882    public static final int SCROLL_AXIS_HORIZONTAL = 1 << 0;
2883
2884    /**
2885     * Indicates scrolling along the vertical axis.
2886     */
2887    public static final int SCROLL_AXIS_VERTICAL = 1 << 1;
2888
2889    /**
2890     * Controls the over-scroll mode for this view.
2891     * See {@link #overScrollBy(int, int, int, int, int, int, int, int, boolean)},
2892     * {@link #OVER_SCROLL_ALWAYS}, {@link #OVER_SCROLL_IF_CONTENT_SCROLLS},
2893     * and {@link #OVER_SCROLL_NEVER}.
2894     */
2895    private int mOverScrollMode;
2896
2897    /**
2898     * The parent this view is attached to.
2899     * {@hide}
2900     *
2901     * @see #getParent()
2902     */
2903    protected ViewParent mParent;
2904
2905    /**
2906     * {@hide}
2907     */
2908    AttachInfo mAttachInfo;
2909
2910    /**
2911     * {@hide}
2912     */
2913    @ViewDebug.ExportedProperty(flagMapping = {
2914        @ViewDebug.FlagToString(mask = PFLAG_FORCE_LAYOUT, equals = PFLAG_FORCE_LAYOUT,
2915                name = "FORCE_LAYOUT"),
2916        @ViewDebug.FlagToString(mask = PFLAG_LAYOUT_REQUIRED, equals = PFLAG_LAYOUT_REQUIRED,
2917                name = "LAYOUT_REQUIRED"),
2918        @ViewDebug.FlagToString(mask = PFLAG_DRAWING_CACHE_VALID, equals = PFLAG_DRAWING_CACHE_VALID,
2919            name = "DRAWING_CACHE_INVALID", outputIf = false),
2920        @ViewDebug.FlagToString(mask = PFLAG_DRAWN, equals = PFLAG_DRAWN, name = "DRAWN", outputIf = true),
2921        @ViewDebug.FlagToString(mask = PFLAG_DRAWN, equals = PFLAG_DRAWN, name = "NOT_DRAWN", outputIf = false),
2922        @ViewDebug.FlagToString(mask = PFLAG_DIRTY_MASK, equals = PFLAG_DIRTY_OPAQUE, name = "DIRTY_OPAQUE"),
2923        @ViewDebug.FlagToString(mask = PFLAG_DIRTY_MASK, equals = PFLAG_DIRTY, name = "DIRTY")
2924    }, formatToHexString = true)
2925    int mPrivateFlags;
2926    int mPrivateFlags2;
2927    int mPrivateFlags3;
2928
2929    /**
2930     * This view's request for the visibility of the status bar.
2931     * @hide
2932     */
2933    @ViewDebug.ExportedProperty(flagMapping = {
2934        @ViewDebug.FlagToString(mask = SYSTEM_UI_FLAG_LOW_PROFILE,
2935                                equals = SYSTEM_UI_FLAG_LOW_PROFILE,
2936                                name = "SYSTEM_UI_FLAG_LOW_PROFILE", outputIf = true),
2937        @ViewDebug.FlagToString(mask = SYSTEM_UI_FLAG_HIDE_NAVIGATION,
2938                                equals = SYSTEM_UI_FLAG_HIDE_NAVIGATION,
2939                                name = "SYSTEM_UI_FLAG_HIDE_NAVIGATION", outputIf = true),
2940        @ViewDebug.FlagToString(mask = PUBLIC_STATUS_BAR_VISIBILITY_MASK,
2941                                equals = SYSTEM_UI_FLAG_VISIBLE,
2942                                name = "SYSTEM_UI_FLAG_VISIBLE", outputIf = true)
2943    }, formatToHexString = true)
2944    int mSystemUiVisibility;
2945
2946    /**
2947     * Reference count for transient state.
2948     * @see #setHasTransientState(boolean)
2949     */
2950    int mTransientStateCount = 0;
2951
2952    /**
2953     * Count of how many windows this view has been attached to.
2954     */
2955    int mWindowAttachCount;
2956
2957    /**
2958     * The layout parameters associated with this view and used by the parent
2959     * {@link android.view.ViewGroup} to determine how this view should be
2960     * laid out.
2961     * {@hide}
2962     */
2963    protected ViewGroup.LayoutParams mLayoutParams;
2964
2965    /**
2966     * The view flags hold various views states.
2967     * {@hide}
2968     */
2969    @ViewDebug.ExportedProperty(formatToHexString = true)
2970    int mViewFlags;
2971
2972    static class TransformationInfo {
2973        /**
2974         * The transform matrix for the View. This transform is calculated internally
2975         * based on the translation, rotation, and scale properties.
2976         *
2977         * Do *not* use this variable directly; instead call getMatrix(), which will
2978         * load the value from the View's RenderNode.
2979         */
2980        private final Matrix mMatrix = new Matrix();
2981
2982        /**
2983         * The inverse transform matrix for the View. This transform is calculated
2984         * internally based on the translation, rotation, and scale properties.
2985         *
2986         * Do *not* use this variable directly; instead call getInverseMatrix(),
2987         * which will load the value from the View's RenderNode.
2988         */
2989        private Matrix mInverseMatrix;
2990
2991        /**
2992         * The opacity of the View. This is a value from 0 to 1, where 0 means
2993         * completely transparent and 1 means completely opaque.
2994         */
2995        @ViewDebug.ExportedProperty
2996        float mAlpha = 1f;
2997
2998        /**
2999         * The opacity of the view as manipulated by the Fade transition. This is a hidden
3000         * property only used by transitions, which is composited with the other alpha
3001         * values to calculate the final visual alpha value.
3002         */
3003        float mTransitionAlpha = 1f;
3004    }
3005
3006    TransformationInfo mTransformationInfo;
3007
3008    /**
3009     * Current clip bounds. to which all drawing of this view are constrained.
3010     */
3011    Rect mClipBounds = null;
3012
3013    private boolean mLastIsOpaque;
3014
3015    /**
3016     * The distance in pixels from the left edge of this view's parent
3017     * to the left edge of this view.
3018     * {@hide}
3019     */
3020    @ViewDebug.ExportedProperty(category = "layout")
3021    protected int mLeft;
3022    /**
3023     * The distance in pixels from the left edge of this view's parent
3024     * to the right edge of this view.
3025     * {@hide}
3026     */
3027    @ViewDebug.ExportedProperty(category = "layout")
3028    protected int mRight;
3029    /**
3030     * The distance in pixels from the top edge of this view's parent
3031     * to the top edge of this view.
3032     * {@hide}
3033     */
3034    @ViewDebug.ExportedProperty(category = "layout")
3035    protected int mTop;
3036    /**
3037     * The distance in pixels from the top edge of this view's parent
3038     * to the bottom edge of this view.
3039     * {@hide}
3040     */
3041    @ViewDebug.ExportedProperty(category = "layout")
3042    protected int mBottom;
3043
3044    /**
3045     * The offset, in pixels, by which the content of this view is scrolled
3046     * horizontally.
3047     * {@hide}
3048     */
3049    @ViewDebug.ExportedProperty(category = "scrolling")
3050    protected int mScrollX;
3051    /**
3052     * The offset, in pixels, by which the content of this view is scrolled
3053     * vertically.
3054     * {@hide}
3055     */
3056    @ViewDebug.ExportedProperty(category = "scrolling")
3057    protected int mScrollY;
3058
3059    /**
3060     * The left padding in pixels, that is the distance in pixels between the
3061     * left edge of this view and the left edge of its content.
3062     * {@hide}
3063     */
3064    @ViewDebug.ExportedProperty(category = "padding")
3065    protected int mPaddingLeft = 0;
3066    /**
3067     * The right padding in pixels, that is the distance in pixels between the
3068     * right edge of this view and the right edge of its content.
3069     * {@hide}
3070     */
3071    @ViewDebug.ExportedProperty(category = "padding")
3072    protected int mPaddingRight = 0;
3073    /**
3074     * The top padding in pixels, that is the distance in pixels between the
3075     * top edge of this view and the top edge of its content.
3076     * {@hide}
3077     */
3078    @ViewDebug.ExportedProperty(category = "padding")
3079    protected int mPaddingTop;
3080    /**
3081     * The bottom padding in pixels, that is the distance in pixels between the
3082     * bottom edge of this view and the bottom edge of its content.
3083     * {@hide}
3084     */
3085    @ViewDebug.ExportedProperty(category = "padding")
3086    protected int mPaddingBottom;
3087
3088    /**
3089     * The layout insets in pixels, that is the distance in pixels between the
3090     * visible edges of this view its bounds.
3091     */
3092    private Insets mLayoutInsets;
3093
3094    /**
3095     * Briefly describes the view and is primarily used for accessibility support.
3096     */
3097    private CharSequence mContentDescription;
3098
3099    /**
3100     * Specifies the id of a view for which this view serves as a label for
3101     * accessibility purposes.
3102     */
3103    private int mLabelForId = View.NO_ID;
3104
3105    /**
3106     * Predicate for matching labeled view id with its label for
3107     * accessibility purposes.
3108     */
3109    private MatchLabelForPredicate mMatchLabelForPredicate;
3110
3111    /**
3112     * Specifies a view before which this one is visited in accessibility traversal.
3113     */
3114    private int mAccessibilityTraversalBeforeId = NO_ID;
3115
3116    /**
3117     * Specifies a view after which this one is visited in accessibility traversal.
3118     */
3119    private int mAccessibilityTraversalAfterId = NO_ID;
3120
3121    /**
3122     * Predicate for matching a view by its id.
3123     */
3124    private MatchIdPredicate mMatchIdPredicate;
3125
3126    /**
3127     * Cache the paddingRight set by the user to append to the scrollbar's size.
3128     *
3129     * @hide
3130     */
3131    @ViewDebug.ExportedProperty(category = "padding")
3132    protected int mUserPaddingRight;
3133
3134    /**
3135     * Cache the paddingBottom set by the user to append to the scrollbar's size.
3136     *
3137     * @hide
3138     */
3139    @ViewDebug.ExportedProperty(category = "padding")
3140    protected int mUserPaddingBottom;
3141
3142    /**
3143     * Cache the paddingLeft set by the user to append to the scrollbar's size.
3144     *
3145     * @hide
3146     */
3147    @ViewDebug.ExportedProperty(category = "padding")
3148    protected int mUserPaddingLeft;
3149
3150    /**
3151     * Cache the paddingStart set by the user to append to the scrollbar's size.
3152     *
3153     */
3154    @ViewDebug.ExportedProperty(category = "padding")
3155    int mUserPaddingStart;
3156
3157    /**
3158     * Cache the paddingEnd set by the user to append to the scrollbar's size.
3159     *
3160     */
3161    @ViewDebug.ExportedProperty(category = "padding")
3162    int mUserPaddingEnd;
3163
3164    /**
3165     * Cache initial left padding.
3166     *
3167     * @hide
3168     */
3169    int mUserPaddingLeftInitial;
3170
3171    /**
3172     * Cache initial right padding.
3173     *
3174     * @hide
3175     */
3176    int mUserPaddingRightInitial;
3177
3178    /**
3179     * Default undefined padding
3180     */
3181    private static final int UNDEFINED_PADDING = Integer.MIN_VALUE;
3182
3183    /**
3184     * Cache if a left padding has been defined
3185     */
3186    private boolean mLeftPaddingDefined = false;
3187
3188    /**
3189     * Cache if a right padding has been defined
3190     */
3191    private boolean mRightPaddingDefined = false;
3192
3193    /**
3194     * @hide
3195     */
3196    int mOldWidthMeasureSpec = Integer.MIN_VALUE;
3197    /**
3198     * @hide
3199     */
3200    int mOldHeightMeasureSpec = Integer.MIN_VALUE;
3201
3202    private LongSparseLongArray mMeasureCache;
3203
3204    @ViewDebug.ExportedProperty(deepExport = true, prefix = "bg_")
3205    private Drawable mBackground;
3206    private TintInfo mBackgroundTint;
3207
3208    /**
3209     * RenderNode used for backgrounds.
3210     * <p>
3211     * When non-null and valid, this is expected to contain an up-to-date copy
3212     * of the background drawable. It is cleared on temporary detach, and reset
3213     * on cleanup.
3214     */
3215    private RenderNode mBackgroundRenderNode;
3216
3217    private int mBackgroundResource;
3218    private boolean mBackgroundSizeChanged;
3219
3220    private String mTransitionName;
3221
3222    private static class TintInfo {
3223        ColorStateList mTintList;
3224        PorterDuff.Mode mTintMode;
3225        boolean mHasTintMode;
3226        boolean mHasTintList;
3227    }
3228
3229    static class ListenerInfo {
3230        /**
3231         * Listener used to dispatch focus change events.
3232         * This field should be made private, so it is hidden from the SDK.
3233         * {@hide}
3234         */
3235        protected OnFocusChangeListener mOnFocusChangeListener;
3236
3237        /**
3238         * Listeners for layout change events.
3239         */
3240        private ArrayList<OnLayoutChangeListener> mOnLayoutChangeListeners;
3241
3242        protected OnScrollChangeListener mOnScrollChangeListener;
3243
3244        /**
3245         * Listeners for attach events.
3246         */
3247        private CopyOnWriteArrayList<OnAttachStateChangeListener> mOnAttachStateChangeListeners;
3248
3249        /**
3250         * Listener used to dispatch click events.
3251         * This field should be made private, so it is hidden from the SDK.
3252         * {@hide}
3253         */
3254        public OnClickListener mOnClickListener;
3255
3256        /**
3257         * Listener used to dispatch long click events.
3258         * This field should be made private, so it is hidden from the SDK.
3259         * {@hide}
3260         */
3261        protected OnLongClickListener mOnLongClickListener;
3262
3263        /**
3264         * Listener used to build the context menu.
3265         * This field should be made private, so it is hidden from the SDK.
3266         * {@hide}
3267         */
3268        protected OnCreateContextMenuListener mOnCreateContextMenuListener;
3269
3270        private OnKeyListener mOnKeyListener;
3271
3272        private OnTouchListener mOnTouchListener;
3273
3274        private OnHoverListener mOnHoverListener;
3275
3276        private OnGenericMotionListener mOnGenericMotionListener;
3277
3278        private OnDragListener mOnDragListener;
3279
3280        private OnSystemUiVisibilityChangeListener mOnSystemUiVisibilityChangeListener;
3281
3282        OnApplyWindowInsetsListener mOnApplyWindowInsetsListener;
3283    }
3284
3285    ListenerInfo mListenerInfo;
3286
3287    /**
3288     * The application environment this view lives in.
3289     * This field should be made private, so it is hidden from the SDK.
3290     * {@hide}
3291     */
3292    @ViewDebug.ExportedProperty(deepExport = true)
3293    protected Context mContext;
3294
3295    private final Resources mResources;
3296
3297    private ScrollabilityCache mScrollCache;
3298
3299    private int[] mDrawableState = null;
3300
3301    ViewOutlineProvider mOutlineProvider = ViewOutlineProvider.BACKGROUND;
3302
3303    /**
3304     * Animator that automatically runs based on state changes.
3305     */
3306    private StateListAnimator mStateListAnimator;
3307
3308    /**
3309     * When this view has focus and the next focus is {@link #FOCUS_LEFT},
3310     * the user may specify which view to go to next.
3311     */
3312    private int mNextFocusLeftId = View.NO_ID;
3313
3314    /**
3315     * When this view has focus and the next focus is {@link #FOCUS_RIGHT},
3316     * the user may specify which view to go to next.
3317     */
3318    private int mNextFocusRightId = View.NO_ID;
3319
3320    /**
3321     * When this view has focus and the next focus is {@link #FOCUS_UP},
3322     * the user may specify which view to go to next.
3323     */
3324    private int mNextFocusUpId = View.NO_ID;
3325
3326    /**
3327     * When this view has focus and the next focus is {@link #FOCUS_DOWN},
3328     * the user may specify which view to go to next.
3329     */
3330    private int mNextFocusDownId = View.NO_ID;
3331
3332    /**
3333     * When this view has focus and the next focus is {@link #FOCUS_FORWARD},
3334     * the user may specify which view to go to next.
3335     */
3336    int mNextFocusForwardId = View.NO_ID;
3337
3338    private CheckForLongPress mPendingCheckForLongPress;
3339    private CheckForTap mPendingCheckForTap = null;
3340    private PerformClick mPerformClick;
3341    private SendViewScrolledAccessibilityEvent mSendViewScrolledAccessibilityEvent;
3342
3343    private UnsetPressedState mUnsetPressedState;
3344
3345    /**
3346     * Whether the long press's action has been invoked.  The tap's action is invoked on the
3347     * up event while a long press is invoked as soon as the long press duration is reached, so
3348     * a long press could be performed before the tap is checked, in which case the tap's action
3349     * should not be invoked.
3350     */
3351    private boolean mHasPerformedLongPress;
3352
3353    /**
3354     * The minimum height of the view. We'll try our best to have the height
3355     * of this view to at least this amount.
3356     */
3357    @ViewDebug.ExportedProperty(category = "measurement")
3358    private int mMinHeight;
3359
3360    /**
3361     * The minimum width of the view. We'll try our best to have the width
3362     * of this view to at least this amount.
3363     */
3364    @ViewDebug.ExportedProperty(category = "measurement")
3365    private int mMinWidth;
3366
3367    /**
3368     * The delegate to handle touch events that are physically in this view
3369     * but should be handled by another view.
3370     */
3371    private TouchDelegate mTouchDelegate = null;
3372
3373    /**
3374     * Solid color to use as a background when creating the drawing cache. Enables
3375     * the cache to use 16 bit bitmaps instead of 32 bit.
3376     */
3377    private int mDrawingCacheBackgroundColor = 0;
3378
3379    /**
3380     * Special tree observer used when mAttachInfo is null.
3381     */
3382    private ViewTreeObserver mFloatingTreeObserver;
3383
3384    /**
3385     * Cache the touch slop from the context that created the view.
3386     */
3387    private int mTouchSlop;
3388
3389    /**
3390     * Object that handles automatic animation of view properties.
3391     */
3392    private ViewPropertyAnimator mAnimator = null;
3393
3394    /**
3395     * Flag indicating that a drag can cross window boundaries.  When
3396     * {@link #startDrag(ClipData, DragShadowBuilder, Object, int)} is called
3397     * with this flag set, all visible applications will be able to participate
3398     * in the drag operation and receive the dragged content.
3399     *
3400     * @hide
3401     */
3402    public static final int DRAG_FLAG_GLOBAL = 1;
3403
3404    /**
3405     * Vertical scroll factor cached by {@link #getVerticalScrollFactor}.
3406     */
3407    private float mVerticalScrollFactor;
3408
3409    /**
3410     * Position of the vertical scroll bar.
3411     */
3412    private int mVerticalScrollbarPosition;
3413
3414    /**
3415     * Position the scroll bar at the default position as determined by the system.
3416     */
3417    public static final int SCROLLBAR_POSITION_DEFAULT = 0;
3418
3419    /**
3420     * Position the scroll bar along the left edge.
3421     */
3422    public static final int SCROLLBAR_POSITION_LEFT = 1;
3423
3424    /**
3425     * Position the scroll bar along the right edge.
3426     */
3427    public static final int SCROLLBAR_POSITION_RIGHT = 2;
3428
3429    /**
3430     * Indicates that the view does not have a layer.
3431     *
3432     * @see #getLayerType()
3433     * @see #setLayerType(int, android.graphics.Paint)
3434     * @see #LAYER_TYPE_SOFTWARE
3435     * @see #LAYER_TYPE_HARDWARE
3436     */
3437    public static final int LAYER_TYPE_NONE = 0;
3438
3439    /**
3440     * <p>Indicates that the view has a software layer. A software layer is backed
3441     * by a bitmap and causes the view to be rendered using Android's software
3442     * rendering pipeline, even if hardware acceleration is enabled.</p>
3443     *
3444     * <p>Software layers have various usages:</p>
3445     * <p>When the application is not using hardware acceleration, a software layer
3446     * is useful to apply a specific color filter and/or blending mode and/or
3447     * translucency to a view and all its children.</p>
3448     * <p>When the application is using hardware acceleration, a software layer
3449     * is useful to render drawing primitives not supported by the hardware
3450     * accelerated pipeline. It can also be used to cache a complex view tree
3451     * into a texture and reduce the complexity of drawing operations. For instance,
3452     * when animating a complex view tree with a translation, a software layer can
3453     * be used to render the view tree only once.</p>
3454     * <p>Software layers should be avoided when the affected view tree updates
3455     * often. Every update will require to re-render the software layer, which can
3456     * potentially be slow (particularly when hardware acceleration is turned on
3457     * since the layer will have to be uploaded into a hardware texture after every
3458     * update.)</p>
3459     *
3460     * @see #getLayerType()
3461     * @see #setLayerType(int, android.graphics.Paint)
3462     * @see #LAYER_TYPE_NONE
3463     * @see #LAYER_TYPE_HARDWARE
3464     */
3465    public static final int LAYER_TYPE_SOFTWARE = 1;
3466
3467    /**
3468     * <p>Indicates that the view has a hardware layer. A hardware layer is backed
3469     * by a hardware specific texture (generally Frame Buffer Objects or FBO on
3470     * OpenGL hardware) and causes the view to be rendered using Android's hardware
3471     * rendering pipeline, but only if hardware acceleration is turned on for the
3472     * view hierarchy. When hardware acceleration is turned off, hardware layers
3473     * behave exactly as {@link #LAYER_TYPE_SOFTWARE software layers}.</p>
3474     *
3475     * <p>A hardware layer is useful to apply a specific color filter and/or
3476     * blending mode and/or translucency to a view and all its children.</p>
3477     * <p>A hardware layer can be used to cache a complex view tree into a
3478     * texture and reduce the complexity of drawing operations. For instance,
3479     * when animating a complex view tree with a translation, a hardware layer can
3480     * be used to render the view tree only once.</p>
3481     * <p>A hardware layer can also be used to increase the rendering quality when
3482     * rotation transformations are applied on a view. It can also be used to
3483     * prevent potential clipping issues when applying 3D transforms on a view.</p>
3484     *
3485     * @see #getLayerType()
3486     * @see #setLayerType(int, android.graphics.Paint)
3487     * @see #LAYER_TYPE_NONE
3488     * @see #LAYER_TYPE_SOFTWARE
3489     */
3490    public static final int LAYER_TYPE_HARDWARE = 2;
3491
3492    @ViewDebug.ExportedProperty(category = "drawing", mapping = {
3493            @ViewDebug.IntToString(from = LAYER_TYPE_NONE, to = "NONE"),
3494            @ViewDebug.IntToString(from = LAYER_TYPE_SOFTWARE, to = "SOFTWARE"),
3495            @ViewDebug.IntToString(from = LAYER_TYPE_HARDWARE, to = "HARDWARE")
3496    })
3497    int mLayerType = LAYER_TYPE_NONE;
3498    Paint mLayerPaint;
3499
3500    /**
3501     * Set to true when drawing cache is enabled and cannot be created.
3502     *
3503     * @hide
3504     */
3505    public boolean mCachingFailed;
3506    private Bitmap mDrawingCache;
3507    private Bitmap mUnscaledDrawingCache;
3508
3509    /**
3510     * RenderNode holding View properties, potentially holding a DisplayList of View content.
3511     * <p>
3512     * When non-null and valid, this is expected to contain an up-to-date copy
3513     * of the View content. Its DisplayList content is cleared on temporary detach and reset on
3514     * cleanup.
3515     */
3516    final RenderNode mRenderNode;
3517
3518    /**
3519     * Set to true when the view is sending hover accessibility events because it
3520     * is the innermost hovered view.
3521     */
3522    private boolean mSendingHoverAccessibilityEvents;
3523
3524    /**
3525     * Delegate for injecting accessibility functionality.
3526     */
3527    AccessibilityDelegate mAccessibilityDelegate;
3528
3529    /**
3530     * The view's overlay layer. Developers get a reference to the overlay via getOverlay()
3531     * and add/remove objects to/from the overlay directly through the Overlay methods.
3532     */
3533    ViewOverlay mOverlay;
3534
3535    /**
3536     * The currently active parent view for receiving delegated nested scrolling events.
3537     * This is set by {@link #startNestedScroll(int)} during a touch interaction and cleared
3538     * by {@link #stopNestedScroll()} at the same point where we clear
3539     * requestDisallowInterceptTouchEvent.
3540     */
3541    private ViewParent mNestedScrollingParent;
3542
3543    /**
3544     * Consistency verifier for debugging purposes.
3545     * @hide
3546     */
3547    protected final InputEventConsistencyVerifier mInputEventConsistencyVerifier =
3548            InputEventConsistencyVerifier.isInstrumentationEnabled() ?
3549                    new InputEventConsistencyVerifier(this, 0) : null;
3550
3551    private static final AtomicInteger sNextGeneratedId = new AtomicInteger(1);
3552
3553    private int[] mTempNestedScrollConsumed;
3554
3555    /**
3556     * An overlay is going to draw this View instead of being drawn as part of this
3557     * View's parent. mGhostView is the View in the Overlay that must be invalidated
3558     * when this view is invalidated.
3559     */
3560    GhostView mGhostView;
3561
3562    /**
3563     * Holds pairs of adjacent attribute data: attribute name followed by its value.
3564     * @hide
3565     */
3566    @ViewDebug.ExportedProperty(category = "attributes", hasAdjacentMapping = true)
3567    public String[] mAttributes;
3568
3569    /**
3570     * Maps a Resource id to its name.
3571     */
3572    private static SparseArray<String> mAttributeMap;
3573
3574    /**
3575     * Simple constructor to use when creating a view from code.
3576     *
3577     * @param context The Context the view is running in, through which it can
3578     *        access the current theme, resources, etc.
3579     */
3580    public View(Context context) {
3581        mContext = context;
3582        mResources = context != null ? context.getResources() : null;
3583        mViewFlags = SOUND_EFFECTS_ENABLED | HAPTIC_FEEDBACK_ENABLED;
3584        // Set some flags defaults
3585        mPrivateFlags2 =
3586                (LAYOUT_DIRECTION_DEFAULT << PFLAG2_LAYOUT_DIRECTION_MASK_SHIFT) |
3587                (TEXT_DIRECTION_DEFAULT << PFLAG2_TEXT_DIRECTION_MASK_SHIFT) |
3588                (PFLAG2_TEXT_DIRECTION_RESOLVED_DEFAULT) |
3589                (TEXT_ALIGNMENT_DEFAULT << PFLAG2_TEXT_ALIGNMENT_MASK_SHIFT) |
3590                (PFLAG2_TEXT_ALIGNMENT_RESOLVED_DEFAULT) |
3591                (IMPORTANT_FOR_ACCESSIBILITY_DEFAULT << PFLAG2_IMPORTANT_FOR_ACCESSIBILITY_SHIFT);
3592        mTouchSlop = ViewConfiguration.get(context).getScaledTouchSlop();
3593        setOverScrollMode(OVER_SCROLL_IF_CONTENT_SCROLLS);
3594        mUserPaddingStart = UNDEFINED_PADDING;
3595        mUserPaddingEnd = UNDEFINED_PADDING;
3596        mRenderNode = RenderNode.create(getClass().getName(), this);
3597
3598        if (!sCompatibilityDone && context != null) {
3599            final int targetSdkVersion = context.getApplicationInfo().targetSdkVersion;
3600
3601            // Older apps may need this compatibility hack for measurement.
3602            sUseBrokenMakeMeasureSpec = targetSdkVersion <= JELLY_BEAN_MR1;
3603
3604            // Older apps expect onMeasure() to always be called on a layout pass, regardless
3605            // of whether a layout was requested on that View.
3606            sIgnoreMeasureCache = targetSdkVersion < KITKAT;
3607
3608            sCompatibilityDone = true;
3609        }
3610    }
3611
3612    /**
3613     * Constructor that is called when inflating a view from XML. This is called
3614     * when a view is being constructed from an XML file, supplying attributes
3615     * that were specified in the XML file. This version uses a default style of
3616     * 0, so the only attribute values applied are those in the Context's Theme
3617     * and the given AttributeSet.
3618     *
3619     * <p>
3620     * The method onFinishInflate() will be called after all children have been
3621     * added.
3622     *
3623     * @param context The Context the view is running in, through which it can
3624     *        access the current theme, resources, etc.
3625     * @param attrs The attributes of the XML tag that is inflating the view.
3626     * @see #View(Context, AttributeSet, int)
3627     */
3628    public View(Context context, AttributeSet attrs) {
3629        this(context, attrs, 0);
3630    }
3631
3632    /**
3633     * Perform inflation from XML and apply a class-specific base style from a
3634     * theme attribute. This constructor of View allows subclasses to use their
3635     * own base style when they are inflating. For example, a Button class's
3636     * constructor would call this version of the super class constructor and
3637     * supply <code>R.attr.buttonStyle</code> for <var>defStyleAttr</var>; this
3638     * allows the theme's button style to modify all of the base view attributes
3639     * (in particular its background) as well as the Button class's attributes.
3640     *
3641     * @param context The Context the view is running in, through which it can
3642     *        access the current theme, resources, etc.
3643     * @param attrs The attributes of the XML tag that is inflating the view.
3644     * @param defStyleAttr An attribute in the current theme that contains a
3645     *        reference to a style resource that supplies default values for
3646     *        the view. Can be 0 to not look for defaults.
3647     * @see #View(Context, AttributeSet)
3648     */
3649    public View(Context context, AttributeSet attrs, int defStyleAttr) {
3650        this(context, attrs, defStyleAttr, 0);
3651    }
3652
3653    /**
3654     * Perform inflation from XML and apply a class-specific base style from a
3655     * theme attribute or style resource. This constructor of View allows
3656     * subclasses to use their own base style when they are inflating.
3657     * <p>
3658     * When determining the final value of a particular attribute, there are
3659     * four inputs that come into play:
3660     * <ol>
3661     * <li>Any attribute values in the given AttributeSet.
3662     * <li>The style resource specified in the AttributeSet (named "style").
3663     * <li>The default style specified by <var>defStyleAttr</var>.
3664     * <li>The default style specified by <var>defStyleRes</var>.
3665     * <li>The base values in this theme.
3666     * </ol>
3667     * <p>
3668     * Each of these inputs is considered in-order, with the first listed taking
3669     * precedence over the following ones. In other words, if in the
3670     * AttributeSet you have supplied <code>&lt;Button * textColor="#ff000000"&gt;</code>
3671     * , then the button's text will <em>always</em> be black, regardless of
3672     * what is specified in any of the styles.
3673     *
3674     * @param context The Context the view is running in, through which it can
3675     *        access the current theme, resources, etc.
3676     * @param attrs The attributes of the XML tag that is inflating the view.
3677     * @param defStyleAttr An attribute in the current theme that contains a
3678     *        reference to a style resource that supplies default values for
3679     *        the view. Can be 0 to not look for defaults.
3680     * @param defStyleRes A resource identifier of a style resource that
3681     *        supplies default values for the view, used only if
3682     *        defStyleAttr is 0 or can not be found in the theme. Can be 0
3683     *        to not look for defaults.
3684     * @see #View(Context, AttributeSet, int)
3685     */
3686    public View(Context context, AttributeSet attrs, int defStyleAttr, int defStyleRes) {
3687        this(context);
3688
3689        final TypedArray a = context.obtainStyledAttributes(
3690                attrs, com.android.internal.R.styleable.View, defStyleAttr, defStyleRes);
3691
3692        if (mDebugViewAttributes) {
3693            saveAttributeData(attrs, a);
3694        }
3695
3696        Drawable background = null;
3697
3698        int leftPadding = -1;
3699        int topPadding = -1;
3700        int rightPadding = -1;
3701        int bottomPadding = -1;
3702        int startPadding = UNDEFINED_PADDING;
3703        int endPadding = UNDEFINED_PADDING;
3704
3705        int padding = -1;
3706
3707        int viewFlagValues = 0;
3708        int viewFlagMasks = 0;
3709
3710        boolean setScrollContainer = false;
3711
3712        int x = 0;
3713        int y = 0;
3714
3715        float tx = 0;
3716        float ty = 0;
3717        float tz = 0;
3718        float elevation = 0;
3719        float rotation = 0;
3720        float rotationX = 0;
3721        float rotationY = 0;
3722        float sx = 1f;
3723        float sy = 1f;
3724        boolean transformSet = false;
3725
3726        int scrollbarStyle = SCROLLBARS_INSIDE_OVERLAY;
3727        int overScrollMode = mOverScrollMode;
3728        boolean initializeScrollbars = false;
3729
3730        boolean startPaddingDefined = false;
3731        boolean endPaddingDefined = false;
3732        boolean leftPaddingDefined = false;
3733        boolean rightPaddingDefined = false;
3734
3735        final int targetSdkVersion = context.getApplicationInfo().targetSdkVersion;
3736
3737        final int N = a.getIndexCount();
3738        for (int i = 0; i < N; i++) {
3739            int attr = a.getIndex(i);
3740            switch (attr) {
3741                case com.android.internal.R.styleable.View_background:
3742                    background = a.getDrawable(attr);
3743                    break;
3744                case com.android.internal.R.styleable.View_padding:
3745                    padding = a.getDimensionPixelSize(attr, -1);
3746                    mUserPaddingLeftInitial = padding;
3747                    mUserPaddingRightInitial = padding;
3748                    leftPaddingDefined = true;
3749                    rightPaddingDefined = true;
3750                    break;
3751                 case com.android.internal.R.styleable.View_paddingLeft:
3752                    leftPadding = a.getDimensionPixelSize(attr, -1);
3753                    mUserPaddingLeftInitial = leftPadding;
3754                    leftPaddingDefined = true;
3755                    break;
3756                case com.android.internal.R.styleable.View_paddingTop:
3757                    topPadding = a.getDimensionPixelSize(attr, -1);
3758                    break;
3759                case com.android.internal.R.styleable.View_paddingRight:
3760                    rightPadding = a.getDimensionPixelSize(attr, -1);
3761                    mUserPaddingRightInitial = rightPadding;
3762                    rightPaddingDefined = true;
3763                    break;
3764                case com.android.internal.R.styleable.View_paddingBottom:
3765                    bottomPadding = a.getDimensionPixelSize(attr, -1);
3766                    break;
3767                case com.android.internal.R.styleable.View_paddingStart:
3768                    startPadding = a.getDimensionPixelSize(attr, UNDEFINED_PADDING);
3769                    startPaddingDefined = (startPadding != UNDEFINED_PADDING);
3770                    break;
3771                case com.android.internal.R.styleable.View_paddingEnd:
3772                    endPadding = a.getDimensionPixelSize(attr, UNDEFINED_PADDING);
3773                    endPaddingDefined = (endPadding != UNDEFINED_PADDING);
3774                    break;
3775                case com.android.internal.R.styleable.View_scrollX:
3776                    x = a.getDimensionPixelOffset(attr, 0);
3777                    break;
3778                case com.android.internal.R.styleable.View_scrollY:
3779                    y = a.getDimensionPixelOffset(attr, 0);
3780                    break;
3781                case com.android.internal.R.styleable.View_alpha:
3782                    setAlpha(a.getFloat(attr, 1f));
3783                    break;
3784                case com.android.internal.R.styleable.View_transformPivotX:
3785                    setPivotX(a.getDimensionPixelOffset(attr, 0));
3786                    break;
3787                case com.android.internal.R.styleable.View_transformPivotY:
3788                    setPivotY(a.getDimensionPixelOffset(attr, 0));
3789                    break;
3790                case com.android.internal.R.styleable.View_translationX:
3791                    tx = a.getDimensionPixelOffset(attr, 0);
3792                    transformSet = true;
3793                    break;
3794                case com.android.internal.R.styleable.View_translationY:
3795                    ty = a.getDimensionPixelOffset(attr, 0);
3796                    transformSet = true;
3797                    break;
3798                case com.android.internal.R.styleable.View_translationZ:
3799                    tz = a.getDimensionPixelOffset(attr, 0);
3800                    transformSet = true;
3801                    break;
3802                case com.android.internal.R.styleable.View_elevation:
3803                    elevation = a.getDimensionPixelOffset(attr, 0);
3804                    transformSet = true;
3805                    break;
3806                case com.android.internal.R.styleable.View_rotation:
3807                    rotation = a.getFloat(attr, 0);
3808                    transformSet = true;
3809                    break;
3810                case com.android.internal.R.styleable.View_rotationX:
3811                    rotationX = a.getFloat(attr, 0);
3812                    transformSet = true;
3813                    break;
3814                case com.android.internal.R.styleable.View_rotationY:
3815                    rotationY = a.getFloat(attr, 0);
3816                    transformSet = true;
3817                    break;
3818                case com.android.internal.R.styleable.View_scaleX:
3819                    sx = a.getFloat(attr, 1f);
3820                    transformSet = true;
3821                    break;
3822                case com.android.internal.R.styleable.View_scaleY:
3823                    sy = a.getFloat(attr, 1f);
3824                    transformSet = true;
3825                    break;
3826                case com.android.internal.R.styleable.View_id:
3827                    mID = a.getResourceId(attr, NO_ID);
3828                    break;
3829                case com.android.internal.R.styleable.View_tag:
3830                    mTag = a.getText(attr);
3831                    break;
3832                case com.android.internal.R.styleable.View_fitsSystemWindows:
3833                    if (a.getBoolean(attr, false)) {
3834                        viewFlagValues |= FITS_SYSTEM_WINDOWS;
3835                        viewFlagMasks |= FITS_SYSTEM_WINDOWS;
3836                    }
3837                    break;
3838                case com.android.internal.R.styleable.View_focusable:
3839                    if (a.getBoolean(attr, false)) {
3840                        viewFlagValues |= FOCUSABLE;
3841                        viewFlagMasks |= FOCUSABLE_MASK;
3842                    }
3843                    break;
3844                case com.android.internal.R.styleable.View_focusableInTouchMode:
3845                    if (a.getBoolean(attr, false)) {
3846                        viewFlagValues |= FOCUSABLE_IN_TOUCH_MODE | FOCUSABLE;
3847                        viewFlagMasks |= FOCUSABLE_IN_TOUCH_MODE | FOCUSABLE_MASK;
3848                    }
3849                    break;
3850                case com.android.internal.R.styleable.View_clickable:
3851                    if (a.getBoolean(attr, false)) {
3852                        viewFlagValues |= CLICKABLE;
3853                        viewFlagMasks |= CLICKABLE;
3854                    }
3855                    break;
3856                case com.android.internal.R.styleable.View_longClickable:
3857                    if (a.getBoolean(attr, false)) {
3858                        viewFlagValues |= LONG_CLICKABLE;
3859                        viewFlagMasks |= LONG_CLICKABLE;
3860                    }
3861                    break;
3862                case com.android.internal.R.styleable.View_saveEnabled:
3863                    if (!a.getBoolean(attr, true)) {
3864                        viewFlagValues |= SAVE_DISABLED;
3865                        viewFlagMasks |= SAVE_DISABLED_MASK;
3866                    }
3867                    break;
3868                case com.android.internal.R.styleable.View_duplicateParentState:
3869                    if (a.getBoolean(attr, false)) {
3870                        viewFlagValues |= DUPLICATE_PARENT_STATE;
3871                        viewFlagMasks |= DUPLICATE_PARENT_STATE;
3872                    }
3873                    break;
3874                case com.android.internal.R.styleable.View_visibility:
3875                    final int visibility = a.getInt(attr, 0);
3876                    if (visibility != 0) {
3877                        viewFlagValues |= VISIBILITY_FLAGS[visibility];
3878                        viewFlagMasks |= VISIBILITY_MASK;
3879                    }
3880                    break;
3881                case com.android.internal.R.styleable.View_layoutDirection:
3882                    // Clear any layout direction flags (included resolved bits) already set
3883                    mPrivateFlags2 &=
3884                            ~(PFLAG2_LAYOUT_DIRECTION_MASK | PFLAG2_LAYOUT_DIRECTION_RESOLVED_MASK);
3885                    // Set the layout direction flags depending on the value of the attribute
3886                    final int layoutDirection = a.getInt(attr, -1);
3887                    final int value = (layoutDirection != -1) ?
3888                            LAYOUT_DIRECTION_FLAGS[layoutDirection] : LAYOUT_DIRECTION_DEFAULT;
3889                    mPrivateFlags2 |= (value << PFLAG2_LAYOUT_DIRECTION_MASK_SHIFT);
3890                    break;
3891                case com.android.internal.R.styleable.View_drawingCacheQuality:
3892                    final int cacheQuality = a.getInt(attr, 0);
3893                    if (cacheQuality != 0) {
3894                        viewFlagValues |= DRAWING_CACHE_QUALITY_FLAGS[cacheQuality];
3895                        viewFlagMasks |= DRAWING_CACHE_QUALITY_MASK;
3896                    }
3897                    break;
3898                case com.android.internal.R.styleable.View_contentDescription:
3899                    setContentDescription(a.getString(attr));
3900                    break;
3901                case com.android.internal.R.styleable.View_accessibilityTraversalBefore:
3902                    setAccessibilityTraversalBefore(a.getResourceId(attr, NO_ID));
3903                    break;
3904                case com.android.internal.R.styleable.View_accessibilityTraversalAfter:
3905                    setAccessibilityTraversalAfter(a.getResourceId(attr, NO_ID));
3906                    break;
3907                case com.android.internal.R.styleable.View_labelFor:
3908                    setLabelFor(a.getResourceId(attr, NO_ID));
3909                    break;
3910                case com.android.internal.R.styleable.View_soundEffectsEnabled:
3911                    if (!a.getBoolean(attr, true)) {
3912                        viewFlagValues &= ~SOUND_EFFECTS_ENABLED;
3913                        viewFlagMasks |= SOUND_EFFECTS_ENABLED;
3914                    }
3915                    break;
3916                case com.android.internal.R.styleable.View_hapticFeedbackEnabled:
3917                    if (!a.getBoolean(attr, true)) {
3918                        viewFlagValues &= ~HAPTIC_FEEDBACK_ENABLED;
3919                        viewFlagMasks |= HAPTIC_FEEDBACK_ENABLED;
3920                    }
3921                    break;
3922                case R.styleable.View_scrollbars:
3923                    final int scrollbars = a.getInt(attr, SCROLLBARS_NONE);
3924                    if (scrollbars != SCROLLBARS_NONE) {
3925                        viewFlagValues |= scrollbars;
3926                        viewFlagMasks |= SCROLLBARS_MASK;
3927                        initializeScrollbars = true;
3928                    }
3929                    break;
3930                //noinspection deprecation
3931                case R.styleable.View_fadingEdge:
3932                    if (targetSdkVersion >= ICE_CREAM_SANDWICH) {
3933                        // Ignore the attribute starting with ICS
3934                        break;
3935                    }
3936                    // With builds < ICS, fall through and apply fading edges
3937                case R.styleable.View_requiresFadingEdge:
3938                    final int fadingEdge = a.getInt(attr, FADING_EDGE_NONE);
3939                    if (fadingEdge != FADING_EDGE_NONE) {
3940                        viewFlagValues |= fadingEdge;
3941                        viewFlagMasks |= FADING_EDGE_MASK;
3942                        initializeFadingEdgeInternal(a);
3943                    }
3944                    break;
3945                case R.styleable.View_scrollbarStyle:
3946                    scrollbarStyle = a.getInt(attr, SCROLLBARS_INSIDE_OVERLAY);
3947                    if (scrollbarStyle != SCROLLBARS_INSIDE_OVERLAY) {
3948                        viewFlagValues |= scrollbarStyle & SCROLLBARS_STYLE_MASK;
3949                        viewFlagMasks |= SCROLLBARS_STYLE_MASK;
3950                    }
3951                    break;
3952                case R.styleable.View_isScrollContainer:
3953                    setScrollContainer = true;
3954                    if (a.getBoolean(attr, false)) {
3955                        setScrollContainer(true);
3956                    }
3957                    break;
3958                case com.android.internal.R.styleable.View_keepScreenOn:
3959                    if (a.getBoolean(attr, false)) {
3960                        viewFlagValues |= KEEP_SCREEN_ON;
3961                        viewFlagMasks |= KEEP_SCREEN_ON;
3962                    }
3963                    break;
3964                case R.styleable.View_filterTouchesWhenObscured:
3965                    if (a.getBoolean(attr, false)) {
3966                        viewFlagValues |= FILTER_TOUCHES_WHEN_OBSCURED;
3967                        viewFlagMasks |= FILTER_TOUCHES_WHEN_OBSCURED;
3968                    }
3969                    break;
3970                case R.styleable.View_nextFocusLeft:
3971                    mNextFocusLeftId = a.getResourceId(attr, View.NO_ID);
3972                    break;
3973                case R.styleable.View_nextFocusRight:
3974                    mNextFocusRightId = a.getResourceId(attr, View.NO_ID);
3975                    break;
3976                case R.styleable.View_nextFocusUp:
3977                    mNextFocusUpId = a.getResourceId(attr, View.NO_ID);
3978                    break;
3979                case R.styleable.View_nextFocusDown:
3980                    mNextFocusDownId = a.getResourceId(attr, View.NO_ID);
3981                    break;
3982                case R.styleable.View_nextFocusForward:
3983                    mNextFocusForwardId = a.getResourceId(attr, View.NO_ID);
3984                    break;
3985                case R.styleable.View_minWidth:
3986                    mMinWidth = a.getDimensionPixelSize(attr, 0);
3987                    break;
3988                case R.styleable.View_minHeight:
3989                    mMinHeight = a.getDimensionPixelSize(attr, 0);
3990                    break;
3991                case R.styleable.View_onClick:
3992                    if (context.isRestricted()) {
3993                        throw new IllegalStateException("The android:onClick attribute cannot "
3994                                + "be used within a restricted context");
3995                    }
3996
3997                    final String handlerName = a.getString(attr);
3998                    if (handlerName != null) {
3999                        setOnClickListener(new OnClickListener() {
4000                            private Method mHandler;
4001
4002                            public void onClick(View v) {
4003                                if (mHandler == null) {
4004                                    try {
4005                                        mHandler = getContext().getClass().getMethod(handlerName,
4006                                                View.class);
4007                                    } catch (NoSuchMethodException e) {
4008                                        int id = getId();
4009                                        String idText = id == NO_ID ? "" : " with id '"
4010                                                + getContext().getResources().getResourceEntryName(
4011                                                    id) + "'";
4012                                        throw new IllegalStateException("Could not find a method " +
4013                                                handlerName + "(View) in the activity "
4014                                                + getContext().getClass() + " for onClick handler"
4015                                                + " on view " + View.this.getClass() + idText, e);
4016                                    }
4017                                }
4018
4019                                try {
4020                                    mHandler.invoke(getContext(), View.this);
4021                                } catch (IllegalAccessException e) {
4022                                    throw new IllegalStateException("Could not execute non "
4023                                            + "public method of the activity", e);
4024                                } catch (InvocationTargetException e) {
4025                                    throw new IllegalStateException("Could not execute "
4026                                            + "method of the activity", e);
4027                                }
4028                            }
4029                        });
4030                    }
4031                    break;
4032                case R.styleable.View_overScrollMode:
4033                    overScrollMode = a.getInt(attr, OVER_SCROLL_IF_CONTENT_SCROLLS);
4034                    break;
4035                case R.styleable.View_verticalScrollbarPosition:
4036                    mVerticalScrollbarPosition = a.getInt(attr, SCROLLBAR_POSITION_DEFAULT);
4037                    break;
4038                case R.styleable.View_layerType:
4039                    setLayerType(a.getInt(attr, LAYER_TYPE_NONE), null);
4040                    break;
4041                case R.styleable.View_textDirection:
4042                    // Clear any text direction flag already set
4043                    mPrivateFlags2 &= ~PFLAG2_TEXT_DIRECTION_MASK;
4044                    // Set the text direction flags depending on the value of the attribute
4045                    final int textDirection = a.getInt(attr, -1);
4046                    if (textDirection != -1) {
4047                        mPrivateFlags2 |= PFLAG2_TEXT_DIRECTION_FLAGS[textDirection];
4048                    }
4049                    break;
4050                case R.styleable.View_textAlignment:
4051                    // Clear any text alignment flag already set
4052                    mPrivateFlags2 &= ~PFLAG2_TEXT_ALIGNMENT_MASK;
4053                    // Set the text alignment flag depending on the value of the attribute
4054                    final int textAlignment = a.getInt(attr, TEXT_ALIGNMENT_DEFAULT);
4055                    mPrivateFlags2 |= PFLAG2_TEXT_ALIGNMENT_FLAGS[textAlignment];
4056                    break;
4057                case R.styleable.View_importantForAccessibility:
4058                    setImportantForAccessibility(a.getInt(attr,
4059                            IMPORTANT_FOR_ACCESSIBILITY_DEFAULT));
4060                    break;
4061                case R.styleable.View_accessibilityLiveRegion:
4062                    setAccessibilityLiveRegion(a.getInt(attr, ACCESSIBILITY_LIVE_REGION_DEFAULT));
4063                    break;
4064                case R.styleable.View_transitionName:
4065                    setTransitionName(a.getString(attr));
4066                    break;
4067                case R.styleable.View_nestedScrollingEnabled:
4068                    setNestedScrollingEnabled(a.getBoolean(attr, false));
4069                    break;
4070                case R.styleable.View_stateListAnimator:
4071                    setStateListAnimator(AnimatorInflater.loadStateListAnimator(context,
4072                            a.getResourceId(attr, 0)));
4073                    break;
4074                case R.styleable.View_backgroundTint:
4075                    // This will get applied later during setBackground().
4076                    if (mBackgroundTint == null) {
4077                        mBackgroundTint = new TintInfo();
4078                    }
4079                    mBackgroundTint.mTintList = a.getColorStateList(
4080                            R.styleable.View_backgroundTint);
4081                    mBackgroundTint.mHasTintList = true;
4082                    break;
4083                case R.styleable.View_backgroundTintMode:
4084                    // This will get applied later during setBackground().
4085                    if (mBackgroundTint == null) {
4086                        mBackgroundTint = new TintInfo();
4087                    }
4088                    mBackgroundTint.mTintMode = Drawable.parseTintMode(a.getInt(
4089                            R.styleable.View_backgroundTintMode, -1), null);
4090                    mBackgroundTint.mHasTintMode = true;
4091                    break;
4092                case R.styleable.View_outlineProvider:
4093                    setOutlineProviderFromAttribute(a.getInt(R.styleable.View_outlineProvider,
4094                            PROVIDER_BACKGROUND));
4095                    break;
4096            }
4097        }
4098
4099        setOverScrollMode(overScrollMode);
4100
4101        // Cache start/end user padding as we cannot fully resolve padding here (we dont have yet
4102        // the resolved layout direction). Those cached values will be used later during padding
4103        // resolution.
4104        mUserPaddingStart = startPadding;
4105        mUserPaddingEnd = endPadding;
4106
4107        if (background != null) {
4108            setBackground(background);
4109        }
4110
4111        // setBackground above will record that padding is currently provided by the background.
4112        // If we have padding specified via xml, record that here instead and use it.
4113        mLeftPaddingDefined = leftPaddingDefined;
4114        mRightPaddingDefined = rightPaddingDefined;
4115
4116        if (padding >= 0) {
4117            leftPadding = padding;
4118            topPadding = padding;
4119            rightPadding = padding;
4120            bottomPadding = padding;
4121            mUserPaddingLeftInitial = padding;
4122            mUserPaddingRightInitial = padding;
4123        }
4124
4125        if (isRtlCompatibilityMode()) {
4126            // RTL compatibility mode: pre Jelly Bean MR1 case OR no RTL support case.
4127            // left / right padding are used if defined (meaning here nothing to do). If they are not
4128            // defined and start / end padding are defined (e.g. in Frameworks resources), then we use
4129            // start / end and resolve them as left / right (layout direction is not taken into account).
4130            // Padding from the background drawable is stored at this point in mUserPaddingLeftInitial
4131            // and mUserPaddingRightInitial) so drawable padding will be used as ultimate default if
4132            // defined.
4133            if (!mLeftPaddingDefined && startPaddingDefined) {
4134                leftPadding = startPadding;
4135            }
4136            mUserPaddingLeftInitial = (leftPadding >= 0) ? leftPadding : mUserPaddingLeftInitial;
4137            if (!mRightPaddingDefined && endPaddingDefined) {
4138                rightPadding = endPadding;
4139            }
4140            mUserPaddingRightInitial = (rightPadding >= 0) ? rightPadding : mUserPaddingRightInitial;
4141        } else {
4142            // Jelly Bean MR1 and after case: if start/end defined, they will override any left/right
4143            // values defined. Otherwise, left /right values are used.
4144            // Padding from the background drawable is stored at this point in mUserPaddingLeftInitial
4145            // and mUserPaddingRightInitial) so drawable padding will be used as ultimate default if
4146            // defined.
4147            final boolean hasRelativePadding = startPaddingDefined || endPaddingDefined;
4148
4149            if (mLeftPaddingDefined && !hasRelativePadding) {
4150                mUserPaddingLeftInitial = leftPadding;
4151            }
4152            if (mRightPaddingDefined && !hasRelativePadding) {
4153                mUserPaddingRightInitial = rightPadding;
4154            }
4155        }
4156
4157        internalSetPadding(
4158                mUserPaddingLeftInitial,
4159                topPadding >= 0 ? topPadding : mPaddingTop,
4160                mUserPaddingRightInitial,
4161                bottomPadding >= 0 ? bottomPadding : mPaddingBottom);
4162
4163        if (viewFlagMasks != 0) {
4164            setFlags(viewFlagValues, viewFlagMasks);
4165        }
4166
4167        if (initializeScrollbars) {
4168            initializeScrollbarsInternal(a);
4169        }
4170
4171        a.recycle();
4172
4173        // Needs to be called after mViewFlags is set
4174        if (scrollbarStyle != SCROLLBARS_INSIDE_OVERLAY) {
4175            recomputePadding();
4176        }
4177
4178        if (x != 0 || y != 0) {
4179            scrollTo(x, y);
4180        }
4181
4182        if (transformSet) {
4183            setTranslationX(tx);
4184            setTranslationY(ty);
4185            setTranslationZ(tz);
4186            setElevation(elevation);
4187            setRotation(rotation);
4188            setRotationX(rotationX);
4189            setRotationY(rotationY);
4190            setScaleX(sx);
4191            setScaleY(sy);
4192        }
4193
4194        if (!setScrollContainer && (viewFlagValues&SCROLLBARS_VERTICAL) != 0) {
4195            setScrollContainer(true);
4196        }
4197
4198        computeOpaqueFlags();
4199    }
4200
4201    /**
4202     * Non-public constructor for use in testing
4203     */
4204    View() {
4205        mResources = null;
4206        mRenderNode = RenderNode.create(getClass().getName(), this);
4207    }
4208
4209    private static SparseArray<String> getAttributeMap() {
4210        if (mAttributeMap == null) {
4211            mAttributeMap = new SparseArray<String>();
4212        }
4213        return mAttributeMap;
4214    }
4215
4216    private void saveAttributeData(AttributeSet attrs, TypedArray a) {
4217        int length = ((attrs == null ? 0 : attrs.getAttributeCount()) + a.getIndexCount()) * 2;
4218        mAttributes = new String[length];
4219
4220        int i = 0;
4221        if (attrs != null) {
4222            for (i = 0; i < attrs.getAttributeCount(); i += 2) {
4223                mAttributes[i] = attrs.getAttributeName(i);
4224                mAttributes[i + 1] = attrs.getAttributeValue(i);
4225            }
4226
4227        }
4228
4229        SparseArray<String> attributeMap = getAttributeMap();
4230        for (int j = 0; j < a.length(); ++j) {
4231            if (a.hasValue(j)) {
4232                try {
4233                    int resourceId = a.getResourceId(j, 0);
4234                    if (resourceId == 0) {
4235                        continue;
4236                    }
4237
4238                    String resourceName = attributeMap.get(resourceId);
4239                    if (resourceName == null) {
4240                        resourceName = a.getResources().getResourceName(resourceId);
4241                        attributeMap.put(resourceId, resourceName);
4242                    }
4243
4244                    mAttributes[i] = resourceName;
4245                    mAttributes[i + 1] = a.getText(j).toString();
4246                    i += 2;
4247                } catch (Resources.NotFoundException e) {
4248                    // if we can't get the resource name, we just ignore it
4249                }
4250            }
4251        }
4252    }
4253
4254    public String toString() {
4255        StringBuilder out = new StringBuilder(128);
4256        out.append(getClass().getName());
4257        out.append('{');
4258        out.append(Integer.toHexString(System.identityHashCode(this)));
4259        out.append(' ');
4260        switch (mViewFlags&VISIBILITY_MASK) {
4261            case VISIBLE: out.append('V'); break;
4262            case INVISIBLE: out.append('I'); break;
4263            case GONE: out.append('G'); break;
4264            default: out.append('.'); break;
4265        }
4266        out.append((mViewFlags&FOCUSABLE_MASK) == FOCUSABLE ? 'F' : '.');
4267        out.append((mViewFlags&ENABLED_MASK) == ENABLED ? 'E' : '.');
4268        out.append((mViewFlags&DRAW_MASK) == WILL_NOT_DRAW ? '.' : 'D');
4269        out.append((mViewFlags&SCROLLBARS_HORIZONTAL) != 0 ? 'H' : '.');
4270        out.append((mViewFlags&SCROLLBARS_VERTICAL) != 0 ? 'V' : '.');
4271        out.append((mViewFlags&CLICKABLE) != 0 ? 'C' : '.');
4272        out.append((mViewFlags&LONG_CLICKABLE) != 0 ? 'L' : '.');
4273        out.append(' ');
4274        out.append((mPrivateFlags&PFLAG_IS_ROOT_NAMESPACE) != 0 ? 'R' : '.');
4275        out.append((mPrivateFlags&PFLAG_FOCUSED) != 0 ? 'F' : '.');
4276        out.append((mPrivateFlags&PFLAG_SELECTED) != 0 ? 'S' : '.');
4277        if ((mPrivateFlags&PFLAG_PREPRESSED) != 0) {
4278            out.append('p');
4279        } else {
4280            out.append((mPrivateFlags&PFLAG_PRESSED) != 0 ? 'P' : '.');
4281        }
4282        out.append((mPrivateFlags&PFLAG_HOVERED) != 0 ? 'H' : '.');
4283        out.append((mPrivateFlags&PFLAG_ACTIVATED) != 0 ? 'A' : '.');
4284        out.append((mPrivateFlags&PFLAG_INVALIDATED) != 0 ? 'I' : '.');
4285        out.append((mPrivateFlags&PFLAG_DIRTY_MASK) != 0 ? 'D' : '.');
4286        out.append(' ');
4287        out.append(mLeft);
4288        out.append(',');
4289        out.append(mTop);
4290        out.append('-');
4291        out.append(mRight);
4292        out.append(',');
4293        out.append(mBottom);
4294        final int id = getId();
4295        if (id != NO_ID) {
4296            out.append(" #");
4297            out.append(Integer.toHexString(id));
4298            final Resources r = mResources;
4299            if (Resources.resourceHasPackage(id) && r != null) {
4300                try {
4301                    String pkgname;
4302                    switch (id&0xff000000) {
4303                        case 0x7f000000:
4304                            pkgname="app";
4305                            break;
4306                        case 0x01000000:
4307                            pkgname="android";
4308                            break;
4309                        default:
4310                            pkgname = r.getResourcePackageName(id);
4311                            break;
4312                    }
4313                    String typename = r.getResourceTypeName(id);
4314                    String entryname = r.getResourceEntryName(id);
4315                    out.append(" ");
4316                    out.append(pkgname);
4317                    out.append(":");
4318                    out.append(typename);
4319                    out.append("/");
4320                    out.append(entryname);
4321                } catch (Resources.NotFoundException e) {
4322                }
4323            }
4324        }
4325        out.append("}");
4326        return out.toString();
4327    }
4328
4329    /**
4330     * <p>
4331     * Initializes the fading edges from a given set of styled attributes. This
4332     * method should be called by subclasses that need fading edges and when an
4333     * instance of these subclasses is created programmatically rather than
4334     * being inflated from XML. This method is automatically called when the XML
4335     * is inflated.
4336     * </p>
4337     *
4338     * @param a the styled attributes set to initialize the fading edges from
4339     *
4340     * @removed
4341     */
4342    protected void initializeFadingEdge(TypedArray a) {
4343        // This method probably shouldn't have been included in the SDK to begin with.
4344        // It relies on 'a' having been initialized using an attribute filter array that is
4345        // not publicly available to the SDK. The old method has been renamed
4346        // to initializeFadingEdgeInternal and hidden for framework use only;
4347        // this one initializes using defaults to make it safe to call for apps.
4348
4349        TypedArray arr = mContext.obtainStyledAttributes(com.android.internal.R.styleable.View);
4350
4351        initializeFadingEdgeInternal(arr);
4352
4353        arr.recycle();
4354    }
4355
4356    /**
4357     * <p>
4358     * Initializes the fading edges from a given set of styled attributes. This
4359     * method should be called by subclasses that need fading edges and when an
4360     * instance of these subclasses is created programmatically rather than
4361     * being inflated from XML. This method is automatically called when the XML
4362     * is inflated.
4363     * </p>
4364     *
4365     * @param a the styled attributes set to initialize the fading edges from
4366     * @hide This is the real method; the public one is shimmed to be safe to call from apps.
4367     */
4368    protected void initializeFadingEdgeInternal(TypedArray a) {
4369        initScrollCache();
4370
4371        mScrollCache.fadingEdgeLength = a.getDimensionPixelSize(
4372                R.styleable.View_fadingEdgeLength,
4373                ViewConfiguration.get(mContext).getScaledFadingEdgeLength());
4374    }
4375
4376    /**
4377     * Returns the size of the vertical faded edges used to indicate that more
4378     * content in this view is visible.
4379     *
4380     * @return The size in pixels of the vertical faded edge or 0 if vertical
4381     *         faded edges are not enabled for this view.
4382     * @attr ref android.R.styleable#View_fadingEdgeLength
4383     */
4384    public int getVerticalFadingEdgeLength() {
4385        if (isVerticalFadingEdgeEnabled()) {
4386            ScrollabilityCache cache = mScrollCache;
4387            if (cache != null) {
4388                return cache.fadingEdgeLength;
4389            }
4390        }
4391        return 0;
4392    }
4393
4394    /**
4395     * Set the size of the faded edge used to indicate that more content in this
4396     * view is available.  Will not change whether the fading edge is enabled; use
4397     * {@link #setVerticalFadingEdgeEnabled(boolean)} or
4398     * {@link #setHorizontalFadingEdgeEnabled(boolean)} to enable the fading edge
4399     * for the vertical or horizontal fading edges.
4400     *
4401     * @param length The size in pixels of the faded edge used to indicate that more
4402     *        content in this view is visible.
4403     */
4404    public void setFadingEdgeLength(int length) {
4405        initScrollCache();
4406        mScrollCache.fadingEdgeLength = length;
4407    }
4408
4409    /**
4410     * Returns the size of the horizontal faded edges used to indicate that more
4411     * content in this view is visible.
4412     *
4413     * @return The size in pixels of the horizontal faded edge or 0 if horizontal
4414     *         faded edges are not enabled for this view.
4415     * @attr ref android.R.styleable#View_fadingEdgeLength
4416     */
4417    public int getHorizontalFadingEdgeLength() {
4418        if (isHorizontalFadingEdgeEnabled()) {
4419            ScrollabilityCache cache = mScrollCache;
4420            if (cache != null) {
4421                return cache.fadingEdgeLength;
4422            }
4423        }
4424        return 0;
4425    }
4426
4427    /**
4428     * Returns the width of the vertical scrollbar.
4429     *
4430     * @return The width in pixels of the vertical scrollbar or 0 if there
4431     *         is no vertical scrollbar.
4432     */
4433    public int getVerticalScrollbarWidth() {
4434        ScrollabilityCache cache = mScrollCache;
4435        if (cache != null) {
4436            ScrollBarDrawable scrollBar = cache.scrollBar;
4437            if (scrollBar != null) {
4438                int size = scrollBar.getSize(true);
4439                if (size <= 0) {
4440                    size = cache.scrollBarSize;
4441                }
4442                return size;
4443            }
4444            return 0;
4445        }
4446        return 0;
4447    }
4448
4449    /**
4450     * Returns the height of the horizontal scrollbar.
4451     *
4452     * @return The height in pixels of the horizontal scrollbar or 0 if
4453     *         there is no horizontal scrollbar.
4454     */
4455    protected int getHorizontalScrollbarHeight() {
4456        ScrollabilityCache cache = mScrollCache;
4457        if (cache != null) {
4458            ScrollBarDrawable scrollBar = cache.scrollBar;
4459            if (scrollBar != null) {
4460                int size = scrollBar.getSize(false);
4461                if (size <= 0) {
4462                    size = cache.scrollBarSize;
4463                }
4464                return size;
4465            }
4466            return 0;
4467        }
4468        return 0;
4469    }
4470
4471    /**
4472     * <p>
4473     * Initializes the scrollbars from a given set of styled attributes. This
4474     * method should be called by subclasses that need scrollbars and when an
4475     * instance of these subclasses is created programmatically rather than
4476     * being inflated from XML. This method is automatically called when the XML
4477     * is inflated.
4478     * </p>
4479     *
4480     * @param a the styled attributes set to initialize the scrollbars from
4481     *
4482     * @removed
4483     */
4484    protected void initializeScrollbars(TypedArray a) {
4485        // It's not safe to use this method from apps. The parameter 'a' must have been obtained
4486        // using the View filter array which is not available to the SDK. As such, internal
4487        // framework usage now uses initializeScrollbarsInternal and we grab a default
4488        // TypedArray with the right filter instead here.
4489        TypedArray arr = mContext.obtainStyledAttributes(com.android.internal.R.styleable.View);
4490
4491        initializeScrollbarsInternal(arr);
4492
4493        // We ignored the method parameter. Recycle the one we actually did use.
4494        arr.recycle();
4495    }
4496
4497    /**
4498     * <p>
4499     * Initializes the scrollbars from a given set of styled attributes. This
4500     * method should be called by subclasses that need scrollbars and when an
4501     * instance of these subclasses is created programmatically rather than
4502     * being inflated from XML. This method is automatically called when the XML
4503     * is inflated.
4504     * </p>
4505     *
4506     * @param a the styled attributes set to initialize the scrollbars from
4507     * @hide
4508     */
4509    protected void initializeScrollbarsInternal(TypedArray a) {
4510        initScrollCache();
4511
4512        final ScrollabilityCache scrollabilityCache = mScrollCache;
4513
4514        if (scrollabilityCache.scrollBar == null) {
4515            scrollabilityCache.scrollBar = new ScrollBarDrawable();
4516        }
4517
4518        final boolean fadeScrollbars = a.getBoolean(R.styleable.View_fadeScrollbars, true);
4519
4520        if (!fadeScrollbars) {
4521            scrollabilityCache.state = ScrollabilityCache.ON;
4522        }
4523        scrollabilityCache.fadeScrollBars = fadeScrollbars;
4524
4525
4526        scrollabilityCache.scrollBarFadeDuration = a.getInt(
4527                R.styleable.View_scrollbarFadeDuration, ViewConfiguration
4528                        .getScrollBarFadeDuration());
4529        scrollabilityCache.scrollBarDefaultDelayBeforeFade = a.getInt(
4530                R.styleable.View_scrollbarDefaultDelayBeforeFade,
4531                ViewConfiguration.getScrollDefaultDelay());
4532
4533
4534        scrollabilityCache.scrollBarSize = a.getDimensionPixelSize(
4535                com.android.internal.R.styleable.View_scrollbarSize,
4536                ViewConfiguration.get(mContext).getScaledScrollBarSize());
4537
4538        Drawable track = a.getDrawable(R.styleable.View_scrollbarTrackHorizontal);
4539        scrollabilityCache.scrollBar.setHorizontalTrackDrawable(track);
4540
4541        Drawable thumb = a.getDrawable(R.styleable.View_scrollbarThumbHorizontal);
4542        if (thumb != null) {
4543            scrollabilityCache.scrollBar.setHorizontalThumbDrawable(thumb);
4544        }
4545
4546        boolean alwaysDraw = a.getBoolean(R.styleable.View_scrollbarAlwaysDrawHorizontalTrack,
4547                false);
4548        if (alwaysDraw) {
4549            scrollabilityCache.scrollBar.setAlwaysDrawHorizontalTrack(true);
4550        }
4551
4552        track = a.getDrawable(R.styleable.View_scrollbarTrackVertical);
4553        scrollabilityCache.scrollBar.setVerticalTrackDrawable(track);
4554
4555        thumb = a.getDrawable(R.styleable.View_scrollbarThumbVertical);
4556        if (thumb != null) {
4557            scrollabilityCache.scrollBar.setVerticalThumbDrawable(thumb);
4558        }
4559
4560        alwaysDraw = a.getBoolean(R.styleable.View_scrollbarAlwaysDrawVerticalTrack,
4561                false);
4562        if (alwaysDraw) {
4563            scrollabilityCache.scrollBar.setAlwaysDrawVerticalTrack(true);
4564        }
4565
4566        // Apply layout direction to the new Drawables if needed
4567        final int layoutDirection = getLayoutDirection();
4568        if (track != null) {
4569            track.setLayoutDirection(layoutDirection);
4570        }
4571        if (thumb != null) {
4572            thumb.setLayoutDirection(layoutDirection);
4573        }
4574
4575        // Re-apply user/background padding so that scrollbar(s) get added
4576        resolvePadding();
4577    }
4578
4579    /**
4580     * <p>
4581     * Initalizes the scrollability cache if necessary.
4582     * </p>
4583     */
4584    private void initScrollCache() {
4585        if (mScrollCache == null) {
4586            mScrollCache = new ScrollabilityCache(ViewConfiguration.get(mContext), this);
4587        }
4588    }
4589
4590    private ScrollabilityCache getScrollCache() {
4591        initScrollCache();
4592        return mScrollCache;
4593    }
4594
4595    /**
4596     * Set the position of the vertical scroll bar. Should be one of
4597     * {@link #SCROLLBAR_POSITION_DEFAULT}, {@link #SCROLLBAR_POSITION_LEFT} or
4598     * {@link #SCROLLBAR_POSITION_RIGHT}.
4599     *
4600     * @param position Where the vertical scroll bar should be positioned.
4601     */
4602    public void setVerticalScrollbarPosition(int position) {
4603        if (mVerticalScrollbarPosition != position) {
4604            mVerticalScrollbarPosition = position;
4605            computeOpaqueFlags();
4606            resolvePadding();
4607        }
4608    }
4609
4610    /**
4611     * @return The position where the vertical scroll bar will show, if applicable.
4612     * @see #setVerticalScrollbarPosition(int)
4613     */
4614    public int getVerticalScrollbarPosition() {
4615        return mVerticalScrollbarPosition;
4616    }
4617
4618    ListenerInfo getListenerInfo() {
4619        if (mListenerInfo != null) {
4620            return mListenerInfo;
4621        }
4622        mListenerInfo = new ListenerInfo();
4623        return mListenerInfo;
4624    }
4625
4626    /**
4627     * Register a callback to be invoked when the scroll position of this view
4628     * changed.
4629     *
4630     * @param l The callback that will run.
4631     * @hide Only used internally.
4632     */
4633    public void setOnScrollChangeListener(OnScrollChangeListener l) {
4634        getListenerInfo().mOnScrollChangeListener = l;
4635    }
4636
4637    /**
4638     * Register a callback to be invoked when focus of this view changed.
4639     *
4640     * @param l The callback that will run.
4641     */
4642    public void setOnFocusChangeListener(OnFocusChangeListener l) {
4643        getListenerInfo().mOnFocusChangeListener = l;
4644    }
4645
4646    /**
4647     * Add a listener that will be called when the bounds of the view change due to
4648     * layout processing.
4649     *
4650     * @param listener The listener that will be called when layout bounds change.
4651     */
4652    public void addOnLayoutChangeListener(OnLayoutChangeListener listener) {
4653        ListenerInfo li = getListenerInfo();
4654        if (li.mOnLayoutChangeListeners == null) {
4655            li.mOnLayoutChangeListeners = new ArrayList<OnLayoutChangeListener>();
4656        }
4657        if (!li.mOnLayoutChangeListeners.contains(listener)) {
4658            li.mOnLayoutChangeListeners.add(listener);
4659        }
4660    }
4661
4662    /**
4663     * Remove a listener for layout changes.
4664     *
4665     * @param listener The listener for layout bounds change.
4666     */
4667    public void removeOnLayoutChangeListener(OnLayoutChangeListener listener) {
4668        ListenerInfo li = mListenerInfo;
4669        if (li == null || li.mOnLayoutChangeListeners == null) {
4670            return;
4671        }
4672        li.mOnLayoutChangeListeners.remove(listener);
4673    }
4674
4675    /**
4676     * Add a listener for attach state changes.
4677     *
4678     * This listener will be called whenever this view is attached or detached
4679     * from a window. Remove the listener using
4680     * {@link #removeOnAttachStateChangeListener(OnAttachStateChangeListener)}.
4681     *
4682     * @param listener Listener to attach
4683     * @see #removeOnAttachStateChangeListener(OnAttachStateChangeListener)
4684     */
4685    public void addOnAttachStateChangeListener(OnAttachStateChangeListener listener) {
4686        ListenerInfo li = getListenerInfo();
4687        if (li.mOnAttachStateChangeListeners == null) {
4688            li.mOnAttachStateChangeListeners
4689                    = new CopyOnWriteArrayList<OnAttachStateChangeListener>();
4690        }
4691        li.mOnAttachStateChangeListeners.add(listener);
4692    }
4693
4694    /**
4695     * Remove a listener for attach state changes. The listener will receive no further
4696     * notification of window attach/detach events.
4697     *
4698     * @param listener Listener to remove
4699     * @see #addOnAttachStateChangeListener(OnAttachStateChangeListener)
4700     */
4701    public void removeOnAttachStateChangeListener(OnAttachStateChangeListener listener) {
4702        ListenerInfo li = mListenerInfo;
4703        if (li == null || li.mOnAttachStateChangeListeners == null) {
4704            return;
4705        }
4706        li.mOnAttachStateChangeListeners.remove(listener);
4707    }
4708
4709    /**
4710     * Returns the focus-change callback registered for this view.
4711     *
4712     * @return The callback, or null if one is not registered.
4713     */
4714    public OnFocusChangeListener getOnFocusChangeListener() {
4715        ListenerInfo li = mListenerInfo;
4716        return li != null ? li.mOnFocusChangeListener : null;
4717    }
4718
4719    /**
4720     * Register a callback to be invoked when this view is clicked. If this view is not
4721     * clickable, it becomes clickable.
4722     *
4723     * @param l The callback that will run
4724     *
4725     * @see #setClickable(boolean)
4726     */
4727    public void setOnClickListener(OnClickListener l) {
4728        if (!isClickable()) {
4729            setClickable(true);
4730        }
4731        getListenerInfo().mOnClickListener = l;
4732    }
4733
4734    /**
4735     * Return whether this view has an attached OnClickListener.  Returns
4736     * true if there is a listener, false if there is none.
4737     */
4738    public boolean hasOnClickListeners() {
4739        ListenerInfo li = mListenerInfo;
4740        return (li != null && li.mOnClickListener != null);
4741    }
4742
4743    /**
4744     * Register a callback to be invoked when this view is clicked and held. If this view is not
4745     * long clickable, it becomes long clickable.
4746     *
4747     * @param l The callback that will run
4748     *
4749     * @see #setLongClickable(boolean)
4750     */
4751    public void setOnLongClickListener(OnLongClickListener l) {
4752        if (!isLongClickable()) {
4753            setLongClickable(true);
4754        }
4755        getListenerInfo().mOnLongClickListener = l;
4756    }
4757
4758    /**
4759     * Register a callback to be invoked when the context menu for this view is
4760     * being built. If this view is not long clickable, it becomes long clickable.
4761     *
4762     * @param l The callback that will run
4763     *
4764     */
4765    public void setOnCreateContextMenuListener(OnCreateContextMenuListener l) {
4766        if (!isLongClickable()) {
4767            setLongClickable(true);
4768        }
4769        getListenerInfo().mOnCreateContextMenuListener = l;
4770    }
4771
4772    /**
4773     * Call this view's OnClickListener, if it is defined.  Performs all normal
4774     * actions associated with clicking: reporting accessibility event, playing
4775     * a sound, etc.
4776     *
4777     * @return True there was an assigned OnClickListener that was called, false
4778     *         otherwise is returned.
4779     */
4780    public boolean performClick() {
4781        final boolean result;
4782        final ListenerInfo li = mListenerInfo;
4783        if (li != null && li.mOnClickListener != null) {
4784            playSoundEffect(SoundEffectConstants.CLICK);
4785            li.mOnClickListener.onClick(this);
4786            result = true;
4787        } else {
4788            result = false;
4789        }
4790
4791        sendAccessibilityEvent(AccessibilityEvent.TYPE_VIEW_CLICKED);
4792        return result;
4793    }
4794
4795    /**
4796     * Directly call any attached OnClickListener.  Unlike {@link #performClick()},
4797     * this only calls the listener, and does not do any associated clicking
4798     * actions like reporting an accessibility event.
4799     *
4800     * @return True there was an assigned OnClickListener that was called, false
4801     *         otherwise is returned.
4802     */
4803    public boolean callOnClick() {
4804        ListenerInfo li = mListenerInfo;
4805        if (li != null && li.mOnClickListener != null) {
4806            li.mOnClickListener.onClick(this);
4807            return true;
4808        }
4809        return false;
4810    }
4811
4812    /**
4813     * Call this view's OnLongClickListener, if it is defined. Invokes the context menu if the
4814     * OnLongClickListener did not consume the event.
4815     *
4816     * @return True if one of the above receivers consumed the event, false otherwise.
4817     */
4818    public boolean performLongClick() {
4819        sendAccessibilityEvent(AccessibilityEvent.TYPE_VIEW_LONG_CLICKED);
4820
4821        boolean handled = false;
4822        ListenerInfo li = mListenerInfo;
4823        if (li != null && li.mOnLongClickListener != null) {
4824            handled = li.mOnLongClickListener.onLongClick(View.this);
4825        }
4826        if (!handled) {
4827            handled = showContextMenu();
4828        }
4829        if (handled) {
4830            performHapticFeedback(HapticFeedbackConstants.LONG_PRESS);
4831        }
4832        return handled;
4833    }
4834
4835    /**
4836     * Performs button-related actions during a touch down event.
4837     *
4838     * @param event The event.
4839     * @return True if the down was consumed.
4840     *
4841     * @hide
4842     */
4843    protected boolean performButtonActionOnTouchDown(MotionEvent event) {
4844        if ((event.getButtonState() & MotionEvent.BUTTON_SECONDARY) != 0) {
4845            if (showContextMenu(event.getX(), event.getY(), event.getMetaState())) {
4846                return true;
4847            }
4848        }
4849        return false;
4850    }
4851
4852    /**
4853     * Bring up the context menu for this view.
4854     *
4855     * @return Whether a context menu was displayed.
4856     */
4857    public boolean showContextMenu() {
4858        return getParent().showContextMenuForChild(this);
4859    }
4860
4861    /**
4862     * Bring up the context menu for this view, referring to the item under the specified point.
4863     *
4864     * @param x The referenced x coordinate.
4865     * @param y The referenced y coordinate.
4866     * @param metaState The keyboard modifiers that were pressed.
4867     * @return Whether a context menu was displayed.
4868     *
4869     * @hide
4870     */
4871    public boolean showContextMenu(float x, float y, int metaState) {
4872        return showContextMenu();
4873    }
4874
4875    /**
4876     * Start an action mode.
4877     *
4878     * @param callback Callback that will control the lifecycle of the action mode
4879     * @return The new action mode if it is started, null otherwise
4880     *
4881     * @see ActionMode
4882     */
4883    public ActionMode startActionMode(ActionMode.Callback callback) {
4884        ViewParent parent = getParent();
4885        if (parent == null) return null;
4886        return parent.startActionModeForChild(this, callback);
4887    }
4888
4889    /**
4890     * Register a callback to be invoked when a hardware key is pressed in this view.
4891     * Key presses in software input methods will generally not trigger the methods of
4892     * this listener.
4893     * @param l the key listener to attach to this view
4894     */
4895    public void setOnKeyListener(OnKeyListener l) {
4896        getListenerInfo().mOnKeyListener = l;
4897    }
4898
4899    /**
4900     * Register a callback to be invoked when a touch event is sent to this view.
4901     * @param l the touch listener to attach to this view
4902     */
4903    public void setOnTouchListener(OnTouchListener l) {
4904        getListenerInfo().mOnTouchListener = l;
4905    }
4906
4907    /**
4908     * Register a callback to be invoked when a generic motion event is sent to this view.
4909     * @param l the generic motion listener to attach to this view
4910     */
4911    public void setOnGenericMotionListener(OnGenericMotionListener l) {
4912        getListenerInfo().mOnGenericMotionListener = l;
4913    }
4914
4915    /**
4916     * Register a callback to be invoked when a hover event is sent to this view.
4917     * @param l the hover listener to attach to this view
4918     */
4919    public void setOnHoverListener(OnHoverListener l) {
4920        getListenerInfo().mOnHoverListener = l;
4921    }
4922
4923    /**
4924     * Register a drag event listener callback object for this View. The parameter is
4925     * an implementation of {@link android.view.View.OnDragListener}. To send a drag event to a
4926     * View, the system calls the
4927     * {@link android.view.View.OnDragListener#onDrag(View,DragEvent)} method.
4928     * @param l An implementation of {@link android.view.View.OnDragListener}.
4929     */
4930    public void setOnDragListener(OnDragListener l) {
4931        getListenerInfo().mOnDragListener = l;
4932    }
4933
4934    /**
4935     * Give this view focus. This will cause
4936     * {@link #onFocusChanged(boolean, int, android.graphics.Rect)} to be called.
4937     *
4938     * Note: this does not check whether this {@link View} should get focus, it just
4939     * gives it focus no matter what.  It should only be called internally by framework
4940     * code that knows what it is doing, namely {@link #requestFocus(int, Rect)}.
4941     *
4942     * @param direction values are {@link View#FOCUS_UP}, {@link View#FOCUS_DOWN},
4943     *        {@link View#FOCUS_LEFT} or {@link View#FOCUS_RIGHT}. This is the direction which
4944     *        focus moved when requestFocus() is called. It may not always
4945     *        apply, in which case use the default View.FOCUS_DOWN.
4946     * @param previouslyFocusedRect The rectangle of the view that had focus
4947     *        prior in this View's coordinate system.
4948     */
4949    void handleFocusGainInternal(@FocusRealDirection int direction, Rect previouslyFocusedRect) {
4950        if (DBG) {
4951            System.out.println(this + " requestFocus()");
4952        }
4953
4954        if ((mPrivateFlags & PFLAG_FOCUSED) == 0) {
4955            mPrivateFlags |= PFLAG_FOCUSED;
4956
4957            View oldFocus = (mAttachInfo != null) ? getRootView().findFocus() : null;
4958
4959            if (mParent != null) {
4960                mParent.requestChildFocus(this, this);
4961            }
4962
4963            if (mAttachInfo != null) {
4964                mAttachInfo.mTreeObserver.dispatchOnGlobalFocusChange(oldFocus, this);
4965            }
4966
4967            onFocusChanged(true, direction, previouslyFocusedRect);
4968            refreshDrawableState();
4969        }
4970    }
4971
4972    /**
4973     * Populates <code>outRect</code> with the hotspot bounds. By default,
4974     * the hotspot bounds are identical to the screen bounds.
4975     *
4976     * @param outRect rect to populate with hotspot bounds
4977     * @hide Only for internal use by views and widgets.
4978     */
4979    public void getHotspotBounds(Rect outRect) {
4980        final Drawable background = getBackground();
4981        if (background != null) {
4982            background.getHotspotBounds(outRect);
4983        } else {
4984            getBoundsOnScreen(outRect);
4985        }
4986    }
4987
4988    /**
4989     * Request that a rectangle of this view be visible on the screen,
4990     * scrolling if necessary just enough.
4991     *
4992     * <p>A View should call this if it maintains some notion of which part
4993     * of its content is interesting.  For example, a text editing view
4994     * should call this when its cursor moves.
4995     *
4996     * @param rectangle The rectangle.
4997     * @return Whether any parent scrolled.
4998     */
4999    public boolean requestRectangleOnScreen(Rect rectangle) {
5000        return requestRectangleOnScreen(rectangle, false);
5001    }
5002
5003    /**
5004     * Request that a rectangle of this view be visible on the screen,
5005     * scrolling if necessary just enough.
5006     *
5007     * <p>A View should call this if it maintains some notion of which part
5008     * of its content is interesting.  For example, a text editing view
5009     * should call this when its cursor moves.
5010     *
5011     * <p>When <code>immediate</code> is set to true, scrolling will not be
5012     * animated.
5013     *
5014     * @param rectangle The rectangle.
5015     * @param immediate True to forbid animated scrolling, false otherwise
5016     * @return Whether any parent scrolled.
5017     */
5018    public boolean requestRectangleOnScreen(Rect rectangle, boolean immediate) {
5019        if (mParent == null) {
5020            return false;
5021        }
5022
5023        View child = this;
5024
5025        RectF position = (mAttachInfo != null) ? mAttachInfo.mTmpTransformRect : new RectF();
5026        position.set(rectangle);
5027
5028        ViewParent parent = mParent;
5029        boolean scrolled = false;
5030        while (parent != null) {
5031            rectangle.set((int) position.left, (int) position.top,
5032                    (int) position.right, (int) position.bottom);
5033
5034            scrolled |= parent.requestChildRectangleOnScreen(child,
5035                    rectangle, immediate);
5036
5037            if (!child.hasIdentityMatrix()) {
5038                child.getMatrix().mapRect(position);
5039            }
5040
5041            position.offset(child.mLeft, child.mTop);
5042
5043            if (!(parent instanceof View)) {
5044                break;
5045            }
5046
5047            View parentView = (View) parent;
5048
5049            position.offset(-parentView.getScrollX(), -parentView.getScrollY());
5050
5051            child = parentView;
5052            parent = child.getParent();
5053        }
5054
5055        return scrolled;
5056    }
5057
5058    /**
5059     * Called when this view wants to give up focus. If focus is cleared
5060     * {@link #onFocusChanged(boolean, int, android.graphics.Rect)} is called.
5061     * <p>
5062     * <strong>Note:</strong> When a View clears focus the framework is trying
5063     * to give focus to the first focusable View from the top. Hence, if this
5064     * View is the first from the top that can take focus, then all callbacks
5065     * related to clearing focus will be invoked after which the framework will
5066     * give focus to this view.
5067     * </p>
5068     */
5069    public void clearFocus() {
5070        if (DBG) {
5071            System.out.println(this + " clearFocus()");
5072        }
5073
5074        clearFocusInternal(null, true, true);
5075    }
5076
5077    /**
5078     * Clears focus from the view, optionally propagating the change up through
5079     * the parent hierarchy and requesting that the root view place new focus.
5080     *
5081     * @param propagate whether to propagate the change up through the parent
5082     *            hierarchy
5083     * @param refocus when propagate is true, specifies whether to request the
5084     *            root view place new focus
5085     */
5086    void clearFocusInternal(View focused, boolean propagate, boolean refocus) {
5087        if ((mPrivateFlags & PFLAG_FOCUSED) != 0) {
5088            mPrivateFlags &= ~PFLAG_FOCUSED;
5089
5090            if (propagate && mParent != null) {
5091                mParent.clearChildFocus(this);
5092            }
5093
5094            onFocusChanged(false, 0, null);
5095            refreshDrawableState();
5096
5097            if (propagate && (!refocus || !rootViewRequestFocus())) {
5098                notifyGlobalFocusCleared(this);
5099            }
5100        }
5101    }
5102
5103    void notifyGlobalFocusCleared(View oldFocus) {
5104        if (oldFocus != null && mAttachInfo != null) {
5105            mAttachInfo.mTreeObserver.dispatchOnGlobalFocusChange(oldFocus, null);
5106        }
5107    }
5108
5109    boolean rootViewRequestFocus() {
5110        final View root = getRootView();
5111        return root != null && root.requestFocus();
5112    }
5113
5114    /**
5115     * Called internally by the view system when a new view is getting focus.
5116     * This is what clears the old focus.
5117     * <p>
5118     * <b>NOTE:</b> The parent view's focused child must be updated manually
5119     * after calling this method. Otherwise, the view hierarchy may be left in
5120     * an inconstent state.
5121     */
5122    void unFocus(View focused) {
5123        if (DBG) {
5124            System.out.println(this + " unFocus()");
5125        }
5126
5127        clearFocusInternal(focused, false, false);
5128    }
5129
5130    /**
5131     * Returns true if this view has focus iteself, or is the ancestor of the
5132     * view that has focus.
5133     *
5134     * @return True if this view has or contains focus, false otherwise.
5135     */
5136    @ViewDebug.ExportedProperty(category = "focus")
5137    public boolean hasFocus() {
5138        return (mPrivateFlags & PFLAG_FOCUSED) != 0;
5139    }
5140
5141    /**
5142     * Returns true if this view is focusable or if it contains a reachable View
5143     * for which {@link #hasFocusable()} returns true. A "reachable hasFocusable()"
5144     * is a View whose parents do not block descendants focus.
5145     *
5146     * Only {@link #VISIBLE} views are considered focusable.
5147     *
5148     * @return True if the view is focusable or if the view contains a focusable
5149     *         View, false otherwise.
5150     *
5151     * @see ViewGroup#FOCUS_BLOCK_DESCENDANTS
5152     * @see ViewGroup#getTouchscreenBlocksFocus()
5153     */
5154    public boolean hasFocusable() {
5155        if (!isFocusableInTouchMode()) {
5156            for (ViewParent p = mParent; p instanceof ViewGroup; p = p.getParent()) {
5157                final ViewGroup g = (ViewGroup) p;
5158                if (g.shouldBlockFocusForTouchscreen()) {
5159                    return false;
5160                }
5161            }
5162        }
5163        return (mViewFlags & VISIBILITY_MASK) == VISIBLE && isFocusable();
5164    }
5165
5166    /**
5167     * Called by the view system when the focus state of this view changes.
5168     * When the focus change event is caused by directional navigation, direction
5169     * and previouslyFocusedRect provide insight into where the focus is coming from.
5170     * When overriding, be sure to call up through to the super class so that
5171     * the standard focus handling will occur.
5172     *
5173     * @param gainFocus True if the View has focus; false otherwise.
5174     * @param direction The direction focus has moved when requestFocus()
5175     *                  is called to give this view focus. Values are
5176     *                  {@link #FOCUS_UP}, {@link #FOCUS_DOWN}, {@link #FOCUS_LEFT},
5177     *                  {@link #FOCUS_RIGHT}, {@link #FOCUS_FORWARD}, or {@link #FOCUS_BACKWARD}.
5178     *                  It may not always apply, in which case use the default.
5179     * @param previouslyFocusedRect The rectangle, in this view's coordinate
5180     *        system, of the previously focused view.  If applicable, this will be
5181     *        passed in as finer grained information about where the focus is coming
5182     *        from (in addition to direction).  Will be <code>null</code> otherwise.
5183     */
5184    protected void onFocusChanged(boolean gainFocus, @FocusDirection int direction,
5185            @Nullable Rect previouslyFocusedRect) {
5186        if (gainFocus) {
5187            sendAccessibilityEvent(AccessibilityEvent.TYPE_VIEW_FOCUSED);
5188        } else {
5189            notifyViewAccessibilityStateChangedIfNeeded(
5190                    AccessibilityEvent.CONTENT_CHANGE_TYPE_UNDEFINED);
5191        }
5192
5193        InputMethodManager imm = InputMethodManager.peekInstance();
5194        if (!gainFocus) {
5195            if (isPressed()) {
5196                setPressed(false);
5197            }
5198            if (imm != null && mAttachInfo != null
5199                    && mAttachInfo.mHasWindowFocus) {
5200                imm.focusOut(this);
5201            }
5202            onFocusLost();
5203        } else if (imm != null && mAttachInfo != null
5204                && mAttachInfo.mHasWindowFocus) {
5205            imm.focusIn(this);
5206        }
5207
5208        invalidate(true);
5209        ListenerInfo li = mListenerInfo;
5210        if (li != null && li.mOnFocusChangeListener != null) {
5211            li.mOnFocusChangeListener.onFocusChange(this, gainFocus);
5212        }
5213
5214        if (mAttachInfo != null) {
5215            mAttachInfo.mKeyDispatchState.reset(this);
5216        }
5217    }
5218
5219    /**
5220     * Sends an accessibility event of the given type. If accessibility is
5221     * not enabled this method has no effect. The default implementation calls
5222     * {@link #onInitializeAccessibilityEvent(AccessibilityEvent)} first
5223     * to populate information about the event source (this View), then calls
5224     * {@link #dispatchPopulateAccessibilityEvent(AccessibilityEvent)} to
5225     * populate the text content of the event source including its descendants,
5226     * and last calls
5227     * {@link ViewParent#requestSendAccessibilityEvent(View, AccessibilityEvent)}
5228     * on its parent to resuest sending of the event to interested parties.
5229     * <p>
5230     * If an {@link AccessibilityDelegate} has been specified via calling
5231     * {@link #setAccessibilityDelegate(AccessibilityDelegate)} its
5232     * {@link AccessibilityDelegate#sendAccessibilityEvent(View, int)} is
5233     * responsible for handling this call.
5234     * </p>
5235     *
5236     * @param eventType The type of the event to send, as defined by several types from
5237     * {@link android.view.accessibility.AccessibilityEvent}, such as
5238     * {@link android.view.accessibility.AccessibilityEvent#TYPE_VIEW_CLICKED} or
5239     * {@link android.view.accessibility.AccessibilityEvent#TYPE_VIEW_HOVER_ENTER}.
5240     *
5241     * @see #onInitializeAccessibilityEvent(AccessibilityEvent)
5242     * @see #dispatchPopulateAccessibilityEvent(AccessibilityEvent)
5243     * @see ViewParent#requestSendAccessibilityEvent(View, AccessibilityEvent)
5244     * @see AccessibilityDelegate
5245     */
5246    public void sendAccessibilityEvent(int eventType) {
5247        if (mAccessibilityDelegate != null) {
5248            mAccessibilityDelegate.sendAccessibilityEvent(this, eventType);
5249        } else {
5250            sendAccessibilityEventInternal(eventType);
5251        }
5252    }
5253
5254    /**
5255     * Convenience method for sending a {@link AccessibilityEvent#TYPE_ANNOUNCEMENT}
5256     * {@link AccessibilityEvent} to make an announcement which is related to some
5257     * sort of a context change for which none of the events representing UI transitions
5258     * is a good fit. For example, announcing a new page in a book. If accessibility
5259     * is not enabled this method does nothing.
5260     *
5261     * @param text The announcement text.
5262     */
5263    public void announceForAccessibility(CharSequence text) {
5264        if (AccessibilityManager.getInstance(mContext).isEnabled() && mParent != null) {
5265            AccessibilityEvent event = AccessibilityEvent.obtain(
5266                    AccessibilityEvent.TYPE_ANNOUNCEMENT);
5267            onInitializeAccessibilityEvent(event);
5268            event.getText().add(text);
5269            event.setContentDescription(null);
5270            mParent.requestSendAccessibilityEvent(this, event);
5271        }
5272    }
5273
5274    /**
5275     * @see #sendAccessibilityEvent(int)
5276     *
5277     * Note: Called from the default {@link AccessibilityDelegate}.
5278     */
5279    void sendAccessibilityEventInternal(int eventType) {
5280        if (AccessibilityManager.getInstance(mContext).isEnabled()) {
5281            sendAccessibilityEventUnchecked(AccessibilityEvent.obtain(eventType));
5282        }
5283    }
5284
5285    /**
5286     * This method behaves exactly as {@link #sendAccessibilityEvent(int)} but
5287     * takes as an argument an empty {@link AccessibilityEvent} and does not
5288     * perform a check whether accessibility is enabled.
5289     * <p>
5290     * If an {@link AccessibilityDelegate} has been specified via calling
5291     * {@link #setAccessibilityDelegate(AccessibilityDelegate)} its
5292     * {@link AccessibilityDelegate#sendAccessibilityEventUnchecked(View, AccessibilityEvent)}
5293     * is responsible for handling this call.
5294     * </p>
5295     *
5296     * @param event The event to send.
5297     *
5298     * @see #sendAccessibilityEvent(int)
5299     */
5300    public void sendAccessibilityEventUnchecked(AccessibilityEvent event) {
5301        if (mAccessibilityDelegate != null) {
5302            mAccessibilityDelegate.sendAccessibilityEventUnchecked(this, event);
5303        } else {
5304            sendAccessibilityEventUncheckedInternal(event);
5305        }
5306    }
5307
5308    /**
5309     * @see #sendAccessibilityEventUnchecked(AccessibilityEvent)
5310     *
5311     * Note: Called from the default {@link AccessibilityDelegate}.
5312     */
5313    void sendAccessibilityEventUncheckedInternal(AccessibilityEvent event) {
5314        if (!isShown()) {
5315            return;
5316        }
5317        onInitializeAccessibilityEvent(event);
5318        // Only a subset of accessibility events populates text content.
5319        if ((event.getEventType() & POPULATING_ACCESSIBILITY_EVENT_TYPES) != 0) {
5320            dispatchPopulateAccessibilityEvent(event);
5321        }
5322        // In the beginning we called #isShown(), so we know that getParent() is not null.
5323        getParent().requestSendAccessibilityEvent(this, event);
5324    }
5325
5326    /**
5327     * Dispatches an {@link AccessibilityEvent} to the {@link View} first and then
5328     * to its children for adding their text content to the event. Note that the
5329     * event text is populated in a separate dispatch path since we add to the
5330     * event not only the text of the source but also the text of all its descendants.
5331     * A typical implementation will call
5332     * {@link #onPopulateAccessibilityEvent(AccessibilityEvent)} on the this view
5333     * and then call the {@link #dispatchPopulateAccessibilityEvent(AccessibilityEvent)}
5334     * on each child. Override this method if custom population of the event text
5335     * content is required.
5336     * <p>
5337     * If an {@link AccessibilityDelegate} has been specified via calling
5338     * {@link #setAccessibilityDelegate(AccessibilityDelegate)} its
5339     * {@link AccessibilityDelegate#dispatchPopulateAccessibilityEvent(View, AccessibilityEvent)}
5340     * is responsible for handling this call.
5341     * </p>
5342     * <p>
5343     * <em>Note:</em> Accessibility events of certain types are not dispatched for
5344     * populating the event text via this method. For details refer to {@link AccessibilityEvent}.
5345     * </p>
5346     *
5347     * @param event The event.
5348     *
5349     * @return True if the event population was completed.
5350     */
5351    public boolean dispatchPopulateAccessibilityEvent(AccessibilityEvent event) {
5352        if (mAccessibilityDelegate != null) {
5353            return mAccessibilityDelegate.dispatchPopulateAccessibilityEvent(this, event);
5354        } else {
5355            return dispatchPopulateAccessibilityEventInternal(event);
5356        }
5357    }
5358
5359    /**
5360     * @see #dispatchPopulateAccessibilityEvent(AccessibilityEvent)
5361     *
5362     * Note: Called from the default {@link AccessibilityDelegate}.
5363     */
5364    boolean dispatchPopulateAccessibilityEventInternal(AccessibilityEvent event) {
5365        onPopulateAccessibilityEvent(event);
5366        return false;
5367    }
5368
5369    /**
5370     * Called from {@link #dispatchPopulateAccessibilityEvent(AccessibilityEvent)}
5371     * giving a chance to this View to populate the accessibility event with its
5372     * text content. While this method is free to modify event
5373     * attributes other than text content, doing so should normally be performed in
5374     * {@link #onInitializeAccessibilityEvent(AccessibilityEvent)}.
5375     * <p>
5376     * Example: Adding formatted date string to an accessibility event in addition
5377     *          to the text added by the super implementation:
5378     * <pre> public void onPopulateAccessibilityEvent(AccessibilityEvent event) {
5379     *     super.onPopulateAccessibilityEvent(event);
5380     *     final int flags = DateUtils.FORMAT_SHOW_DATE | DateUtils.FORMAT_SHOW_WEEKDAY;
5381     *     String selectedDateUtterance = DateUtils.formatDateTime(mContext,
5382     *         mCurrentDate.getTimeInMillis(), flags);
5383     *     event.getText().add(selectedDateUtterance);
5384     * }</pre>
5385     * <p>
5386     * If an {@link AccessibilityDelegate} has been specified via calling
5387     * {@link #setAccessibilityDelegate(AccessibilityDelegate)} its
5388     * {@link AccessibilityDelegate#onPopulateAccessibilityEvent(View, AccessibilityEvent)}
5389     * is responsible for handling this call.
5390     * </p>
5391     * <p class="note"><strong>Note:</strong> Always call the super implementation before adding
5392     * information to the event, in case the default implementation has basic information to add.
5393     * </p>
5394     *
5395     * @param event The accessibility event which to populate.
5396     *
5397     * @see #sendAccessibilityEvent(int)
5398     * @see #dispatchPopulateAccessibilityEvent(AccessibilityEvent)
5399     */
5400    public void onPopulateAccessibilityEvent(AccessibilityEvent event) {
5401        if (mAccessibilityDelegate != null) {
5402            mAccessibilityDelegate.onPopulateAccessibilityEvent(this, event);
5403        } else {
5404            onPopulateAccessibilityEventInternal(event);
5405        }
5406    }
5407
5408    /**
5409     * @see #onPopulateAccessibilityEvent(AccessibilityEvent)
5410     *
5411     * Note: Called from the default {@link AccessibilityDelegate}.
5412     */
5413    void onPopulateAccessibilityEventInternal(AccessibilityEvent event) {
5414    }
5415
5416    /**
5417     * Initializes an {@link AccessibilityEvent} with information about
5418     * this View which is the event source. In other words, the source of
5419     * an accessibility event is the view whose state change triggered firing
5420     * the event.
5421     * <p>
5422     * Example: Setting the password property of an event in addition
5423     *          to properties set by the super implementation:
5424     * <pre> public void onInitializeAccessibilityEvent(AccessibilityEvent event) {
5425     *     super.onInitializeAccessibilityEvent(event);
5426     *     event.setPassword(true);
5427     * }</pre>
5428     * <p>
5429     * If an {@link AccessibilityDelegate} has been specified via calling
5430     * {@link #setAccessibilityDelegate(AccessibilityDelegate)} its
5431     * {@link AccessibilityDelegate#onInitializeAccessibilityEvent(View, AccessibilityEvent)}
5432     * is responsible for handling this call.
5433     * </p>
5434     * <p class="note"><strong>Note:</strong> Always call the super implementation before adding
5435     * information to the event, in case the default implementation has basic information to add.
5436     * </p>
5437     * @param event The event to initialize.
5438     *
5439     * @see #sendAccessibilityEvent(int)
5440     * @see #dispatchPopulateAccessibilityEvent(AccessibilityEvent)
5441     */
5442    public void onInitializeAccessibilityEvent(AccessibilityEvent event) {
5443        if (mAccessibilityDelegate != null) {
5444            mAccessibilityDelegate.onInitializeAccessibilityEvent(this, event);
5445        } else {
5446            onInitializeAccessibilityEventInternal(event);
5447        }
5448    }
5449
5450    /**
5451     * @see #onInitializeAccessibilityEvent(AccessibilityEvent)
5452     *
5453     * Note: Called from the default {@link AccessibilityDelegate}.
5454     */
5455    void onInitializeAccessibilityEventInternal(AccessibilityEvent event) {
5456        event.setSource(this);
5457        event.setClassName(View.class.getName());
5458        event.setPackageName(getContext().getPackageName());
5459        event.setEnabled(isEnabled());
5460        event.setContentDescription(mContentDescription);
5461
5462        switch (event.getEventType()) {
5463            case AccessibilityEvent.TYPE_VIEW_FOCUSED: {
5464                ArrayList<View> focusablesTempList = (mAttachInfo != null)
5465                        ? mAttachInfo.mTempArrayList : new ArrayList<View>();
5466                getRootView().addFocusables(focusablesTempList, View.FOCUS_FORWARD, FOCUSABLES_ALL);
5467                event.setItemCount(focusablesTempList.size());
5468                event.setCurrentItemIndex(focusablesTempList.indexOf(this));
5469                if (mAttachInfo != null) {
5470                    focusablesTempList.clear();
5471                }
5472            } break;
5473            case AccessibilityEvent.TYPE_VIEW_TEXT_SELECTION_CHANGED: {
5474                CharSequence text = getIterableTextForAccessibility();
5475                if (text != null && text.length() > 0) {
5476                    event.setFromIndex(getAccessibilitySelectionStart());
5477                    event.setToIndex(getAccessibilitySelectionEnd());
5478                    event.setItemCount(text.length());
5479                }
5480            } break;
5481        }
5482    }
5483
5484    /**
5485     * Returns an {@link AccessibilityNodeInfo} representing this view from the
5486     * point of view of an {@link android.accessibilityservice.AccessibilityService}.
5487     * This method is responsible for obtaining an accessibility node info from a
5488     * pool of reusable instances and calling
5489     * {@link #onInitializeAccessibilityNodeInfo(AccessibilityNodeInfo)} on this view to
5490     * initialize the former.
5491     * <p>
5492     * Note: The client is responsible for recycling the obtained instance by calling
5493     *       {@link AccessibilityNodeInfo#recycle()} to minimize object creation.
5494     * </p>
5495     *
5496     * @return A populated {@link AccessibilityNodeInfo}.
5497     *
5498     * @see AccessibilityNodeInfo
5499     */
5500    public AccessibilityNodeInfo createAccessibilityNodeInfo() {
5501        if (mAccessibilityDelegate != null) {
5502            return mAccessibilityDelegate.createAccessibilityNodeInfo(this);
5503        } else {
5504            return createAccessibilityNodeInfoInternal();
5505        }
5506    }
5507
5508    /**
5509     * @see #createAccessibilityNodeInfo()
5510     */
5511    AccessibilityNodeInfo createAccessibilityNodeInfoInternal() {
5512        AccessibilityNodeProvider provider = getAccessibilityNodeProvider();
5513        if (provider != null) {
5514            return provider.createAccessibilityNodeInfo(View.NO_ID);
5515        } else {
5516            AccessibilityNodeInfo info = AccessibilityNodeInfo.obtain(this);
5517            onInitializeAccessibilityNodeInfo(info);
5518            return info;
5519        }
5520    }
5521
5522    /**
5523     * Initializes an {@link AccessibilityNodeInfo} with information about this view.
5524     * The base implementation sets:
5525     * <ul>
5526     *   <li>{@link AccessibilityNodeInfo#setParent(View)},</li>
5527     *   <li>{@link AccessibilityNodeInfo#setBoundsInParent(Rect)},</li>
5528     *   <li>{@link AccessibilityNodeInfo#setBoundsInScreen(Rect)},</li>
5529     *   <li>{@link AccessibilityNodeInfo#setPackageName(CharSequence)},</li>
5530     *   <li>{@link AccessibilityNodeInfo#setClassName(CharSequence)},</li>
5531     *   <li>{@link AccessibilityNodeInfo#setContentDescription(CharSequence)},</li>
5532     *   <li>{@link AccessibilityNodeInfo#setEnabled(boolean)},</li>
5533     *   <li>{@link AccessibilityNodeInfo#setClickable(boolean)},</li>
5534     *   <li>{@link AccessibilityNodeInfo#setFocusable(boolean)},</li>
5535     *   <li>{@link AccessibilityNodeInfo#setFocused(boolean)},</li>
5536     *   <li>{@link AccessibilityNodeInfo#setLongClickable(boolean)},</li>
5537     *   <li>{@link AccessibilityNodeInfo#setSelected(boolean)},</li>
5538     * </ul>
5539     * <p>
5540     * Subclasses should override this method, call the super implementation,
5541     * and set additional attributes.
5542     * </p>
5543     * <p>
5544     * If an {@link AccessibilityDelegate} has been specified via calling
5545     * {@link #setAccessibilityDelegate(AccessibilityDelegate)} its
5546     * {@link AccessibilityDelegate#onInitializeAccessibilityNodeInfo(View, AccessibilityNodeInfo)}
5547     * is responsible for handling this call.
5548     * </p>
5549     *
5550     * @param info The instance to initialize.
5551     */
5552    public void onInitializeAccessibilityNodeInfo(AccessibilityNodeInfo info) {
5553        if (mAccessibilityDelegate != null) {
5554            mAccessibilityDelegate.onInitializeAccessibilityNodeInfo(this, info);
5555        } else {
5556            onInitializeAccessibilityNodeInfoInternal(info);
5557        }
5558    }
5559
5560    /**
5561     * Gets the location of this view in screen coordintates.
5562     *
5563     * @param outRect The output location
5564     * @hide
5565     */
5566    public void getBoundsOnScreen(Rect outRect) {
5567        if (mAttachInfo == null) {
5568            return;
5569        }
5570
5571        RectF position = mAttachInfo.mTmpTransformRect;
5572        position.set(0, 0, mRight - mLeft, mBottom - mTop);
5573
5574        if (!hasIdentityMatrix()) {
5575            getMatrix().mapRect(position);
5576        }
5577
5578        position.offset(mLeft, mTop);
5579
5580        ViewParent parent = mParent;
5581        while (parent instanceof View) {
5582            View parentView = (View) parent;
5583
5584            position.offset(-parentView.mScrollX, -parentView.mScrollY);
5585
5586            if (!parentView.hasIdentityMatrix()) {
5587                parentView.getMatrix().mapRect(position);
5588            }
5589
5590            position.offset(parentView.mLeft, parentView.mTop);
5591
5592            parent = parentView.mParent;
5593        }
5594
5595        if (parent instanceof ViewRootImpl) {
5596            ViewRootImpl viewRootImpl = (ViewRootImpl) parent;
5597            position.offset(0, -viewRootImpl.mCurScrollY);
5598        }
5599
5600        position.offset(mAttachInfo.mWindowLeft, mAttachInfo.mWindowTop);
5601
5602        outRect.set((int) (position.left + 0.5f), (int) (position.top + 0.5f),
5603                (int) (position.right + 0.5f), (int) (position.bottom + 0.5f));
5604    }
5605
5606    /**
5607     * @see #onInitializeAccessibilityNodeInfo(AccessibilityNodeInfo)
5608     *
5609     * Note: Called from the default {@link AccessibilityDelegate}.
5610     */
5611    void onInitializeAccessibilityNodeInfoInternal(AccessibilityNodeInfo info) {
5612        Rect bounds = mAttachInfo.mTmpInvalRect;
5613
5614        getDrawingRect(bounds);
5615        info.setBoundsInParent(bounds);
5616
5617        getBoundsOnScreen(bounds);
5618        info.setBoundsInScreen(bounds);
5619
5620        ViewParent parent = getParentForAccessibility();
5621        if (parent instanceof View) {
5622            info.setParent((View) parent);
5623        }
5624
5625        if (mID != View.NO_ID) {
5626            View rootView = getRootView();
5627            if (rootView == null) {
5628                rootView = this;
5629            }
5630
5631            View label = rootView.findLabelForView(this, mID);
5632            if (label != null) {
5633                info.setLabeledBy(label);
5634            }
5635
5636            if ((mAttachInfo.mAccessibilityFetchFlags
5637                    & AccessibilityNodeInfo.FLAG_REPORT_VIEW_IDS) != 0
5638                    && Resources.resourceHasPackage(mID)) {
5639                try {
5640                    String viewId = getResources().getResourceName(mID);
5641                    info.setViewIdResourceName(viewId);
5642                } catch (Resources.NotFoundException nfe) {
5643                    /* ignore */
5644                }
5645            }
5646        }
5647
5648        if (mLabelForId != View.NO_ID) {
5649            View rootView = getRootView();
5650            if (rootView == null) {
5651                rootView = this;
5652            }
5653            View labeled = rootView.findViewInsideOutShouldExist(this, mLabelForId);
5654            if (labeled != null) {
5655                info.setLabelFor(labeled);
5656            }
5657        }
5658
5659        if (mAccessibilityTraversalBeforeId != View.NO_ID) {
5660            View rootView = getRootView();
5661            if (rootView == null) {
5662                rootView = this;
5663            }
5664            View next = rootView.findViewInsideOutShouldExist(this,
5665                    mAccessibilityTraversalBeforeId);
5666            if (next != null) {
5667                info.setTraversalBefore(next);
5668            }
5669        }
5670
5671        if (mAccessibilityTraversalAfterId != View.NO_ID) {
5672            View rootView = getRootView();
5673            if (rootView == null) {
5674                rootView = this;
5675            }
5676            View next = rootView.findViewInsideOutShouldExist(this,
5677                    mAccessibilityTraversalAfterId);
5678            if (next != null) {
5679                info.setTraversalAfter(next);
5680            }
5681        }
5682
5683        info.setVisibleToUser(isVisibleToUser());
5684
5685        info.setPackageName(mContext.getPackageName());
5686        info.setClassName(View.class.getName());
5687        info.setContentDescription(getContentDescription());
5688
5689        info.setEnabled(isEnabled());
5690        info.setClickable(isClickable());
5691        info.setFocusable(isFocusable());
5692        info.setFocused(isFocused());
5693        info.setAccessibilityFocused(isAccessibilityFocused());
5694        info.setSelected(isSelected());
5695        info.setLongClickable(isLongClickable());
5696        info.setLiveRegion(getAccessibilityLiveRegion());
5697
5698        // TODO: These make sense only if we are in an AdapterView but all
5699        // views can be selected. Maybe from accessibility perspective
5700        // we should report as selectable view in an AdapterView.
5701        info.addAction(AccessibilityNodeInfo.ACTION_SELECT);
5702        info.addAction(AccessibilityNodeInfo.ACTION_CLEAR_SELECTION);
5703
5704        if (isFocusable()) {
5705            if (isFocused()) {
5706                info.addAction(AccessibilityNodeInfo.ACTION_CLEAR_FOCUS);
5707            } else {
5708                info.addAction(AccessibilityNodeInfo.ACTION_FOCUS);
5709            }
5710        }
5711
5712        if (!isAccessibilityFocused()) {
5713            info.addAction(AccessibilityNodeInfo.ACTION_ACCESSIBILITY_FOCUS);
5714        } else {
5715            info.addAction(AccessibilityNodeInfo.ACTION_CLEAR_ACCESSIBILITY_FOCUS);
5716        }
5717
5718        if (isClickable() && isEnabled()) {
5719            info.addAction(AccessibilityNodeInfo.ACTION_CLICK);
5720        }
5721
5722        if (isLongClickable() && isEnabled()) {
5723            info.addAction(AccessibilityNodeInfo.ACTION_LONG_CLICK);
5724        }
5725
5726        CharSequence text = getIterableTextForAccessibility();
5727        if (text != null && text.length() > 0) {
5728            info.setTextSelection(getAccessibilitySelectionStart(), getAccessibilitySelectionEnd());
5729
5730            info.addAction(AccessibilityNodeInfo.ACTION_SET_SELECTION);
5731            info.addAction(AccessibilityNodeInfo.ACTION_NEXT_AT_MOVEMENT_GRANULARITY);
5732            info.addAction(AccessibilityNodeInfo.ACTION_PREVIOUS_AT_MOVEMENT_GRANULARITY);
5733            info.setMovementGranularities(AccessibilityNodeInfo.MOVEMENT_GRANULARITY_CHARACTER
5734                    | AccessibilityNodeInfo.MOVEMENT_GRANULARITY_WORD
5735                    | AccessibilityNodeInfo.MOVEMENT_GRANULARITY_PARAGRAPH);
5736        }
5737    }
5738
5739    private View findLabelForView(View view, int labeledId) {
5740        if (mMatchLabelForPredicate == null) {
5741            mMatchLabelForPredicate = new MatchLabelForPredicate();
5742        }
5743        mMatchLabelForPredicate.mLabeledId = labeledId;
5744        return findViewByPredicateInsideOut(view, mMatchLabelForPredicate);
5745    }
5746
5747    /**
5748     * Computes whether this view is visible to the user. Such a view is
5749     * attached, visible, all its predecessors are visible, it is not clipped
5750     * entirely by its predecessors, and has an alpha greater than zero.
5751     *
5752     * @return Whether the view is visible on the screen.
5753     *
5754     * @hide
5755     */
5756    protected boolean isVisibleToUser() {
5757        return isVisibleToUser(null);
5758    }
5759
5760    /**
5761     * Computes whether the given portion of this view is visible to the user.
5762     * Such a view is attached, visible, all its predecessors are visible,
5763     * has an alpha greater than zero, and the specified portion is not
5764     * clipped entirely by its predecessors.
5765     *
5766     * @param boundInView the portion of the view to test; coordinates should be relative; may be
5767     *                    <code>null</code>, and the entire view will be tested in this case.
5768     *                    When <code>true</code> is returned by the function, the actual visible
5769     *                    region will be stored in this parameter; that is, if boundInView is fully
5770     *                    contained within the view, no modification will be made, otherwise regions
5771     *                    outside of the visible area of the view will be clipped.
5772     *
5773     * @return Whether the specified portion of the view is visible on the screen.
5774     *
5775     * @hide
5776     */
5777    protected boolean isVisibleToUser(Rect boundInView) {
5778        if (mAttachInfo != null) {
5779            // Attached to invisible window means this view is not visible.
5780            if (mAttachInfo.mWindowVisibility != View.VISIBLE) {
5781                return false;
5782            }
5783            // An invisible predecessor or one with alpha zero means
5784            // that this view is not visible to the user.
5785            Object current = this;
5786            while (current instanceof View) {
5787                View view = (View) current;
5788                // We have attach info so this view is attached and there is no
5789                // need to check whether we reach to ViewRootImpl on the way up.
5790                if (view.getAlpha() <= 0 || view.getTransitionAlpha() <= 0 ||
5791                        view.getVisibility() != VISIBLE) {
5792                    return false;
5793                }
5794                current = view.mParent;
5795            }
5796            // Check if the view is entirely covered by its predecessors.
5797            Rect visibleRect = mAttachInfo.mTmpInvalRect;
5798            Point offset = mAttachInfo.mPoint;
5799            if (!getGlobalVisibleRect(visibleRect, offset)) {
5800                return false;
5801            }
5802            // Check if the visible portion intersects the rectangle of interest.
5803            if (boundInView != null) {
5804                visibleRect.offset(-offset.x, -offset.y);
5805                return boundInView.intersect(visibleRect);
5806            }
5807            return true;
5808        }
5809        return false;
5810    }
5811
5812    /**
5813     * Computes a point on which a sequence of a down/up event can be sent to
5814     * trigger clicking this view. This method is for the exclusive use by the
5815     * accessibility layer to determine where to send a click event in explore
5816     * by touch mode.
5817     *
5818     * @param interactiveRegion The interactive portion of this window.
5819     * @param outPoint The point to populate.
5820     * @return True of such a point exists.
5821     */
5822    boolean computeClickPointInScreenForAccessibility(Region interactiveRegion,
5823            Point outPoint) {
5824        // Since the interactive portion of the view is a region but as a view
5825        // may have a transformation matrix which cannot be applied to a
5826        // region we compute the view bounds rectangle and all interactive
5827        // predecessor's and sibling's (siblings of predecessors included)
5828        // rectangles that intersect the view bounds. At the
5829        // end if the view was partially covered by another interactive
5830        // view we compute the view's interactive region and pick a point
5831        // on its boundary path as regions do not offer APIs to get inner
5832        // points. Note that the the code is optimized to fail early and
5833        // avoid unnecessary allocations plus computations.
5834
5835        // The current approach has edge cases that may produce false
5836        // positives or false negatives. For example, a portion of the
5837        // view may be covered by an interactive descendant of a
5838        // predecessor, which we do not compute. Also a view may be handling
5839        // raw touch events instead registering click listeners, which
5840        // we cannot compute. Despite these limitations this approach will
5841        // work most of the time and it is a huge improvement over just
5842        // blindly sending the down and up events in the center of the
5843        // view.
5844
5845        // Cannot click on an unattached view.
5846        if (mAttachInfo == null) {
5847            return false;
5848        }
5849
5850        // Attached to an invisible window means this view is not visible.
5851        if (mAttachInfo.mWindowVisibility != View.VISIBLE) {
5852            return false;
5853        }
5854
5855        RectF bounds = mAttachInfo.mTmpTransformRect;
5856        bounds.set(0, 0, getWidth(), getHeight());
5857        List<RectF> intersections = mAttachInfo.mTmpRectList;
5858        intersections.clear();
5859
5860        if (mParent instanceof ViewGroup) {
5861            ViewGroup parentGroup = (ViewGroup) mParent;
5862            if (!parentGroup.translateBoundsAndIntersectionsInWindowCoordinates(
5863                    this, bounds, intersections)) {
5864                intersections.clear();
5865                return false;
5866            }
5867        }
5868
5869        // Take into account the window location.
5870        final int dx = mAttachInfo.mWindowLeft;
5871        final int dy = mAttachInfo.mWindowTop;
5872        bounds.offset(dx, dy);
5873        offsetRects(intersections, dx, dy);
5874
5875        if (intersections.isEmpty() && interactiveRegion == null) {
5876            outPoint.set((int) bounds.centerX(), (int) bounds.centerY());
5877        } else {
5878            // This view is partially covered by other views, then compute
5879            // the not covered region and pick a point on its boundary.
5880            Region region = new Region();
5881            region.set((int) bounds.left, (int) bounds.top,
5882                    (int) bounds.right, (int) bounds.bottom);
5883
5884            final int intersectionCount = intersections.size();
5885            for (int i = intersectionCount - 1; i >= 0; i--) {
5886                RectF intersection = intersections.remove(i);
5887                region.op((int) intersection.left, (int) intersection.top,
5888                        (int) intersection.right, (int) intersection.bottom,
5889                        Region.Op.DIFFERENCE);
5890            }
5891
5892            // If the view is completely covered, done.
5893            if (region.isEmpty()) {
5894                return false;
5895            }
5896
5897            // Take into account the interactive portion of the window
5898            // as the rest is covered by other windows. If no such a region
5899            // then the whole window is interactive.
5900            if (interactiveRegion != null) {
5901                region.op(interactiveRegion, Region.Op.INTERSECT);
5902            }
5903
5904            // Take into account the window bounds.
5905            final View root = getRootView();
5906            if (root != null) {
5907                region.op(dx, dy, root.getWidth() + dx, root.getHeight() + dy, Region.Op.INTERSECT);
5908            }
5909
5910            // If the view is completely covered, done.
5911            if (region.isEmpty()) {
5912                return false;
5913            }
5914
5915            // Try a shortcut here.
5916            if (region.isRect()) {
5917                Rect regionBounds = mAttachInfo.mTmpInvalRect;
5918                region.getBounds(regionBounds);
5919                outPoint.set(regionBounds.centerX(), regionBounds.centerY());
5920                return true;
5921            }
5922
5923            // Get the a point on the region boundary path.
5924            Path path = region.getBoundaryPath();
5925            PathMeasure pathMeasure = new PathMeasure(path, false);
5926            final float[] coordinates = mAttachInfo.mTmpTransformLocation;
5927
5928            // Without loss of generality pick a point.
5929            final float point = pathMeasure.getLength() * 0.01f;
5930            if (!pathMeasure.getPosTan(point, coordinates, null)) {
5931                return false;
5932            }
5933
5934            outPoint.set(Math.round(coordinates[0]), Math.round(coordinates[1]));
5935        }
5936
5937        return true;
5938    }
5939
5940    /**
5941     * Adds the clickable rectangles withing the bounds of this view. They
5942     * may overlap. This method is intended for use only by the accessibility
5943     * layer.
5944     *
5945     * @param outRects List to which to add clickable areas.
5946     */
5947    void addClickableRectsForAccessibility(List<RectF> outRects) {
5948        if (isClickable() || isLongClickable()) {
5949            RectF bounds = new RectF();
5950            bounds.set(0, 0, getWidth(), getHeight());
5951            outRects.add(bounds);
5952        }
5953    }
5954
5955    static void offsetRects(List<RectF> rects, float offsetX, float offsetY) {
5956        final int rectCount = rects.size();
5957        for (int i = 0; i < rectCount; i++) {
5958            RectF intersection = rects.get(i);
5959            intersection.offset(offsetX, offsetY);
5960        }
5961    }
5962
5963    /**
5964     * Returns the delegate for implementing accessibility support via
5965     * composition. For more details see {@link AccessibilityDelegate}.
5966     *
5967     * @return The delegate, or null if none set.
5968     *
5969     * @hide
5970     */
5971    public AccessibilityDelegate getAccessibilityDelegate() {
5972        return mAccessibilityDelegate;
5973    }
5974
5975    /**
5976     * Sets a delegate for implementing accessibility support via composition as
5977     * opposed to inheritance. The delegate's primary use is for implementing
5978     * backwards compatible widgets. For more details see {@link AccessibilityDelegate}.
5979     *
5980     * @param delegate The delegate instance.
5981     *
5982     * @see AccessibilityDelegate
5983     */
5984    public void setAccessibilityDelegate(AccessibilityDelegate delegate) {
5985        mAccessibilityDelegate = delegate;
5986    }
5987
5988    /**
5989     * Gets the provider for managing a virtual view hierarchy rooted at this View
5990     * and reported to {@link android.accessibilityservice.AccessibilityService}s
5991     * that explore the window content.
5992     * <p>
5993     * If this method returns an instance, this instance is responsible for managing
5994     * {@link AccessibilityNodeInfo}s describing the virtual sub-tree rooted at this
5995     * View including the one representing the View itself. Similarly the returned
5996     * instance is responsible for performing accessibility actions on any virtual
5997     * view or the root view itself.
5998     * </p>
5999     * <p>
6000     * If an {@link AccessibilityDelegate} has been specified via calling
6001     * {@link #setAccessibilityDelegate(AccessibilityDelegate)} its
6002     * {@link AccessibilityDelegate#getAccessibilityNodeProvider(View)}
6003     * is responsible for handling this call.
6004     * </p>
6005     *
6006     * @return The provider.
6007     *
6008     * @see AccessibilityNodeProvider
6009     */
6010    public AccessibilityNodeProvider getAccessibilityNodeProvider() {
6011        if (mAccessibilityDelegate != null) {
6012            return mAccessibilityDelegate.getAccessibilityNodeProvider(this);
6013        } else {
6014            return null;
6015        }
6016    }
6017
6018    /**
6019     * Gets the unique identifier of this view on the screen for accessibility purposes.
6020     * If this {@link View} is not attached to any window, {@value #NO_ID} is returned.
6021     *
6022     * @return The view accessibility id.
6023     *
6024     * @hide
6025     */
6026    public int getAccessibilityViewId() {
6027        if (mAccessibilityViewId == NO_ID) {
6028            mAccessibilityViewId = sNextAccessibilityViewId++;
6029        }
6030        return mAccessibilityViewId;
6031    }
6032
6033    /**
6034     * Gets the unique identifier of the window in which this View reseides.
6035     *
6036     * @return The window accessibility id.
6037     *
6038     * @hide
6039     */
6040    public int getAccessibilityWindowId() {
6041        return mAttachInfo != null ? mAttachInfo.mAccessibilityWindowId
6042                : AccessibilityNodeInfo.UNDEFINED_ITEM_ID;
6043    }
6044
6045    /**
6046     * Gets the {@link View} description. It briefly describes the view and is
6047     * primarily used for accessibility support. Set this property to enable
6048     * better accessibility support for your application. This is especially
6049     * true for views that do not have textual representation (For example,
6050     * ImageButton).
6051     *
6052     * @return The content description.
6053     *
6054     * @attr ref android.R.styleable#View_contentDescription
6055     */
6056    @ViewDebug.ExportedProperty(category = "accessibility")
6057    public CharSequence getContentDescription() {
6058        return mContentDescription;
6059    }
6060
6061    /**
6062     * Sets the {@link View} description. It briefly describes the view and is
6063     * primarily used for accessibility support. Set this property to enable
6064     * better accessibility support for your application. This is especially
6065     * true for views that do not have textual representation (For example,
6066     * ImageButton).
6067     *
6068     * @param contentDescription The content description.
6069     *
6070     * @attr ref android.R.styleable#View_contentDescription
6071     */
6072    @RemotableViewMethod
6073    public void setContentDescription(CharSequence contentDescription) {
6074        if (mContentDescription == null) {
6075            if (contentDescription == null) {
6076                return;
6077            }
6078        } else if (mContentDescription.equals(contentDescription)) {
6079            return;
6080        }
6081        mContentDescription = contentDescription;
6082        final boolean nonEmptyDesc = contentDescription != null && contentDescription.length() > 0;
6083        if (nonEmptyDesc && getImportantForAccessibility() == IMPORTANT_FOR_ACCESSIBILITY_AUTO) {
6084            setImportantForAccessibility(IMPORTANT_FOR_ACCESSIBILITY_YES);
6085            notifySubtreeAccessibilityStateChangedIfNeeded();
6086        } else {
6087            notifyViewAccessibilityStateChangedIfNeeded(
6088                    AccessibilityEvent.CONTENT_CHANGE_TYPE_CONTENT_DESCRIPTION);
6089        }
6090    }
6091
6092    /**
6093     * Sets the id of a view before which this one is visited in accessibility traversal.
6094     * A screen-reader must visit the content of this view before the content of the one
6095     * it precedes. For example, if view B is set to be before view A, then a screen-reader
6096     * will traverse the entire content of B before traversing the entire content of A,
6097     * regardles of what traversal strategy it is using.
6098     * <p>
6099     * Views that do not have specified before/after relationships are traversed in order
6100     * determined by the screen-reader.
6101     * </p>
6102     * <p>
6103     * Setting that this view is before a view that is not important for accessibility
6104     * or if this view is not important for accessibility will have no effect as the
6105     * screen-reader is not aware of unimportant views.
6106     * </p>
6107     *
6108     * @param beforeId The id of a view this one precedes in accessibility traversal.
6109     *
6110     * @attr ref android.R.styleable#View_accessibilityTraversalBefore
6111     *
6112     * @see #setImportantForAccessibility(int)
6113     */
6114    @RemotableViewMethod
6115    public void setAccessibilityTraversalBefore(int beforeId) {
6116        if (mAccessibilityTraversalBeforeId == beforeId) {
6117            return;
6118        }
6119        mAccessibilityTraversalBeforeId = beforeId;
6120        notifyViewAccessibilityStateChangedIfNeeded(
6121                AccessibilityEvent.CONTENT_CHANGE_TYPE_UNDEFINED);
6122    }
6123
6124    /**
6125     * Gets the id of a view before which this one is visited in accessibility traversal.
6126     *
6127     * @return The id of a view this one precedes in accessibility traversal if
6128     *         specified, otherwise {@link #NO_ID}.
6129     *
6130     * @see #setAccessibilityTraversalBefore(int)
6131     */
6132    public int getAccessibilityTraversalBefore() {
6133        return mAccessibilityTraversalBeforeId;
6134    }
6135
6136    /**
6137     * Sets the id of a view after which this one is visited in accessibility traversal.
6138     * A screen-reader must visit the content of the other view before the content of this
6139     * one. For example, if view B is set to be after view A, then a screen-reader
6140     * will traverse the entire content of A before traversing the entire content of B,
6141     * regardles of what traversal strategy it is using.
6142     * <p>
6143     * Views that do not have specified before/after relationships are traversed in order
6144     * determined by the screen-reader.
6145     * </p>
6146     * <p>
6147     * Setting that this view is after a view that is not important for accessibility
6148     * or if this view is not important for accessibility will have no effect as the
6149     * screen-reader is not aware of unimportant views.
6150     * </p>
6151     *
6152     * @param afterId The id of a view this one succedees in accessibility traversal.
6153     *
6154     * @attr ref android.R.styleable#View_accessibilityTraversalAfter
6155     *
6156     * @see #setImportantForAccessibility(int)
6157     */
6158    @RemotableViewMethod
6159    public void setAccessibilityTraversalAfter(int afterId) {
6160        if (mAccessibilityTraversalAfterId == afterId) {
6161            return;
6162        }
6163        mAccessibilityTraversalAfterId = afterId;
6164        notifyViewAccessibilityStateChangedIfNeeded(
6165                AccessibilityEvent.CONTENT_CHANGE_TYPE_UNDEFINED);
6166    }
6167
6168    /**
6169     * Gets the id of a view after which this one is visited in accessibility traversal.
6170     *
6171     * @return The id of a view this one succeedes in accessibility traversal if
6172     *         specified, otherwise {@link #NO_ID}.
6173     *
6174     * @see #setAccessibilityTraversalAfter(int)
6175     */
6176    public int getAccessibilityTraversalAfter() {
6177        return mAccessibilityTraversalAfterId;
6178    }
6179
6180    /**
6181     * Gets the id of a view for which this view serves as a label for
6182     * accessibility purposes.
6183     *
6184     * @return The labeled view id.
6185     */
6186    @ViewDebug.ExportedProperty(category = "accessibility")
6187    public int getLabelFor() {
6188        return mLabelForId;
6189    }
6190
6191    /**
6192     * Sets the id of a view for which this view serves as a label for
6193     * accessibility purposes.
6194     *
6195     * @param id The labeled view id.
6196     */
6197    @RemotableViewMethod
6198    public void setLabelFor(int id) {
6199        if (mLabelForId == id) {
6200            return;
6201        }
6202        mLabelForId = id;
6203        if (mLabelForId != View.NO_ID
6204                && mID == View.NO_ID) {
6205            mID = generateViewId();
6206        }
6207        notifyViewAccessibilityStateChangedIfNeeded(
6208                AccessibilityEvent.CONTENT_CHANGE_TYPE_UNDEFINED);
6209    }
6210
6211    /**
6212     * Invoked whenever this view loses focus, either by losing window focus or by losing
6213     * focus within its window. This method can be used to clear any state tied to the
6214     * focus. For instance, if a button is held pressed with the trackball and the window
6215     * loses focus, this method can be used to cancel the press.
6216     *
6217     * Subclasses of View overriding this method should always call super.onFocusLost().
6218     *
6219     * @see #onFocusChanged(boolean, int, android.graphics.Rect)
6220     * @see #onWindowFocusChanged(boolean)
6221     *
6222     * @hide pending API council approval
6223     */
6224    protected void onFocusLost() {
6225        resetPressedState();
6226    }
6227
6228    private void resetPressedState() {
6229        if ((mViewFlags & ENABLED_MASK) == DISABLED) {
6230            return;
6231        }
6232
6233        if (isPressed()) {
6234            setPressed(false);
6235
6236            if (!mHasPerformedLongPress) {
6237                removeLongPressCallback();
6238            }
6239        }
6240    }
6241
6242    /**
6243     * Returns true if this view has focus
6244     *
6245     * @return True if this view has focus, false otherwise.
6246     */
6247    @ViewDebug.ExportedProperty(category = "focus")
6248    public boolean isFocused() {
6249        return (mPrivateFlags & PFLAG_FOCUSED) != 0;
6250    }
6251
6252    /**
6253     * Find the view in the hierarchy rooted at this view that currently has
6254     * focus.
6255     *
6256     * @return The view that currently has focus, or null if no focused view can
6257     *         be found.
6258     */
6259    public View findFocus() {
6260        return (mPrivateFlags & PFLAG_FOCUSED) != 0 ? this : null;
6261    }
6262
6263    /**
6264     * Indicates whether this view is one of the set of scrollable containers in
6265     * its window.
6266     *
6267     * @return whether this view is one of the set of scrollable containers in
6268     * its window
6269     *
6270     * @attr ref android.R.styleable#View_isScrollContainer
6271     */
6272    public boolean isScrollContainer() {
6273        return (mPrivateFlags & PFLAG_SCROLL_CONTAINER_ADDED) != 0;
6274    }
6275
6276    /**
6277     * Change whether this view is one of the set of scrollable containers in
6278     * its window.  This will be used to determine whether the window can
6279     * resize or must pan when a soft input area is open -- scrollable
6280     * containers allow the window to use resize mode since the container
6281     * will appropriately shrink.
6282     *
6283     * @attr ref android.R.styleable#View_isScrollContainer
6284     */
6285    public void setScrollContainer(boolean isScrollContainer) {
6286        if (isScrollContainer) {
6287            if (mAttachInfo != null && (mPrivateFlags&PFLAG_SCROLL_CONTAINER_ADDED) == 0) {
6288                mAttachInfo.mScrollContainers.add(this);
6289                mPrivateFlags |= PFLAG_SCROLL_CONTAINER_ADDED;
6290            }
6291            mPrivateFlags |= PFLAG_SCROLL_CONTAINER;
6292        } else {
6293            if ((mPrivateFlags&PFLAG_SCROLL_CONTAINER_ADDED) != 0) {
6294                mAttachInfo.mScrollContainers.remove(this);
6295            }
6296            mPrivateFlags &= ~(PFLAG_SCROLL_CONTAINER|PFLAG_SCROLL_CONTAINER_ADDED);
6297        }
6298    }
6299
6300    /**
6301     * Returns the quality of the drawing cache.
6302     *
6303     * @return One of {@link #DRAWING_CACHE_QUALITY_AUTO},
6304     *         {@link #DRAWING_CACHE_QUALITY_LOW}, or {@link #DRAWING_CACHE_QUALITY_HIGH}
6305     *
6306     * @see #setDrawingCacheQuality(int)
6307     * @see #setDrawingCacheEnabled(boolean)
6308     * @see #isDrawingCacheEnabled()
6309     *
6310     * @attr ref android.R.styleable#View_drawingCacheQuality
6311     */
6312    @DrawingCacheQuality
6313    public int getDrawingCacheQuality() {
6314        return mViewFlags & DRAWING_CACHE_QUALITY_MASK;
6315    }
6316
6317    /**
6318     * Set the drawing cache quality of this view. This value is used only when the
6319     * drawing cache is enabled
6320     *
6321     * @param quality One of {@link #DRAWING_CACHE_QUALITY_AUTO},
6322     *        {@link #DRAWING_CACHE_QUALITY_LOW}, or {@link #DRAWING_CACHE_QUALITY_HIGH}
6323     *
6324     * @see #getDrawingCacheQuality()
6325     * @see #setDrawingCacheEnabled(boolean)
6326     * @see #isDrawingCacheEnabled()
6327     *
6328     * @attr ref android.R.styleable#View_drawingCacheQuality
6329     */
6330    public void setDrawingCacheQuality(@DrawingCacheQuality int quality) {
6331        setFlags(quality, DRAWING_CACHE_QUALITY_MASK);
6332    }
6333
6334    /**
6335     * Returns whether the screen should remain on, corresponding to the current
6336     * value of {@link #KEEP_SCREEN_ON}.
6337     *
6338     * @return Returns true if {@link #KEEP_SCREEN_ON} is set.
6339     *
6340     * @see #setKeepScreenOn(boolean)
6341     *
6342     * @attr ref android.R.styleable#View_keepScreenOn
6343     */
6344    public boolean getKeepScreenOn() {
6345        return (mViewFlags & KEEP_SCREEN_ON) != 0;
6346    }
6347
6348    /**
6349     * Controls whether the screen should remain on, modifying the
6350     * value of {@link #KEEP_SCREEN_ON}.
6351     *
6352     * @param keepScreenOn Supply true to set {@link #KEEP_SCREEN_ON}.
6353     *
6354     * @see #getKeepScreenOn()
6355     *
6356     * @attr ref android.R.styleable#View_keepScreenOn
6357     */
6358    public void setKeepScreenOn(boolean keepScreenOn) {
6359        setFlags(keepScreenOn ? KEEP_SCREEN_ON : 0, KEEP_SCREEN_ON);
6360    }
6361
6362    /**
6363     * Gets the id of the view to use when the next focus is {@link #FOCUS_LEFT}.
6364     * @return The next focus ID, or {@link #NO_ID} if the framework should decide automatically.
6365     *
6366     * @attr ref android.R.styleable#View_nextFocusLeft
6367     */
6368    public int getNextFocusLeftId() {
6369        return mNextFocusLeftId;
6370    }
6371
6372    /**
6373     * Sets the id of the view to use when the next focus is {@link #FOCUS_LEFT}.
6374     * @param nextFocusLeftId The next focus ID, or {@link #NO_ID} if the framework should
6375     * decide automatically.
6376     *
6377     * @attr ref android.R.styleable#View_nextFocusLeft
6378     */
6379    public void setNextFocusLeftId(int nextFocusLeftId) {
6380        mNextFocusLeftId = nextFocusLeftId;
6381    }
6382
6383    /**
6384     * Gets the id of the view to use when the next focus is {@link #FOCUS_RIGHT}.
6385     * @return The next focus ID, or {@link #NO_ID} if the framework should decide automatically.
6386     *
6387     * @attr ref android.R.styleable#View_nextFocusRight
6388     */
6389    public int getNextFocusRightId() {
6390        return mNextFocusRightId;
6391    }
6392
6393    /**
6394     * Sets the id of the view to use when the next focus is {@link #FOCUS_RIGHT}.
6395     * @param nextFocusRightId The next focus ID, or {@link #NO_ID} if the framework should
6396     * decide automatically.
6397     *
6398     * @attr ref android.R.styleable#View_nextFocusRight
6399     */
6400    public void setNextFocusRightId(int nextFocusRightId) {
6401        mNextFocusRightId = nextFocusRightId;
6402    }
6403
6404    /**
6405     * Gets the id of the view to use when the next focus is {@link #FOCUS_UP}.
6406     * @return The next focus ID, or {@link #NO_ID} if the framework should decide automatically.
6407     *
6408     * @attr ref android.R.styleable#View_nextFocusUp
6409     */
6410    public int getNextFocusUpId() {
6411        return mNextFocusUpId;
6412    }
6413
6414    /**
6415     * Sets the id of the view to use when the next focus is {@link #FOCUS_UP}.
6416     * @param nextFocusUpId The next focus ID, or {@link #NO_ID} if the framework should
6417     * decide automatically.
6418     *
6419     * @attr ref android.R.styleable#View_nextFocusUp
6420     */
6421    public void setNextFocusUpId(int nextFocusUpId) {
6422        mNextFocusUpId = nextFocusUpId;
6423    }
6424
6425    /**
6426     * Gets the id of the view to use when the next focus is {@link #FOCUS_DOWN}.
6427     * @return The next focus ID, or {@link #NO_ID} if the framework should decide automatically.
6428     *
6429     * @attr ref android.R.styleable#View_nextFocusDown
6430     */
6431    public int getNextFocusDownId() {
6432        return mNextFocusDownId;
6433    }
6434
6435    /**
6436     * Sets the id of the view to use when the next focus is {@link #FOCUS_DOWN}.
6437     * @param nextFocusDownId The next focus ID, or {@link #NO_ID} if the framework should
6438     * decide automatically.
6439     *
6440     * @attr ref android.R.styleable#View_nextFocusDown
6441     */
6442    public void setNextFocusDownId(int nextFocusDownId) {
6443        mNextFocusDownId = nextFocusDownId;
6444    }
6445
6446    /**
6447     * Gets the id of the view to use when the next focus is {@link #FOCUS_FORWARD}.
6448     * @return The next focus ID, or {@link #NO_ID} if the framework should decide automatically.
6449     *
6450     * @attr ref android.R.styleable#View_nextFocusForward
6451     */
6452    public int getNextFocusForwardId() {
6453        return mNextFocusForwardId;
6454    }
6455
6456    /**
6457     * Sets the id of the view to use when the next focus is {@link #FOCUS_FORWARD}.
6458     * @param nextFocusForwardId The next focus ID, or {@link #NO_ID} if the framework should
6459     * decide automatically.
6460     *
6461     * @attr ref android.R.styleable#View_nextFocusForward
6462     */
6463    public void setNextFocusForwardId(int nextFocusForwardId) {
6464        mNextFocusForwardId = nextFocusForwardId;
6465    }
6466
6467    /**
6468     * Returns the visibility of this view and all of its ancestors
6469     *
6470     * @return True if this view and all of its ancestors are {@link #VISIBLE}
6471     */
6472    public boolean isShown() {
6473        View current = this;
6474        //noinspection ConstantConditions
6475        do {
6476            if ((current.mViewFlags & VISIBILITY_MASK) != VISIBLE) {
6477                return false;
6478            }
6479            ViewParent parent = current.mParent;
6480            if (parent == null) {
6481                return false; // We are not attached to the view root
6482            }
6483            if (!(parent instanceof View)) {
6484                return true;
6485            }
6486            current = (View) parent;
6487        } while (current != null);
6488
6489        return false;
6490    }
6491
6492    /**
6493     * Called by the view hierarchy when the content insets for a window have
6494     * changed, to allow it to adjust its content to fit within those windows.
6495     * The content insets tell you the space that the status bar, input method,
6496     * and other system windows infringe on the application's window.
6497     *
6498     * <p>You do not normally need to deal with this function, since the default
6499     * window decoration given to applications takes care of applying it to the
6500     * content of the window.  If you use {@link #SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN}
6501     * or {@link #SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION} this will not be the case,
6502     * and your content can be placed under those system elements.  You can then
6503     * use this method within your view hierarchy if you have parts of your UI
6504     * which you would like to ensure are not being covered.
6505     *
6506     * <p>The default implementation of this method simply applies the content
6507     * insets to the view's padding, consuming that content (modifying the
6508     * insets to be 0), and returning true.  This behavior is off by default, but can
6509     * be enabled through {@link #setFitsSystemWindows(boolean)}.
6510     *
6511     * <p>This function's traversal down the hierarchy is depth-first.  The same content
6512     * insets object is propagated down the hierarchy, so any changes made to it will
6513     * be seen by all following views (including potentially ones above in
6514     * the hierarchy since this is a depth-first traversal).  The first view
6515     * that returns true will abort the entire traversal.
6516     *
6517     * <p>The default implementation works well for a situation where it is
6518     * used with a container that covers the entire window, allowing it to
6519     * apply the appropriate insets to its content on all edges.  If you need
6520     * a more complicated layout (such as two different views fitting system
6521     * windows, one on the top of the window, and one on the bottom),
6522     * you can override the method and handle the insets however you would like.
6523     * Note that the insets provided by the framework are always relative to the
6524     * far edges of the window, not accounting for the location of the called view
6525     * within that window.  (In fact when this method is called you do not yet know
6526     * where the layout will place the view, as it is done before layout happens.)
6527     *
6528     * <p>Note: unlike many View methods, there is no dispatch phase to this
6529     * call.  If you are overriding it in a ViewGroup and want to allow the
6530     * call to continue to your children, you must be sure to call the super
6531     * implementation.
6532     *
6533     * <p>Here is a sample layout that makes use of fitting system windows
6534     * to have controls for a video view placed inside of the window decorations
6535     * that it hides and shows.  This can be used with code like the second
6536     * sample (video player) shown in {@link #setSystemUiVisibility(int)}.
6537     *
6538     * {@sample development/samples/ApiDemos/res/layout/video_player.xml complete}
6539     *
6540     * @param insets Current content insets of the window.  Prior to
6541     * {@link android.os.Build.VERSION_CODES#JELLY_BEAN} you must not modify
6542     * the insets or else you and Android will be unhappy.
6543     *
6544     * @return {@code true} if this view applied the insets and it should not
6545     * continue propagating further down the hierarchy, {@code false} otherwise.
6546     * @see #getFitsSystemWindows()
6547     * @see #setFitsSystemWindows(boolean)
6548     * @see #setSystemUiVisibility(int)
6549     *
6550     * @deprecated As of API 20 use {@link #dispatchApplyWindowInsets(WindowInsets)} to apply
6551     * insets to views. Views should override {@link #onApplyWindowInsets(WindowInsets)} or use
6552     * {@link #setOnApplyWindowInsetsListener(android.view.View.OnApplyWindowInsetsListener)}
6553     * to implement handling their own insets.
6554     */
6555    protected boolean fitSystemWindows(Rect insets) {
6556        if ((mPrivateFlags3 & PFLAG3_APPLYING_INSETS) == 0) {
6557            if (insets == null) {
6558                // Null insets by definition have already been consumed.
6559                // This call cannot apply insets since there are none to apply,
6560                // so return false.
6561                return false;
6562            }
6563            // If we're not in the process of dispatching the newer apply insets call,
6564            // that means we're not in the compatibility path. Dispatch into the newer
6565            // apply insets path and take things from there.
6566            try {
6567                mPrivateFlags3 |= PFLAG3_FITTING_SYSTEM_WINDOWS;
6568                return dispatchApplyWindowInsets(new WindowInsets(insets)).isConsumed();
6569            } finally {
6570                mPrivateFlags3 &= ~PFLAG3_FITTING_SYSTEM_WINDOWS;
6571            }
6572        } else {
6573            // We're being called from the newer apply insets path.
6574            // Perform the standard fallback behavior.
6575            return fitSystemWindowsInt(insets);
6576        }
6577    }
6578
6579    private boolean fitSystemWindowsInt(Rect insets) {
6580        if ((mViewFlags & FITS_SYSTEM_WINDOWS) == FITS_SYSTEM_WINDOWS) {
6581            mUserPaddingStart = UNDEFINED_PADDING;
6582            mUserPaddingEnd = UNDEFINED_PADDING;
6583            Rect localInsets = sThreadLocal.get();
6584            if (localInsets == null) {
6585                localInsets = new Rect();
6586                sThreadLocal.set(localInsets);
6587            }
6588            boolean res = computeFitSystemWindows(insets, localInsets);
6589            mUserPaddingLeftInitial = localInsets.left;
6590            mUserPaddingRightInitial = localInsets.right;
6591            internalSetPadding(localInsets.left, localInsets.top,
6592                    localInsets.right, localInsets.bottom);
6593            return res;
6594        }
6595        return false;
6596    }
6597
6598    /**
6599     * Called when the view should apply {@link WindowInsets} according to its internal policy.
6600     *
6601     * <p>This method should be overridden by views that wish to apply a policy different from or
6602     * in addition to the default behavior. Clients that wish to force a view subtree
6603     * to apply insets should call {@link #dispatchApplyWindowInsets(WindowInsets)}.</p>
6604     *
6605     * <p>Clients may supply an {@link OnApplyWindowInsetsListener} to a view. If one is set
6606     * it will be called during dispatch instead of this method. The listener may optionally
6607     * call this method from its own implementation if it wishes to apply the view's default
6608     * insets policy in addition to its own.</p>
6609     *
6610     * <p>Implementations of this method should either return the insets parameter unchanged
6611     * or a new {@link WindowInsets} cloned from the supplied insets with any insets consumed
6612     * that this view applied itself. This allows new inset types added in future platform
6613     * versions to pass through existing implementations unchanged without being erroneously
6614     * consumed.</p>
6615     *
6616     * <p>By default if a view's {@link #setFitsSystemWindows(boolean) fitsSystemWindows}
6617     * property is set then the view will consume the system window insets and apply them
6618     * as padding for the view.</p>
6619     *
6620     * @param insets Insets to apply
6621     * @return The supplied insets with any applied insets consumed
6622     */
6623    public WindowInsets onApplyWindowInsets(WindowInsets insets) {
6624        if ((mPrivateFlags3 & PFLAG3_FITTING_SYSTEM_WINDOWS) == 0) {
6625            // We weren't called from within a direct call to fitSystemWindows,
6626            // call into it as a fallback in case we're in a class that overrides it
6627            // and has logic to perform.
6628            if (fitSystemWindows(insets.getSystemWindowInsets())) {
6629                return insets.consumeSystemWindowInsets();
6630            }
6631        } else {
6632            // We were called from within a direct call to fitSystemWindows.
6633            if (fitSystemWindowsInt(insets.getSystemWindowInsets())) {
6634                return insets.consumeSystemWindowInsets();
6635            }
6636        }
6637        return insets;
6638    }
6639
6640    /**
6641     * Set an {@link OnApplyWindowInsetsListener} to take over the policy for applying
6642     * window insets to this view. The listener's
6643     * {@link OnApplyWindowInsetsListener#onApplyWindowInsets(View, WindowInsets) onApplyWindowInsets}
6644     * method will be called instead of the view's
6645     * {@link #onApplyWindowInsets(WindowInsets) onApplyWindowInsets} method.
6646     *
6647     * @param listener Listener to set
6648     *
6649     * @see #onApplyWindowInsets(WindowInsets)
6650     */
6651    public void setOnApplyWindowInsetsListener(OnApplyWindowInsetsListener listener) {
6652        getListenerInfo().mOnApplyWindowInsetsListener = listener;
6653    }
6654
6655    /**
6656     * Request to apply the given window insets to this view or another view in its subtree.
6657     *
6658     * <p>This method should be called by clients wishing to apply insets corresponding to areas
6659     * obscured by window decorations or overlays. This can include the status and navigation bars,
6660     * action bars, input methods and more. New inset categories may be added in the future.
6661     * The method returns the insets provided minus any that were applied by this view or its
6662     * children.</p>
6663     *
6664     * <p>Clients wishing to provide custom behavior should override the
6665     * {@link #onApplyWindowInsets(WindowInsets)} method or alternatively provide a
6666     * {@link OnApplyWindowInsetsListener} via the
6667     * {@link #setOnApplyWindowInsetsListener(View.OnApplyWindowInsetsListener) setOnApplyWindowInsetsListener}
6668     * method.</p>
6669     *
6670     * <p>This method replaces the older {@link #fitSystemWindows(Rect) fitSystemWindows} method.
6671     * </p>
6672     *
6673     * @param insets Insets to apply
6674     * @return The provided insets minus the insets that were consumed
6675     */
6676    public WindowInsets dispatchApplyWindowInsets(WindowInsets insets) {
6677        try {
6678            mPrivateFlags3 |= PFLAG3_APPLYING_INSETS;
6679            if (mListenerInfo != null && mListenerInfo.mOnApplyWindowInsetsListener != null) {
6680                return mListenerInfo.mOnApplyWindowInsetsListener.onApplyWindowInsets(this, insets);
6681            } else {
6682                return onApplyWindowInsets(insets);
6683            }
6684        } finally {
6685            mPrivateFlags3 &= ~PFLAG3_APPLYING_INSETS;
6686        }
6687    }
6688
6689    /**
6690     * @hide Compute the insets that should be consumed by this view and the ones
6691     * that should propagate to those under it.
6692     */
6693    protected boolean computeFitSystemWindows(Rect inoutInsets, Rect outLocalInsets) {
6694        if ((mViewFlags & OPTIONAL_FITS_SYSTEM_WINDOWS) == 0
6695                || mAttachInfo == null
6696                || ((mAttachInfo.mSystemUiVisibility & SYSTEM_UI_LAYOUT_FLAGS) == 0
6697                        && !mAttachInfo.mOverscanRequested)) {
6698            outLocalInsets.set(inoutInsets);
6699            inoutInsets.set(0, 0, 0, 0);
6700            return true;
6701        } else {
6702            // The application wants to take care of fitting system window for
6703            // the content...  however we still need to take care of any overscan here.
6704            final Rect overscan = mAttachInfo.mOverscanInsets;
6705            outLocalInsets.set(overscan);
6706            inoutInsets.left -= overscan.left;
6707            inoutInsets.top -= overscan.top;
6708            inoutInsets.right -= overscan.right;
6709            inoutInsets.bottom -= overscan.bottom;
6710            return false;
6711        }
6712    }
6713
6714    /**
6715     * Compute insets that should be consumed by this view and the ones that should propagate
6716     * to those under it.
6717     *
6718     * @param in Insets currently being processed by this View, likely received as a parameter
6719     *           to {@link #onApplyWindowInsets(WindowInsets)}.
6720     * @param outLocalInsets A Rect that will receive the insets that should be consumed
6721     *                       by this view
6722     * @return Insets that should be passed along to views under this one
6723     */
6724    public WindowInsets computeSystemWindowInsets(WindowInsets in, Rect outLocalInsets) {
6725        if ((mViewFlags & OPTIONAL_FITS_SYSTEM_WINDOWS) == 0
6726                || mAttachInfo == null
6727                || (mAttachInfo.mSystemUiVisibility & SYSTEM_UI_LAYOUT_FLAGS) == 0) {
6728            outLocalInsets.set(in.getSystemWindowInsets());
6729            return in.consumeSystemWindowInsets();
6730        } else {
6731            outLocalInsets.set(0, 0, 0, 0);
6732            return in;
6733        }
6734    }
6735
6736    /**
6737     * Sets whether or not this view should account for system screen decorations
6738     * such as the status bar and inset its content; that is, controlling whether
6739     * the default implementation of {@link #fitSystemWindows(Rect)} will be
6740     * executed.  See that method for more details.
6741     *
6742     * <p>Note that if you are providing your own implementation of
6743     * {@link #fitSystemWindows(Rect)}, then there is no need to set this
6744     * flag to true -- your implementation will be overriding the default
6745     * implementation that checks this flag.
6746     *
6747     * @param fitSystemWindows If true, then the default implementation of
6748     * {@link #fitSystemWindows(Rect)} will be executed.
6749     *
6750     * @attr ref android.R.styleable#View_fitsSystemWindows
6751     * @see #getFitsSystemWindows()
6752     * @see #fitSystemWindows(Rect)
6753     * @see #setSystemUiVisibility(int)
6754     */
6755    public void setFitsSystemWindows(boolean fitSystemWindows) {
6756        setFlags(fitSystemWindows ? FITS_SYSTEM_WINDOWS : 0, FITS_SYSTEM_WINDOWS);
6757    }
6758
6759    /**
6760     * Check for state of {@link #setFitsSystemWindows(boolean)}. If this method
6761     * returns {@code true}, the default implementation of {@link #fitSystemWindows(Rect)}
6762     * will be executed.
6763     *
6764     * @return {@code true} if the default implementation of
6765     * {@link #fitSystemWindows(Rect)} will be executed.
6766     *
6767     * @attr ref android.R.styleable#View_fitsSystemWindows
6768     * @see #setFitsSystemWindows(boolean)
6769     * @see #fitSystemWindows(Rect)
6770     * @see #setSystemUiVisibility(int)
6771     */
6772    @ViewDebug.ExportedProperty
6773    public boolean getFitsSystemWindows() {
6774        return (mViewFlags & FITS_SYSTEM_WINDOWS) == FITS_SYSTEM_WINDOWS;
6775    }
6776
6777    /** @hide */
6778    public boolean fitsSystemWindows() {
6779        return getFitsSystemWindows();
6780    }
6781
6782    /**
6783     * Ask that a new dispatch of {@link #fitSystemWindows(Rect)} be performed.
6784     * @deprecated Use {@link #requestApplyInsets()} for newer platform versions.
6785     */
6786    public void requestFitSystemWindows() {
6787        if (mParent != null) {
6788            mParent.requestFitSystemWindows();
6789        }
6790    }
6791
6792    /**
6793     * Ask that a new dispatch of {@link #onApplyWindowInsets(WindowInsets)} be performed.
6794     */
6795    public void requestApplyInsets() {
6796        requestFitSystemWindows();
6797    }
6798
6799    /**
6800     * For use by PhoneWindow to make its own system window fitting optional.
6801     * @hide
6802     */
6803    public void makeOptionalFitsSystemWindows() {
6804        setFlags(OPTIONAL_FITS_SYSTEM_WINDOWS, OPTIONAL_FITS_SYSTEM_WINDOWS);
6805    }
6806
6807    /**
6808     * Returns the visibility status for this view.
6809     *
6810     * @return One of {@link #VISIBLE}, {@link #INVISIBLE}, or {@link #GONE}.
6811     * @attr ref android.R.styleable#View_visibility
6812     */
6813    @ViewDebug.ExportedProperty(mapping = {
6814        @ViewDebug.IntToString(from = VISIBLE,   to = "VISIBLE"),
6815        @ViewDebug.IntToString(from = INVISIBLE, to = "INVISIBLE"),
6816        @ViewDebug.IntToString(from = GONE,      to = "GONE")
6817    })
6818    @Visibility
6819    public int getVisibility() {
6820        return mViewFlags & VISIBILITY_MASK;
6821    }
6822
6823    /**
6824     * Set the enabled state of this view.
6825     *
6826     * @param visibility One of {@link #VISIBLE}, {@link #INVISIBLE}, or {@link #GONE}.
6827     * @attr ref android.R.styleable#View_visibility
6828     */
6829    @RemotableViewMethod
6830    public void setVisibility(@Visibility int visibility) {
6831        setFlags(visibility, VISIBILITY_MASK);
6832        if (mBackground != null) mBackground.setVisible(visibility == VISIBLE, false);
6833    }
6834
6835    /**
6836     * Returns the enabled status for this view. The interpretation of the
6837     * enabled state varies by subclass.
6838     *
6839     * @return True if this view is enabled, false otherwise.
6840     */
6841    @ViewDebug.ExportedProperty
6842    public boolean isEnabled() {
6843        return (mViewFlags & ENABLED_MASK) == ENABLED;
6844    }
6845
6846    /**
6847     * Set the enabled state of this view. The interpretation of the enabled
6848     * state varies by subclass.
6849     *
6850     * @param enabled True if this view is enabled, false otherwise.
6851     */
6852    @RemotableViewMethod
6853    public void setEnabled(boolean enabled) {
6854        if (enabled == isEnabled()) return;
6855
6856        setFlags(enabled ? ENABLED : DISABLED, ENABLED_MASK);
6857
6858        /*
6859         * The View most likely has to change its appearance, so refresh
6860         * the drawable state.
6861         */
6862        refreshDrawableState();
6863
6864        // Invalidate too, since the default behavior for views is to be
6865        // be drawn at 50% alpha rather than to change the drawable.
6866        invalidate(true);
6867
6868        if (!enabled) {
6869            cancelPendingInputEvents();
6870        }
6871    }
6872
6873    /**
6874     * Set whether this view can receive the focus.
6875     *
6876     * Setting this to false will also ensure that this view is not focusable
6877     * in touch mode.
6878     *
6879     * @param focusable If true, this view can receive the focus.
6880     *
6881     * @see #setFocusableInTouchMode(boolean)
6882     * @attr ref android.R.styleable#View_focusable
6883     */
6884    public void setFocusable(boolean focusable) {
6885        if (!focusable) {
6886            setFlags(0, FOCUSABLE_IN_TOUCH_MODE);
6887        }
6888        setFlags(focusable ? FOCUSABLE : NOT_FOCUSABLE, FOCUSABLE_MASK);
6889    }
6890
6891    /**
6892     * Set whether this view can receive focus while in touch mode.
6893     *
6894     * Setting this to true will also ensure that this view is focusable.
6895     *
6896     * @param focusableInTouchMode If true, this view can receive the focus while
6897     *   in touch mode.
6898     *
6899     * @see #setFocusable(boolean)
6900     * @attr ref android.R.styleable#View_focusableInTouchMode
6901     */
6902    public void setFocusableInTouchMode(boolean focusableInTouchMode) {
6903        // Focusable in touch mode should always be set before the focusable flag
6904        // otherwise, setting the focusable flag will trigger a focusableViewAvailable()
6905        // which, in touch mode, will not successfully request focus on this view
6906        // because the focusable in touch mode flag is not set
6907        setFlags(focusableInTouchMode ? FOCUSABLE_IN_TOUCH_MODE : 0, FOCUSABLE_IN_TOUCH_MODE);
6908        if (focusableInTouchMode) {
6909            setFlags(FOCUSABLE, FOCUSABLE_MASK);
6910        }
6911    }
6912
6913    /**
6914     * Set whether this view should have sound effects enabled for events such as
6915     * clicking and touching.
6916     *
6917     * <p>You may wish to disable sound effects for a view if you already play sounds,
6918     * for instance, a dial key that plays dtmf tones.
6919     *
6920     * @param soundEffectsEnabled whether sound effects are enabled for this view.
6921     * @see #isSoundEffectsEnabled()
6922     * @see #playSoundEffect(int)
6923     * @attr ref android.R.styleable#View_soundEffectsEnabled
6924     */
6925    public void setSoundEffectsEnabled(boolean soundEffectsEnabled) {
6926        setFlags(soundEffectsEnabled ? SOUND_EFFECTS_ENABLED: 0, SOUND_EFFECTS_ENABLED);
6927    }
6928
6929    /**
6930     * @return whether this view should have sound effects enabled for events such as
6931     *     clicking and touching.
6932     *
6933     * @see #setSoundEffectsEnabled(boolean)
6934     * @see #playSoundEffect(int)
6935     * @attr ref android.R.styleable#View_soundEffectsEnabled
6936     */
6937    @ViewDebug.ExportedProperty
6938    public boolean isSoundEffectsEnabled() {
6939        return SOUND_EFFECTS_ENABLED == (mViewFlags & SOUND_EFFECTS_ENABLED);
6940    }
6941
6942    /**
6943     * Set whether this view should have haptic feedback for events such as
6944     * long presses.
6945     *
6946     * <p>You may wish to disable haptic feedback if your view already controls
6947     * its own haptic feedback.
6948     *
6949     * @param hapticFeedbackEnabled whether haptic feedback enabled for this view.
6950     * @see #isHapticFeedbackEnabled()
6951     * @see #performHapticFeedback(int)
6952     * @attr ref android.R.styleable#View_hapticFeedbackEnabled
6953     */
6954    public void setHapticFeedbackEnabled(boolean hapticFeedbackEnabled) {
6955        setFlags(hapticFeedbackEnabled ? HAPTIC_FEEDBACK_ENABLED: 0, HAPTIC_FEEDBACK_ENABLED);
6956    }
6957
6958    /**
6959     * @return whether this view should have haptic feedback enabled for events
6960     * long presses.
6961     *
6962     * @see #setHapticFeedbackEnabled(boolean)
6963     * @see #performHapticFeedback(int)
6964     * @attr ref android.R.styleable#View_hapticFeedbackEnabled
6965     */
6966    @ViewDebug.ExportedProperty
6967    public boolean isHapticFeedbackEnabled() {
6968        return HAPTIC_FEEDBACK_ENABLED == (mViewFlags & HAPTIC_FEEDBACK_ENABLED);
6969    }
6970
6971    /**
6972     * Returns the layout direction for this view.
6973     *
6974     * @return One of {@link #LAYOUT_DIRECTION_LTR},
6975     *   {@link #LAYOUT_DIRECTION_RTL},
6976     *   {@link #LAYOUT_DIRECTION_INHERIT} or
6977     *   {@link #LAYOUT_DIRECTION_LOCALE}.
6978     *
6979     * @attr ref android.R.styleable#View_layoutDirection
6980     *
6981     * @hide
6982     */
6983    @ViewDebug.ExportedProperty(category = "layout", mapping = {
6984        @ViewDebug.IntToString(from = LAYOUT_DIRECTION_LTR,     to = "LTR"),
6985        @ViewDebug.IntToString(from = LAYOUT_DIRECTION_RTL,     to = "RTL"),
6986        @ViewDebug.IntToString(from = LAYOUT_DIRECTION_INHERIT, to = "INHERIT"),
6987        @ViewDebug.IntToString(from = LAYOUT_DIRECTION_LOCALE,  to = "LOCALE")
6988    })
6989    @LayoutDir
6990    public int getRawLayoutDirection() {
6991        return (mPrivateFlags2 & PFLAG2_LAYOUT_DIRECTION_MASK) >> PFLAG2_LAYOUT_DIRECTION_MASK_SHIFT;
6992    }
6993
6994    /**
6995     * Set the layout direction for this view. This will propagate a reset of layout direction
6996     * resolution to the view's children and resolve layout direction for this view.
6997     *
6998     * @param layoutDirection the layout direction to set. Should be one of:
6999     *
7000     * {@link #LAYOUT_DIRECTION_LTR},
7001     * {@link #LAYOUT_DIRECTION_RTL},
7002     * {@link #LAYOUT_DIRECTION_INHERIT},
7003     * {@link #LAYOUT_DIRECTION_LOCALE}.
7004     *
7005     * Resolution will be done if the value is set to LAYOUT_DIRECTION_INHERIT. The resolution
7006     * proceeds up the parent chain of the view to get the value. If there is no parent, then it
7007     * will return the default {@link #LAYOUT_DIRECTION_LTR}.
7008     *
7009     * @attr ref android.R.styleable#View_layoutDirection
7010     */
7011    @RemotableViewMethod
7012    public void setLayoutDirection(@LayoutDir int layoutDirection) {
7013        if (getRawLayoutDirection() != layoutDirection) {
7014            // Reset the current layout direction and the resolved one
7015            mPrivateFlags2 &= ~PFLAG2_LAYOUT_DIRECTION_MASK;
7016            resetRtlProperties();
7017            // Set the new layout direction (filtered)
7018            mPrivateFlags2 |=
7019                    ((layoutDirection << PFLAG2_LAYOUT_DIRECTION_MASK_SHIFT) & PFLAG2_LAYOUT_DIRECTION_MASK);
7020            // We need to resolve all RTL properties as they all depend on layout direction
7021            resolveRtlPropertiesIfNeeded();
7022            requestLayout();
7023            invalidate(true);
7024        }
7025    }
7026
7027    /**
7028     * Returns the resolved layout direction for this view.
7029     *
7030     * @return {@link #LAYOUT_DIRECTION_RTL} if the layout direction is RTL or returns
7031     * {@link #LAYOUT_DIRECTION_LTR} if the layout direction is not RTL.
7032     *
7033     * For compatibility, this will return {@link #LAYOUT_DIRECTION_LTR} if API version
7034     * is lower than {@link android.os.Build.VERSION_CODES#JELLY_BEAN_MR1}.
7035     *
7036     * @attr ref android.R.styleable#View_layoutDirection
7037     */
7038    @ViewDebug.ExportedProperty(category = "layout", mapping = {
7039        @ViewDebug.IntToString(from = LAYOUT_DIRECTION_LTR, to = "RESOLVED_DIRECTION_LTR"),
7040        @ViewDebug.IntToString(from = LAYOUT_DIRECTION_RTL, to = "RESOLVED_DIRECTION_RTL")
7041    })
7042    @ResolvedLayoutDir
7043    public int getLayoutDirection() {
7044        final int targetSdkVersion = getContext().getApplicationInfo().targetSdkVersion;
7045        if (targetSdkVersion < JELLY_BEAN_MR1) {
7046            mPrivateFlags2 |= PFLAG2_LAYOUT_DIRECTION_RESOLVED;
7047            return LAYOUT_DIRECTION_RESOLVED_DEFAULT;
7048        }
7049        return ((mPrivateFlags2 & PFLAG2_LAYOUT_DIRECTION_RESOLVED_RTL) ==
7050                PFLAG2_LAYOUT_DIRECTION_RESOLVED_RTL) ? LAYOUT_DIRECTION_RTL : LAYOUT_DIRECTION_LTR;
7051    }
7052
7053    /**
7054     * Indicates whether or not this view's layout is right-to-left. This is resolved from
7055     * layout attribute and/or the inherited value from the parent
7056     *
7057     * @return true if the layout is right-to-left.
7058     *
7059     * @hide
7060     */
7061    @ViewDebug.ExportedProperty(category = "layout")
7062    public boolean isLayoutRtl() {
7063        return (getLayoutDirection() == LAYOUT_DIRECTION_RTL);
7064    }
7065
7066    /**
7067     * Indicates whether the view is currently tracking transient state that the
7068     * app should not need to concern itself with saving and restoring, but that
7069     * the framework should take special note to preserve when possible.
7070     *
7071     * <p>A view with transient state cannot be trivially rebound from an external
7072     * data source, such as an adapter binding item views in a list. This may be
7073     * because the view is performing an animation, tracking user selection
7074     * of content, or similar.</p>
7075     *
7076     * @return true if the view has transient state
7077     */
7078    @ViewDebug.ExportedProperty(category = "layout")
7079    public boolean hasTransientState() {
7080        return (mPrivateFlags2 & PFLAG2_HAS_TRANSIENT_STATE) == PFLAG2_HAS_TRANSIENT_STATE;
7081    }
7082
7083    /**
7084     * Set whether this view is currently tracking transient state that the
7085     * framework should attempt to preserve when possible. This flag is reference counted,
7086     * so every call to setHasTransientState(true) should be paired with a later call
7087     * to setHasTransientState(false).
7088     *
7089     * <p>A view with transient state cannot be trivially rebound from an external
7090     * data source, such as an adapter binding item views in a list. This may be
7091     * because the view is performing an animation, tracking user selection
7092     * of content, or similar.</p>
7093     *
7094     * @param hasTransientState true if this view has transient state
7095     */
7096    public void setHasTransientState(boolean hasTransientState) {
7097        mTransientStateCount = hasTransientState ? mTransientStateCount + 1 :
7098                mTransientStateCount - 1;
7099        if (mTransientStateCount < 0) {
7100            mTransientStateCount = 0;
7101            Log.e(VIEW_LOG_TAG, "hasTransientState decremented below 0: " +
7102                    "unmatched pair of setHasTransientState calls");
7103        } else if ((hasTransientState && mTransientStateCount == 1) ||
7104                (!hasTransientState && mTransientStateCount == 0)) {
7105            // update flag if we've just incremented up from 0 or decremented down to 0
7106            mPrivateFlags2 = (mPrivateFlags2 & ~PFLAG2_HAS_TRANSIENT_STATE) |
7107                    (hasTransientState ? PFLAG2_HAS_TRANSIENT_STATE : 0);
7108            if (mParent != null) {
7109                try {
7110                    mParent.childHasTransientStateChanged(this, hasTransientState);
7111                } catch (AbstractMethodError e) {
7112                    Log.e(VIEW_LOG_TAG, mParent.getClass().getSimpleName() +
7113                            " does not fully implement ViewParent", e);
7114                }
7115            }
7116        }
7117    }
7118
7119    /**
7120     * Returns true if this view is currently attached to a window.
7121     */
7122    public boolean isAttachedToWindow() {
7123        return mAttachInfo != null;
7124    }
7125
7126    /**
7127     * Returns true if this view has been through at least one layout since it
7128     * was last attached to or detached from a window.
7129     */
7130    public boolean isLaidOut() {
7131        return (mPrivateFlags3 & PFLAG3_IS_LAID_OUT) == PFLAG3_IS_LAID_OUT;
7132    }
7133
7134    /**
7135     * If this view doesn't do any drawing on its own, set this flag to
7136     * allow further optimizations. By default, this flag is not set on
7137     * View, but could be set on some View subclasses such as ViewGroup.
7138     *
7139     * Typically, if you override {@link #onDraw(android.graphics.Canvas)}
7140     * you should clear this flag.
7141     *
7142     * @param willNotDraw whether or not this View draw on its own
7143     */
7144    public void setWillNotDraw(boolean willNotDraw) {
7145        setFlags(willNotDraw ? WILL_NOT_DRAW : 0, DRAW_MASK);
7146    }
7147
7148    /**
7149     * Returns whether or not this View draws on its own.
7150     *
7151     * @return true if this view has nothing to draw, false otherwise
7152     */
7153    @ViewDebug.ExportedProperty(category = "drawing")
7154    public boolean willNotDraw() {
7155        return (mViewFlags & DRAW_MASK) == WILL_NOT_DRAW;
7156    }
7157
7158    /**
7159     * When a View's drawing cache is enabled, drawing is redirected to an
7160     * offscreen bitmap. Some views, like an ImageView, must be able to
7161     * bypass this mechanism if they already draw a single bitmap, to avoid
7162     * unnecessary usage of the memory.
7163     *
7164     * @param willNotCacheDrawing true if this view does not cache its
7165     *        drawing, false otherwise
7166     */
7167    public void setWillNotCacheDrawing(boolean willNotCacheDrawing) {
7168        setFlags(willNotCacheDrawing ? WILL_NOT_CACHE_DRAWING : 0, WILL_NOT_CACHE_DRAWING);
7169    }
7170
7171    /**
7172     * Returns whether or not this View can cache its drawing or not.
7173     *
7174     * @return true if this view does not cache its drawing, false otherwise
7175     */
7176    @ViewDebug.ExportedProperty(category = "drawing")
7177    public boolean willNotCacheDrawing() {
7178        return (mViewFlags & WILL_NOT_CACHE_DRAWING) == WILL_NOT_CACHE_DRAWING;
7179    }
7180
7181    /**
7182     * Indicates whether this view reacts to click events or not.
7183     *
7184     * @return true if the view is clickable, false otherwise
7185     *
7186     * @see #setClickable(boolean)
7187     * @attr ref android.R.styleable#View_clickable
7188     */
7189    @ViewDebug.ExportedProperty
7190    public boolean isClickable() {
7191        return (mViewFlags & CLICKABLE) == CLICKABLE;
7192    }
7193
7194    /**
7195     * Enables or disables click events for this view. When a view
7196     * is clickable it will change its state to "pressed" on every click.
7197     * Subclasses should set the view clickable to visually react to
7198     * user's clicks.
7199     *
7200     * @param clickable true to make the view clickable, false otherwise
7201     *
7202     * @see #isClickable()
7203     * @attr ref android.R.styleable#View_clickable
7204     */
7205    public void setClickable(boolean clickable) {
7206        setFlags(clickable ? CLICKABLE : 0, CLICKABLE);
7207    }
7208
7209    /**
7210     * Indicates whether this view reacts to long click events or not.
7211     *
7212     * @return true if the view is long clickable, false otherwise
7213     *
7214     * @see #setLongClickable(boolean)
7215     * @attr ref android.R.styleable#View_longClickable
7216     */
7217    public boolean isLongClickable() {
7218        return (mViewFlags & LONG_CLICKABLE) == LONG_CLICKABLE;
7219    }
7220
7221    /**
7222     * Enables or disables long click events for this view. When a view is long
7223     * clickable it reacts to the user holding down the button for a longer
7224     * duration than a tap. This event can either launch the listener or a
7225     * context menu.
7226     *
7227     * @param longClickable true to make the view long clickable, false otherwise
7228     * @see #isLongClickable()
7229     * @attr ref android.R.styleable#View_longClickable
7230     */
7231    public void setLongClickable(boolean longClickable) {
7232        setFlags(longClickable ? LONG_CLICKABLE : 0, LONG_CLICKABLE);
7233    }
7234
7235    /**
7236     * Sets the pressed state for this view and provides a touch coordinate for
7237     * animation hinting.
7238     *
7239     * @param pressed Pass true to set the View's internal state to "pressed",
7240     *            or false to reverts the View's internal state from a
7241     *            previously set "pressed" state.
7242     * @param x The x coordinate of the touch that caused the press
7243     * @param y The y coordinate of the touch that caused the press
7244     */
7245    private void setPressed(boolean pressed, float x, float y) {
7246        if (pressed) {
7247            drawableHotspotChanged(x, y);
7248        }
7249
7250        setPressed(pressed);
7251    }
7252
7253    /**
7254     * Sets the pressed state for this view.
7255     *
7256     * @see #isClickable()
7257     * @see #setClickable(boolean)
7258     *
7259     * @param pressed Pass true to set the View's internal state to "pressed", or false to reverts
7260     *        the View's internal state from a previously set "pressed" state.
7261     */
7262    public void setPressed(boolean pressed) {
7263        final boolean needsRefresh = pressed != ((mPrivateFlags & PFLAG_PRESSED) == PFLAG_PRESSED);
7264
7265        if (pressed) {
7266            mPrivateFlags |= PFLAG_PRESSED;
7267        } else {
7268            mPrivateFlags &= ~PFLAG_PRESSED;
7269        }
7270
7271        if (needsRefresh) {
7272            refreshDrawableState();
7273        }
7274        dispatchSetPressed(pressed);
7275    }
7276
7277    /**
7278     * Dispatch setPressed to all of this View's children.
7279     *
7280     * @see #setPressed(boolean)
7281     *
7282     * @param pressed The new pressed state
7283     */
7284    protected void dispatchSetPressed(boolean pressed) {
7285    }
7286
7287    /**
7288     * Indicates whether the view is currently in pressed state. Unless
7289     * {@link #setPressed(boolean)} is explicitly called, only clickable views can enter
7290     * the pressed state.
7291     *
7292     * @see #setPressed(boolean)
7293     * @see #isClickable()
7294     * @see #setClickable(boolean)
7295     *
7296     * @return true if the view is currently pressed, false otherwise
7297     */
7298    @ViewDebug.ExportedProperty
7299    public boolean isPressed() {
7300        return (mPrivateFlags & PFLAG_PRESSED) == PFLAG_PRESSED;
7301    }
7302
7303    /**
7304     * Indicates whether this view will save its state (that is,
7305     * whether its {@link #onSaveInstanceState} method will be called).
7306     *
7307     * @return Returns true if the view state saving is enabled, else false.
7308     *
7309     * @see #setSaveEnabled(boolean)
7310     * @attr ref android.R.styleable#View_saveEnabled
7311     */
7312    public boolean isSaveEnabled() {
7313        return (mViewFlags & SAVE_DISABLED_MASK) != SAVE_DISABLED;
7314    }
7315
7316    /**
7317     * Controls whether the saving of this view's state is
7318     * enabled (that is, whether its {@link #onSaveInstanceState} method
7319     * will be called).  Note that even if freezing is enabled, the
7320     * view still must have an id assigned to it (via {@link #setId(int)})
7321     * for its state to be saved.  This flag can only disable the
7322     * saving of this view; any child views may still have their state saved.
7323     *
7324     * @param enabled Set to false to <em>disable</em> state saving, or true
7325     * (the default) to allow it.
7326     *
7327     * @see #isSaveEnabled()
7328     * @see #setId(int)
7329     * @see #onSaveInstanceState()
7330     * @attr ref android.R.styleable#View_saveEnabled
7331     */
7332    public void setSaveEnabled(boolean enabled) {
7333        setFlags(enabled ? 0 : SAVE_DISABLED, SAVE_DISABLED_MASK);
7334    }
7335
7336    /**
7337     * Gets whether the framework should discard touches when the view's
7338     * window is obscured by another visible window.
7339     * Refer to the {@link View} security documentation for more details.
7340     *
7341     * @return True if touch filtering is enabled.
7342     *
7343     * @see #setFilterTouchesWhenObscured(boolean)
7344     * @attr ref android.R.styleable#View_filterTouchesWhenObscured
7345     */
7346    @ViewDebug.ExportedProperty
7347    public boolean getFilterTouchesWhenObscured() {
7348        return (mViewFlags & FILTER_TOUCHES_WHEN_OBSCURED) != 0;
7349    }
7350
7351    /**
7352     * Sets whether the framework should discard touches when the view's
7353     * window is obscured by another visible window.
7354     * Refer to the {@link View} security documentation for more details.
7355     *
7356     * @param enabled True if touch filtering should be enabled.
7357     *
7358     * @see #getFilterTouchesWhenObscured
7359     * @attr ref android.R.styleable#View_filterTouchesWhenObscured
7360     */
7361    public void setFilterTouchesWhenObscured(boolean enabled) {
7362        setFlags(enabled ? FILTER_TOUCHES_WHEN_OBSCURED : 0,
7363                FILTER_TOUCHES_WHEN_OBSCURED);
7364    }
7365
7366    /**
7367     * Indicates whether the entire hierarchy under this view will save its
7368     * state when a state saving traversal occurs from its parent.  The default
7369     * is true; if false, these views will not be saved unless
7370     * {@link #saveHierarchyState(SparseArray)} is called directly on this view.
7371     *
7372     * @return Returns true if the view state saving from parent is enabled, else false.
7373     *
7374     * @see #setSaveFromParentEnabled(boolean)
7375     */
7376    public boolean isSaveFromParentEnabled() {
7377        return (mViewFlags & PARENT_SAVE_DISABLED_MASK) != PARENT_SAVE_DISABLED;
7378    }
7379
7380    /**
7381     * Controls whether the entire hierarchy under this view will save its
7382     * state when a state saving traversal occurs from its parent.  The default
7383     * is true; if false, these views will not be saved unless
7384     * {@link #saveHierarchyState(SparseArray)} is called directly on this view.
7385     *
7386     * @param enabled Set to false to <em>disable</em> state saving, or true
7387     * (the default) to allow it.
7388     *
7389     * @see #isSaveFromParentEnabled()
7390     * @see #setId(int)
7391     * @see #onSaveInstanceState()
7392     */
7393    public void setSaveFromParentEnabled(boolean enabled) {
7394        setFlags(enabled ? 0 : PARENT_SAVE_DISABLED, PARENT_SAVE_DISABLED_MASK);
7395    }
7396
7397
7398    /**
7399     * Returns whether this View is able to take focus.
7400     *
7401     * @return True if this view can take focus, or false otherwise.
7402     * @attr ref android.R.styleable#View_focusable
7403     */
7404    @ViewDebug.ExportedProperty(category = "focus")
7405    public final boolean isFocusable() {
7406        return FOCUSABLE == (mViewFlags & FOCUSABLE_MASK);
7407    }
7408
7409    /**
7410     * When a view is focusable, it may not want to take focus when in touch mode.
7411     * For example, a button would like focus when the user is navigating via a D-pad
7412     * so that the user can click on it, but once the user starts touching the screen,
7413     * the button shouldn't take focus
7414     * @return Whether the view is focusable in touch mode.
7415     * @attr ref android.R.styleable#View_focusableInTouchMode
7416     */
7417    @ViewDebug.ExportedProperty
7418    public final boolean isFocusableInTouchMode() {
7419        return FOCUSABLE_IN_TOUCH_MODE == (mViewFlags & FOCUSABLE_IN_TOUCH_MODE);
7420    }
7421
7422    /**
7423     * Find the nearest view in the specified direction that can take focus.
7424     * This does not actually give focus to that view.
7425     *
7426     * @param direction One of FOCUS_UP, FOCUS_DOWN, FOCUS_LEFT, and FOCUS_RIGHT
7427     *
7428     * @return The nearest focusable in the specified direction, or null if none
7429     *         can be found.
7430     */
7431    public View focusSearch(@FocusRealDirection int direction) {
7432        if (mParent != null) {
7433            return mParent.focusSearch(this, direction);
7434        } else {
7435            return null;
7436        }
7437    }
7438
7439    /**
7440     * This method is the last chance for the focused view and its ancestors to
7441     * respond to an arrow key. This is called when the focused view did not
7442     * consume the key internally, nor could the view system find a new view in
7443     * the requested direction to give focus to.
7444     *
7445     * @param focused The currently focused view.
7446     * @param direction The direction focus wants to move. One of FOCUS_UP,
7447     *        FOCUS_DOWN, FOCUS_LEFT, and FOCUS_RIGHT.
7448     * @return True if the this view consumed this unhandled move.
7449     */
7450    public boolean dispatchUnhandledMove(View focused, @FocusRealDirection int direction) {
7451        return false;
7452    }
7453
7454    /**
7455     * If a user manually specified the next view id for a particular direction,
7456     * use the root to look up the view.
7457     * @param root The root view of the hierarchy containing this view.
7458     * @param direction One of FOCUS_UP, FOCUS_DOWN, FOCUS_LEFT, FOCUS_RIGHT, FOCUS_FORWARD,
7459     * or FOCUS_BACKWARD.
7460     * @return The user specified next view, or null if there is none.
7461     */
7462    View findUserSetNextFocus(View root, @FocusDirection int direction) {
7463        switch (direction) {
7464            case FOCUS_LEFT:
7465                if (mNextFocusLeftId == View.NO_ID) return null;
7466                return findViewInsideOutShouldExist(root, mNextFocusLeftId);
7467            case FOCUS_RIGHT:
7468                if (mNextFocusRightId == View.NO_ID) return null;
7469                return findViewInsideOutShouldExist(root, mNextFocusRightId);
7470            case FOCUS_UP:
7471                if (mNextFocusUpId == View.NO_ID) return null;
7472                return findViewInsideOutShouldExist(root, mNextFocusUpId);
7473            case FOCUS_DOWN:
7474                if (mNextFocusDownId == View.NO_ID) return null;
7475                return findViewInsideOutShouldExist(root, mNextFocusDownId);
7476            case FOCUS_FORWARD:
7477                if (mNextFocusForwardId == View.NO_ID) return null;
7478                return findViewInsideOutShouldExist(root, mNextFocusForwardId);
7479            case FOCUS_BACKWARD: {
7480                if (mID == View.NO_ID) return null;
7481                final int id = mID;
7482                return root.findViewByPredicateInsideOut(this, new Predicate<View>() {
7483                    @Override
7484                    public boolean apply(View t) {
7485                        return t.mNextFocusForwardId == id;
7486                    }
7487                });
7488            }
7489        }
7490        return null;
7491    }
7492
7493    private View findViewInsideOutShouldExist(View root, int id) {
7494        if (mMatchIdPredicate == null) {
7495            mMatchIdPredicate = new MatchIdPredicate();
7496        }
7497        mMatchIdPredicate.mId = id;
7498        View result = root.findViewByPredicateInsideOut(this, mMatchIdPredicate);
7499        if (result == null) {
7500            Log.w(VIEW_LOG_TAG, "couldn't find view with id " + id);
7501        }
7502        return result;
7503    }
7504
7505    /**
7506     * Find and return all focusable views that are descendants of this view,
7507     * possibly including this view if it is focusable itself.
7508     *
7509     * @param direction The direction of the focus
7510     * @return A list of focusable views
7511     */
7512    public ArrayList<View> getFocusables(@FocusDirection int direction) {
7513        ArrayList<View> result = new ArrayList<View>(24);
7514        addFocusables(result, direction);
7515        return result;
7516    }
7517
7518    /**
7519     * Add any focusable views that are descendants of this view (possibly
7520     * including this view if it is focusable itself) to views.  If we are in touch mode,
7521     * only add views that are also focusable in touch mode.
7522     *
7523     * @param views Focusable views found so far
7524     * @param direction The direction of the focus
7525     */
7526    public void addFocusables(ArrayList<View> views, @FocusDirection int direction) {
7527        addFocusables(views, direction, FOCUSABLES_TOUCH_MODE);
7528    }
7529
7530    /**
7531     * Adds any focusable views that are descendants of this view (possibly
7532     * including this view if it is focusable itself) to views. This method
7533     * adds all focusable views regardless if we are in touch mode or
7534     * only views focusable in touch mode if we are in touch mode or
7535     * only views that can take accessibility focus if accessibility is enabeld
7536     * depending on the focusable mode paramater.
7537     *
7538     * @param views Focusable views found so far or null if all we are interested is
7539     *        the number of focusables.
7540     * @param direction The direction of the focus.
7541     * @param focusableMode The type of focusables to be added.
7542     *
7543     * @see #FOCUSABLES_ALL
7544     * @see #FOCUSABLES_TOUCH_MODE
7545     */
7546    public void addFocusables(ArrayList<View> views, @FocusDirection int direction,
7547            @FocusableMode int focusableMode) {
7548        if (views == null) {
7549            return;
7550        }
7551        if (!isFocusable()) {
7552            return;
7553        }
7554        if ((focusableMode & FOCUSABLES_TOUCH_MODE) == FOCUSABLES_TOUCH_MODE
7555                && isInTouchMode() && !isFocusableInTouchMode()) {
7556            return;
7557        }
7558        views.add(this);
7559    }
7560
7561    /**
7562     * Finds the Views that contain given text. The containment is case insensitive.
7563     * The search is performed by either the text that the View renders or the content
7564     * description that describes the view for accessibility purposes and the view does
7565     * not render or both. Clients can specify how the search is to be performed via
7566     * passing the {@link #FIND_VIEWS_WITH_TEXT} and
7567     * {@link #FIND_VIEWS_WITH_CONTENT_DESCRIPTION} flags.
7568     *
7569     * @param outViews The output list of matching Views.
7570     * @param searched The text to match against.
7571     *
7572     * @see #FIND_VIEWS_WITH_TEXT
7573     * @see #FIND_VIEWS_WITH_CONTENT_DESCRIPTION
7574     * @see #setContentDescription(CharSequence)
7575     */
7576    public void findViewsWithText(ArrayList<View> outViews, CharSequence searched,
7577            @FindViewFlags int flags) {
7578        if (getAccessibilityNodeProvider() != null) {
7579            if ((flags & FIND_VIEWS_WITH_ACCESSIBILITY_NODE_PROVIDERS) != 0) {
7580                outViews.add(this);
7581            }
7582        } else if ((flags & FIND_VIEWS_WITH_CONTENT_DESCRIPTION) != 0
7583                && (searched != null && searched.length() > 0)
7584                && (mContentDescription != null && mContentDescription.length() > 0)) {
7585            String searchedLowerCase = searched.toString().toLowerCase();
7586            String contentDescriptionLowerCase = mContentDescription.toString().toLowerCase();
7587            if (contentDescriptionLowerCase.contains(searchedLowerCase)) {
7588                outViews.add(this);
7589            }
7590        }
7591    }
7592
7593    /**
7594     * Find and return all touchable views that are descendants of this view,
7595     * possibly including this view if it is touchable itself.
7596     *
7597     * @return A list of touchable views
7598     */
7599    public ArrayList<View> getTouchables() {
7600        ArrayList<View> result = new ArrayList<View>();
7601        addTouchables(result);
7602        return result;
7603    }
7604
7605    /**
7606     * Add any touchable views that are descendants of this view (possibly
7607     * including this view if it is touchable itself) to views.
7608     *
7609     * @param views Touchable views found so far
7610     */
7611    public void addTouchables(ArrayList<View> views) {
7612        final int viewFlags = mViewFlags;
7613
7614        if (((viewFlags & CLICKABLE) == CLICKABLE || (viewFlags & LONG_CLICKABLE) == LONG_CLICKABLE)
7615                && (viewFlags & ENABLED_MASK) == ENABLED) {
7616            views.add(this);
7617        }
7618    }
7619
7620    /**
7621     * Returns whether this View is accessibility focused.
7622     *
7623     * @return True if this View is accessibility focused.
7624     */
7625    public boolean isAccessibilityFocused() {
7626        return (mPrivateFlags2 & PFLAG2_ACCESSIBILITY_FOCUSED) != 0;
7627    }
7628
7629    /**
7630     * Call this to try to give accessibility focus to this view.
7631     *
7632     * A view will not actually take focus if {@link AccessibilityManager#isEnabled()}
7633     * returns false or the view is no visible or the view already has accessibility
7634     * focus.
7635     *
7636     * See also {@link #focusSearch(int)}, which is what you call to say that you
7637     * have focus, and you want your parent to look for the next one.
7638     *
7639     * @return Whether this view actually took accessibility focus.
7640     *
7641     * @hide
7642     */
7643    public boolean requestAccessibilityFocus() {
7644        AccessibilityManager manager = AccessibilityManager.getInstance(mContext);
7645        if (!manager.isEnabled() || !manager.isTouchExplorationEnabled()) {
7646            return false;
7647        }
7648        if ((mViewFlags & VISIBILITY_MASK) != VISIBLE) {
7649            return false;
7650        }
7651        if ((mPrivateFlags2 & PFLAG2_ACCESSIBILITY_FOCUSED) == 0) {
7652            mPrivateFlags2 |= PFLAG2_ACCESSIBILITY_FOCUSED;
7653            ViewRootImpl viewRootImpl = getViewRootImpl();
7654            if (viewRootImpl != null) {
7655                viewRootImpl.setAccessibilityFocus(this, null);
7656            }
7657            invalidate();
7658            sendAccessibilityEvent(AccessibilityEvent.TYPE_VIEW_ACCESSIBILITY_FOCUSED);
7659            return true;
7660        }
7661        return false;
7662    }
7663
7664    /**
7665     * Call this to try to clear accessibility focus of this view.
7666     *
7667     * See also {@link #focusSearch(int)}, which is what you call to say that you
7668     * have focus, and you want your parent to look for the next one.
7669     *
7670     * @hide
7671     */
7672    public void clearAccessibilityFocus() {
7673        clearAccessibilityFocusNoCallbacks();
7674        // Clear the global reference of accessibility focus if this
7675        // view or any of its descendants had accessibility focus.
7676        ViewRootImpl viewRootImpl = getViewRootImpl();
7677        if (viewRootImpl != null) {
7678            View focusHost = viewRootImpl.getAccessibilityFocusedHost();
7679            if (focusHost != null && ViewRootImpl.isViewDescendantOf(focusHost, this)) {
7680                viewRootImpl.setAccessibilityFocus(null, null);
7681            }
7682        }
7683    }
7684
7685    private void sendAccessibilityHoverEvent(int eventType) {
7686        // Since we are not delivering to a client accessibility events from not
7687        // important views (unless the clinet request that) we need to fire the
7688        // event from the deepest view exposed to the client. As a consequence if
7689        // the user crosses a not exposed view the client will see enter and exit
7690        // of the exposed predecessor followed by and enter and exit of that same
7691        // predecessor when entering and exiting the not exposed descendant. This
7692        // is fine since the client has a clear idea which view is hovered at the
7693        // price of a couple more events being sent. This is a simple and
7694        // working solution.
7695        View source = this;
7696        while (true) {
7697            if (source.includeForAccessibility()) {
7698                source.sendAccessibilityEvent(eventType);
7699                return;
7700            }
7701            ViewParent parent = source.getParent();
7702            if (parent instanceof View) {
7703                source = (View) parent;
7704            } else {
7705                return;
7706            }
7707        }
7708    }
7709
7710    /**
7711     * Clears accessibility focus without calling any callback methods
7712     * normally invoked in {@link #clearAccessibilityFocus()}. This method
7713     * is used for clearing accessibility focus when giving this focus to
7714     * another view.
7715     */
7716    void clearAccessibilityFocusNoCallbacks() {
7717        if ((mPrivateFlags2 & PFLAG2_ACCESSIBILITY_FOCUSED) != 0) {
7718            mPrivateFlags2 &= ~PFLAG2_ACCESSIBILITY_FOCUSED;
7719            invalidate();
7720            sendAccessibilityEvent(AccessibilityEvent.TYPE_VIEW_ACCESSIBILITY_FOCUS_CLEARED);
7721        }
7722    }
7723
7724    /**
7725     * Call this to try to give focus to a specific view or to one of its
7726     * descendants.
7727     *
7728     * A view will not actually take focus if it is not focusable ({@link #isFocusable} returns
7729     * false), or if it is focusable and it is not focusable in touch mode
7730     * ({@link #isFocusableInTouchMode}) while the device is in touch mode.
7731     *
7732     * See also {@link #focusSearch(int)}, which is what you call to say that you
7733     * have focus, and you want your parent to look for the next one.
7734     *
7735     * This is equivalent to calling {@link #requestFocus(int, Rect)} with arguments
7736     * {@link #FOCUS_DOWN} and <code>null</code>.
7737     *
7738     * @return Whether this view or one of its descendants actually took focus.
7739     */
7740    public final boolean requestFocus() {
7741        return requestFocus(View.FOCUS_DOWN);
7742    }
7743
7744    /**
7745     * Call this to try to give focus to a specific view or to one of its
7746     * descendants and give it a hint about what direction focus is heading.
7747     *
7748     * A view will not actually take focus if it is not focusable ({@link #isFocusable} returns
7749     * false), or if it is focusable and it is not focusable in touch mode
7750     * ({@link #isFocusableInTouchMode}) while the device is in touch mode.
7751     *
7752     * See also {@link #focusSearch(int)}, which is what you call to say that you
7753     * have focus, and you want your parent to look for the next one.
7754     *
7755     * This is equivalent to calling {@link #requestFocus(int, Rect)} with
7756     * <code>null</code> set for the previously focused rectangle.
7757     *
7758     * @param direction One of FOCUS_UP, FOCUS_DOWN, FOCUS_LEFT, and FOCUS_RIGHT
7759     * @return Whether this view or one of its descendants actually took focus.
7760     */
7761    public final boolean requestFocus(int direction) {
7762        return requestFocus(direction, null);
7763    }
7764
7765    /**
7766     * Call this to try to give focus to a specific view or to one of its descendants
7767     * and give it hints about the direction and a specific rectangle that the focus
7768     * is coming from.  The rectangle can help give larger views a finer grained hint
7769     * about where focus is coming from, and therefore, where to show selection, or
7770     * forward focus change internally.
7771     *
7772     * A view will not actually take focus if it is not focusable ({@link #isFocusable} returns
7773     * false), or if it is focusable and it is not focusable in touch mode
7774     * ({@link #isFocusableInTouchMode}) while the device is in touch mode.
7775     *
7776     * A View will not take focus if it is not visible.
7777     *
7778     * A View will not take focus if one of its parents has
7779     * {@link android.view.ViewGroup#getDescendantFocusability()} equal to
7780     * {@link ViewGroup#FOCUS_BLOCK_DESCENDANTS}.
7781     *
7782     * See also {@link #focusSearch(int)}, which is what you call to say that you
7783     * have focus, and you want your parent to look for the next one.
7784     *
7785     * You may wish to override this method if your custom {@link View} has an internal
7786     * {@link View} that it wishes to forward the request to.
7787     *
7788     * @param direction One of FOCUS_UP, FOCUS_DOWN, FOCUS_LEFT, and FOCUS_RIGHT
7789     * @param previouslyFocusedRect The rectangle (in this View's coordinate system)
7790     *        to give a finer grained hint about where focus is coming from.  May be null
7791     *        if there is no hint.
7792     * @return Whether this view or one of its descendants actually took focus.
7793     */
7794    public boolean requestFocus(int direction, Rect previouslyFocusedRect) {
7795        return requestFocusNoSearch(direction, previouslyFocusedRect);
7796    }
7797
7798    private boolean requestFocusNoSearch(int direction, Rect previouslyFocusedRect) {
7799        // need to be focusable
7800        if ((mViewFlags & FOCUSABLE_MASK) != FOCUSABLE ||
7801                (mViewFlags & VISIBILITY_MASK) != VISIBLE) {
7802            return false;
7803        }
7804
7805        // need to be focusable in touch mode if in touch mode
7806        if (isInTouchMode() &&
7807            (FOCUSABLE_IN_TOUCH_MODE != (mViewFlags & FOCUSABLE_IN_TOUCH_MODE))) {
7808               return false;
7809        }
7810
7811        // need to not have any parents blocking us
7812        if (hasAncestorThatBlocksDescendantFocus()) {
7813            return false;
7814        }
7815
7816        handleFocusGainInternal(direction, previouslyFocusedRect);
7817        return true;
7818    }
7819
7820    /**
7821     * Call this to try to give focus to a specific view or to one of its descendants. This is a
7822     * special variant of {@link #requestFocus() } that will allow views that are not focuable in
7823     * touch mode to request focus when they are touched.
7824     *
7825     * @return Whether this view or one of its descendants actually took focus.
7826     *
7827     * @see #isInTouchMode()
7828     *
7829     */
7830    public final boolean requestFocusFromTouch() {
7831        // Leave touch mode if we need to
7832        if (isInTouchMode()) {
7833            ViewRootImpl viewRoot = getViewRootImpl();
7834            if (viewRoot != null) {
7835                viewRoot.ensureTouchMode(false);
7836            }
7837        }
7838        return requestFocus(View.FOCUS_DOWN);
7839    }
7840
7841    /**
7842     * @return Whether any ancestor of this view blocks descendant focus.
7843     */
7844    private boolean hasAncestorThatBlocksDescendantFocus() {
7845        final boolean focusableInTouchMode = isFocusableInTouchMode();
7846        ViewParent ancestor = mParent;
7847        while (ancestor instanceof ViewGroup) {
7848            final ViewGroup vgAncestor = (ViewGroup) ancestor;
7849            if (vgAncestor.getDescendantFocusability() == ViewGroup.FOCUS_BLOCK_DESCENDANTS
7850                    || (!focusableInTouchMode && vgAncestor.shouldBlockFocusForTouchscreen())) {
7851                return true;
7852            } else {
7853                ancestor = vgAncestor.getParent();
7854            }
7855        }
7856        return false;
7857    }
7858
7859    /**
7860     * Gets the mode for determining whether this View is important for accessibility
7861     * which is if it fires accessibility events and if it is reported to
7862     * accessibility services that query the screen.
7863     *
7864     * @return The mode for determining whether a View is important for accessibility.
7865     *
7866     * @attr ref android.R.styleable#View_importantForAccessibility
7867     *
7868     * @see #IMPORTANT_FOR_ACCESSIBILITY_YES
7869     * @see #IMPORTANT_FOR_ACCESSIBILITY_NO
7870     * @see #IMPORTANT_FOR_ACCESSIBILITY_NO_HIDE_DESCENDANTS
7871     * @see #IMPORTANT_FOR_ACCESSIBILITY_AUTO
7872     */
7873    @ViewDebug.ExportedProperty(category = "accessibility", mapping = {
7874            @ViewDebug.IntToString(from = IMPORTANT_FOR_ACCESSIBILITY_AUTO, to = "auto"),
7875            @ViewDebug.IntToString(from = IMPORTANT_FOR_ACCESSIBILITY_YES, to = "yes"),
7876            @ViewDebug.IntToString(from = IMPORTANT_FOR_ACCESSIBILITY_NO, to = "no"),
7877            @ViewDebug.IntToString(from = IMPORTANT_FOR_ACCESSIBILITY_NO_HIDE_DESCENDANTS,
7878                    to = "noHideDescendants")
7879        })
7880    public int getImportantForAccessibility() {
7881        return (mPrivateFlags2 & PFLAG2_IMPORTANT_FOR_ACCESSIBILITY_MASK)
7882                >> PFLAG2_IMPORTANT_FOR_ACCESSIBILITY_SHIFT;
7883    }
7884
7885    /**
7886     * Sets the live region mode for this view. This indicates to accessibility
7887     * services whether they should automatically notify the user about changes
7888     * to the view's content description or text, or to the content descriptions
7889     * or text of the view's children (where applicable).
7890     * <p>
7891     * For example, in a login screen with a TextView that displays an "incorrect
7892     * password" notification, that view should be marked as a live region with
7893     * mode {@link #ACCESSIBILITY_LIVE_REGION_POLITE}.
7894     * <p>
7895     * To disable change notifications for this view, use
7896     * {@link #ACCESSIBILITY_LIVE_REGION_NONE}. This is the default live region
7897     * mode for most views.
7898     * <p>
7899     * To indicate that the user should be notified of changes, use
7900     * {@link #ACCESSIBILITY_LIVE_REGION_POLITE}.
7901     * <p>
7902     * If the view's changes should interrupt ongoing speech and notify the user
7903     * immediately, use {@link #ACCESSIBILITY_LIVE_REGION_ASSERTIVE}.
7904     *
7905     * @param mode The live region mode for this view, one of:
7906     *        <ul>
7907     *        <li>{@link #ACCESSIBILITY_LIVE_REGION_NONE}
7908     *        <li>{@link #ACCESSIBILITY_LIVE_REGION_POLITE}
7909     *        <li>{@link #ACCESSIBILITY_LIVE_REGION_ASSERTIVE}
7910     *        </ul>
7911     * @attr ref android.R.styleable#View_accessibilityLiveRegion
7912     */
7913    public void setAccessibilityLiveRegion(int mode) {
7914        if (mode != getAccessibilityLiveRegion()) {
7915            mPrivateFlags2 &= ~PFLAG2_ACCESSIBILITY_LIVE_REGION_MASK;
7916            mPrivateFlags2 |= (mode << PFLAG2_ACCESSIBILITY_LIVE_REGION_SHIFT)
7917                    & PFLAG2_ACCESSIBILITY_LIVE_REGION_MASK;
7918            notifyViewAccessibilityStateChangedIfNeeded(
7919                    AccessibilityEvent.CONTENT_CHANGE_TYPE_UNDEFINED);
7920        }
7921    }
7922
7923    /**
7924     * Gets the live region mode for this View.
7925     *
7926     * @return The live region mode for the view.
7927     *
7928     * @attr ref android.R.styleable#View_accessibilityLiveRegion
7929     *
7930     * @see #setAccessibilityLiveRegion(int)
7931     */
7932    public int getAccessibilityLiveRegion() {
7933        return (mPrivateFlags2 & PFLAG2_ACCESSIBILITY_LIVE_REGION_MASK)
7934                >> PFLAG2_ACCESSIBILITY_LIVE_REGION_SHIFT;
7935    }
7936
7937    /**
7938     * Sets how to determine whether this view is important for accessibility
7939     * which is if it fires accessibility events and if it is reported to
7940     * accessibility services that query the screen.
7941     *
7942     * @param mode How to determine whether this view is important for accessibility.
7943     *
7944     * @attr ref android.R.styleable#View_importantForAccessibility
7945     *
7946     * @see #IMPORTANT_FOR_ACCESSIBILITY_YES
7947     * @see #IMPORTANT_FOR_ACCESSIBILITY_NO
7948     * @see #IMPORTANT_FOR_ACCESSIBILITY_NO_HIDE_DESCENDANTS
7949     * @see #IMPORTANT_FOR_ACCESSIBILITY_AUTO
7950     */
7951    public void setImportantForAccessibility(int mode) {
7952        final int oldMode = getImportantForAccessibility();
7953        if (mode != oldMode) {
7954            // If we're moving between AUTO and another state, we might not need
7955            // to send a subtree changed notification. We'll store the computed
7956            // importance, since we'll need to check it later to make sure.
7957            final boolean maySkipNotify = oldMode == IMPORTANT_FOR_ACCESSIBILITY_AUTO
7958                    || mode == IMPORTANT_FOR_ACCESSIBILITY_AUTO;
7959            final boolean oldIncludeForAccessibility = maySkipNotify && includeForAccessibility();
7960            mPrivateFlags2 &= ~PFLAG2_IMPORTANT_FOR_ACCESSIBILITY_MASK;
7961            mPrivateFlags2 |= (mode << PFLAG2_IMPORTANT_FOR_ACCESSIBILITY_SHIFT)
7962                    & PFLAG2_IMPORTANT_FOR_ACCESSIBILITY_MASK;
7963            if (!maySkipNotify || oldIncludeForAccessibility != includeForAccessibility()) {
7964                notifySubtreeAccessibilityStateChangedIfNeeded();
7965            } else {
7966                notifyViewAccessibilityStateChangedIfNeeded(
7967                        AccessibilityEvent.CONTENT_CHANGE_TYPE_UNDEFINED);
7968            }
7969        }
7970    }
7971
7972    /**
7973     * Computes whether this view should be exposed for accessibility. In
7974     * general, views that are interactive or provide information are exposed
7975     * while views that serve only as containers are hidden.
7976     * <p>
7977     * If an ancestor of this view has importance
7978     * {@link #IMPORTANT_FOR_ACCESSIBILITY_NO_HIDE_DESCENDANTS}, this method
7979     * returns <code>false</code>.
7980     * <p>
7981     * Otherwise, the value is computed according to the view's
7982     * {@link #getImportantForAccessibility()} value:
7983     * <ol>
7984     * <li>{@link #IMPORTANT_FOR_ACCESSIBILITY_NO} or
7985     * {@link #IMPORTANT_FOR_ACCESSIBILITY_NO_HIDE_DESCENDANTS}, return <code>false
7986     * </code>
7987     * <li>{@link #IMPORTANT_FOR_ACCESSIBILITY_YES}, return <code>true</code>
7988     * <li>{@link #IMPORTANT_FOR_ACCESSIBILITY_AUTO}, return <code>true</code> if
7989     * view satisfies any of the following:
7990     * <ul>
7991     * <li>Is actionable, e.g. {@link #isClickable()},
7992     * {@link #isLongClickable()}, or {@link #isFocusable()}
7993     * <li>Has an {@link AccessibilityDelegate}
7994     * <li>Has an interaction listener, e.g. {@link OnTouchListener},
7995     * {@link OnKeyListener}, etc.
7996     * <li>Is an accessibility live region, e.g.
7997     * {@link #getAccessibilityLiveRegion()} is not
7998     * {@link #ACCESSIBILITY_LIVE_REGION_NONE}.
7999     * </ul>
8000     * </ol>
8001     *
8002     * @return Whether the view is exposed for accessibility.
8003     * @see #setImportantForAccessibility(int)
8004     * @see #getImportantForAccessibility()
8005     */
8006    public boolean isImportantForAccessibility() {
8007        final int mode = (mPrivateFlags2 & PFLAG2_IMPORTANT_FOR_ACCESSIBILITY_MASK)
8008                >> PFLAG2_IMPORTANT_FOR_ACCESSIBILITY_SHIFT;
8009        if (mode == IMPORTANT_FOR_ACCESSIBILITY_NO
8010                || mode == IMPORTANT_FOR_ACCESSIBILITY_NO_HIDE_DESCENDANTS) {
8011            return false;
8012        }
8013
8014        // Check parent mode to ensure we're not hidden.
8015        ViewParent parent = mParent;
8016        while (parent instanceof View) {
8017            if (((View) parent).getImportantForAccessibility()
8018                    == IMPORTANT_FOR_ACCESSIBILITY_NO_HIDE_DESCENDANTS) {
8019                return false;
8020            }
8021            parent = parent.getParent();
8022        }
8023
8024        return mode == IMPORTANT_FOR_ACCESSIBILITY_YES || isActionableForAccessibility()
8025                || hasListenersForAccessibility() || getAccessibilityNodeProvider() != null
8026                || getAccessibilityLiveRegion() != ACCESSIBILITY_LIVE_REGION_NONE;
8027    }
8028
8029    /**
8030     * Gets the parent for accessibility purposes. Note that the parent for
8031     * accessibility is not necessary the immediate parent. It is the first
8032     * predecessor that is important for accessibility.
8033     *
8034     * @return The parent for accessibility purposes.
8035     */
8036    public ViewParent getParentForAccessibility() {
8037        if (mParent instanceof View) {
8038            View parentView = (View) mParent;
8039            if (parentView.includeForAccessibility()) {
8040                return mParent;
8041            } else {
8042                return mParent.getParentForAccessibility();
8043            }
8044        }
8045        return null;
8046    }
8047
8048    /**
8049     * Adds the children of a given View for accessibility. Since some Views are
8050     * not important for accessibility the children for accessibility are not
8051     * necessarily direct children of the view, rather they are the first level of
8052     * descendants important for accessibility.
8053     *
8054     * @param children The list of children for accessibility.
8055     */
8056    public void addChildrenForAccessibility(ArrayList<View> children) {
8057
8058    }
8059
8060    /**
8061     * Whether to regard this view for accessibility. A view is regarded for
8062     * accessibility if it is important for accessibility or the querying
8063     * accessibility service has explicitly requested that view not
8064     * important for accessibility are regarded.
8065     *
8066     * @return Whether to regard the view for accessibility.
8067     *
8068     * @hide
8069     */
8070    public boolean includeForAccessibility() {
8071        if (mAttachInfo != null) {
8072            return (mAttachInfo.mAccessibilityFetchFlags
8073                    & AccessibilityNodeInfo.FLAG_INCLUDE_NOT_IMPORTANT_VIEWS) != 0
8074                    || isImportantForAccessibility();
8075        }
8076        return false;
8077    }
8078
8079    /**
8080     * Returns whether the View is considered actionable from
8081     * accessibility perspective. Such view are important for
8082     * accessibility.
8083     *
8084     * @return True if the view is actionable for accessibility.
8085     *
8086     * @hide
8087     */
8088    public boolean isActionableForAccessibility() {
8089        return (isClickable() || isLongClickable() || isFocusable());
8090    }
8091
8092    /**
8093     * Returns whether the View has registered callbacks which makes it
8094     * important for accessibility.
8095     *
8096     * @return True if the view is actionable for accessibility.
8097     */
8098    private boolean hasListenersForAccessibility() {
8099        ListenerInfo info = getListenerInfo();
8100        return mTouchDelegate != null || info.mOnKeyListener != null
8101                || info.mOnTouchListener != null || info.mOnGenericMotionListener != null
8102                || info.mOnHoverListener != null || info.mOnDragListener != null;
8103    }
8104
8105    /**
8106     * Notifies that the accessibility state of this view changed. The change
8107     * is local to this view and does not represent structural changes such
8108     * as children and parent. For example, the view became focusable. The
8109     * notification is at at most once every
8110     * {@link ViewConfiguration#getSendRecurringAccessibilityEventsInterval()}
8111     * to avoid unnecessary load to the system. Also once a view has a pending
8112     * notification this method is a NOP until the notification has been sent.
8113     *
8114     * @hide
8115     */
8116    public void notifyViewAccessibilityStateChangedIfNeeded(int changeType) {
8117        if (!AccessibilityManager.getInstance(mContext).isEnabled()) {
8118            return;
8119        }
8120        if (mSendViewStateChangedAccessibilityEvent == null) {
8121            mSendViewStateChangedAccessibilityEvent =
8122                    new SendViewStateChangedAccessibilityEvent();
8123        }
8124        mSendViewStateChangedAccessibilityEvent.runOrPost(changeType);
8125    }
8126
8127    /**
8128     * Notifies that the accessibility state of this view changed. The change
8129     * is *not* local to this view and does represent structural changes such
8130     * as children and parent. For example, the view size changed. The
8131     * notification is at at most once every
8132     * {@link ViewConfiguration#getSendRecurringAccessibilityEventsInterval()}
8133     * to avoid unnecessary load to the system. Also once a view has a pending
8134     * notification this method is a NOP until the notification has been sent.
8135     *
8136     * @hide
8137     */
8138    public void notifySubtreeAccessibilityStateChangedIfNeeded() {
8139        if (!AccessibilityManager.getInstance(mContext).isEnabled()) {
8140            return;
8141        }
8142        if ((mPrivateFlags2 & PFLAG2_SUBTREE_ACCESSIBILITY_STATE_CHANGED) == 0) {
8143            mPrivateFlags2 |= PFLAG2_SUBTREE_ACCESSIBILITY_STATE_CHANGED;
8144            if (mParent != null) {
8145                try {
8146                    mParent.notifySubtreeAccessibilityStateChanged(
8147                            this, this, AccessibilityEvent.CONTENT_CHANGE_TYPE_SUBTREE);
8148                } catch (AbstractMethodError e) {
8149                    Log.e(VIEW_LOG_TAG, mParent.getClass().getSimpleName() +
8150                            " does not fully implement ViewParent", e);
8151                }
8152            }
8153        }
8154    }
8155
8156    /**
8157     * Reset the flag indicating the accessibility state of the subtree rooted
8158     * at this view changed.
8159     */
8160    void resetSubtreeAccessibilityStateChanged() {
8161        mPrivateFlags2 &= ~PFLAG2_SUBTREE_ACCESSIBILITY_STATE_CHANGED;
8162    }
8163
8164    /**
8165     * Performs the specified accessibility action on the view. For
8166     * possible accessibility actions look at {@link AccessibilityNodeInfo}.
8167     * <p>
8168     * If an {@link AccessibilityDelegate} has been specified via calling
8169     * {@link #setAccessibilityDelegate(AccessibilityDelegate)} its
8170     * {@link AccessibilityDelegate#performAccessibilityAction(View, int, Bundle)}
8171     * is responsible for handling this call.
8172     * </p>
8173     *
8174     * @param action The action to perform.
8175     * @param arguments Optional action arguments.
8176     * @return Whether the action was performed.
8177     */
8178    public boolean performAccessibilityAction(int action, Bundle arguments) {
8179      if (mAccessibilityDelegate != null) {
8180          return mAccessibilityDelegate.performAccessibilityAction(this, action, arguments);
8181      } else {
8182          return performAccessibilityActionInternal(action, arguments);
8183      }
8184    }
8185
8186   /**
8187    * @see #performAccessibilityAction(int, Bundle)
8188    *
8189    * Note: Called from the default {@link AccessibilityDelegate}.
8190    */
8191    boolean performAccessibilityActionInternal(int action, Bundle arguments) {
8192        switch (action) {
8193            case AccessibilityNodeInfo.ACTION_CLICK: {
8194                if (isClickable()) {
8195                    performClick();
8196                    return true;
8197                }
8198            } break;
8199            case AccessibilityNodeInfo.ACTION_LONG_CLICK: {
8200                if (isLongClickable()) {
8201                    performLongClick();
8202                    return true;
8203                }
8204            } break;
8205            case AccessibilityNodeInfo.ACTION_FOCUS: {
8206                if (!hasFocus()) {
8207                    // Get out of touch mode since accessibility
8208                    // wants to move focus around.
8209                    getViewRootImpl().ensureTouchMode(false);
8210                    return requestFocus();
8211                }
8212            } break;
8213            case AccessibilityNodeInfo.ACTION_CLEAR_FOCUS: {
8214                if (hasFocus()) {
8215                    clearFocus();
8216                    return !isFocused();
8217                }
8218            } break;
8219            case AccessibilityNodeInfo.ACTION_SELECT: {
8220                if (!isSelected()) {
8221                    setSelected(true);
8222                    return isSelected();
8223                }
8224            } break;
8225            case AccessibilityNodeInfo.ACTION_CLEAR_SELECTION: {
8226                if (isSelected()) {
8227                    setSelected(false);
8228                    return !isSelected();
8229                }
8230            } break;
8231            case AccessibilityNodeInfo.ACTION_ACCESSIBILITY_FOCUS: {
8232                if (!isAccessibilityFocused()) {
8233                    return requestAccessibilityFocus();
8234                }
8235            } break;
8236            case AccessibilityNodeInfo.ACTION_CLEAR_ACCESSIBILITY_FOCUS: {
8237                if (isAccessibilityFocused()) {
8238                    clearAccessibilityFocus();
8239                    return true;
8240                }
8241            } break;
8242            case AccessibilityNodeInfo.ACTION_NEXT_AT_MOVEMENT_GRANULARITY: {
8243                if (arguments != null) {
8244                    final int granularity = arguments.getInt(
8245                            AccessibilityNodeInfo.ACTION_ARGUMENT_MOVEMENT_GRANULARITY_INT);
8246                    final boolean extendSelection = arguments.getBoolean(
8247                            AccessibilityNodeInfo.ACTION_ARGUMENT_EXTEND_SELECTION_BOOLEAN);
8248                    return traverseAtGranularity(granularity, true, extendSelection);
8249                }
8250            } break;
8251            case AccessibilityNodeInfo.ACTION_PREVIOUS_AT_MOVEMENT_GRANULARITY: {
8252                if (arguments != null) {
8253                    final int granularity = arguments.getInt(
8254                            AccessibilityNodeInfo.ACTION_ARGUMENT_MOVEMENT_GRANULARITY_INT);
8255                    final boolean extendSelection = arguments.getBoolean(
8256                            AccessibilityNodeInfo.ACTION_ARGUMENT_EXTEND_SELECTION_BOOLEAN);
8257                    return traverseAtGranularity(granularity, false, extendSelection);
8258                }
8259            } break;
8260            case AccessibilityNodeInfo.ACTION_SET_SELECTION: {
8261                CharSequence text = getIterableTextForAccessibility();
8262                if (text == null) {
8263                    return false;
8264                }
8265                final int start = (arguments != null) ? arguments.getInt(
8266                        AccessibilityNodeInfo.ACTION_ARGUMENT_SELECTION_START_INT, -1) : -1;
8267                final int end = (arguments != null) ? arguments.getInt(
8268                AccessibilityNodeInfo.ACTION_ARGUMENT_SELECTION_END_INT, -1) : -1;
8269                // Only cursor position can be specified (selection length == 0)
8270                if ((getAccessibilitySelectionStart() != start
8271                        || getAccessibilitySelectionEnd() != end)
8272                        && (start == end)) {
8273                    setAccessibilitySelection(start, end);
8274                    notifyViewAccessibilityStateChangedIfNeeded(
8275                            AccessibilityEvent.CONTENT_CHANGE_TYPE_UNDEFINED);
8276                    return true;
8277                }
8278            } break;
8279        }
8280        return false;
8281    }
8282
8283    private boolean traverseAtGranularity(int granularity, boolean forward,
8284            boolean extendSelection) {
8285        CharSequence text = getIterableTextForAccessibility();
8286        if (text == null || text.length() == 0) {
8287            return false;
8288        }
8289        TextSegmentIterator iterator = getIteratorForGranularity(granularity);
8290        if (iterator == null) {
8291            return false;
8292        }
8293        int current = getAccessibilitySelectionEnd();
8294        if (current == ACCESSIBILITY_CURSOR_POSITION_UNDEFINED) {
8295            current = forward ? 0 : text.length();
8296        }
8297        final int[] range = forward ? iterator.following(current) : iterator.preceding(current);
8298        if (range == null) {
8299            return false;
8300        }
8301        final int segmentStart = range[0];
8302        final int segmentEnd = range[1];
8303        int selectionStart;
8304        int selectionEnd;
8305        if (extendSelection && isAccessibilitySelectionExtendable()) {
8306            selectionStart = getAccessibilitySelectionStart();
8307            if (selectionStart == ACCESSIBILITY_CURSOR_POSITION_UNDEFINED) {
8308                selectionStart = forward ? segmentStart : segmentEnd;
8309            }
8310            selectionEnd = forward ? segmentEnd : segmentStart;
8311        } else {
8312            selectionStart = selectionEnd= forward ? segmentEnd : segmentStart;
8313        }
8314        setAccessibilitySelection(selectionStart, selectionEnd);
8315        final int action = forward ? AccessibilityNodeInfo.ACTION_NEXT_AT_MOVEMENT_GRANULARITY
8316                : AccessibilityNodeInfo.ACTION_PREVIOUS_AT_MOVEMENT_GRANULARITY;
8317        sendViewTextTraversedAtGranularityEvent(action, granularity, segmentStart, segmentEnd);
8318        return true;
8319    }
8320
8321    /**
8322     * Gets the text reported for accessibility purposes.
8323     *
8324     * @return The accessibility text.
8325     *
8326     * @hide
8327     */
8328    public CharSequence getIterableTextForAccessibility() {
8329        return getContentDescription();
8330    }
8331
8332    /**
8333     * Gets whether accessibility selection can be extended.
8334     *
8335     * @return If selection is extensible.
8336     *
8337     * @hide
8338     */
8339    public boolean isAccessibilitySelectionExtendable() {
8340        return false;
8341    }
8342
8343    /**
8344     * @hide
8345     */
8346    public int getAccessibilitySelectionStart() {
8347        return mAccessibilityCursorPosition;
8348    }
8349
8350    /**
8351     * @hide
8352     */
8353    public int getAccessibilitySelectionEnd() {
8354        return getAccessibilitySelectionStart();
8355    }
8356
8357    /**
8358     * @hide
8359     */
8360    public void setAccessibilitySelection(int start, int end) {
8361        if (start ==  end && end == mAccessibilityCursorPosition) {
8362            return;
8363        }
8364        if (start >= 0 && start == end && end <= getIterableTextForAccessibility().length()) {
8365            mAccessibilityCursorPosition = start;
8366        } else {
8367            mAccessibilityCursorPosition = ACCESSIBILITY_CURSOR_POSITION_UNDEFINED;
8368        }
8369        sendAccessibilityEvent(AccessibilityEvent.TYPE_VIEW_TEXT_SELECTION_CHANGED);
8370    }
8371
8372    private void sendViewTextTraversedAtGranularityEvent(int action, int granularity,
8373            int fromIndex, int toIndex) {
8374        if (mParent == null) {
8375            return;
8376        }
8377        AccessibilityEvent event = AccessibilityEvent.obtain(
8378                AccessibilityEvent.TYPE_VIEW_TEXT_TRAVERSED_AT_MOVEMENT_GRANULARITY);
8379        onInitializeAccessibilityEvent(event);
8380        onPopulateAccessibilityEvent(event);
8381        event.setFromIndex(fromIndex);
8382        event.setToIndex(toIndex);
8383        event.setAction(action);
8384        event.setMovementGranularity(granularity);
8385        mParent.requestSendAccessibilityEvent(this, event);
8386    }
8387
8388    /**
8389     * @hide
8390     */
8391    public TextSegmentIterator getIteratorForGranularity(int granularity) {
8392        switch (granularity) {
8393            case AccessibilityNodeInfo.MOVEMENT_GRANULARITY_CHARACTER: {
8394                CharSequence text = getIterableTextForAccessibility();
8395                if (text != null && text.length() > 0) {
8396                    CharacterTextSegmentIterator iterator =
8397                        CharacterTextSegmentIterator.getInstance(
8398                                mContext.getResources().getConfiguration().locale);
8399                    iterator.initialize(text.toString());
8400                    return iterator;
8401                }
8402            } break;
8403            case AccessibilityNodeInfo.MOVEMENT_GRANULARITY_WORD: {
8404                CharSequence text = getIterableTextForAccessibility();
8405                if (text != null && text.length() > 0) {
8406                    WordTextSegmentIterator iterator =
8407                        WordTextSegmentIterator.getInstance(
8408                                mContext.getResources().getConfiguration().locale);
8409                    iterator.initialize(text.toString());
8410                    return iterator;
8411                }
8412            } break;
8413            case AccessibilityNodeInfo.MOVEMENT_GRANULARITY_PARAGRAPH: {
8414                CharSequence text = getIterableTextForAccessibility();
8415                if (text != null && text.length() > 0) {
8416                    ParagraphTextSegmentIterator iterator =
8417                        ParagraphTextSegmentIterator.getInstance();
8418                    iterator.initialize(text.toString());
8419                    return iterator;
8420                }
8421            } break;
8422        }
8423        return null;
8424    }
8425
8426    /**
8427     * @hide
8428     */
8429    public void dispatchStartTemporaryDetach() {
8430        onStartTemporaryDetach();
8431    }
8432
8433    /**
8434     * This is called when a container is going to temporarily detach a child, with
8435     * {@link ViewGroup#detachViewFromParent(View) ViewGroup.detachViewFromParent}.
8436     * It will either be followed by {@link #onFinishTemporaryDetach()} or
8437     * {@link #onDetachedFromWindow()} when the container is done.
8438     */
8439    public void onStartTemporaryDetach() {
8440        removeUnsetPressCallback();
8441        mPrivateFlags |= PFLAG_CANCEL_NEXT_UP_EVENT;
8442    }
8443
8444    /**
8445     * @hide
8446     */
8447    public void dispatchFinishTemporaryDetach() {
8448        onFinishTemporaryDetach();
8449    }
8450
8451    /**
8452     * Called after {@link #onStartTemporaryDetach} when the container is done
8453     * changing the view.
8454     */
8455    public void onFinishTemporaryDetach() {
8456    }
8457
8458    /**
8459     * Return the global {@link KeyEvent.DispatcherState KeyEvent.DispatcherState}
8460     * for this view's window.  Returns null if the view is not currently attached
8461     * to the window.  Normally you will not need to use this directly, but
8462     * just use the standard high-level event callbacks like
8463     * {@link #onKeyDown(int, KeyEvent)}.
8464     */
8465    public KeyEvent.DispatcherState getKeyDispatcherState() {
8466        return mAttachInfo != null ? mAttachInfo.mKeyDispatchState : null;
8467    }
8468
8469    /**
8470     * Dispatch a key event before it is processed by any input method
8471     * associated with the view hierarchy.  This can be used to intercept
8472     * key events in special situations before the IME consumes them; a
8473     * typical example would be handling the BACK key to update the application's
8474     * UI instead of allowing the IME to see it and close itself.
8475     *
8476     * @param event The key event to be dispatched.
8477     * @return True if the event was handled, false otherwise.
8478     */
8479    public boolean dispatchKeyEventPreIme(KeyEvent event) {
8480        return onKeyPreIme(event.getKeyCode(), event);
8481    }
8482
8483    /**
8484     * Dispatch a key event to the next view on the focus path. This path runs
8485     * from the top of the view tree down to the currently focused view. If this
8486     * view has focus, it will dispatch to itself. Otherwise it will dispatch
8487     * the next node down the focus path. This method also fires any key
8488     * listeners.
8489     *
8490     * @param event The key event to be dispatched.
8491     * @return True if the event was handled, false otherwise.
8492     */
8493    public boolean dispatchKeyEvent(KeyEvent event) {
8494        if (mInputEventConsistencyVerifier != null) {
8495            mInputEventConsistencyVerifier.onKeyEvent(event, 0);
8496        }
8497
8498        // Give any attached key listener a first crack at the event.
8499        //noinspection SimplifiableIfStatement
8500        ListenerInfo li = mListenerInfo;
8501        if (li != null && li.mOnKeyListener != null && (mViewFlags & ENABLED_MASK) == ENABLED
8502                && li.mOnKeyListener.onKey(this, event.getKeyCode(), event)) {
8503            return true;
8504        }
8505
8506        if (event.dispatch(this, mAttachInfo != null
8507                ? mAttachInfo.mKeyDispatchState : null, this)) {
8508            return true;
8509        }
8510
8511        if (mInputEventConsistencyVerifier != null) {
8512            mInputEventConsistencyVerifier.onUnhandledEvent(event, 0);
8513        }
8514        return false;
8515    }
8516
8517    /**
8518     * Dispatches a key shortcut event.
8519     *
8520     * @param event The key event to be dispatched.
8521     * @return True if the event was handled by the view, false otherwise.
8522     */
8523    public boolean dispatchKeyShortcutEvent(KeyEvent event) {
8524        return onKeyShortcut(event.getKeyCode(), event);
8525    }
8526
8527    /**
8528     * Pass the touch screen motion event down to the target view, or this
8529     * view if it is the target.
8530     *
8531     * @param event The motion event to be dispatched.
8532     * @return True if the event was handled by the view, false otherwise.
8533     */
8534    public boolean dispatchTouchEvent(MotionEvent event) {
8535        boolean result = false;
8536
8537        if (mInputEventConsistencyVerifier != null) {
8538            mInputEventConsistencyVerifier.onTouchEvent(event, 0);
8539        }
8540
8541        final int actionMasked = event.getActionMasked();
8542        if (actionMasked == MotionEvent.ACTION_DOWN) {
8543            // Defensive cleanup for new gesture
8544            stopNestedScroll();
8545        }
8546
8547        if (onFilterTouchEventForSecurity(event)) {
8548            //noinspection SimplifiableIfStatement
8549            ListenerInfo li = mListenerInfo;
8550            if (li != null && li.mOnTouchListener != null
8551                    && (mViewFlags & ENABLED_MASK) == ENABLED
8552                    && li.mOnTouchListener.onTouch(this, event)) {
8553                result = true;
8554            }
8555
8556            if (!result && onTouchEvent(event)) {
8557                result = true;
8558            }
8559        }
8560
8561        if (!result && mInputEventConsistencyVerifier != null) {
8562            mInputEventConsistencyVerifier.onUnhandledEvent(event, 0);
8563        }
8564
8565        // Clean up after nested scrolls if this is the end of a gesture;
8566        // also cancel it if we tried an ACTION_DOWN but we didn't want the rest
8567        // of the gesture.
8568        if (actionMasked == MotionEvent.ACTION_UP ||
8569                actionMasked == MotionEvent.ACTION_CANCEL ||
8570                (actionMasked == MotionEvent.ACTION_DOWN && !result)) {
8571            stopNestedScroll();
8572        }
8573
8574        return result;
8575    }
8576
8577    /**
8578     * Filter the touch event to apply security policies.
8579     *
8580     * @param event The motion event to be filtered.
8581     * @return True if the event should be dispatched, false if the event should be dropped.
8582     *
8583     * @see #getFilterTouchesWhenObscured
8584     */
8585    public boolean onFilterTouchEventForSecurity(MotionEvent event) {
8586        //noinspection RedundantIfStatement
8587        if ((mViewFlags & FILTER_TOUCHES_WHEN_OBSCURED) != 0
8588                && (event.getFlags() & MotionEvent.FLAG_WINDOW_IS_OBSCURED) != 0) {
8589            // Window is obscured, drop this touch.
8590            return false;
8591        }
8592        return true;
8593    }
8594
8595    /**
8596     * Pass a trackball motion event down to the focused view.
8597     *
8598     * @param event The motion event to be dispatched.
8599     * @return True if the event was handled by the view, false otherwise.
8600     */
8601    public boolean dispatchTrackballEvent(MotionEvent event) {
8602        if (mInputEventConsistencyVerifier != null) {
8603            mInputEventConsistencyVerifier.onTrackballEvent(event, 0);
8604        }
8605
8606        return onTrackballEvent(event);
8607    }
8608
8609    /**
8610     * Dispatch a generic motion event.
8611     * <p>
8612     * Generic motion events with source class {@link InputDevice#SOURCE_CLASS_POINTER}
8613     * are delivered to the view under the pointer.  All other generic motion events are
8614     * delivered to the focused view.  Hover events are handled specially and are delivered
8615     * to {@link #onHoverEvent(MotionEvent)}.
8616     * </p>
8617     *
8618     * @param event The motion event to be dispatched.
8619     * @return True if the event was handled by the view, false otherwise.
8620     */
8621    public boolean dispatchGenericMotionEvent(MotionEvent event) {
8622        if (mInputEventConsistencyVerifier != null) {
8623            mInputEventConsistencyVerifier.onGenericMotionEvent(event, 0);
8624        }
8625
8626        final int source = event.getSource();
8627        if ((source & InputDevice.SOURCE_CLASS_POINTER) != 0) {
8628            final int action = event.getAction();
8629            if (action == MotionEvent.ACTION_HOVER_ENTER
8630                    || action == MotionEvent.ACTION_HOVER_MOVE
8631                    || action == MotionEvent.ACTION_HOVER_EXIT) {
8632                if (dispatchHoverEvent(event)) {
8633                    return true;
8634                }
8635            } else if (dispatchGenericPointerEvent(event)) {
8636                return true;
8637            }
8638        } else if (dispatchGenericFocusedEvent(event)) {
8639            return true;
8640        }
8641
8642        if (dispatchGenericMotionEventInternal(event)) {
8643            return true;
8644        }
8645
8646        if (mInputEventConsistencyVerifier != null) {
8647            mInputEventConsistencyVerifier.onUnhandledEvent(event, 0);
8648        }
8649        return false;
8650    }
8651
8652    private boolean dispatchGenericMotionEventInternal(MotionEvent event) {
8653        //noinspection SimplifiableIfStatement
8654        ListenerInfo li = mListenerInfo;
8655        if (li != null && li.mOnGenericMotionListener != null
8656                && (mViewFlags & ENABLED_MASK) == ENABLED
8657                && li.mOnGenericMotionListener.onGenericMotion(this, event)) {
8658            return true;
8659        }
8660
8661        if (onGenericMotionEvent(event)) {
8662            return true;
8663        }
8664
8665        if (mInputEventConsistencyVerifier != null) {
8666            mInputEventConsistencyVerifier.onUnhandledEvent(event, 0);
8667        }
8668        return false;
8669    }
8670
8671    /**
8672     * Dispatch a hover event.
8673     * <p>
8674     * Do not call this method directly.
8675     * Call {@link #dispatchGenericMotionEvent(MotionEvent)} instead.
8676     * </p>
8677     *
8678     * @param event The motion event to be dispatched.
8679     * @return True if the event was handled by the view, false otherwise.
8680     */
8681    protected boolean dispatchHoverEvent(MotionEvent event) {
8682        ListenerInfo li = mListenerInfo;
8683        //noinspection SimplifiableIfStatement
8684        if (li != null && li.mOnHoverListener != null
8685                && (mViewFlags & ENABLED_MASK) == ENABLED
8686                && li.mOnHoverListener.onHover(this, event)) {
8687            return true;
8688        }
8689
8690        return onHoverEvent(event);
8691    }
8692
8693    /**
8694     * Returns true if the view has a child to which it has recently sent
8695     * {@link MotionEvent#ACTION_HOVER_ENTER}.  If this view is hovered and
8696     * it does not have a hovered child, then it must be the innermost hovered view.
8697     * @hide
8698     */
8699    protected boolean hasHoveredChild() {
8700        return false;
8701    }
8702
8703    /**
8704     * Dispatch a generic motion event to the view under the first pointer.
8705     * <p>
8706     * Do not call this method directly.
8707     * Call {@link #dispatchGenericMotionEvent(MotionEvent)} instead.
8708     * </p>
8709     *
8710     * @param event The motion event to be dispatched.
8711     * @return True if the event was handled by the view, false otherwise.
8712     */
8713    protected boolean dispatchGenericPointerEvent(MotionEvent event) {
8714        return false;
8715    }
8716
8717    /**
8718     * Dispatch a generic motion event to the currently focused view.
8719     * <p>
8720     * Do not call this method directly.
8721     * Call {@link #dispatchGenericMotionEvent(MotionEvent)} instead.
8722     * </p>
8723     *
8724     * @param event The motion event to be dispatched.
8725     * @return True if the event was handled by the view, false otherwise.
8726     */
8727    protected boolean dispatchGenericFocusedEvent(MotionEvent event) {
8728        return false;
8729    }
8730
8731    /**
8732     * Dispatch a pointer event.
8733     * <p>
8734     * Dispatches touch related pointer events to {@link #onTouchEvent(MotionEvent)} and all
8735     * other events to {@link #onGenericMotionEvent(MotionEvent)}.  This separation of concerns
8736     * reinforces the invariant that {@link #onTouchEvent(MotionEvent)} is really about touches
8737     * and should not be expected to handle other pointing device features.
8738     * </p>
8739     *
8740     * @param event The motion event to be dispatched.
8741     * @return True if the event was handled by the view, false otherwise.
8742     * @hide
8743     */
8744    public final boolean dispatchPointerEvent(MotionEvent event) {
8745        if (event.isTouchEvent()) {
8746            return dispatchTouchEvent(event);
8747        } else {
8748            return dispatchGenericMotionEvent(event);
8749        }
8750    }
8751
8752    /**
8753     * Called when the window containing this view gains or loses window focus.
8754     * ViewGroups should override to route to their children.
8755     *
8756     * @param hasFocus True if the window containing this view now has focus,
8757     *        false otherwise.
8758     */
8759    public void dispatchWindowFocusChanged(boolean hasFocus) {
8760        onWindowFocusChanged(hasFocus);
8761    }
8762
8763    /**
8764     * Called when the window containing this view gains or loses focus.  Note
8765     * that this is separate from view focus: to receive key events, both
8766     * your view and its window must have focus.  If a window is displayed
8767     * on top of yours that takes input focus, then your own window will lose
8768     * focus but the view focus will remain unchanged.
8769     *
8770     * @param hasWindowFocus True if the window containing this view now has
8771     *        focus, false otherwise.
8772     */
8773    public void onWindowFocusChanged(boolean hasWindowFocus) {
8774        InputMethodManager imm = InputMethodManager.peekInstance();
8775        if (!hasWindowFocus) {
8776            if (isPressed()) {
8777                setPressed(false);
8778            }
8779            if (imm != null && (mPrivateFlags & PFLAG_FOCUSED) != 0) {
8780                imm.focusOut(this);
8781            }
8782            removeLongPressCallback();
8783            removeTapCallback();
8784            onFocusLost();
8785        } else if (imm != null && (mPrivateFlags & PFLAG_FOCUSED) != 0) {
8786            imm.focusIn(this);
8787        }
8788        refreshDrawableState();
8789    }
8790
8791    /**
8792     * Returns true if this view is in a window that currently has window focus.
8793     * Note that this is not the same as the view itself having focus.
8794     *
8795     * @return True if this view is in a window that currently has window focus.
8796     */
8797    public boolean hasWindowFocus() {
8798        return mAttachInfo != null && mAttachInfo.mHasWindowFocus;
8799    }
8800
8801    /**
8802     * Dispatch a view visibility change down the view hierarchy.
8803     * ViewGroups should override to route to their children.
8804     * @param changedView The view whose visibility changed. Could be 'this' or
8805     * an ancestor view.
8806     * @param visibility The new visibility of changedView: {@link #VISIBLE},
8807     * {@link #INVISIBLE} or {@link #GONE}.
8808     */
8809    protected void dispatchVisibilityChanged(@NonNull View changedView,
8810            @Visibility int visibility) {
8811        onVisibilityChanged(changedView, visibility);
8812    }
8813
8814    /**
8815     * Called when the visibility of the view or an ancestor of the view is changed.
8816     * @param changedView The view whose visibility changed. Could be 'this' or
8817     * an ancestor view.
8818     * @param visibility The new visibility of changedView: {@link #VISIBLE},
8819     * {@link #INVISIBLE} or {@link #GONE}.
8820     */
8821    protected void onVisibilityChanged(@NonNull View changedView, @Visibility int visibility) {
8822        if (visibility == VISIBLE) {
8823            if (mAttachInfo != null) {
8824                initialAwakenScrollBars();
8825            } else {
8826                mPrivateFlags |= PFLAG_AWAKEN_SCROLL_BARS_ON_ATTACH;
8827            }
8828        }
8829    }
8830
8831    /**
8832     * Dispatch a hint about whether this view is displayed. For instance, when
8833     * a View moves out of the screen, it might receives a display hint indicating
8834     * the view is not displayed. Applications should not <em>rely</em> on this hint
8835     * as there is no guarantee that they will receive one.
8836     *
8837     * @param hint A hint about whether or not this view is displayed:
8838     * {@link #VISIBLE} or {@link #INVISIBLE}.
8839     */
8840    public void dispatchDisplayHint(@Visibility int hint) {
8841        onDisplayHint(hint);
8842    }
8843
8844    /**
8845     * Gives this view a hint about whether is displayed or not. For instance, when
8846     * a View moves out of the screen, it might receives a display hint indicating
8847     * the view is not displayed. Applications should not <em>rely</em> on this hint
8848     * as there is no guarantee that they will receive one.
8849     *
8850     * @param hint A hint about whether or not this view is displayed:
8851     * {@link #VISIBLE} or {@link #INVISIBLE}.
8852     */
8853    protected void onDisplayHint(@Visibility int hint) {
8854    }
8855
8856    /**
8857     * Dispatch a window visibility change down the view hierarchy.
8858     * ViewGroups should override to route to their children.
8859     *
8860     * @param visibility The new visibility of the window.
8861     *
8862     * @see #onWindowVisibilityChanged(int)
8863     */
8864    public void dispatchWindowVisibilityChanged(@Visibility int visibility) {
8865        onWindowVisibilityChanged(visibility);
8866    }
8867
8868    /**
8869     * Called when the window containing has change its visibility
8870     * (between {@link #GONE}, {@link #INVISIBLE}, and {@link #VISIBLE}).  Note
8871     * that this tells you whether or not your window is being made visible
8872     * to the window manager; this does <em>not</em> tell you whether or not
8873     * your window is obscured by other windows on the screen, even if it
8874     * is itself visible.
8875     *
8876     * @param visibility The new visibility of the window.
8877     */
8878    protected void onWindowVisibilityChanged(@Visibility int visibility) {
8879        if (visibility == VISIBLE) {
8880            initialAwakenScrollBars();
8881        }
8882    }
8883
8884    /**
8885     * Returns the current visibility of the window this view is attached to
8886     * (either {@link #GONE}, {@link #INVISIBLE}, or {@link #VISIBLE}).
8887     *
8888     * @return Returns the current visibility of the view's window.
8889     */
8890    @Visibility
8891    public int getWindowVisibility() {
8892        return mAttachInfo != null ? mAttachInfo.mWindowVisibility : GONE;
8893    }
8894
8895    /**
8896     * Retrieve the overall visible display size in which the window this view is
8897     * attached to has been positioned in.  This takes into account screen
8898     * decorations above the window, for both cases where the window itself
8899     * is being position inside of them or the window is being placed under
8900     * then and covered insets are used for the window to position its content
8901     * inside.  In effect, this tells you the available area where content can
8902     * be placed and remain visible to users.
8903     *
8904     * <p>This function requires an IPC back to the window manager to retrieve
8905     * the requested information, so should not be used in performance critical
8906     * code like drawing.
8907     *
8908     * @param outRect Filled in with the visible display frame.  If the view
8909     * is not attached to a window, this is simply the raw display size.
8910     */
8911    public void getWindowVisibleDisplayFrame(Rect outRect) {
8912        if (mAttachInfo != null) {
8913            try {
8914                mAttachInfo.mSession.getDisplayFrame(mAttachInfo.mWindow, outRect);
8915            } catch (RemoteException e) {
8916                return;
8917            }
8918            // XXX This is really broken, and probably all needs to be done
8919            // in the window manager, and we need to know more about whether
8920            // we want the area behind or in front of the IME.
8921            final Rect insets = mAttachInfo.mVisibleInsets;
8922            outRect.left += insets.left;
8923            outRect.top += insets.top;
8924            outRect.right -= insets.right;
8925            outRect.bottom -= insets.bottom;
8926            return;
8927        }
8928        // The view is not attached to a display so we don't have a context.
8929        // Make a best guess about the display size.
8930        Display d = DisplayManagerGlobal.getInstance().getRealDisplay(Display.DEFAULT_DISPLAY);
8931        d.getRectSize(outRect);
8932    }
8933
8934    /**
8935     * Dispatch a notification about a resource configuration change down
8936     * the view hierarchy.
8937     * ViewGroups should override to route to their children.
8938     *
8939     * @param newConfig The new resource configuration.
8940     *
8941     * @see #onConfigurationChanged(android.content.res.Configuration)
8942     */
8943    public void dispatchConfigurationChanged(Configuration newConfig) {
8944        onConfigurationChanged(newConfig);
8945    }
8946
8947    /**
8948     * Called when the current configuration of the resources being used
8949     * by the application have changed.  You can use this to decide when
8950     * to reload resources that can changed based on orientation and other
8951     * configuration characterstics.  You only need to use this if you are
8952     * not relying on the normal {@link android.app.Activity} mechanism of
8953     * recreating the activity instance upon a configuration change.
8954     *
8955     * @param newConfig The new resource configuration.
8956     */
8957    protected void onConfigurationChanged(Configuration newConfig) {
8958    }
8959
8960    /**
8961     * Private function to aggregate all per-view attributes in to the view
8962     * root.
8963     */
8964    void dispatchCollectViewAttributes(AttachInfo attachInfo, int visibility) {
8965        performCollectViewAttributes(attachInfo, visibility);
8966    }
8967
8968    void performCollectViewAttributes(AttachInfo attachInfo, int visibility) {
8969        if ((visibility & VISIBILITY_MASK) == VISIBLE) {
8970            if ((mViewFlags & KEEP_SCREEN_ON) == KEEP_SCREEN_ON) {
8971                attachInfo.mKeepScreenOn = true;
8972            }
8973            attachInfo.mSystemUiVisibility |= mSystemUiVisibility;
8974            ListenerInfo li = mListenerInfo;
8975            if (li != null && li.mOnSystemUiVisibilityChangeListener != null) {
8976                attachInfo.mHasSystemUiListeners = true;
8977            }
8978        }
8979    }
8980
8981    void needGlobalAttributesUpdate(boolean force) {
8982        final AttachInfo ai = mAttachInfo;
8983        if (ai != null && !ai.mRecomputeGlobalAttributes) {
8984            if (force || ai.mKeepScreenOn || (ai.mSystemUiVisibility != 0)
8985                    || ai.mHasSystemUiListeners) {
8986                ai.mRecomputeGlobalAttributes = true;
8987            }
8988        }
8989    }
8990
8991    /**
8992     * Returns whether the device is currently in touch mode.  Touch mode is entered
8993     * once the user begins interacting with the device by touch, and affects various
8994     * things like whether focus is always visible to the user.
8995     *
8996     * @return Whether the device is in touch mode.
8997     */
8998    @ViewDebug.ExportedProperty
8999    public boolean isInTouchMode() {
9000        if (mAttachInfo != null) {
9001            return mAttachInfo.mInTouchMode;
9002        } else {
9003            return ViewRootImpl.isInTouchMode();
9004        }
9005    }
9006
9007    /**
9008     * Returns the context the view is running in, through which it can
9009     * access the current theme, resources, etc.
9010     *
9011     * @return The view's Context.
9012     */
9013    @ViewDebug.CapturedViewProperty
9014    public final Context getContext() {
9015        return mContext;
9016    }
9017
9018    /**
9019     * Handle a key event before it is processed by any input method
9020     * associated with the view hierarchy.  This can be used to intercept
9021     * key events in special situations before the IME consumes them; a
9022     * typical example would be handling the BACK key to update the application's
9023     * UI instead of allowing the IME to see it and close itself.
9024     *
9025     * @param keyCode The value in event.getKeyCode().
9026     * @param event Description of the key event.
9027     * @return If you handled the event, return true. If you want to allow the
9028     *         event to be handled by the next receiver, return false.
9029     */
9030    public boolean onKeyPreIme(int keyCode, KeyEvent event) {
9031        return false;
9032    }
9033
9034    /**
9035     * Default implementation of {@link KeyEvent.Callback#onKeyDown(int, KeyEvent)
9036     * KeyEvent.Callback.onKeyDown()}: perform press of the view
9037     * when {@link KeyEvent#KEYCODE_DPAD_CENTER} or {@link KeyEvent#KEYCODE_ENTER}
9038     * is released, if the view is enabled and clickable.
9039     *
9040     * <p>Key presses in software keyboards will generally NOT trigger this listener,
9041     * although some may elect to do so in some situations. Do not rely on this to
9042     * catch software key presses.
9043     *
9044     * @param keyCode A key code that represents the button pressed, from
9045     *                {@link android.view.KeyEvent}.
9046     * @param event   The KeyEvent object that defines the button action.
9047     */
9048    public boolean onKeyDown(int keyCode, KeyEvent event) {
9049        boolean result = false;
9050
9051        if (KeyEvent.isConfirmKey(keyCode)) {
9052            if ((mViewFlags & ENABLED_MASK) == DISABLED) {
9053                return true;
9054            }
9055            // Long clickable items don't necessarily have to be clickable
9056            if (((mViewFlags & CLICKABLE) == CLICKABLE ||
9057                    (mViewFlags & LONG_CLICKABLE) == LONG_CLICKABLE) &&
9058                    (event.getRepeatCount() == 0)) {
9059                setPressed(true);
9060                checkForLongClick(0);
9061                return true;
9062            }
9063        }
9064        return result;
9065    }
9066
9067    /**
9068     * Default implementation of {@link KeyEvent.Callback#onKeyLongPress(int, KeyEvent)
9069     * KeyEvent.Callback.onKeyLongPress()}: always returns false (doesn't handle
9070     * the event).
9071     * <p>Key presses in software keyboards will generally NOT trigger this listener,
9072     * although some may elect to do so in some situations. Do not rely on this to
9073     * catch software key presses.
9074     */
9075    public boolean onKeyLongPress(int keyCode, KeyEvent event) {
9076        return false;
9077    }
9078
9079    /**
9080     * Default implementation of {@link KeyEvent.Callback#onKeyUp(int, KeyEvent)
9081     * KeyEvent.Callback.onKeyUp()}: perform clicking of the view
9082     * when {@link KeyEvent#KEYCODE_DPAD_CENTER} or
9083     * {@link KeyEvent#KEYCODE_ENTER} is released.
9084     * <p>Key presses in software keyboards will generally NOT trigger this listener,
9085     * although some may elect to do so in some situations. Do not rely on this to
9086     * catch software key presses.
9087     *
9088     * @param keyCode A key code that represents the button pressed, from
9089     *                {@link android.view.KeyEvent}.
9090     * @param event   The KeyEvent object that defines the button action.
9091     */
9092    public boolean onKeyUp(int keyCode, KeyEvent event) {
9093        if (KeyEvent.isConfirmKey(keyCode)) {
9094            if ((mViewFlags & ENABLED_MASK) == DISABLED) {
9095                return true;
9096            }
9097            if ((mViewFlags & CLICKABLE) == CLICKABLE && isPressed()) {
9098                setPressed(false);
9099
9100                if (!mHasPerformedLongPress) {
9101                    // This is a tap, so remove the longpress check
9102                    removeLongPressCallback();
9103                    return performClick();
9104                }
9105            }
9106        }
9107        return false;
9108    }
9109
9110    /**
9111     * Default implementation of {@link KeyEvent.Callback#onKeyMultiple(int, int, KeyEvent)
9112     * KeyEvent.Callback.onKeyMultiple()}: always returns false (doesn't handle
9113     * the event).
9114     * <p>Key presses in software keyboards will generally NOT trigger this listener,
9115     * although some may elect to do so in some situations. Do not rely on this to
9116     * catch software key presses.
9117     *
9118     * @param keyCode     A key code that represents the button pressed, from
9119     *                    {@link android.view.KeyEvent}.
9120     * @param repeatCount The number of times the action was made.
9121     * @param event       The KeyEvent object that defines the button action.
9122     */
9123    public boolean onKeyMultiple(int keyCode, int repeatCount, KeyEvent event) {
9124        return false;
9125    }
9126
9127    /**
9128     * Called on the focused view when a key shortcut event is not handled.
9129     * Override this method to implement local key shortcuts for the View.
9130     * Key shortcuts can also be implemented by setting the
9131     * {@link MenuItem#setShortcut(char, char) shortcut} property of menu items.
9132     *
9133     * @param keyCode The value in event.getKeyCode().
9134     * @param event Description of the key event.
9135     * @return If you handled the event, return true. If you want to allow the
9136     *         event to be handled by the next receiver, return false.
9137     */
9138    public boolean onKeyShortcut(int keyCode, KeyEvent event) {
9139        return false;
9140    }
9141
9142    /**
9143     * Check whether the called view is a text editor, in which case it
9144     * would make sense to automatically display a soft input window for
9145     * it.  Subclasses should override this if they implement
9146     * {@link #onCreateInputConnection(EditorInfo)} to return true if
9147     * a call on that method would return a non-null InputConnection, and
9148     * they are really a first-class editor that the user would normally
9149     * start typing on when the go into a window containing your view.
9150     *
9151     * <p>The default implementation always returns false.  This does
9152     * <em>not</em> mean that its {@link #onCreateInputConnection(EditorInfo)}
9153     * will not be called or the user can not otherwise perform edits on your
9154     * view; it is just a hint to the system that this is not the primary
9155     * purpose of this view.
9156     *
9157     * @return Returns true if this view is a text editor, else false.
9158     */
9159    public boolean onCheckIsTextEditor() {
9160        return false;
9161    }
9162
9163    /**
9164     * Create a new InputConnection for an InputMethod to interact
9165     * with the view.  The default implementation returns null, since it doesn't
9166     * support input methods.  You can override this to implement such support.
9167     * This is only needed for views that take focus and text input.
9168     *
9169     * <p>When implementing this, you probably also want to implement
9170     * {@link #onCheckIsTextEditor()} to indicate you will return a
9171     * non-null InputConnection.</p>
9172     *
9173     * <p>Also, take good care to fill in the {@link android.view.inputmethod.EditorInfo}
9174     * object correctly and in its entirety, so that the connected IME can rely
9175     * on its values. For example, {@link android.view.inputmethod.EditorInfo#initialSelStart}
9176     * and  {@link android.view.inputmethod.EditorInfo#initialSelEnd} members
9177     * must be filled in with the correct cursor position for IMEs to work correctly
9178     * with your application.</p>
9179     *
9180     * @param outAttrs Fill in with attribute information about the connection.
9181     */
9182    public InputConnection onCreateInputConnection(EditorInfo outAttrs) {
9183        return null;
9184    }
9185
9186    /**
9187     * Called by the {@link android.view.inputmethod.InputMethodManager}
9188     * when a view who is not the current
9189     * input connection target is trying to make a call on the manager.  The
9190     * default implementation returns false; you can override this to return
9191     * true for certain views if you are performing InputConnection proxying
9192     * to them.
9193     * @param view The View that is making the InputMethodManager call.
9194     * @return Return true to allow the call, false to reject.
9195     */
9196    public boolean checkInputConnectionProxy(View view) {
9197        return false;
9198    }
9199
9200    /**
9201     * Show the context menu for this view. It is not safe to hold on to the
9202     * menu after returning from this method.
9203     *
9204     * You should normally not overload this method. Overload
9205     * {@link #onCreateContextMenu(ContextMenu)} or define an
9206     * {@link OnCreateContextMenuListener} to add items to the context menu.
9207     *
9208     * @param menu The context menu to populate
9209     */
9210    public void createContextMenu(ContextMenu menu) {
9211        ContextMenuInfo menuInfo = getContextMenuInfo();
9212
9213        // Sets the current menu info so all items added to menu will have
9214        // my extra info set.
9215        ((MenuBuilder)menu).setCurrentMenuInfo(menuInfo);
9216
9217        onCreateContextMenu(menu);
9218        ListenerInfo li = mListenerInfo;
9219        if (li != null && li.mOnCreateContextMenuListener != null) {
9220            li.mOnCreateContextMenuListener.onCreateContextMenu(menu, this, menuInfo);
9221        }
9222
9223        // Clear the extra information so subsequent items that aren't mine don't
9224        // have my extra info.
9225        ((MenuBuilder)menu).setCurrentMenuInfo(null);
9226
9227        if (mParent != null) {
9228            mParent.createContextMenu(menu);
9229        }
9230    }
9231
9232    /**
9233     * Views should implement this if they have extra information to associate
9234     * with the context menu. The return result is supplied as a parameter to
9235     * the {@link OnCreateContextMenuListener#onCreateContextMenu(ContextMenu, View, ContextMenuInfo)}
9236     * callback.
9237     *
9238     * @return Extra information about the item for which the context menu
9239     *         should be shown. This information will vary across different
9240     *         subclasses of View.
9241     */
9242    protected ContextMenuInfo getContextMenuInfo() {
9243        return null;
9244    }
9245
9246    /**
9247     * Views should implement this if the view itself is going to add items to
9248     * the context menu.
9249     *
9250     * @param menu the context menu to populate
9251     */
9252    protected void onCreateContextMenu(ContextMenu menu) {
9253    }
9254
9255    /**
9256     * Implement this method to handle trackball motion events.  The
9257     * <em>relative</em> movement of the trackball since the last event
9258     * can be retrieve with {@link MotionEvent#getX MotionEvent.getX()} and
9259     * {@link MotionEvent#getY MotionEvent.getY()}.  These are normalized so
9260     * that a movement of 1 corresponds to the user pressing one DPAD key (so
9261     * they will often be fractional values, representing the more fine-grained
9262     * movement information available from a trackball).
9263     *
9264     * @param event The motion event.
9265     * @return True if the event was handled, false otherwise.
9266     */
9267    public boolean onTrackballEvent(MotionEvent event) {
9268        return false;
9269    }
9270
9271    /**
9272     * Implement this method to handle generic motion events.
9273     * <p>
9274     * Generic motion events describe joystick movements, mouse hovers, track pad
9275     * touches, scroll wheel movements and other input events.  The
9276     * {@link MotionEvent#getSource() source} of the motion event specifies
9277     * the class of input that was received.  Implementations of this method
9278     * must examine the bits in the source before processing the event.
9279     * The following code example shows how this is done.
9280     * </p><p>
9281     * Generic motion events with source class {@link InputDevice#SOURCE_CLASS_POINTER}
9282     * are delivered to the view under the pointer.  All other generic motion events are
9283     * delivered to the focused view.
9284     * </p>
9285     * <pre> public boolean onGenericMotionEvent(MotionEvent event) {
9286     *     if (event.isFromSource(InputDevice.SOURCE_CLASS_JOYSTICK)) {
9287     *         if (event.getAction() == MotionEvent.ACTION_MOVE) {
9288     *             // process the joystick movement...
9289     *             return true;
9290     *         }
9291     *     }
9292     *     if (event.isFromSource(InputDevice.SOURCE_CLASS_POINTER)) {
9293     *         switch (event.getAction()) {
9294     *             case MotionEvent.ACTION_HOVER_MOVE:
9295     *                 // process the mouse hover movement...
9296     *                 return true;
9297     *             case MotionEvent.ACTION_SCROLL:
9298     *                 // process the scroll wheel movement...
9299     *                 return true;
9300     *         }
9301     *     }
9302     *     return super.onGenericMotionEvent(event);
9303     * }</pre>
9304     *
9305     * @param event The generic motion event being processed.
9306     * @return True if the event was handled, false otherwise.
9307     */
9308    public boolean onGenericMotionEvent(MotionEvent event) {
9309        return false;
9310    }
9311
9312    /**
9313     * Implement this method to handle hover events.
9314     * <p>
9315     * This method is called whenever a pointer is hovering into, over, or out of the
9316     * bounds of a view and the view is not currently being touched.
9317     * Hover events are represented as pointer events with action
9318     * {@link MotionEvent#ACTION_HOVER_ENTER}, {@link MotionEvent#ACTION_HOVER_MOVE},
9319     * or {@link MotionEvent#ACTION_HOVER_EXIT}.
9320     * </p>
9321     * <ul>
9322     * <li>The view receives a hover event with action {@link MotionEvent#ACTION_HOVER_ENTER}
9323     * when the pointer enters the bounds of the view.</li>
9324     * <li>The view receives a hover event with action {@link MotionEvent#ACTION_HOVER_MOVE}
9325     * when the pointer has already entered the bounds of the view and has moved.</li>
9326     * <li>The view receives a hover event with action {@link MotionEvent#ACTION_HOVER_EXIT}
9327     * when the pointer has exited the bounds of the view or when the pointer is
9328     * about to go down due to a button click, tap, or similar user action that
9329     * causes the view to be touched.</li>
9330     * </ul>
9331     * <p>
9332     * The view should implement this method to return true to indicate that it is
9333     * handling the hover event, such as by changing its drawable state.
9334     * </p><p>
9335     * The default implementation calls {@link #setHovered} to update the hovered state
9336     * of the view when a hover enter or hover exit event is received, if the view
9337     * is enabled and is clickable.  The default implementation also sends hover
9338     * accessibility events.
9339     * </p>
9340     *
9341     * @param event The motion event that describes the hover.
9342     * @return True if the view handled the hover event.
9343     *
9344     * @see #isHovered
9345     * @see #setHovered
9346     * @see #onHoverChanged
9347     */
9348    public boolean onHoverEvent(MotionEvent event) {
9349        // The root view may receive hover (or touch) events that are outside the bounds of
9350        // the window.  This code ensures that we only send accessibility events for
9351        // hovers that are actually within the bounds of the root view.
9352        final int action = event.getActionMasked();
9353        if (!mSendingHoverAccessibilityEvents) {
9354            if ((action == MotionEvent.ACTION_HOVER_ENTER
9355                    || action == MotionEvent.ACTION_HOVER_MOVE)
9356                    && !hasHoveredChild()
9357                    && pointInView(event.getX(), event.getY())) {
9358                sendAccessibilityHoverEvent(AccessibilityEvent.TYPE_VIEW_HOVER_ENTER);
9359                mSendingHoverAccessibilityEvents = true;
9360            }
9361        } else {
9362            if (action == MotionEvent.ACTION_HOVER_EXIT
9363                    || (action == MotionEvent.ACTION_MOVE
9364                            && !pointInView(event.getX(), event.getY()))) {
9365                mSendingHoverAccessibilityEvents = false;
9366                sendAccessibilityHoverEvent(AccessibilityEvent.TYPE_VIEW_HOVER_EXIT);
9367            }
9368        }
9369
9370        if (isHoverable()) {
9371            switch (action) {
9372                case MotionEvent.ACTION_HOVER_ENTER:
9373                    setHovered(true);
9374                    break;
9375                case MotionEvent.ACTION_HOVER_EXIT:
9376                    setHovered(false);
9377                    break;
9378            }
9379
9380            // Dispatch the event to onGenericMotionEvent before returning true.
9381            // This is to provide compatibility with existing applications that
9382            // handled HOVER_MOVE events in onGenericMotionEvent and that would
9383            // break because of the new default handling for hoverable views
9384            // in onHoverEvent.
9385            // Note that onGenericMotionEvent will be called by default when
9386            // onHoverEvent returns false (refer to dispatchGenericMotionEvent).
9387            dispatchGenericMotionEventInternal(event);
9388            // The event was already handled by calling setHovered(), so always
9389            // return true.
9390            return true;
9391        }
9392
9393        return false;
9394    }
9395
9396    /**
9397     * Returns true if the view should handle {@link #onHoverEvent}
9398     * by calling {@link #setHovered} to change its hovered state.
9399     *
9400     * @return True if the view is hoverable.
9401     */
9402    private boolean isHoverable() {
9403        final int viewFlags = mViewFlags;
9404        if ((viewFlags & ENABLED_MASK) == DISABLED) {
9405            return false;
9406        }
9407
9408        return (viewFlags & CLICKABLE) == CLICKABLE
9409                || (viewFlags & LONG_CLICKABLE) == LONG_CLICKABLE;
9410    }
9411
9412    /**
9413     * Returns true if the view is currently hovered.
9414     *
9415     * @return True if the view is currently hovered.
9416     *
9417     * @see #setHovered
9418     * @see #onHoverChanged
9419     */
9420    @ViewDebug.ExportedProperty
9421    public boolean isHovered() {
9422        return (mPrivateFlags & PFLAG_HOVERED) != 0;
9423    }
9424
9425    /**
9426     * Sets whether the view is currently hovered.
9427     * <p>
9428     * Calling this method also changes the drawable state of the view.  This
9429     * enables the view to react to hover by using different drawable resources
9430     * to change its appearance.
9431     * </p><p>
9432     * The {@link #onHoverChanged} method is called when the hovered state changes.
9433     * </p>
9434     *
9435     * @param hovered True if the view is hovered.
9436     *
9437     * @see #isHovered
9438     * @see #onHoverChanged
9439     */
9440    public void setHovered(boolean hovered) {
9441        if (hovered) {
9442            if ((mPrivateFlags & PFLAG_HOVERED) == 0) {
9443                mPrivateFlags |= PFLAG_HOVERED;
9444                refreshDrawableState();
9445                onHoverChanged(true);
9446            }
9447        } else {
9448            if ((mPrivateFlags & PFLAG_HOVERED) != 0) {
9449                mPrivateFlags &= ~PFLAG_HOVERED;
9450                refreshDrawableState();
9451                onHoverChanged(false);
9452            }
9453        }
9454    }
9455
9456    /**
9457     * Implement this method to handle hover state changes.
9458     * <p>
9459     * This method is called whenever the hover state changes as a result of a
9460     * call to {@link #setHovered}.
9461     * </p>
9462     *
9463     * @param hovered The current hover state, as returned by {@link #isHovered}.
9464     *
9465     * @see #isHovered
9466     * @see #setHovered
9467     */
9468    public void onHoverChanged(boolean hovered) {
9469    }
9470
9471    /**
9472     * Implement this method to handle touch screen motion events.
9473     * <p>
9474     * If this method is used to detect click actions, it is recommended that
9475     * the actions be performed by implementing and calling
9476     * {@link #performClick()}. This will ensure consistent system behavior,
9477     * including:
9478     * <ul>
9479     * <li>obeying click sound preferences
9480     * <li>dispatching OnClickListener calls
9481     * <li>handling {@link AccessibilityNodeInfo#ACTION_CLICK ACTION_CLICK} when
9482     * accessibility features are enabled
9483     * </ul>
9484     *
9485     * @param event The motion event.
9486     * @return True if the event was handled, false otherwise.
9487     */
9488    public boolean onTouchEvent(MotionEvent event) {
9489        final float x = event.getX();
9490        final float y = event.getY();
9491        final int viewFlags = mViewFlags;
9492
9493        if ((viewFlags & ENABLED_MASK) == DISABLED) {
9494            if (event.getAction() == MotionEvent.ACTION_UP && (mPrivateFlags & PFLAG_PRESSED) != 0) {
9495                setPressed(false);
9496            }
9497            // A disabled view that is clickable still consumes the touch
9498            // events, it just doesn't respond to them.
9499            return (((viewFlags & CLICKABLE) == CLICKABLE ||
9500                    (viewFlags & LONG_CLICKABLE) == LONG_CLICKABLE));
9501        }
9502
9503        if (mTouchDelegate != null) {
9504            if (mTouchDelegate.onTouchEvent(event)) {
9505                return true;
9506            }
9507        }
9508
9509        if (((viewFlags & CLICKABLE) == CLICKABLE ||
9510                (viewFlags & LONG_CLICKABLE) == LONG_CLICKABLE)) {
9511            switch (event.getAction()) {
9512                case MotionEvent.ACTION_UP:
9513                    boolean prepressed = (mPrivateFlags & PFLAG_PREPRESSED) != 0;
9514                    if ((mPrivateFlags & PFLAG_PRESSED) != 0 || prepressed) {
9515                        // take focus if we don't have it already and we should in
9516                        // touch mode.
9517                        boolean focusTaken = false;
9518                        if (isFocusable() && isFocusableInTouchMode() && !isFocused()) {
9519                            focusTaken = requestFocus();
9520                        }
9521
9522                        if (prepressed) {
9523                            // The button is being released before we actually
9524                            // showed it as pressed.  Make it show the pressed
9525                            // state now (before scheduling the click) to ensure
9526                            // the user sees it.
9527                            setPressed(true, x, y);
9528                       }
9529
9530                        if (!mHasPerformedLongPress) {
9531                            // This is a tap, so remove the longpress check
9532                            removeLongPressCallback();
9533
9534                            // Only perform take click actions if we were in the pressed state
9535                            if (!focusTaken) {
9536                                // Use a Runnable and post this rather than calling
9537                                // performClick directly. This lets other visual state
9538                                // of the view update before click actions start.
9539                                if (mPerformClick == null) {
9540                                    mPerformClick = new PerformClick();
9541                                }
9542                                if (!post(mPerformClick)) {
9543                                    performClick();
9544                                }
9545                            }
9546                        }
9547
9548                        if (mUnsetPressedState == null) {
9549                            mUnsetPressedState = new UnsetPressedState();
9550                        }
9551
9552                        if (prepressed) {
9553                            postDelayed(mUnsetPressedState,
9554                                    ViewConfiguration.getPressedStateDuration());
9555                        } else if (!post(mUnsetPressedState)) {
9556                            // If the post failed, unpress right now
9557                            mUnsetPressedState.run();
9558                        }
9559
9560                        removeTapCallback();
9561                    }
9562                    break;
9563
9564                case MotionEvent.ACTION_DOWN:
9565                    mHasPerformedLongPress = false;
9566
9567                    if (performButtonActionOnTouchDown(event)) {
9568                        break;
9569                    }
9570
9571                    // Walk up the hierarchy to determine if we're inside a scrolling container.
9572                    boolean isInScrollingContainer = isInScrollingContainer();
9573
9574                    // For views inside a scrolling container, delay the pressed feedback for
9575                    // a short period in case this is a scroll.
9576                    if (isInScrollingContainer) {
9577                        mPrivateFlags |= PFLAG_PREPRESSED;
9578                        if (mPendingCheckForTap == null) {
9579                            mPendingCheckForTap = new CheckForTap();
9580                        }
9581                        mPendingCheckForTap.x = event.getX();
9582                        mPendingCheckForTap.y = event.getY();
9583                        postDelayed(mPendingCheckForTap, ViewConfiguration.getTapTimeout());
9584                    } else {
9585                        // Not inside a scrolling container, so show the feedback right away
9586                        setPressed(true, x, y);
9587                        checkForLongClick(0);
9588                    }
9589                    break;
9590
9591                case MotionEvent.ACTION_CANCEL:
9592                    setPressed(false);
9593                    removeTapCallback();
9594                    removeLongPressCallback();
9595                    break;
9596
9597                case MotionEvent.ACTION_MOVE:
9598                    drawableHotspotChanged(x, y);
9599
9600                    // Be lenient about moving outside of buttons
9601                    if (!pointInView(x, y, mTouchSlop)) {
9602                        // Outside button
9603                        removeTapCallback();
9604                        if ((mPrivateFlags & PFLAG_PRESSED) != 0) {
9605                            // Remove any future long press/tap checks
9606                            removeLongPressCallback();
9607
9608                            setPressed(false);
9609                        }
9610                    }
9611                    break;
9612            }
9613
9614            return true;
9615        }
9616
9617        return false;
9618    }
9619
9620    /**
9621     * @hide
9622     */
9623    public boolean isInScrollingContainer() {
9624        ViewParent p = getParent();
9625        while (p != null && p instanceof ViewGroup) {
9626            if (((ViewGroup) p).shouldDelayChildPressedState()) {
9627                return true;
9628            }
9629            p = p.getParent();
9630        }
9631        return false;
9632    }
9633
9634    /**
9635     * Remove the longpress detection timer.
9636     */
9637    private void removeLongPressCallback() {
9638        if (mPendingCheckForLongPress != null) {
9639          removeCallbacks(mPendingCheckForLongPress);
9640        }
9641    }
9642
9643    /**
9644     * Remove the pending click action
9645     */
9646    private void removePerformClickCallback() {
9647        if (mPerformClick != null) {
9648            removeCallbacks(mPerformClick);
9649        }
9650    }
9651
9652    /**
9653     * Remove the prepress detection timer.
9654     */
9655    private void removeUnsetPressCallback() {
9656        if ((mPrivateFlags & PFLAG_PRESSED) != 0 && mUnsetPressedState != null) {
9657            setPressed(false);
9658            removeCallbacks(mUnsetPressedState);
9659        }
9660    }
9661
9662    /**
9663     * Remove the tap detection timer.
9664     */
9665    private void removeTapCallback() {
9666        if (mPendingCheckForTap != null) {
9667            mPrivateFlags &= ~PFLAG_PREPRESSED;
9668            removeCallbacks(mPendingCheckForTap);
9669        }
9670    }
9671
9672    /**
9673     * Cancels a pending long press.  Your subclass can use this if you
9674     * want the context menu to come up if the user presses and holds
9675     * at the same place, but you don't want it to come up if they press
9676     * and then move around enough to cause scrolling.
9677     */
9678    public void cancelLongPress() {
9679        removeLongPressCallback();
9680
9681        /*
9682         * The prepressed state handled by the tap callback is a display
9683         * construct, but the tap callback will post a long press callback
9684         * less its own timeout. Remove it here.
9685         */
9686        removeTapCallback();
9687    }
9688
9689    /**
9690     * Remove the pending callback for sending a
9691     * {@link AccessibilityEvent#TYPE_VIEW_SCROLLED} accessibility event.
9692     */
9693    private void removeSendViewScrolledAccessibilityEventCallback() {
9694        if (mSendViewScrolledAccessibilityEvent != null) {
9695            removeCallbacks(mSendViewScrolledAccessibilityEvent);
9696            mSendViewScrolledAccessibilityEvent.mIsPending = false;
9697        }
9698    }
9699
9700    /**
9701     * Sets the TouchDelegate for this View.
9702     */
9703    public void setTouchDelegate(TouchDelegate delegate) {
9704        mTouchDelegate = delegate;
9705    }
9706
9707    /**
9708     * Gets the TouchDelegate for this View.
9709     */
9710    public TouchDelegate getTouchDelegate() {
9711        return mTouchDelegate;
9712    }
9713
9714    /**
9715     * Request unbuffered dispatch of the given stream of MotionEvents to this View.
9716     *
9717     * Until this View receives a corresponding {@link MotionEvent#ACTION_UP}, ask that the input
9718     * system not batch {@link MotionEvent}s but instead deliver them as soon as they're
9719     * available. This method should only be called for touch events.
9720     *
9721     * <p class="note">This api is not intended for most applications. Buffered dispatch
9722     * provides many of benefits, and just requesting unbuffered dispatch on most MotionEvent
9723     * streams will not improve your input latency. Side effects include: increased latency,
9724     * jittery scrolls and inability to take advantage of system resampling. Talk to your input
9725     * professional to see if {@link #requestUnbufferedDispatch(MotionEvent)} is right for
9726     * you.</p>
9727     */
9728    public final void requestUnbufferedDispatch(MotionEvent event) {
9729        final int action = event.getAction();
9730        if (mAttachInfo == null
9731                || action != MotionEvent.ACTION_DOWN && action != MotionEvent.ACTION_MOVE
9732                || !event.isTouchEvent()) {
9733            return;
9734        }
9735        mAttachInfo.mUnbufferedDispatchRequested = true;
9736    }
9737
9738    /**
9739     * Set flags controlling behavior of this view.
9740     *
9741     * @param flags Constant indicating the value which should be set
9742     * @param mask Constant indicating the bit range that should be changed
9743     */
9744    void setFlags(int flags, int mask) {
9745        final boolean accessibilityEnabled =
9746                AccessibilityManager.getInstance(mContext).isEnabled();
9747        final boolean oldIncludeForAccessibility = accessibilityEnabled && includeForAccessibility();
9748
9749        int old = mViewFlags;
9750        mViewFlags = (mViewFlags & ~mask) | (flags & mask);
9751
9752        int changed = mViewFlags ^ old;
9753        if (changed == 0) {
9754            return;
9755        }
9756        int privateFlags = mPrivateFlags;
9757
9758        /* Check if the FOCUSABLE bit has changed */
9759        if (((changed & FOCUSABLE_MASK) != 0) &&
9760                ((privateFlags & PFLAG_HAS_BOUNDS) !=0)) {
9761            if (((old & FOCUSABLE_MASK) == FOCUSABLE)
9762                    && ((privateFlags & PFLAG_FOCUSED) != 0)) {
9763                /* Give up focus if we are no longer focusable */
9764                clearFocus();
9765            } else if (((old & FOCUSABLE_MASK) == NOT_FOCUSABLE)
9766                    && ((privateFlags & PFLAG_FOCUSED) == 0)) {
9767                /*
9768                 * Tell the view system that we are now available to take focus
9769                 * if no one else already has it.
9770                 */
9771                if (mParent != null) mParent.focusableViewAvailable(this);
9772            }
9773        }
9774
9775        final int newVisibility = flags & VISIBILITY_MASK;
9776        if (newVisibility == VISIBLE) {
9777            if ((changed & VISIBILITY_MASK) != 0) {
9778                /*
9779                 * If this view is becoming visible, invalidate it in case it changed while
9780                 * it was not visible. Marking it drawn ensures that the invalidation will
9781                 * go through.
9782                 */
9783                mPrivateFlags |= PFLAG_DRAWN;
9784                invalidate(true);
9785
9786                needGlobalAttributesUpdate(true);
9787
9788                // a view becoming visible is worth notifying the parent
9789                // about in case nothing has focus.  even if this specific view
9790                // isn't focusable, it may contain something that is, so let
9791                // the root view try to give this focus if nothing else does.
9792                if ((mParent != null) && (mBottom > mTop) && (mRight > mLeft)) {
9793                    mParent.focusableViewAvailable(this);
9794                }
9795            }
9796        }
9797
9798        /* Check if the GONE bit has changed */
9799        if ((changed & GONE) != 0) {
9800            needGlobalAttributesUpdate(false);
9801            requestLayout();
9802
9803            if (((mViewFlags & VISIBILITY_MASK) == GONE)) {
9804                if (hasFocus()) clearFocus();
9805                clearAccessibilityFocus();
9806                destroyDrawingCache();
9807                if (mParent instanceof View) {
9808                    // GONE views noop invalidation, so invalidate the parent
9809                    ((View) mParent).invalidate(true);
9810                }
9811                // Mark the view drawn to ensure that it gets invalidated properly the next
9812                // time it is visible and gets invalidated
9813                mPrivateFlags |= PFLAG_DRAWN;
9814            }
9815            if (mAttachInfo != null) {
9816                mAttachInfo.mViewVisibilityChanged = true;
9817            }
9818        }
9819
9820        /* Check if the VISIBLE bit has changed */
9821        if ((changed & INVISIBLE) != 0) {
9822            needGlobalAttributesUpdate(false);
9823            /*
9824             * If this view is becoming invisible, set the DRAWN flag so that
9825             * the next invalidate() will not be skipped.
9826             */
9827            mPrivateFlags |= PFLAG_DRAWN;
9828
9829            if (((mViewFlags & VISIBILITY_MASK) == INVISIBLE)) {
9830                // root view becoming invisible shouldn't clear focus and accessibility focus
9831                if (getRootView() != this) {
9832                    if (hasFocus()) clearFocus();
9833                    clearAccessibilityFocus();
9834                }
9835            }
9836            if (mAttachInfo != null) {
9837                mAttachInfo.mViewVisibilityChanged = true;
9838            }
9839        }
9840
9841        if ((changed & VISIBILITY_MASK) != 0) {
9842            // If the view is invisible, cleanup its display list to free up resources
9843            if (newVisibility != VISIBLE && mAttachInfo != null) {
9844                cleanupDraw();
9845            }
9846
9847            if (mParent instanceof ViewGroup) {
9848                ((ViewGroup) mParent).onChildVisibilityChanged(this,
9849                        (changed & VISIBILITY_MASK), newVisibility);
9850                ((View) mParent).invalidate(true);
9851            } else if (mParent != null) {
9852                mParent.invalidateChild(this, null);
9853            }
9854            dispatchVisibilityChanged(this, newVisibility);
9855
9856            notifySubtreeAccessibilityStateChangedIfNeeded();
9857        }
9858
9859        if ((changed & WILL_NOT_CACHE_DRAWING) != 0) {
9860            destroyDrawingCache();
9861        }
9862
9863        if ((changed & DRAWING_CACHE_ENABLED) != 0) {
9864            destroyDrawingCache();
9865            mPrivateFlags &= ~PFLAG_DRAWING_CACHE_VALID;
9866            invalidateParentCaches();
9867        }
9868
9869        if ((changed & DRAWING_CACHE_QUALITY_MASK) != 0) {
9870            destroyDrawingCache();
9871            mPrivateFlags &= ~PFLAG_DRAWING_CACHE_VALID;
9872        }
9873
9874        if ((changed & DRAW_MASK) != 0) {
9875            if ((mViewFlags & WILL_NOT_DRAW) != 0) {
9876                if (mBackground != null) {
9877                    mPrivateFlags &= ~PFLAG_SKIP_DRAW;
9878                    mPrivateFlags |= PFLAG_ONLY_DRAWS_BACKGROUND;
9879                } else {
9880                    mPrivateFlags |= PFLAG_SKIP_DRAW;
9881                }
9882            } else {
9883                mPrivateFlags &= ~PFLAG_SKIP_DRAW;
9884            }
9885            requestLayout();
9886            invalidate(true);
9887        }
9888
9889        if ((changed & KEEP_SCREEN_ON) != 0) {
9890            if (mParent != null && mAttachInfo != null && !mAttachInfo.mRecomputeGlobalAttributes) {
9891                mParent.recomputeViewAttributes(this);
9892            }
9893        }
9894
9895        if (accessibilityEnabled) {
9896            if ((changed & FOCUSABLE_MASK) != 0 || (changed & VISIBILITY_MASK) != 0
9897                    || (changed & CLICKABLE) != 0 || (changed & LONG_CLICKABLE) != 0) {
9898                if (oldIncludeForAccessibility != includeForAccessibility()) {
9899                    notifySubtreeAccessibilityStateChangedIfNeeded();
9900                } else {
9901                    notifyViewAccessibilityStateChangedIfNeeded(
9902                            AccessibilityEvent.CONTENT_CHANGE_TYPE_UNDEFINED);
9903                }
9904            } else if ((changed & ENABLED_MASK) != 0) {
9905                notifyViewAccessibilityStateChangedIfNeeded(
9906                        AccessibilityEvent.CONTENT_CHANGE_TYPE_UNDEFINED);
9907            }
9908        }
9909    }
9910
9911    /**
9912     * Change the view's z order in the tree, so it's on top of other sibling
9913     * views. This ordering change may affect layout, if the parent container
9914     * uses an order-dependent layout scheme (e.g., LinearLayout). Prior
9915     * to {@link android.os.Build.VERSION_CODES#KITKAT} this
9916     * method should be followed by calls to {@link #requestLayout()} and
9917     * {@link View#invalidate()} on the view's parent to force the parent to redraw
9918     * with the new child ordering.
9919     *
9920     * @see ViewGroup#bringChildToFront(View)
9921     */
9922    public void bringToFront() {
9923        if (mParent != null) {
9924            mParent.bringChildToFront(this);
9925        }
9926    }
9927
9928    /**
9929     * This is called in response to an internal scroll in this view (i.e., the
9930     * view scrolled its own contents). This is typically as a result of
9931     * {@link #scrollBy(int, int)} or {@link #scrollTo(int, int)} having been
9932     * called.
9933     *
9934     * @param l Current horizontal scroll origin.
9935     * @param t Current vertical scroll origin.
9936     * @param oldl Previous horizontal scroll origin.
9937     * @param oldt Previous vertical scroll origin.
9938     */
9939    protected void onScrollChanged(int l, int t, int oldl, int oldt) {
9940        if (AccessibilityManager.getInstance(mContext).isEnabled()) {
9941            postSendViewScrolledAccessibilityEventCallback();
9942        }
9943
9944        mBackgroundSizeChanged = true;
9945
9946        final AttachInfo ai = mAttachInfo;
9947        if (ai != null) {
9948            ai.mViewScrollChanged = true;
9949        }
9950
9951        if (mListenerInfo != null && mListenerInfo.mOnScrollChangeListener != null) {
9952            mListenerInfo.mOnScrollChangeListener.onScrollChange(this, l, t, oldl, oldt);
9953        }
9954    }
9955
9956    /**
9957     * Interface definition for a callback to be invoked when the scroll
9958     * position of a view changes.
9959     *
9960     * @hide Only used internally.
9961     */
9962    public interface OnScrollChangeListener {
9963        /**
9964         * Called when the scroll position of a view changes.
9965         *
9966         * @param v The view whose scroll position has changed.
9967         * @param scrollX Current horizontal scroll origin.
9968         * @param scrollY Current vertical scroll origin.
9969         * @param oldScrollX Previous horizontal scroll origin.
9970         * @param oldScrollY Previous vertical scroll origin.
9971         */
9972        void onScrollChange(View v, int scrollX, int scrollY, int oldScrollX, int oldScrollY);
9973    }
9974
9975    /**
9976     * Interface definition for a callback to be invoked when the layout bounds of a view
9977     * changes due to layout processing.
9978     */
9979    public interface OnLayoutChangeListener {
9980        /**
9981         * Called when the layout bounds of a view changes due to layout processing.
9982         *
9983         * @param v The view whose bounds have changed.
9984         * @param left The new value of the view's left property.
9985         * @param top The new value of the view's top property.
9986         * @param right The new value of the view's right property.
9987         * @param bottom The new value of the view's bottom property.
9988         * @param oldLeft The previous value of the view's left property.
9989         * @param oldTop The previous value of the view's top property.
9990         * @param oldRight The previous value of the view's right property.
9991         * @param oldBottom The previous value of the view's bottom property.
9992         */
9993        void onLayoutChange(View v, int left, int top, int right, int bottom,
9994            int oldLeft, int oldTop, int oldRight, int oldBottom);
9995    }
9996
9997    /**
9998     * This is called during layout when the size of this view has changed. If
9999     * you were just added to the view hierarchy, you're called with the old
10000     * values of 0.
10001     *
10002     * @param w Current width of this view.
10003     * @param h Current height of this view.
10004     * @param oldw Old width of this view.
10005     * @param oldh Old height of this view.
10006     */
10007    protected void onSizeChanged(int w, int h, int oldw, int oldh) {
10008    }
10009
10010    /**
10011     * Called by draw to draw the child views. This may be overridden
10012     * by derived classes to gain control just before its children are drawn
10013     * (but after its own view has been drawn).
10014     * @param canvas the canvas on which to draw the view
10015     */
10016    protected void dispatchDraw(Canvas canvas) {
10017
10018    }
10019
10020    /**
10021     * Gets the parent of this view. Note that the parent is a
10022     * ViewParent and not necessarily a View.
10023     *
10024     * @return Parent of this view.
10025     */
10026    public final ViewParent getParent() {
10027        return mParent;
10028    }
10029
10030    /**
10031     * Set the horizontal scrolled position of your view. This will cause a call to
10032     * {@link #onScrollChanged(int, int, int, int)} and the view will be
10033     * invalidated.
10034     * @param value the x position to scroll to
10035     */
10036    public void setScrollX(int value) {
10037        scrollTo(value, mScrollY);
10038    }
10039
10040    /**
10041     * Set the vertical scrolled position of your view. This will cause a call to
10042     * {@link #onScrollChanged(int, int, int, int)} and the view will be
10043     * invalidated.
10044     * @param value the y position to scroll to
10045     */
10046    public void setScrollY(int value) {
10047        scrollTo(mScrollX, value);
10048    }
10049
10050    /**
10051     * Return the scrolled left position of this view. This is the left edge of
10052     * the displayed part of your view. You do not need to draw any pixels
10053     * farther left, since those are outside of the frame of your view on
10054     * screen.
10055     *
10056     * @return The left edge of the displayed part of your view, in pixels.
10057     */
10058    public final int getScrollX() {
10059        return mScrollX;
10060    }
10061
10062    /**
10063     * Return the scrolled top position of this view. This is the top edge of
10064     * the displayed part of your view. You do not need to draw any pixels above
10065     * it, since those are outside of the frame of your view on screen.
10066     *
10067     * @return The top edge of the displayed part of your view, in pixels.
10068     */
10069    public final int getScrollY() {
10070        return mScrollY;
10071    }
10072
10073    /**
10074     * Return the width of the your view.
10075     *
10076     * @return The width of your view, in pixels.
10077     */
10078    @ViewDebug.ExportedProperty(category = "layout")
10079    public final int getWidth() {
10080        return mRight - mLeft;
10081    }
10082
10083    /**
10084     * Return the height of your view.
10085     *
10086     * @return The height of your view, in pixels.
10087     */
10088    @ViewDebug.ExportedProperty(category = "layout")
10089    public final int getHeight() {
10090        return mBottom - mTop;
10091    }
10092
10093    /**
10094     * Return the visible drawing bounds of your view. Fills in the output
10095     * rectangle with the values from getScrollX(), getScrollY(),
10096     * getWidth(), and getHeight(). These bounds do not account for any
10097     * transformation properties currently set on the view, such as
10098     * {@link #setScaleX(float)} or {@link #setRotation(float)}.
10099     *
10100     * @param outRect The (scrolled) drawing bounds of the view.
10101     */
10102    public void getDrawingRect(Rect outRect) {
10103        outRect.left = mScrollX;
10104        outRect.top = mScrollY;
10105        outRect.right = mScrollX + (mRight - mLeft);
10106        outRect.bottom = mScrollY + (mBottom - mTop);
10107    }
10108
10109    /**
10110     * Like {@link #getMeasuredWidthAndState()}, but only returns the
10111     * raw width component (that is the result is masked by
10112     * {@link #MEASURED_SIZE_MASK}).
10113     *
10114     * @return The raw measured width of this view.
10115     */
10116    public final int getMeasuredWidth() {
10117        return mMeasuredWidth & MEASURED_SIZE_MASK;
10118    }
10119
10120    /**
10121     * Return the full width measurement information for this view as computed
10122     * by the most recent call to {@link #measure(int, int)}.  This result is a bit mask
10123     * as defined by {@link #MEASURED_SIZE_MASK} and {@link #MEASURED_STATE_TOO_SMALL}.
10124     * This should be used during measurement and layout calculations only. Use
10125     * {@link #getWidth()} to see how wide a view is after layout.
10126     *
10127     * @return The measured width of this view as a bit mask.
10128     */
10129    public final int getMeasuredWidthAndState() {
10130        return mMeasuredWidth;
10131    }
10132
10133    /**
10134     * Like {@link #getMeasuredHeightAndState()}, but only returns the
10135     * raw width component (that is the result is masked by
10136     * {@link #MEASURED_SIZE_MASK}).
10137     *
10138     * @return The raw measured height of this view.
10139     */
10140    public final int getMeasuredHeight() {
10141        return mMeasuredHeight & MEASURED_SIZE_MASK;
10142    }
10143
10144    /**
10145     * Return the full height measurement information for this view as computed
10146     * by the most recent call to {@link #measure(int, int)}.  This result is a bit mask
10147     * as defined by {@link #MEASURED_SIZE_MASK} and {@link #MEASURED_STATE_TOO_SMALL}.
10148     * This should be used during measurement and layout calculations only. Use
10149     * {@link #getHeight()} to see how wide a view is after layout.
10150     *
10151     * @return The measured width of this view as a bit mask.
10152     */
10153    public final int getMeasuredHeightAndState() {
10154        return mMeasuredHeight;
10155    }
10156
10157    /**
10158     * Return only the state bits of {@link #getMeasuredWidthAndState()}
10159     * and {@link #getMeasuredHeightAndState()}, combined into one integer.
10160     * The width component is in the regular bits {@link #MEASURED_STATE_MASK}
10161     * and the height component is at the shifted bits
10162     * {@link #MEASURED_HEIGHT_STATE_SHIFT}>>{@link #MEASURED_STATE_MASK}.
10163     */
10164    public final int getMeasuredState() {
10165        return (mMeasuredWidth&MEASURED_STATE_MASK)
10166                | ((mMeasuredHeight>>MEASURED_HEIGHT_STATE_SHIFT)
10167                        & (MEASURED_STATE_MASK>>MEASURED_HEIGHT_STATE_SHIFT));
10168    }
10169
10170    /**
10171     * The transform matrix of this view, which is calculated based on the current
10172     * rotation, scale, and pivot properties.
10173     *
10174     * @see #getRotation()
10175     * @see #getScaleX()
10176     * @see #getScaleY()
10177     * @see #getPivotX()
10178     * @see #getPivotY()
10179     * @return The current transform matrix for the view
10180     */
10181    public Matrix getMatrix() {
10182        ensureTransformationInfo();
10183        final Matrix matrix = mTransformationInfo.mMatrix;
10184        mRenderNode.getMatrix(matrix);
10185        return matrix;
10186    }
10187
10188    /**
10189     * Returns true if the transform matrix is the identity matrix.
10190     * Recomputes the matrix if necessary.
10191     *
10192     * @return True if the transform matrix is the identity matrix, false otherwise.
10193     */
10194    final boolean hasIdentityMatrix() {
10195        return mRenderNode.hasIdentityMatrix();
10196    }
10197
10198    void ensureTransformationInfo() {
10199        if (mTransformationInfo == null) {
10200            mTransformationInfo = new TransformationInfo();
10201        }
10202    }
10203
10204   /**
10205     * Utility method to retrieve the inverse of the current mMatrix property.
10206     * We cache the matrix to avoid recalculating it when transform properties
10207     * have not changed.
10208     *
10209     * @return The inverse of the current matrix of this view.
10210     * @hide
10211     */
10212    public final Matrix getInverseMatrix() {
10213        ensureTransformationInfo();
10214        if (mTransformationInfo.mInverseMatrix == null) {
10215            mTransformationInfo.mInverseMatrix = new Matrix();
10216        }
10217        final Matrix matrix = mTransformationInfo.mInverseMatrix;
10218        mRenderNode.getInverseMatrix(matrix);
10219        return matrix;
10220    }
10221
10222    /**
10223     * Gets the distance along the Z axis from the camera to this view.
10224     *
10225     * @see #setCameraDistance(float)
10226     *
10227     * @return The distance along the Z axis.
10228     */
10229    public float getCameraDistance() {
10230        final float dpi = mResources.getDisplayMetrics().densityDpi;
10231        return -(mRenderNode.getCameraDistance() * dpi);
10232    }
10233
10234    /**
10235     * <p>Sets the distance along the Z axis (orthogonal to the X/Y plane on which
10236     * views are drawn) from the camera to this view. The camera's distance
10237     * affects 3D transformations, for instance rotations around the X and Y
10238     * axis. If the rotationX or rotationY properties are changed and this view is
10239     * large (more than half the size of the screen), it is recommended to always
10240     * use a camera distance that's greater than the height (X axis rotation) or
10241     * the width (Y axis rotation) of this view.</p>
10242     *
10243     * <p>The distance of the camera from the view plane can have an affect on the
10244     * perspective distortion of the view when it is rotated around the x or y axis.
10245     * For example, a large distance will result in a large viewing angle, and there
10246     * will not be much perspective distortion of the view as it rotates. A short
10247     * distance may cause much more perspective distortion upon rotation, and can
10248     * also result in some drawing artifacts if the rotated view ends up partially
10249     * behind the camera (which is why the recommendation is to use a distance at
10250     * least as far as the size of the view, if the view is to be rotated.)</p>
10251     *
10252     * <p>The distance is expressed in "depth pixels." The default distance depends
10253     * on the screen density. For instance, on a medium density display, the
10254     * default distance is 1280. On a high density display, the default distance
10255     * is 1920.</p>
10256     *
10257     * <p>If you want to specify a distance that leads to visually consistent
10258     * results across various densities, use the following formula:</p>
10259     * <pre>
10260     * float scale = context.getResources().getDisplayMetrics().density;
10261     * view.setCameraDistance(distance * scale);
10262     * </pre>
10263     *
10264     * <p>The density scale factor of a high density display is 1.5,
10265     * and 1920 = 1280 * 1.5.</p>
10266     *
10267     * @param distance The distance in "depth pixels", if negative the opposite
10268     *        value is used
10269     *
10270     * @see #setRotationX(float)
10271     * @see #setRotationY(float)
10272     */
10273    public void setCameraDistance(float distance) {
10274        final float dpi = mResources.getDisplayMetrics().densityDpi;
10275
10276        invalidateViewProperty(true, false);
10277        mRenderNode.setCameraDistance(-Math.abs(distance) / dpi);
10278        invalidateViewProperty(false, false);
10279
10280        invalidateParentIfNeededAndWasQuickRejected();
10281    }
10282
10283    /**
10284     * The degrees that the view is rotated around the pivot point.
10285     *
10286     * @see #setRotation(float)
10287     * @see #getPivotX()
10288     * @see #getPivotY()
10289     *
10290     * @return The degrees of rotation.
10291     */
10292    @ViewDebug.ExportedProperty(category = "drawing")
10293    public float getRotation() {
10294        return mRenderNode.getRotation();
10295    }
10296
10297    /**
10298     * Sets the degrees that the view is rotated around the pivot point. Increasing values
10299     * result in clockwise rotation.
10300     *
10301     * @param rotation The degrees of rotation.
10302     *
10303     * @see #getRotation()
10304     * @see #getPivotX()
10305     * @see #getPivotY()
10306     * @see #setRotationX(float)
10307     * @see #setRotationY(float)
10308     *
10309     * @attr ref android.R.styleable#View_rotation
10310     */
10311    public void setRotation(float rotation) {
10312        if (rotation != getRotation()) {
10313            // Double-invalidation is necessary to capture view's old and new areas
10314            invalidateViewProperty(true, false);
10315            mRenderNode.setRotation(rotation);
10316            invalidateViewProperty(false, true);
10317
10318            invalidateParentIfNeededAndWasQuickRejected();
10319            notifySubtreeAccessibilityStateChangedIfNeeded();
10320        }
10321    }
10322
10323    /**
10324     * The degrees that the view is rotated around the vertical axis through the pivot point.
10325     *
10326     * @see #getPivotX()
10327     * @see #getPivotY()
10328     * @see #setRotationY(float)
10329     *
10330     * @return The degrees of Y rotation.
10331     */
10332    @ViewDebug.ExportedProperty(category = "drawing")
10333    public float getRotationY() {
10334        return mRenderNode.getRotationY();
10335    }
10336
10337    /**
10338     * Sets the degrees that the view is rotated around the vertical axis through the pivot point.
10339     * Increasing values result in counter-clockwise rotation from the viewpoint of looking
10340     * down the y axis.
10341     *
10342     * When rotating large views, it is recommended to adjust the camera distance
10343     * accordingly. Refer to {@link #setCameraDistance(float)} for more information.
10344     *
10345     * @param rotationY The degrees of Y rotation.
10346     *
10347     * @see #getRotationY()
10348     * @see #getPivotX()
10349     * @see #getPivotY()
10350     * @see #setRotation(float)
10351     * @see #setRotationX(float)
10352     * @see #setCameraDistance(float)
10353     *
10354     * @attr ref android.R.styleable#View_rotationY
10355     */
10356    public void setRotationY(float rotationY) {
10357        if (rotationY != getRotationY()) {
10358            invalidateViewProperty(true, false);
10359            mRenderNode.setRotationY(rotationY);
10360            invalidateViewProperty(false, true);
10361
10362            invalidateParentIfNeededAndWasQuickRejected();
10363            notifySubtreeAccessibilityStateChangedIfNeeded();
10364        }
10365    }
10366
10367    /**
10368     * The degrees that the view is rotated around the horizontal axis through the pivot point.
10369     *
10370     * @see #getPivotX()
10371     * @see #getPivotY()
10372     * @see #setRotationX(float)
10373     *
10374     * @return The degrees of X rotation.
10375     */
10376    @ViewDebug.ExportedProperty(category = "drawing")
10377    public float getRotationX() {
10378        return mRenderNode.getRotationX();
10379    }
10380
10381    /**
10382     * Sets the degrees that the view is rotated around the horizontal axis through the pivot point.
10383     * Increasing values result in clockwise rotation from the viewpoint of looking down the
10384     * x axis.
10385     *
10386     * When rotating large views, it is recommended to adjust the camera distance
10387     * accordingly. Refer to {@link #setCameraDistance(float)} for more information.
10388     *
10389     * @param rotationX The degrees of X rotation.
10390     *
10391     * @see #getRotationX()
10392     * @see #getPivotX()
10393     * @see #getPivotY()
10394     * @see #setRotation(float)
10395     * @see #setRotationY(float)
10396     * @see #setCameraDistance(float)
10397     *
10398     * @attr ref android.R.styleable#View_rotationX
10399     */
10400    public void setRotationX(float rotationX) {
10401        if (rotationX != getRotationX()) {
10402            invalidateViewProperty(true, false);
10403            mRenderNode.setRotationX(rotationX);
10404            invalidateViewProperty(false, true);
10405
10406            invalidateParentIfNeededAndWasQuickRejected();
10407            notifySubtreeAccessibilityStateChangedIfNeeded();
10408        }
10409    }
10410
10411    /**
10412     * The amount that the view is scaled in x around the pivot point, as a proportion of
10413     * the view's unscaled width. A value of 1, the default, means that no scaling is applied.
10414     *
10415     * <p>By default, this is 1.0f.
10416     *
10417     * @see #getPivotX()
10418     * @see #getPivotY()
10419     * @return The scaling factor.
10420     */
10421    @ViewDebug.ExportedProperty(category = "drawing")
10422    public float getScaleX() {
10423        return mRenderNode.getScaleX();
10424    }
10425
10426    /**
10427     * Sets the amount that the view is scaled in x around the pivot point, as a proportion of
10428     * the view's unscaled width. A value of 1 means that no scaling is applied.
10429     *
10430     * @param scaleX The scaling factor.
10431     * @see #getPivotX()
10432     * @see #getPivotY()
10433     *
10434     * @attr ref android.R.styleable#View_scaleX
10435     */
10436    public void setScaleX(float scaleX) {
10437        if (scaleX != getScaleX()) {
10438            invalidateViewProperty(true, false);
10439            mRenderNode.setScaleX(scaleX);
10440            invalidateViewProperty(false, true);
10441
10442            invalidateParentIfNeededAndWasQuickRejected();
10443            notifySubtreeAccessibilityStateChangedIfNeeded();
10444        }
10445    }
10446
10447    /**
10448     * The amount that the view is scaled in y around the pivot point, as a proportion of
10449     * the view's unscaled height. A value of 1, the default, means that no scaling is applied.
10450     *
10451     * <p>By default, this is 1.0f.
10452     *
10453     * @see #getPivotX()
10454     * @see #getPivotY()
10455     * @return The scaling factor.
10456     */
10457    @ViewDebug.ExportedProperty(category = "drawing")
10458    public float getScaleY() {
10459        return mRenderNode.getScaleY();
10460    }
10461
10462    /**
10463     * Sets the amount that the view is scaled in Y around the pivot point, as a proportion of
10464     * the view's unscaled width. A value of 1 means that no scaling is applied.
10465     *
10466     * @param scaleY The scaling factor.
10467     * @see #getPivotX()
10468     * @see #getPivotY()
10469     *
10470     * @attr ref android.R.styleable#View_scaleY
10471     */
10472    public void setScaleY(float scaleY) {
10473        if (scaleY != getScaleY()) {
10474            invalidateViewProperty(true, false);
10475            mRenderNode.setScaleY(scaleY);
10476            invalidateViewProperty(false, true);
10477
10478            invalidateParentIfNeededAndWasQuickRejected();
10479            notifySubtreeAccessibilityStateChangedIfNeeded();
10480        }
10481    }
10482
10483    /**
10484     * The x location of the point around which the view is {@link #setRotation(float) rotated}
10485     * and {@link #setScaleX(float) scaled}.
10486     *
10487     * @see #getRotation()
10488     * @see #getScaleX()
10489     * @see #getScaleY()
10490     * @see #getPivotY()
10491     * @return The x location of the pivot point.
10492     *
10493     * @attr ref android.R.styleable#View_transformPivotX
10494     */
10495    @ViewDebug.ExportedProperty(category = "drawing")
10496    public float getPivotX() {
10497        return mRenderNode.getPivotX();
10498    }
10499
10500    /**
10501     * Sets the x location of the point around which the view is
10502     * {@link #setRotation(float) rotated} and {@link #setScaleX(float) scaled}.
10503     * By default, the pivot point is centered on the object.
10504     * Setting this property disables this behavior and causes the view to use only the
10505     * explicitly set pivotX and pivotY values.
10506     *
10507     * @param pivotX The x location of the pivot point.
10508     * @see #getRotation()
10509     * @see #getScaleX()
10510     * @see #getScaleY()
10511     * @see #getPivotY()
10512     *
10513     * @attr ref android.R.styleable#View_transformPivotX
10514     */
10515    public void setPivotX(float pivotX) {
10516        if (!mRenderNode.isPivotExplicitlySet() || pivotX != getPivotX()) {
10517            invalidateViewProperty(true, false);
10518            mRenderNode.setPivotX(pivotX);
10519            invalidateViewProperty(false, true);
10520
10521            invalidateParentIfNeededAndWasQuickRejected();
10522        }
10523    }
10524
10525    /**
10526     * The y location of the point around which the view is {@link #setRotation(float) rotated}
10527     * and {@link #setScaleY(float) scaled}.
10528     *
10529     * @see #getRotation()
10530     * @see #getScaleX()
10531     * @see #getScaleY()
10532     * @see #getPivotY()
10533     * @return The y location of the pivot point.
10534     *
10535     * @attr ref android.R.styleable#View_transformPivotY
10536     */
10537    @ViewDebug.ExportedProperty(category = "drawing")
10538    public float getPivotY() {
10539        return mRenderNode.getPivotY();
10540    }
10541
10542    /**
10543     * Sets the y location of the point around which the view is {@link #setRotation(float) rotated}
10544     * and {@link #setScaleY(float) scaled}. By default, the pivot point is centered on the object.
10545     * Setting this property disables this behavior and causes the view to use only the
10546     * explicitly set pivotX and pivotY values.
10547     *
10548     * @param pivotY The y location of the pivot point.
10549     * @see #getRotation()
10550     * @see #getScaleX()
10551     * @see #getScaleY()
10552     * @see #getPivotY()
10553     *
10554     * @attr ref android.R.styleable#View_transformPivotY
10555     */
10556    public void setPivotY(float pivotY) {
10557        if (!mRenderNode.isPivotExplicitlySet() || pivotY != getPivotY()) {
10558            invalidateViewProperty(true, false);
10559            mRenderNode.setPivotY(pivotY);
10560            invalidateViewProperty(false, true);
10561
10562            invalidateParentIfNeededAndWasQuickRejected();
10563        }
10564    }
10565
10566    /**
10567     * The opacity of the view. This is a value from 0 to 1, where 0 means the view is
10568     * completely transparent and 1 means the view is completely opaque.
10569     *
10570     * <p>By default this is 1.0f.
10571     * @return The opacity of the view.
10572     */
10573    @ViewDebug.ExportedProperty(category = "drawing")
10574    public float getAlpha() {
10575        return mTransformationInfo != null ? mTransformationInfo.mAlpha : 1;
10576    }
10577
10578    /**
10579     * Returns whether this View has content which overlaps.
10580     *
10581     * <p>This function, intended to be overridden by specific View types, is an optimization when
10582     * alpha is set on a view. If rendering overlaps in a view with alpha < 1, that view is drawn to
10583     * an offscreen buffer and then composited into place, which can be expensive. If the view has
10584     * no overlapping rendering, the view can draw each primitive with the appropriate alpha value
10585     * directly. An example of overlapping rendering is a TextView with a background image, such as
10586     * a Button. An example of non-overlapping rendering is a TextView with no background, or an
10587     * ImageView with only the foreground image. The default implementation returns true; subclasses
10588     * should override if they have cases which can be optimized.</p>
10589     *
10590     * <p>The current implementation of the saveLayer and saveLayerAlpha methods in {@link Canvas}
10591     * necessitates that a View return true if it uses the methods internally without passing the
10592     * {@link Canvas#CLIP_TO_LAYER_SAVE_FLAG}.</p>
10593     *
10594     * @return true if the content in this view might overlap, false otherwise.
10595     */
10596    @ViewDebug.ExportedProperty(category = "drawing")
10597    public boolean hasOverlappingRendering() {
10598        return true;
10599    }
10600
10601    /**
10602     * <p>Sets the opacity of the view. This is a value from 0 to 1, where 0 means the view is
10603     * completely transparent and 1 means the view is completely opaque.</p>
10604     *
10605     * <p> Note that setting alpha to a translucent value (0 < alpha < 1) can have significant
10606     * performance implications, especially for large views. It is best to use the alpha property
10607     * sparingly and transiently, as in the case of fading animations.</p>
10608     *
10609     * <p>For a view with a frequently changing alpha, such as during a fading animation, it is
10610     * strongly recommended for performance reasons to either override
10611     * {@link #hasOverlappingRendering()} to return false if appropriate, or setting a
10612     * {@link #setLayerType(int, android.graphics.Paint) layer type} on the view.</p>
10613     *
10614     * <p>If this view overrides {@link #onSetAlpha(int)} to return true, then this view is
10615     * responsible for applying the opacity itself.</p>
10616     *
10617     * <p>Note that if the view is backed by a
10618     * {@link #setLayerType(int, android.graphics.Paint) layer} and is associated with a
10619     * {@link #setLayerPaint(android.graphics.Paint) layer paint}, setting an alpha value less than
10620     * 1.0 will supercede the alpha of the layer paint.</p>
10621     *
10622     * @param alpha The opacity of the view.
10623     *
10624     * @see #hasOverlappingRendering()
10625     * @see #setLayerType(int, android.graphics.Paint)
10626     *
10627     * @attr ref android.R.styleable#View_alpha
10628     */
10629    public void setAlpha(float alpha) {
10630        ensureTransformationInfo();
10631        if (mTransformationInfo.mAlpha != alpha) {
10632            mTransformationInfo.mAlpha = alpha;
10633            if (onSetAlpha((int) (alpha * 255))) {
10634                mPrivateFlags |= PFLAG_ALPHA_SET;
10635                // subclass is handling alpha - don't optimize rendering cache invalidation
10636                invalidateParentCaches();
10637                invalidate(true);
10638            } else {
10639                mPrivateFlags &= ~PFLAG_ALPHA_SET;
10640                invalidateViewProperty(true, false);
10641                mRenderNode.setAlpha(getFinalAlpha());
10642                notifyViewAccessibilityStateChangedIfNeeded(
10643                        AccessibilityEvent.CONTENT_CHANGE_TYPE_UNDEFINED);
10644            }
10645        }
10646    }
10647
10648    /**
10649     * Faster version of setAlpha() which performs the same steps except there are
10650     * no calls to invalidate(). The caller of this function should perform proper invalidation
10651     * on the parent and this object. The return value indicates whether the subclass handles
10652     * alpha (the return value for onSetAlpha()).
10653     *
10654     * @param alpha The new value for the alpha property
10655     * @return true if the View subclass handles alpha (the return value for onSetAlpha()) and
10656     *         the new value for the alpha property is different from the old value
10657     */
10658    boolean setAlphaNoInvalidation(float alpha) {
10659        ensureTransformationInfo();
10660        if (mTransformationInfo.mAlpha != alpha) {
10661            mTransformationInfo.mAlpha = alpha;
10662            boolean subclassHandlesAlpha = onSetAlpha((int) (alpha * 255));
10663            if (subclassHandlesAlpha) {
10664                mPrivateFlags |= PFLAG_ALPHA_SET;
10665                return true;
10666            } else {
10667                mPrivateFlags &= ~PFLAG_ALPHA_SET;
10668                mRenderNode.setAlpha(getFinalAlpha());
10669            }
10670        }
10671        return false;
10672    }
10673
10674    /**
10675     * This property is hidden and intended only for use by the Fade transition, which
10676     * animates it to produce a visual translucency that does not side-effect (or get
10677     * affected by) the real alpha property. This value is composited with the other
10678     * alpha value (and the AlphaAnimation value, when that is present) to produce
10679     * a final visual translucency result, which is what is passed into the DisplayList.
10680     *
10681     * @hide
10682     */
10683    public void setTransitionAlpha(float alpha) {
10684        ensureTransformationInfo();
10685        if (mTransformationInfo.mTransitionAlpha != alpha) {
10686            mTransformationInfo.mTransitionAlpha = alpha;
10687            mPrivateFlags &= ~PFLAG_ALPHA_SET;
10688            invalidateViewProperty(true, false);
10689            mRenderNode.setAlpha(getFinalAlpha());
10690        }
10691    }
10692
10693    /**
10694     * Calculates the visual alpha of this view, which is a combination of the actual
10695     * alpha value and the transitionAlpha value (if set).
10696     */
10697    private float getFinalAlpha() {
10698        if (mTransformationInfo != null) {
10699            return mTransformationInfo.mAlpha * mTransformationInfo.mTransitionAlpha;
10700        }
10701        return 1;
10702    }
10703
10704    /**
10705     * This property is hidden and intended only for use by the Fade transition, which
10706     * animates it to produce a visual translucency that does not side-effect (or get
10707     * affected by) the real alpha property. This value is composited with the other
10708     * alpha value (and the AlphaAnimation value, when that is present) to produce
10709     * a final visual translucency result, which is what is passed into the DisplayList.
10710     *
10711     * @hide
10712     */
10713    @ViewDebug.ExportedProperty(category = "drawing")
10714    public float getTransitionAlpha() {
10715        return mTransformationInfo != null ? mTransformationInfo.mTransitionAlpha : 1;
10716    }
10717
10718    /**
10719     * Top position of this view relative to its parent.
10720     *
10721     * @return The top of this view, in pixels.
10722     */
10723    @ViewDebug.CapturedViewProperty
10724    public final int getTop() {
10725        return mTop;
10726    }
10727
10728    /**
10729     * Sets the top position of this view relative to its parent. This method is meant to be called
10730     * by the layout system and should not generally be called otherwise, because the property
10731     * may be changed at any time by the layout.
10732     *
10733     * @param top The top of this view, in pixels.
10734     */
10735    public final void setTop(int top) {
10736        if (top != mTop) {
10737            final boolean matrixIsIdentity = hasIdentityMatrix();
10738            if (matrixIsIdentity) {
10739                if (mAttachInfo != null) {
10740                    int minTop;
10741                    int yLoc;
10742                    if (top < mTop) {
10743                        minTop = top;
10744                        yLoc = top - mTop;
10745                    } else {
10746                        minTop = mTop;
10747                        yLoc = 0;
10748                    }
10749                    invalidate(0, yLoc, mRight - mLeft, mBottom - minTop);
10750                }
10751            } else {
10752                // Double-invalidation is necessary to capture view's old and new areas
10753                invalidate(true);
10754            }
10755
10756            int width = mRight - mLeft;
10757            int oldHeight = mBottom - mTop;
10758
10759            mTop = top;
10760            mRenderNode.setTop(mTop);
10761
10762            sizeChange(width, mBottom - mTop, width, oldHeight);
10763
10764            if (!matrixIsIdentity) {
10765                mPrivateFlags |= PFLAG_DRAWN; // force another invalidation with the new orientation
10766                invalidate(true);
10767            }
10768            mBackgroundSizeChanged = true;
10769            invalidateParentIfNeeded();
10770            if ((mPrivateFlags2 & PFLAG2_VIEW_QUICK_REJECTED) == PFLAG2_VIEW_QUICK_REJECTED) {
10771                // View was rejected last time it was drawn by its parent; this may have changed
10772                invalidateParentIfNeeded();
10773            }
10774        }
10775    }
10776
10777    /**
10778     * Bottom position of this view relative to its parent.
10779     *
10780     * @return The bottom of this view, in pixels.
10781     */
10782    @ViewDebug.CapturedViewProperty
10783    public final int getBottom() {
10784        return mBottom;
10785    }
10786
10787    /**
10788     * True if this view has changed since the last time being drawn.
10789     *
10790     * @return The dirty state of this view.
10791     */
10792    public boolean isDirty() {
10793        return (mPrivateFlags & PFLAG_DIRTY_MASK) != 0;
10794    }
10795
10796    /**
10797     * Sets the bottom position of this view relative to its parent. This method is meant to be
10798     * called by the layout system and should not generally be called otherwise, because the
10799     * property may be changed at any time by the layout.
10800     *
10801     * @param bottom The bottom of this view, in pixels.
10802     */
10803    public final void setBottom(int bottom) {
10804        if (bottom != mBottom) {
10805            final boolean matrixIsIdentity = hasIdentityMatrix();
10806            if (matrixIsIdentity) {
10807                if (mAttachInfo != null) {
10808                    int maxBottom;
10809                    if (bottom < mBottom) {
10810                        maxBottom = mBottom;
10811                    } else {
10812                        maxBottom = bottom;
10813                    }
10814                    invalidate(0, 0, mRight - mLeft, maxBottom - mTop);
10815                }
10816            } else {
10817                // Double-invalidation is necessary to capture view's old and new areas
10818                invalidate(true);
10819            }
10820
10821            int width = mRight - mLeft;
10822            int oldHeight = mBottom - mTop;
10823
10824            mBottom = bottom;
10825            mRenderNode.setBottom(mBottom);
10826
10827            sizeChange(width, mBottom - mTop, width, oldHeight);
10828
10829            if (!matrixIsIdentity) {
10830                mPrivateFlags |= PFLAG_DRAWN; // force another invalidation with the new orientation
10831                invalidate(true);
10832            }
10833            mBackgroundSizeChanged = true;
10834            invalidateParentIfNeeded();
10835            if ((mPrivateFlags2 & PFLAG2_VIEW_QUICK_REJECTED) == PFLAG2_VIEW_QUICK_REJECTED) {
10836                // View was rejected last time it was drawn by its parent; this may have changed
10837                invalidateParentIfNeeded();
10838            }
10839        }
10840    }
10841
10842    /**
10843     * Left position of this view relative to its parent.
10844     *
10845     * @return The left edge of this view, in pixels.
10846     */
10847    @ViewDebug.CapturedViewProperty
10848    public final int getLeft() {
10849        return mLeft;
10850    }
10851
10852    /**
10853     * Sets the left position of this view relative to its parent. This method is meant to be called
10854     * by the layout system and should not generally be called otherwise, because the property
10855     * may be changed at any time by the layout.
10856     *
10857     * @param left The left of this view, in pixels.
10858     */
10859    public final void setLeft(int left) {
10860        if (left != mLeft) {
10861            final boolean matrixIsIdentity = hasIdentityMatrix();
10862            if (matrixIsIdentity) {
10863                if (mAttachInfo != null) {
10864                    int minLeft;
10865                    int xLoc;
10866                    if (left < mLeft) {
10867                        minLeft = left;
10868                        xLoc = left - mLeft;
10869                    } else {
10870                        minLeft = mLeft;
10871                        xLoc = 0;
10872                    }
10873                    invalidate(xLoc, 0, mRight - minLeft, mBottom - mTop);
10874                }
10875            } else {
10876                // Double-invalidation is necessary to capture view's old and new areas
10877                invalidate(true);
10878            }
10879
10880            int oldWidth = mRight - mLeft;
10881            int height = mBottom - mTop;
10882
10883            mLeft = left;
10884            mRenderNode.setLeft(left);
10885
10886            sizeChange(mRight - mLeft, height, oldWidth, height);
10887
10888            if (!matrixIsIdentity) {
10889                mPrivateFlags |= PFLAG_DRAWN; // force another invalidation with the new orientation
10890                invalidate(true);
10891            }
10892            mBackgroundSizeChanged = true;
10893            invalidateParentIfNeeded();
10894            if ((mPrivateFlags2 & PFLAG2_VIEW_QUICK_REJECTED) == PFLAG2_VIEW_QUICK_REJECTED) {
10895                // View was rejected last time it was drawn by its parent; this may have changed
10896                invalidateParentIfNeeded();
10897            }
10898        }
10899    }
10900
10901    /**
10902     * Right position of this view relative to its parent.
10903     *
10904     * @return The right edge of this view, in pixels.
10905     */
10906    @ViewDebug.CapturedViewProperty
10907    public final int getRight() {
10908        return mRight;
10909    }
10910
10911    /**
10912     * Sets the right position of this view relative to its parent. This method is meant to be called
10913     * by the layout system and should not generally be called otherwise, because the property
10914     * may be changed at any time by the layout.
10915     *
10916     * @param right The right of this view, in pixels.
10917     */
10918    public final void setRight(int right) {
10919        if (right != mRight) {
10920            final boolean matrixIsIdentity = hasIdentityMatrix();
10921            if (matrixIsIdentity) {
10922                if (mAttachInfo != null) {
10923                    int maxRight;
10924                    if (right < mRight) {
10925                        maxRight = mRight;
10926                    } else {
10927                        maxRight = right;
10928                    }
10929                    invalidate(0, 0, maxRight - mLeft, mBottom - mTop);
10930                }
10931            } else {
10932                // Double-invalidation is necessary to capture view's old and new areas
10933                invalidate(true);
10934            }
10935
10936            int oldWidth = mRight - mLeft;
10937            int height = mBottom - mTop;
10938
10939            mRight = right;
10940            mRenderNode.setRight(mRight);
10941
10942            sizeChange(mRight - mLeft, height, oldWidth, height);
10943
10944            if (!matrixIsIdentity) {
10945                mPrivateFlags |= PFLAG_DRAWN; // force another invalidation with the new orientation
10946                invalidate(true);
10947            }
10948            mBackgroundSizeChanged = true;
10949            invalidateParentIfNeeded();
10950            if ((mPrivateFlags2 & PFLAG2_VIEW_QUICK_REJECTED) == PFLAG2_VIEW_QUICK_REJECTED) {
10951                // View was rejected last time it was drawn by its parent; this may have changed
10952                invalidateParentIfNeeded();
10953            }
10954        }
10955    }
10956
10957    /**
10958     * The visual x position of this view, in pixels. This is equivalent to the
10959     * {@link #setTranslationX(float) translationX} property plus the current
10960     * {@link #getLeft() left} property.
10961     *
10962     * @return The visual x position of this view, in pixels.
10963     */
10964    @ViewDebug.ExportedProperty(category = "drawing")
10965    public float getX() {
10966        return mLeft + getTranslationX();
10967    }
10968
10969    /**
10970     * Sets the visual x position of this view, in pixels. This is equivalent to setting the
10971     * {@link #setTranslationX(float) translationX} property to be the difference between
10972     * the x value passed in and the current {@link #getLeft() left} property.
10973     *
10974     * @param x The visual x position of this view, in pixels.
10975     */
10976    public void setX(float x) {
10977        setTranslationX(x - mLeft);
10978    }
10979
10980    /**
10981     * The visual y position of this view, in pixels. This is equivalent to the
10982     * {@link #setTranslationY(float) translationY} property plus the current
10983     * {@link #getTop() top} property.
10984     *
10985     * @return The visual y position of this view, in pixels.
10986     */
10987    @ViewDebug.ExportedProperty(category = "drawing")
10988    public float getY() {
10989        return mTop + getTranslationY();
10990    }
10991
10992    /**
10993     * Sets the visual y position of this view, in pixels. This is equivalent to setting the
10994     * {@link #setTranslationY(float) translationY} property to be the difference between
10995     * the y value passed in and the current {@link #getTop() top} property.
10996     *
10997     * @param y The visual y position of this view, in pixels.
10998     */
10999    public void setY(float y) {
11000        setTranslationY(y - mTop);
11001    }
11002
11003    /**
11004     * The visual z position of this view, in pixels. This is equivalent to the
11005     * {@link #setTranslationZ(float) translationZ} property plus the current
11006     * {@link #getElevation() elevation} property.
11007     *
11008     * @return The visual z position of this view, in pixels.
11009     */
11010    @ViewDebug.ExportedProperty(category = "drawing")
11011    public float getZ() {
11012        return getElevation() + getTranslationZ();
11013    }
11014
11015    /**
11016     * Sets the visual z position of this view, in pixels. This is equivalent to setting the
11017     * {@link #setTranslationZ(float) translationZ} property to be the difference between
11018     * the x value passed in and the current {@link #getElevation() elevation} property.
11019     *
11020     * @param z The visual z position of this view, in pixels.
11021     */
11022    public void setZ(float z) {
11023        setTranslationZ(z - getElevation());
11024    }
11025
11026    /**
11027     * The base elevation of this view relative to its parent, in pixels.
11028     *
11029     * @return The base depth position of the view, in pixels.
11030     */
11031    @ViewDebug.ExportedProperty(category = "drawing")
11032    public float getElevation() {
11033        return mRenderNode.getElevation();
11034    }
11035
11036    /**
11037     * Sets the base elevation of this view, in pixels.
11038     *
11039     * @attr ref android.R.styleable#View_elevation
11040     */
11041    public void setElevation(float elevation) {
11042        if (elevation != getElevation()) {
11043            invalidateViewProperty(true, false);
11044            mRenderNode.setElevation(elevation);
11045            invalidateViewProperty(false, true);
11046
11047            invalidateParentIfNeededAndWasQuickRejected();
11048        }
11049    }
11050
11051    /**
11052     * The horizontal location of this view relative to its {@link #getLeft() left} position.
11053     * This position is post-layout, in addition to wherever the object's
11054     * layout placed it.
11055     *
11056     * @return The horizontal position of this view relative to its left position, in pixels.
11057     */
11058    @ViewDebug.ExportedProperty(category = "drawing")
11059    public float getTranslationX() {
11060        return mRenderNode.getTranslationX();
11061    }
11062
11063    /**
11064     * Sets the horizontal location of this view relative to its {@link #getLeft() left} position.
11065     * This effectively positions the object post-layout, in addition to wherever the object's
11066     * layout placed it.
11067     *
11068     * @param translationX The horizontal position of this view relative to its left position,
11069     * in pixels.
11070     *
11071     * @attr ref android.R.styleable#View_translationX
11072     */
11073    public void setTranslationX(float translationX) {
11074        if (translationX != getTranslationX()) {
11075            invalidateViewProperty(true, false);
11076            mRenderNode.setTranslationX(translationX);
11077            invalidateViewProperty(false, true);
11078
11079            invalidateParentIfNeededAndWasQuickRejected();
11080            notifySubtreeAccessibilityStateChangedIfNeeded();
11081        }
11082    }
11083
11084    /**
11085     * The vertical location of this view relative to its {@link #getTop() top} position.
11086     * This position is post-layout, in addition to wherever the object's
11087     * layout placed it.
11088     *
11089     * @return The vertical position of this view relative to its top position,
11090     * in pixels.
11091     */
11092    @ViewDebug.ExportedProperty(category = "drawing")
11093    public float getTranslationY() {
11094        return mRenderNode.getTranslationY();
11095    }
11096
11097    /**
11098     * Sets the vertical location of this view relative to its {@link #getTop() top} position.
11099     * This effectively positions the object post-layout, in addition to wherever the object's
11100     * layout placed it.
11101     *
11102     * @param translationY The vertical position of this view relative to its top position,
11103     * in pixels.
11104     *
11105     * @attr ref android.R.styleable#View_translationY
11106     */
11107    public void setTranslationY(float translationY) {
11108        if (translationY != getTranslationY()) {
11109            invalidateViewProperty(true, false);
11110            mRenderNode.setTranslationY(translationY);
11111            invalidateViewProperty(false, true);
11112
11113            invalidateParentIfNeededAndWasQuickRejected();
11114        }
11115    }
11116
11117    /**
11118     * The depth location of this view relative to its {@link #getElevation() elevation}.
11119     *
11120     * @return The depth of this view relative to its elevation.
11121     */
11122    @ViewDebug.ExportedProperty(category = "drawing")
11123    public float getTranslationZ() {
11124        return mRenderNode.getTranslationZ();
11125    }
11126
11127    /**
11128     * Sets the depth location of this view relative to its {@link #getElevation() elevation}.
11129     *
11130     * @attr ref android.R.styleable#View_translationZ
11131     */
11132    public void setTranslationZ(float translationZ) {
11133        if (translationZ != getTranslationZ()) {
11134            invalidateViewProperty(true, false);
11135            mRenderNode.setTranslationZ(translationZ);
11136            invalidateViewProperty(false, true);
11137
11138            invalidateParentIfNeededAndWasQuickRejected();
11139        }
11140    }
11141
11142    /** @hide */
11143    public void setAnimationMatrix(Matrix matrix) {
11144        invalidateViewProperty(true, false);
11145        mRenderNode.setAnimationMatrix(matrix);
11146        invalidateViewProperty(false, true);
11147
11148        invalidateParentIfNeededAndWasQuickRejected();
11149    }
11150
11151    /**
11152     * Returns the current StateListAnimator if exists.
11153     *
11154     * @return StateListAnimator or null if it does not exists
11155     * @see    #setStateListAnimator(android.animation.StateListAnimator)
11156     */
11157    public StateListAnimator getStateListAnimator() {
11158        return mStateListAnimator;
11159    }
11160
11161    /**
11162     * Attaches the provided StateListAnimator to this View.
11163     * <p>
11164     * Any previously attached StateListAnimator will be detached.
11165     *
11166     * @param stateListAnimator The StateListAnimator to update the view
11167     * @see {@link android.animation.StateListAnimator}
11168     */
11169    public void setStateListAnimator(StateListAnimator stateListAnimator) {
11170        if (mStateListAnimator == stateListAnimator) {
11171            return;
11172        }
11173        if (mStateListAnimator != null) {
11174            mStateListAnimator.setTarget(null);
11175        }
11176        mStateListAnimator = stateListAnimator;
11177        if (stateListAnimator != null) {
11178            stateListAnimator.setTarget(this);
11179            if (isAttachedToWindow()) {
11180                stateListAnimator.setState(getDrawableState());
11181            }
11182        }
11183    }
11184
11185    /**
11186     * Returns whether the Outline should be used to clip the contents of the View.
11187     * <p>
11188     * Note that this flag will only be respected if the View's Outline returns true from
11189     * {@link Outline#canClip()}.
11190     *
11191     * @see #setOutlineProvider(ViewOutlineProvider)
11192     * @see #setClipToOutline(boolean)
11193     */
11194    public final boolean getClipToOutline() {
11195        return mRenderNode.getClipToOutline();
11196    }
11197
11198    /**
11199     * Sets whether the View's Outline should be used to clip the contents of the View.
11200     * <p>
11201     * Only a single non-rectangular clip can be applied on a View at any time.
11202     * Circular clips from a {@link ViewAnimationUtils#createCircularReveal(View, int, int, float, float)
11203     * circular reveal} animation take priority over Outline clipping, and
11204     * child Outline clipping takes priority over Outline clipping done by a
11205     * parent.
11206     * <p>
11207     * Note that this flag will only be respected if the View's Outline returns true from
11208     * {@link Outline#canClip()}.
11209     *
11210     * @see #setOutlineProvider(ViewOutlineProvider)
11211     * @see #getClipToOutline()
11212     */
11213    public void setClipToOutline(boolean clipToOutline) {
11214        damageInParent();
11215        if (getClipToOutline() != clipToOutline) {
11216            mRenderNode.setClipToOutline(clipToOutline);
11217        }
11218    }
11219
11220    // correspond to the enum values of View_outlineProvider
11221    private static final int PROVIDER_BACKGROUND = 0;
11222    private static final int PROVIDER_NONE = 1;
11223    private static final int PROVIDER_BOUNDS = 2;
11224    private static final int PROVIDER_PADDED_BOUNDS = 3;
11225    private void setOutlineProviderFromAttribute(int providerInt) {
11226        switch (providerInt) {
11227            case PROVIDER_BACKGROUND:
11228                setOutlineProvider(ViewOutlineProvider.BACKGROUND);
11229                break;
11230            case PROVIDER_NONE:
11231                setOutlineProvider(null);
11232                break;
11233            case PROVIDER_BOUNDS:
11234                setOutlineProvider(ViewOutlineProvider.BOUNDS);
11235                break;
11236            case PROVIDER_PADDED_BOUNDS:
11237                setOutlineProvider(ViewOutlineProvider.PADDED_BOUNDS);
11238                break;
11239        }
11240    }
11241
11242    /**
11243     * Sets the {@link ViewOutlineProvider} of the view, which generates the Outline that defines
11244     * the shape of the shadow it casts, and enables outline clipping.
11245     * <p>
11246     * The default ViewOutlineProvider, {@link ViewOutlineProvider#BACKGROUND}, queries the Outline
11247     * from the View's background drawable, via {@link Drawable#getOutline(Outline)}. Changing the
11248     * outline provider with this method allows this behavior to be overridden.
11249     * <p>
11250     * If the ViewOutlineProvider is null, if querying it for an outline returns false,
11251     * or if the produced Outline is {@link Outline#isEmpty()}, shadows will not be cast.
11252     * <p>
11253     * Only outlines that return true from {@link Outline#canClip()} may be used for clipping.
11254     *
11255     * @see #setClipToOutline(boolean)
11256     * @see #getClipToOutline()
11257     * @see #getOutlineProvider()
11258     */
11259    public void setOutlineProvider(ViewOutlineProvider provider) {
11260        mOutlineProvider = provider;
11261        invalidateOutline();
11262    }
11263
11264    /**
11265     * Returns the current {@link ViewOutlineProvider} of the view, which generates the Outline
11266     * that defines the shape of the shadow it casts, and enables outline clipping.
11267     *
11268     * @see #setOutlineProvider(ViewOutlineProvider)
11269     */
11270    public ViewOutlineProvider getOutlineProvider() {
11271        return mOutlineProvider;
11272    }
11273
11274    /**
11275     * Called to rebuild this View's Outline from its {@link ViewOutlineProvider outline provider}
11276     *
11277     * @see #setOutlineProvider(ViewOutlineProvider)
11278     */
11279    public void invalidateOutline() {
11280        mPrivateFlags3 |= PFLAG3_OUTLINE_INVALID;
11281
11282        notifySubtreeAccessibilityStateChangedIfNeeded();
11283        invalidateViewProperty(false, false);
11284    }
11285
11286    /**
11287     * Internal version of {@link #invalidateOutline()} which invalidates the
11288     * outline without invalidating the view itself. This is intended to be called from
11289     * within methods in the View class itself which are the result of the view being
11290     * invalidated already. For example, when we are drawing the background of a View,
11291     * we invalidate the outline in case it changed in the meantime, but we do not
11292     * need to invalidate the view because we're already drawing the background as part
11293     * of drawing the view in response to an earlier invalidation of the view.
11294     */
11295    private void rebuildOutline() {
11296        // Unattached views ignore this signal, and outline is recomputed in onAttachedToWindow()
11297        if (mAttachInfo == null) return;
11298
11299        if (mOutlineProvider == null) {
11300            // no provider, remove outline
11301            mRenderNode.setOutline(null);
11302        } else {
11303            final Outline outline = mAttachInfo.mTmpOutline;
11304            outline.setEmpty();
11305            outline.setAlpha(1.0f);
11306
11307            mOutlineProvider.getOutline(this, outline);
11308            mRenderNode.setOutline(outline);
11309        }
11310    }
11311
11312    /**
11313     * HierarchyViewer only
11314     *
11315     * @hide
11316     */
11317    @ViewDebug.ExportedProperty(category = "drawing")
11318    public boolean hasShadow() {
11319        return mRenderNode.hasShadow();
11320    }
11321
11322
11323    /** @hide */
11324    public void setRevealClip(boolean shouldClip, float x, float y, float radius) {
11325        mRenderNode.setRevealClip(shouldClip, x, y, radius);
11326        invalidateViewProperty(false, false);
11327    }
11328
11329    /**
11330     * Hit rectangle in parent's coordinates
11331     *
11332     * @param outRect The hit rectangle of the view.
11333     */
11334    public void getHitRect(Rect outRect) {
11335        if (hasIdentityMatrix() || mAttachInfo == null) {
11336            outRect.set(mLeft, mTop, mRight, mBottom);
11337        } else {
11338            final RectF tmpRect = mAttachInfo.mTmpTransformRect;
11339            tmpRect.set(0, 0, getWidth(), getHeight());
11340            getMatrix().mapRect(tmpRect); // TODO: mRenderNode.mapRect(tmpRect)
11341            outRect.set((int) tmpRect.left + mLeft, (int) tmpRect.top + mTop,
11342                    (int) tmpRect.right + mLeft, (int) tmpRect.bottom + mTop);
11343        }
11344    }
11345
11346    /**
11347     * Determines whether the given point, in local coordinates is inside the view.
11348     */
11349    /*package*/ final boolean pointInView(float localX, float localY) {
11350        return localX >= 0 && localX < (mRight - mLeft)
11351                && localY >= 0 && localY < (mBottom - mTop);
11352    }
11353
11354    /**
11355     * Utility method to determine whether the given point, in local coordinates,
11356     * is inside the view, where the area of the view is expanded by the slop factor.
11357     * This method is called while processing touch-move events to determine if the event
11358     * is still within the view.
11359     *
11360     * @hide
11361     */
11362    public boolean pointInView(float localX, float localY, float slop) {
11363        return localX >= -slop && localY >= -slop && localX < ((mRight - mLeft) + slop) &&
11364                localY < ((mBottom - mTop) + slop);
11365    }
11366
11367    /**
11368     * When a view has focus and the user navigates away from it, the next view is searched for
11369     * starting from the rectangle filled in by this method.
11370     *
11371     * By default, the rectangle is the {@link #getDrawingRect(android.graphics.Rect)})
11372     * of the view.  However, if your view maintains some idea of internal selection,
11373     * such as a cursor, or a selected row or column, you should override this method and
11374     * fill in a more specific rectangle.
11375     *
11376     * @param r The rectangle to fill in, in this view's coordinates.
11377     */
11378    public void getFocusedRect(Rect r) {
11379        getDrawingRect(r);
11380    }
11381
11382    /**
11383     * If some part of this view is not clipped by any of its parents, then
11384     * return that area in r in global (root) coordinates. To convert r to local
11385     * coordinates (without taking possible View rotations into account), offset
11386     * it by -globalOffset (e.g. r.offset(-globalOffset.x, -globalOffset.y)).
11387     * If the view is completely clipped or translated out, return false.
11388     *
11389     * @param r If true is returned, r holds the global coordinates of the
11390     *        visible portion of this view.
11391     * @param globalOffset If true is returned, globalOffset holds the dx,dy
11392     *        between this view and its root. globalOffet may be null.
11393     * @return true if r is non-empty (i.e. part of the view is visible at the
11394     *         root level.
11395     */
11396    public boolean getGlobalVisibleRect(Rect r, Point globalOffset) {
11397        int width = mRight - mLeft;
11398        int height = mBottom - mTop;
11399        if (width > 0 && height > 0) {
11400            r.set(0, 0, width, height);
11401            if (globalOffset != null) {
11402                globalOffset.set(-mScrollX, -mScrollY);
11403            }
11404            return mParent == null || mParent.getChildVisibleRect(this, r, globalOffset);
11405        }
11406        return false;
11407    }
11408
11409    public final boolean getGlobalVisibleRect(Rect r) {
11410        return getGlobalVisibleRect(r, null);
11411    }
11412
11413    public final boolean getLocalVisibleRect(Rect r) {
11414        final Point offset = mAttachInfo != null ? mAttachInfo.mPoint : new Point();
11415        if (getGlobalVisibleRect(r, offset)) {
11416            r.offset(-offset.x, -offset.y); // make r local
11417            return true;
11418        }
11419        return false;
11420    }
11421
11422    /**
11423     * Offset this view's vertical location by the specified number of pixels.
11424     *
11425     * @param offset the number of pixels to offset the view by
11426     */
11427    public void offsetTopAndBottom(int offset) {
11428        if (offset != 0) {
11429            final boolean matrixIsIdentity = hasIdentityMatrix();
11430            if (matrixIsIdentity) {
11431                if (isHardwareAccelerated()) {
11432                    invalidateViewProperty(false, false);
11433                } else {
11434                    final ViewParent p = mParent;
11435                    if (p != null && mAttachInfo != null) {
11436                        final Rect r = mAttachInfo.mTmpInvalRect;
11437                        int minTop;
11438                        int maxBottom;
11439                        int yLoc;
11440                        if (offset < 0) {
11441                            minTop = mTop + offset;
11442                            maxBottom = mBottom;
11443                            yLoc = offset;
11444                        } else {
11445                            minTop = mTop;
11446                            maxBottom = mBottom + offset;
11447                            yLoc = 0;
11448                        }
11449                        r.set(0, yLoc, mRight - mLeft, maxBottom - minTop);
11450                        p.invalidateChild(this, r);
11451                    }
11452                }
11453            } else {
11454                invalidateViewProperty(false, false);
11455            }
11456
11457            mTop += offset;
11458            mBottom += offset;
11459            mRenderNode.offsetTopAndBottom(offset);
11460            if (isHardwareAccelerated()) {
11461                invalidateViewProperty(false, false);
11462            } else {
11463                if (!matrixIsIdentity) {
11464                    invalidateViewProperty(false, true);
11465                }
11466                invalidateParentIfNeeded();
11467            }
11468            notifySubtreeAccessibilityStateChangedIfNeeded();
11469        }
11470    }
11471
11472    /**
11473     * Offset this view's horizontal location by the specified amount of pixels.
11474     *
11475     * @param offset the number of pixels to offset the view by
11476     */
11477    public void offsetLeftAndRight(int offset) {
11478        if (offset != 0) {
11479            final boolean matrixIsIdentity = hasIdentityMatrix();
11480            if (matrixIsIdentity) {
11481                if (isHardwareAccelerated()) {
11482                    invalidateViewProperty(false, false);
11483                } else {
11484                    final ViewParent p = mParent;
11485                    if (p != null && mAttachInfo != null) {
11486                        final Rect r = mAttachInfo.mTmpInvalRect;
11487                        int minLeft;
11488                        int maxRight;
11489                        if (offset < 0) {
11490                            minLeft = mLeft + offset;
11491                            maxRight = mRight;
11492                        } else {
11493                            minLeft = mLeft;
11494                            maxRight = mRight + offset;
11495                        }
11496                        r.set(0, 0, maxRight - minLeft, mBottom - mTop);
11497                        p.invalidateChild(this, r);
11498                    }
11499                }
11500            } else {
11501                invalidateViewProperty(false, false);
11502            }
11503
11504            mLeft += offset;
11505            mRight += offset;
11506            mRenderNode.offsetLeftAndRight(offset);
11507            if (isHardwareAccelerated()) {
11508                invalidateViewProperty(false, false);
11509            } else {
11510                if (!matrixIsIdentity) {
11511                    invalidateViewProperty(false, true);
11512                }
11513                invalidateParentIfNeeded();
11514            }
11515            notifySubtreeAccessibilityStateChangedIfNeeded();
11516        }
11517    }
11518
11519    /**
11520     * Get the LayoutParams associated with this view. All views should have
11521     * layout parameters. These supply parameters to the <i>parent</i> of this
11522     * view specifying how it should be arranged. There are many subclasses of
11523     * ViewGroup.LayoutParams, and these correspond to the different subclasses
11524     * of ViewGroup that are responsible for arranging their children.
11525     *
11526     * This method may return null if this View is not attached to a parent
11527     * ViewGroup or {@link #setLayoutParams(android.view.ViewGroup.LayoutParams)}
11528     * was not invoked successfully. When a View is attached to a parent
11529     * ViewGroup, this method must not return null.
11530     *
11531     * @return The LayoutParams associated with this view, or null if no
11532     *         parameters have been set yet
11533     */
11534    @ViewDebug.ExportedProperty(deepExport = true, prefix = "layout_")
11535    public ViewGroup.LayoutParams getLayoutParams() {
11536        return mLayoutParams;
11537    }
11538
11539    /**
11540     * Set the layout parameters associated with this view. These supply
11541     * parameters to the <i>parent</i> of this view specifying how it should be
11542     * arranged. There are many subclasses of ViewGroup.LayoutParams, and these
11543     * correspond to the different subclasses of ViewGroup that are responsible
11544     * for arranging their children.
11545     *
11546     * @param params The layout parameters for this view, cannot be null
11547     */
11548    public void setLayoutParams(ViewGroup.LayoutParams params) {
11549        if (params == null) {
11550            throw new NullPointerException("Layout parameters cannot be null");
11551        }
11552        mLayoutParams = params;
11553        resolveLayoutParams();
11554        if (mParent instanceof ViewGroup) {
11555            ((ViewGroup) mParent).onSetLayoutParams(this, params);
11556        }
11557        requestLayout();
11558    }
11559
11560    /**
11561     * Resolve the layout parameters depending on the resolved layout direction
11562     *
11563     * @hide
11564     */
11565    public void resolveLayoutParams() {
11566        if (mLayoutParams != null) {
11567            mLayoutParams.resolveLayoutDirection(getLayoutDirection());
11568        }
11569    }
11570
11571    /**
11572     * Set the scrolled position of your view. This will cause a call to
11573     * {@link #onScrollChanged(int, int, int, int)} and the view will be
11574     * invalidated.
11575     * @param x the x position to scroll to
11576     * @param y the y position to scroll to
11577     */
11578    public void scrollTo(int x, int y) {
11579        if (mScrollX != x || mScrollY != y) {
11580            int oldX = mScrollX;
11581            int oldY = mScrollY;
11582            mScrollX = x;
11583            mScrollY = y;
11584            invalidateParentCaches();
11585            onScrollChanged(mScrollX, mScrollY, oldX, oldY);
11586            if (!awakenScrollBars()) {
11587                postInvalidateOnAnimation();
11588            }
11589        }
11590    }
11591
11592    /**
11593     * Move the scrolled position of your view. This will cause a call to
11594     * {@link #onScrollChanged(int, int, int, int)} and the view will be
11595     * invalidated.
11596     * @param x the amount of pixels to scroll by horizontally
11597     * @param y the amount of pixels to scroll by vertically
11598     */
11599    public void scrollBy(int x, int y) {
11600        scrollTo(mScrollX + x, mScrollY + y);
11601    }
11602
11603    /**
11604     * <p>Trigger the scrollbars to draw. When invoked this method starts an
11605     * animation to fade the scrollbars out after a default delay. If a subclass
11606     * provides animated scrolling, the start delay should equal the duration
11607     * of the scrolling animation.</p>
11608     *
11609     * <p>The animation starts only if at least one of the scrollbars is
11610     * enabled, as specified by {@link #isHorizontalScrollBarEnabled()} and
11611     * {@link #isVerticalScrollBarEnabled()}. When the animation is started,
11612     * this method returns true, and false otherwise. If the animation is
11613     * started, this method calls {@link #invalidate()}; in that case the
11614     * caller should not call {@link #invalidate()}.</p>
11615     *
11616     * <p>This method should be invoked every time a subclass directly updates
11617     * the scroll parameters.</p>
11618     *
11619     * <p>This method is automatically invoked by {@link #scrollBy(int, int)}
11620     * and {@link #scrollTo(int, int)}.</p>
11621     *
11622     * @return true if the animation is played, false otherwise
11623     *
11624     * @see #awakenScrollBars(int)
11625     * @see #scrollBy(int, int)
11626     * @see #scrollTo(int, int)
11627     * @see #isHorizontalScrollBarEnabled()
11628     * @see #isVerticalScrollBarEnabled()
11629     * @see #setHorizontalScrollBarEnabled(boolean)
11630     * @see #setVerticalScrollBarEnabled(boolean)
11631     */
11632    protected boolean awakenScrollBars() {
11633        return mScrollCache != null &&
11634                awakenScrollBars(mScrollCache.scrollBarDefaultDelayBeforeFade, true);
11635    }
11636
11637    /**
11638     * Trigger the scrollbars to draw.
11639     * This method differs from awakenScrollBars() only in its default duration.
11640     * initialAwakenScrollBars() will show the scroll bars for longer than
11641     * usual to give the user more of a chance to notice them.
11642     *
11643     * @return true if the animation is played, false otherwise.
11644     */
11645    private boolean initialAwakenScrollBars() {
11646        return mScrollCache != null &&
11647                awakenScrollBars(mScrollCache.scrollBarDefaultDelayBeforeFade * 4, true);
11648    }
11649
11650    /**
11651     * <p>
11652     * Trigger the scrollbars to draw. When invoked this method starts an
11653     * animation to fade the scrollbars out after a fixed delay. If a subclass
11654     * provides animated scrolling, the start delay should equal the duration of
11655     * the scrolling animation.
11656     * </p>
11657     *
11658     * <p>
11659     * The animation starts only if at least one of the scrollbars is enabled,
11660     * as specified by {@link #isHorizontalScrollBarEnabled()} and
11661     * {@link #isVerticalScrollBarEnabled()}. When the animation is started,
11662     * this method returns true, and false otherwise. If the animation is
11663     * started, this method calls {@link #invalidate()}; in that case the caller
11664     * should not call {@link #invalidate()}.
11665     * </p>
11666     *
11667     * <p>
11668     * This method should be invoked everytime a subclass directly updates the
11669     * scroll parameters.
11670     * </p>
11671     *
11672     * @param startDelay the delay, in milliseconds, after which the animation
11673     *        should start; when the delay is 0, the animation starts
11674     *        immediately
11675     * @return true if the animation is played, false otherwise
11676     *
11677     * @see #scrollBy(int, int)
11678     * @see #scrollTo(int, int)
11679     * @see #isHorizontalScrollBarEnabled()
11680     * @see #isVerticalScrollBarEnabled()
11681     * @see #setHorizontalScrollBarEnabled(boolean)
11682     * @see #setVerticalScrollBarEnabled(boolean)
11683     */
11684    protected boolean awakenScrollBars(int startDelay) {
11685        return awakenScrollBars(startDelay, true);
11686    }
11687
11688    /**
11689     * <p>
11690     * Trigger the scrollbars to draw. When invoked this method starts an
11691     * animation to fade the scrollbars out after a fixed delay. If a subclass
11692     * provides animated scrolling, the start delay should equal the duration of
11693     * the scrolling animation.
11694     * </p>
11695     *
11696     * <p>
11697     * The animation starts only if at least one of the scrollbars is enabled,
11698     * as specified by {@link #isHorizontalScrollBarEnabled()} and
11699     * {@link #isVerticalScrollBarEnabled()}. When the animation is started,
11700     * this method returns true, and false otherwise. If the animation is
11701     * started, this method calls {@link #invalidate()} if the invalidate parameter
11702     * is set to true; in that case the caller
11703     * should not call {@link #invalidate()}.
11704     * </p>
11705     *
11706     * <p>
11707     * This method should be invoked everytime a subclass directly updates the
11708     * scroll parameters.
11709     * </p>
11710     *
11711     * @param startDelay the delay, in milliseconds, after which the animation
11712     *        should start; when the delay is 0, the animation starts
11713     *        immediately
11714     *
11715     * @param invalidate Wheter this method should call invalidate
11716     *
11717     * @return true if the animation is played, false otherwise
11718     *
11719     * @see #scrollBy(int, int)
11720     * @see #scrollTo(int, int)
11721     * @see #isHorizontalScrollBarEnabled()
11722     * @see #isVerticalScrollBarEnabled()
11723     * @see #setHorizontalScrollBarEnabled(boolean)
11724     * @see #setVerticalScrollBarEnabled(boolean)
11725     */
11726    protected boolean awakenScrollBars(int startDelay, boolean invalidate) {
11727        final ScrollabilityCache scrollCache = mScrollCache;
11728
11729        if (scrollCache == null || !scrollCache.fadeScrollBars) {
11730            return false;
11731        }
11732
11733        if (scrollCache.scrollBar == null) {
11734            scrollCache.scrollBar = new ScrollBarDrawable();
11735        }
11736
11737        if (isHorizontalScrollBarEnabled() || isVerticalScrollBarEnabled()) {
11738
11739            if (invalidate) {
11740                // Invalidate to show the scrollbars
11741                postInvalidateOnAnimation();
11742            }
11743
11744            if (scrollCache.state == ScrollabilityCache.OFF) {
11745                // FIXME: this is copied from WindowManagerService.
11746                // We should get this value from the system when it
11747                // is possible to do so.
11748                final int KEY_REPEAT_FIRST_DELAY = 750;
11749                startDelay = Math.max(KEY_REPEAT_FIRST_DELAY, startDelay);
11750            }
11751
11752            // Tell mScrollCache when we should start fading. This may
11753            // extend the fade start time if one was already scheduled
11754            long fadeStartTime = AnimationUtils.currentAnimationTimeMillis() + startDelay;
11755            scrollCache.fadeStartTime = fadeStartTime;
11756            scrollCache.state = ScrollabilityCache.ON;
11757
11758            // Schedule our fader to run, unscheduling any old ones first
11759            if (mAttachInfo != null) {
11760                mAttachInfo.mHandler.removeCallbacks(scrollCache);
11761                mAttachInfo.mHandler.postAtTime(scrollCache, fadeStartTime);
11762            }
11763
11764            return true;
11765        }
11766
11767        return false;
11768    }
11769
11770    /**
11771     * Do not invalidate views which are not visible and which are not running an animation. They
11772     * will not get drawn and they should not set dirty flags as if they will be drawn
11773     */
11774    private boolean skipInvalidate() {
11775        return (mViewFlags & VISIBILITY_MASK) != VISIBLE && mCurrentAnimation == null &&
11776                (!(mParent instanceof ViewGroup) ||
11777                        !((ViewGroup) mParent).isViewTransitioning(this));
11778    }
11779
11780    /**
11781     * Mark the area defined by dirty as needing to be drawn. If the view is
11782     * visible, {@link #onDraw(android.graphics.Canvas)} will be called at some
11783     * point in the future.
11784     * <p>
11785     * This must be called from a UI thread. To call from a non-UI thread, call
11786     * {@link #postInvalidate()}.
11787     * <p>
11788     * <b>WARNING:</b> In API 19 and below, this method may be destructive to
11789     * {@code dirty}.
11790     *
11791     * @param dirty the rectangle representing the bounds of the dirty region
11792     */
11793    public void invalidate(Rect dirty) {
11794        final int scrollX = mScrollX;
11795        final int scrollY = mScrollY;
11796        invalidateInternal(dirty.left - scrollX, dirty.top - scrollY,
11797                dirty.right - scrollX, dirty.bottom - scrollY, true, false);
11798    }
11799
11800    /**
11801     * Mark the area defined by the rect (l,t,r,b) as needing to be drawn. The
11802     * coordinates of the dirty rect are relative to the view. If the view is
11803     * visible, {@link #onDraw(android.graphics.Canvas)} will be called at some
11804     * point in the future.
11805     * <p>
11806     * This must be called from a UI thread. To call from a non-UI thread, call
11807     * {@link #postInvalidate()}.
11808     *
11809     * @param l the left position of the dirty region
11810     * @param t the top position of the dirty region
11811     * @param r the right position of the dirty region
11812     * @param b the bottom position of the dirty region
11813     */
11814    public void invalidate(int l, int t, int r, int b) {
11815        final int scrollX = mScrollX;
11816        final int scrollY = mScrollY;
11817        invalidateInternal(l - scrollX, t - scrollY, r - scrollX, b - scrollY, true, false);
11818    }
11819
11820    /**
11821     * Invalidate the whole view. If the view is visible,
11822     * {@link #onDraw(android.graphics.Canvas)} will be called at some point in
11823     * the future.
11824     * <p>
11825     * This must be called from a UI thread. To call from a non-UI thread, call
11826     * {@link #postInvalidate()}.
11827     */
11828    public void invalidate() {
11829        invalidate(true);
11830    }
11831
11832    /**
11833     * This is where the invalidate() work actually happens. A full invalidate()
11834     * causes the drawing cache to be invalidated, but this function can be
11835     * called with invalidateCache set to false to skip that invalidation step
11836     * for cases that do not need it (for example, a component that remains at
11837     * the same dimensions with the same content).
11838     *
11839     * @param invalidateCache Whether the drawing cache for this view should be
11840     *            invalidated as well. This is usually true for a full
11841     *            invalidate, but may be set to false if the View's contents or
11842     *            dimensions have not changed.
11843     */
11844    void invalidate(boolean invalidateCache) {
11845        invalidateInternal(0, 0, mRight - mLeft, mBottom - mTop, invalidateCache, true);
11846    }
11847
11848    void invalidateInternal(int l, int t, int r, int b, boolean invalidateCache,
11849            boolean fullInvalidate) {
11850        if (mGhostView != null) {
11851            mGhostView.invalidate(invalidateCache);
11852            return;
11853        }
11854
11855        if (skipInvalidate()) {
11856            return;
11857        }
11858
11859        if ((mPrivateFlags & (PFLAG_DRAWN | PFLAG_HAS_BOUNDS)) == (PFLAG_DRAWN | PFLAG_HAS_BOUNDS)
11860                || (invalidateCache && (mPrivateFlags & PFLAG_DRAWING_CACHE_VALID) == PFLAG_DRAWING_CACHE_VALID)
11861                || (mPrivateFlags & PFLAG_INVALIDATED) != PFLAG_INVALIDATED
11862                || (fullInvalidate && isOpaque() != mLastIsOpaque)) {
11863            if (fullInvalidate) {
11864                mLastIsOpaque = isOpaque();
11865                mPrivateFlags &= ~PFLAG_DRAWN;
11866            }
11867
11868            mPrivateFlags |= PFLAG_DIRTY;
11869
11870            if (invalidateCache) {
11871                mPrivateFlags |= PFLAG_INVALIDATED;
11872                mPrivateFlags &= ~PFLAG_DRAWING_CACHE_VALID;
11873            }
11874
11875            // Propagate the damage rectangle to the parent view.
11876            final AttachInfo ai = mAttachInfo;
11877            final ViewParent p = mParent;
11878            if (p != null && ai != null && l < r && t < b) {
11879                final Rect damage = ai.mTmpInvalRect;
11880                damage.set(l, t, r, b);
11881                p.invalidateChild(this, damage);
11882            }
11883
11884            // Damage the entire projection receiver, if necessary.
11885            if (mBackground != null && mBackground.isProjected()) {
11886                final View receiver = getProjectionReceiver();
11887                if (receiver != null) {
11888                    receiver.damageInParent();
11889                }
11890            }
11891
11892            // Damage the entire IsolatedZVolume receiving this view's shadow.
11893            if (isHardwareAccelerated() && getZ() != 0) {
11894                damageShadowReceiver();
11895            }
11896        }
11897    }
11898
11899    /**
11900     * @return this view's projection receiver, or {@code null} if none exists
11901     */
11902    private View getProjectionReceiver() {
11903        ViewParent p = getParent();
11904        while (p != null && p instanceof View) {
11905            final View v = (View) p;
11906            if (v.isProjectionReceiver()) {
11907                return v;
11908            }
11909            p = p.getParent();
11910        }
11911
11912        return null;
11913    }
11914
11915    /**
11916     * @return whether the view is a projection receiver
11917     */
11918    private boolean isProjectionReceiver() {
11919        return mBackground != null;
11920    }
11921
11922    /**
11923     * Damage area of the screen that can be covered by this View's shadow.
11924     *
11925     * This method will guarantee that any changes to shadows cast by a View
11926     * are damaged on the screen for future redraw.
11927     */
11928    private void damageShadowReceiver() {
11929        final AttachInfo ai = mAttachInfo;
11930        if (ai != null) {
11931            ViewParent p = getParent();
11932            if (p != null && p instanceof ViewGroup) {
11933                final ViewGroup vg = (ViewGroup) p;
11934                vg.damageInParent();
11935            }
11936        }
11937    }
11938
11939    /**
11940     * Quick invalidation for View property changes (alpha, translationXY, etc.). We don't want to
11941     * set any flags or handle all of the cases handled by the default invalidation methods.
11942     * Instead, we just want to schedule a traversal in ViewRootImpl with the appropriate
11943     * dirty rect. This method calls into fast invalidation methods in ViewGroup that
11944     * walk up the hierarchy, transforming the dirty rect as necessary.
11945     *
11946     * The method also handles normal invalidation logic if display list properties are not
11947     * being used in this view. The invalidateParent and forceRedraw flags are used by that
11948     * backup approach, to handle these cases used in the various property-setting methods.
11949     *
11950     * @param invalidateParent Force a call to invalidateParentCaches() if display list properties
11951     * are not being used in this view
11952     * @param forceRedraw Mark the view as DRAWN to force the invalidation to propagate, if display
11953     * list properties are not being used in this view
11954     */
11955    void invalidateViewProperty(boolean invalidateParent, boolean forceRedraw) {
11956        if (!isHardwareAccelerated()
11957                || !mRenderNode.isValid()
11958                || (mPrivateFlags & PFLAG_DRAW_ANIMATION) != 0) {
11959            if (invalidateParent) {
11960                invalidateParentCaches();
11961            }
11962            if (forceRedraw) {
11963                mPrivateFlags |= PFLAG_DRAWN; // force another invalidation with the new orientation
11964            }
11965            invalidate(false);
11966        } else {
11967            damageInParent();
11968        }
11969        if (isHardwareAccelerated() && invalidateParent && getZ() != 0) {
11970            damageShadowReceiver();
11971        }
11972    }
11973
11974    /**
11975     * Tells the parent view to damage this view's bounds.
11976     *
11977     * @hide
11978     */
11979    protected void damageInParent() {
11980        final AttachInfo ai = mAttachInfo;
11981        final ViewParent p = mParent;
11982        if (p != null && ai != null) {
11983            final Rect r = ai.mTmpInvalRect;
11984            r.set(0, 0, mRight - mLeft, mBottom - mTop);
11985            if (mParent instanceof ViewGroup) {
11986                ((ViewGroup) mParent).damageChild(this, r);
11987            } else {
11988                mParent.invalidateChild(this, r);
11989            }
11990        }
11991    }
11992
11993    /**
11994     * Utility method to transform a given Rect by the current matrix of this view.
11995     */
11996    void transformRect(final Rect rect) {
11997        if (!getMatrix().isIdentity()) {
11998            RectF boundingRect = mAttachInfo.mTmpTransformRect;
11999            boundingRect.set(rect);
12000            getMatrix().mapRect(boundingRect);
12001            rect.set((int) Math.floor(boundingRect.left),
12002                    (int) Math.floor(boundingRect.top),
12003                    (int) Math.ceil(boundingRect.right),
12004                    (int) Math.ceil(boundingRect.bottom));
12005        }
12006    }
12007
12008    /**
12009     * Used to indicate that the parent of this view should clear its caches. This functionality
12010     * is used to force the parent to rebuild its display list (when hardware-accelerated),
12011     * which is necessary when various parent-managed properties of the view change, such as
12012     * alpha, translationX/Y, scrollX/Y, scaleX/Y, and rotation/X/Y. This method only
12013     * clears the parent caches and does not causes an invalidate event.
12014     *
12015     * @hide
12016     */
12017    protected void invalidateParentCaches() {
12018        if (mParent instanceof View) {
12019            ((View) mParent).mPrivateFlags |= PFLAG_INVALIDATED;
12020        }
12021    }
12022
12023    /**
12024     * Used to indicate that the parent of this view should be invalidated. This functionality
12025     * is used to force the parent to rebuild its display list (when hardware-accelerated),
12026     * which is necessary when various parent-managed properties of the view change, such as
12027     * alpha, translationX/Y, scrollX/Y, scaleX/Y, and rotation/X/Y. This method will propagate
12028     * an invalidation event to the parent.
12029     *
12030     * @hide
12031     */
12032    protected void invalidateParentIfNeeded() {
12033        if (isHardwareAccelerated() && mParent instanceof View) {
12034            ((View) mParent).invalidate(true);
12035        }
12036    }
12037
12038    /**
12039     * @hide
12040     */
12041    protected void invalidateParentIfNeededAndWasQuickRejected() {
12042        if ((mPrivateFlags2 & PFLAG2_VIEW_QUICK_REJECTED) != 0) {
12043            // View was rejected last time it was drawn by its parent; this may have changed
12044            invalidateParentIfNeeded();
12045        }
12046    }
12047
12048    /**
12049     * Indicates whether this View is opaque. An opaque View guarantees that it will
12050     * draw all the pixels overlapping its bounds using a fully opaque color.
12051     *
12052     * Subclasses of View should override this method whenever possible to indicate
12053     * whether an instance is opaque. Opaque Views are treated in a special way by
12054     * the View hierarchy, possibly allowing it to perform optimizations during
12055     * invalidate/draw passes.
12056     *
12057     * @return True if this View is guaranteed to be fully opaque, false otherwise.
12058     */
12059    @ViewDebug.ExportedProperty(category = "drawing")
12060    public boolean isOpaque() {
12061        return (mPrivateFlags & PFLAG_OPAQUE_MASK) == PFLAG_OPAQUE_MASK &&
12062                getFinalAlpha() >= 1.0f;
12063    }
12064
12065    /**
12066     * @hide
12067     */
12068    protected void computeOpaqueFlags() {
12069        // Opaque if:
12070        //   - Has a background
12071        //   - Background is opaque
12072        //   - Doesn't have scrollbars or scrollbars overlay
12073
12074        if (mBackground != null && mBackground.getOpacity() == PixelFormat.OPAQUE) {
12075            mPrivateFlags |= PFLAG_OPAQUE_BACKGROUND;
12076        } else {
12077            mPrivateFlags &= ~PFLAG_OPAQUE_BACKGROUND;
12078        }
12079
12080        final int flags = mViewFlags;
12081        if (((flags & SCROLLBARS_VERTICAL) == 0 && (flags & SCROLLBARS_HORIZONTAL) == 0) ||
12082                (flags & SCROLLBARS_STYLE_MASK) == SCROLLBARS_INSIDE_OVERLAY ||
12083                (flags & SCROLLBARS_STYLE_MASK) == SCROLLBARS_OUTSIDE_OVERLAY) {
12084            mPrivateFlags |= PFLAG_OPAQUE_SCROLLBARS;
12085        } else {
12086            mPrivateFlags &= ~PFLAG_OPAQUE_SCROLLBARS;
12087        }
12088    }
12089
12090    /**
12091     * @hide
12092     */
12093    protected boolean hasOpaqueScrollbars() {
12094        return (mPrivateFlags & PFLAG_OPAQUE_SCROLLBARS) == PFLAG_OPAQUE_SCROLLBARS;
12095    }
12096
12097    /**
12098     * @return A handler associated with the thread running the View. This
12099     * handler can be used to pump events in the UI events queue.
12100     */
12101    public Handler getHandler() {
12102        final AttachInfo attachInfo = mAttachInfo;
12103        if (attachInfo != null) {
12104            return attachInfo.mHandler;
12105        }
12106        return null;
12107    }
12108
12109    /**
12110     * Gets the view root associated with the View.
12111     * @return The view root, or null if none.
12112     * @hide
12113     */
12114    public ViewRootImpl getViewRootImpl() {
12115        if (mAttachInfo != null) {
12116            return mAttachInfo.mViewRootImpl;
12117        }
12118        return null;
12119    }
12120
12121    /**
12122     * @hide
12123     */
12124    public HardwareRenderer getHardwareRenderer() {
12125        return mAttachInfo != null ? mAttachInfo.mHardwareRenderer : null;
12126    }
12127
12128    /**
12129     * <p>Causes the Runnable to be added to the message queue.
12130     * The runnable will be run on the user interface thread.</p>
12131     *
12132     * @param action The Runnable that will be executed.
12133     *
12134     * @return Returns true if the Runnable was successfully placed in to the
12135     *         message queue.  Returns false on failure, usually because the
12136     *         looper processing the message queue is exiting.
12137     *
12138     * @see #postDelayed
12139     * @see #removeCallbacks
12140     */
12141    public boolean post(Runnable action) {
12142        final AttachInfo attachInfo = mAttachInfo;
12143        if (attachInfo != null) {
12144            return attachInfo.mHandler.post(action);
12145        }
12146        // Assume that post will succeed later
12147        ViewRootImpl.getRunQueue().post(action);
12148        return true;
12149    }
12150
12151    /**
12152     * <p>Causes the Runnable to be added to the message queue, to be run
12153     * after the specified amount of time elapses.
12154     * The runnable will be run on the user interface thread.</p>
12155     *
12156     * @param action The Runnable that will be executed.
12157     * @param delayMillis The delay (in milliseconds) until the Runnable
12158     *        will be executed.
12159     *
12160     * @return true if the Runnable was successfully placed in to the
12161     *         message queue.  Returns false on failure, usually because the
12162     *         looper processing the message queue is exiting.  Note that a
12163     *         result of true does not mean the Runnable will be processed --
12164     *         if the looper is quit before the delivery time of the message
12165     *         occurs then the message will be dropped.
12166     *
12167     * @see #post
12168     * @see #removeCallbacks
12169     */
12170    public boolean postDelayed(Runnable action, long delayMillis) {
12171        final AttachInfo attachInfo = mAttachInfo;
12172        if (attachInfo != null) {
12173            return attachInfo.mHandler.postDelayed(action, delayMillis);
12174        }
12175        // Assume that post will succeed later
12176        ViewRootImpl.getRunQueue().postDelayed(action, delayMillis);
12177        return true;
12178    }
12179
12180    /**
12181     * <p>Causes the Runnable to execute on the next animation time step.
12182     * The runnable will be run on the user interface thread.</p>
12183     *
12184     * @param action The Runnable that will be executed.
12185     *
12186     * @see #postOnAnimationDelayed
12187     * @see #removeCallbacks
12188     */
12189    public void postOnAnimation(Runnable action) {
12190        final AttachInfo attachInfo = mAttachInfo;
12191        if (attachInfo != null) {
12192            attachInfo.mViewRootImpl.mChoreographer.postCallback(
12193                    Choreographer.CALLBACK_ANIMATION, action, null);
12194        } else {
12195            // Assume that post will succeed later
12196            ViewRootImpl.getRunQueue().post(action);
12197        }
12198    }
12199
12200    /**
12201     * <p>Causes the Runnable to execute on the next animation time step,
12202     * after the specified amount of time elapses.
12203     * The runnable will be run on the user interface thread.</p>
12204     *
12205     * @param action The Runnable that will be executed.
12206     * @param delayMillis The delay (in milliseconds) until the Runnable
12207     *        will be executed.
12208     *
12209     * @see #postOnAnimation
12210     * @see #removeCallbacks
12211     */
12212    public void postOnAnimationDelayed(Runnable action, long delayMillis) {
12213        final AttachInfo attachInfo = mAttachInfo;
12214        if (attachInfo != null) {
12215            attachInfo.mViewRootImpl.mChoreographer.postCallbackDelayed(
12216                    Choreographer.CALLBACK_ANIMATION, action, null, delayMillis);
12217        } else {
12218            // Assume that post will succeed later
12219            ViewRootImpl.getRunQueue().postDelayed(action, delayMillis);
12220        }
12221    }
12222
12223    /**
12224     * <p>Removes the specified Runnable from the message queue.</p>
12225     *
12226     * @param action The Runnable to remove from the message handling queue
12227     *
12228     * @return true if this view could ask the Handler to remove the Runnable,
12229     *         false otherwise. When the returned value is true, the Runnable
12230     *         may or may not have been actually removed from the message queue
12231     *         (for instance, if the Runnable was not in the queue already.)
12232     *
12233     * @see #post
12234     * @see #postDelayed
12235     * @see #postOnAnimation
12236     * @see #postOnAnimationDelayed
12237     */
12238    public boolean removeCallbacks(Runnable action) {
12239        if (action != null) {
12240            final AttachInfo attachInfo = mAttachInfo;
12241            if (attachInfo != null) {
12242                attachInfo.mHandler.removeCallbacks(action);
12243                attachInfo.mViewRootImpl.mChoreographer.removeCallbacks(
12244                        Choreographer.CALLBACK_ANIMATION, action, null);
12245            }
12246            // Assume that post will succeed later
12247            ViewRootImpl.getRunQueue().removeCallbacks(action);
12248        }
12249        return true;
12250    }
12251
12252    /**
12253     * <p>Cause an invalidate to happen on a subsequent cycle through the event loop.
12254     * Use this to invalidate the View from a non-UI thread.</p>
12255     *
12256     * <p>This method can be invoked from outside of the UI thread
12257     * only when this View is attached to a window.</p>
12258     *
12259     * @see #invalidate()
12260     * @see #postInvalidateDelayed(long)
12261     */
12262    public void postInvalidate() {
12263        postInvalidateDelayed(0);
12264    }
12265
12266    /**
12267     * <p>Cause an invalidate of the specified area to happen on a subsequent cycle
12268     * through the event loop. Use this to invalidate the View from a non-UI thread.</p>
12269     *
12270     * <p>This method can be invoked from outside of the UI thread
12271     * only when this View is attached to a window.</p>
12272     *
12273     * @param left The left coordinate of the rectangle to invalidate.
12274     * @param top The top coordinate of the rectangle to invalidate.
12275     * @param right The right coordinate of the rectangle to invalidate.
12276     * @param bottom The bottom coordinate of the rectangle to invalidate.
12277     *
12278     * @see #invalidate(int, int, int, int)
12279     * @see #invalidate(Rect)
12280     * @see #postInvalidateDelayed(long, int, int, int, int)
12281     */
12282    public void postInvalidate(int left, int top, int right, int bottom) {
12283        postInvalidateDelayed(0, left, top, right, bottom);
12284    }
12285
12286    /**
12287     * <p>Cause an invalidate to happen on a subsequent cycle through the event
12288     * loop. Waits for the specified amount of time.</p>
12289     *
12290     * <p>This method can be invoked from outside of the UI thread
12291     * only when this View is attached to a window.</p>
12292     *
12293     * @param delayMilliseconds the duration in milliseconds to delay the
12294     *         invalidation by
12295     *
12296     * @see #invalidate()
12297     * @see #postInvalidate()
12298     */
12299    public void postInvalidateDelayed(long delayMilliseconds) {
12300        // We try only with the AttachInfo because there's no point in invalidating
12301        // if we are not attached to our window
12302        final AttachInfo attachInfo = mAttachInfo;
12303        if (attachInfo != null) {
12304            attachInfo.mViewRootImpl.dispatchInvalidateDelayed(this, delayMilliseconds);
12305        }
12306    }
12307
12308    /**
12309     * <p>Cause an invalidate of the specified area to happen on a subsequent cycle
12310     * through the event loop. Waits for the specified amount of time.</p>
12311     *
12312     * <p>This method can be invoked from outside of the UI thread
12313     * only when this View is attached to a window.</p>
12314     *
12315     * @param delayMilliseconds the duration in milliseconds to delay the
12316     *         invalidation by
12317     * @param left The left coordinate of the rectangle to invalidate.
12318     * @param top The top coordinate of the rectangle to invalidate.
12319     * @param right The right coordinate of the rectangle to invalidate.
12320     * @param bottom The bottom coordinate of the rectangle to invalidate.
12321     *
12322     * @see #invalidate(int, int, int, int)
12323     * @see #invalidate(Rect)
12324     * @see #postInvalidate(int, int, int, int)
12325     */
12326    public void postInvalidateDelayed(long delayMilliseconds, int left, int top,
12327            int right, int bottom) {
12328
12329        // We try only with the AttachInfo because there's no point in invalidating
12330        // if we are not attached to our window
12331        final AttachInfo attachInfo = mAttachInfo;
12332        if (attachInfo != null) {
12333            final AttachInfo.InvalidateInfo info = AttachInfo.InvalidateInfo.obtain();
12334            info.target = this;
12335            info.left = left;
12336            info.top = top;
12337            info.right = right;
12338            info.bottom = bottom;
12339
12340            attachInfo.mViewRootImpl.dispatchInvalidateRectDelayed(info, delayMilliseconds);
12341        }
12342    }
12343
12344    /**
12345     * <p>Cause an invalidate to happen on the next animation time step, typically the
12346     * next display frame.</p>
12347     *
12348     * <p>This method can be invoked from outside of the UI thread
12349     * only when this View is attached to a window.</p>
12350     *
12351     * @see #invalidate()
12352     */
12353    public void postInvalidateOnAnimation() {
12354        // We try only with the AttachInfo because there's no point in invalidating
12355        // if we are not attached to our window
12356        final AttachInfo attachInfo = mAttachInfo;
12357        if (attachInfo != null) {
12358            attachInfo.mViewRootImpl.dispatchInvalidateOnAnimation(this);
12359        }
12360    }
12361
12362    /**
12363     * <p>Cause an invalidate of the specified area to happen on the next animation
12364     * time step, typically the next display frame.</p>
12365     *
12366     * <p>This method can be invoked from outside of the UI thread
12367     * only when this View is attached to a window.</p>
12368     *
12369     * @param left The left coordinate of the rectangle to invalidate.
12370     * @param top The top coordinate of the rectangle to invalidate.
12371     * @param right The right coordinate of the rectangle to invalidate.
12372     * @param bottom The bottom coordinate of the rectangle to invalidate.
12373     *
12374     * @see #invalidate(int, int, int, int)
12375     * @see #invalidate(Rect)
12376     */
12377    public void postInvalidateOnAnimation(int left, int top, int right, int bottom) {
12378        // We try only with the AttachInfo because there's no point in invalidating
12379        // if we are not attached to our window
12380        final AttachInfo attachInfo = mAttachInfo;
12381        if (attachInfo != null) {
12382            final AttachInfo.InvalidateInfo info = AttachInfo.InvalidateInfo.obtain();
12383            info.target = this;
12384            info.left = left;
12385            info.top = top;
12386            info.right = right;
12387            info.bottom = bottom;
12388
12389            attachInfo.mViewRootImpl.dispatchInvalidateRectOnAnimation(info);
12390        }
12391    }
12392
12393    /**
12394     * Post a callback to send a {@link AccessibilityEvent#TYPE_VIEW_SCROLLED} event.
12395     * This event is sent at most once every
12396     * {@link ViewConfiguration#getSendRecurringAccessibilityEventsInterval()}.
12397     */
12398    private void postSendViewScrolledAccessibilityEventCallback() {
12399        if (mSendViewScrolledAccessibilityEvent == null) {
12400            mSendViewScrolledAccessibilityEvent = new SendViewScrolledAccessibilityEvent();
12401        }
12402        if (!mSendViewScrolledAccessibilityEvent.mIsPending) {
12403            mSendViewScrolledAccessibilityEvent.mIsPending = true;
12404            postDelayed(mSendViewScrolledAccessibilityEvent,
12405                    ViewConfiguration.getSendRecurringAccessibilityEventsInterval());
12406        }
12407    }
12408
12409    /**
12410     * Called by a parent to request that a child update its values for mScrollX
12411     * and mScrollY if necessary. This will typically be done if the child is
12412     * animating a scroll using a {@link android.widget.Scroller Scroller}
12413     * object.
12414     */
12415    public void computeScroll() {
12416    }
12417
12418    /**
12419     * <p>Indicate whether the horizontal edges are faded when the view is
12420     * scrolled horizontally.</p>
12421     *
12422     * @return true if the horizontal edges should are faded on scroll, false
12423     *         otherwise
12424     *
12425     * @see #setHorizontalFadingEdgeEnabled(boolean)
12426     *
12427     * @attr ref android.R.styleable#View_requiresFadingEdge
12428     */
12429    public boolean isHorizontalFadingEdgeEnabled() {
12430        return (mViewFlags & FADING_EDGE_HORIZONTAL) == FADING_EDGE_HORIZONTAL;
12431    }
12432
12433    /**
12434     * <p>Define whether the horizontal edges should be faded when this view
12435     * is scrolled horizontally.</p>
12436     *
12437     * @param horizontalFadingEdgeEnabled true if the horizontal edges should
12438     *                                    be faded when the view is scrolled
12439     *                                    horizontally
12440     *
12441     * @see #isHorizontalFadingEdgeEnabled()
12442     *
12443     * @attr ref android.R.styleable#View_requiresFadingEdge
12444     */
12445    public void setHorizontalFadingEdgeEnabled(boolean horizontalFadingEdgeEnabled) {
12446        if (isHorizontalFadingEdgeEnabled() != horizontalFadingEdgeEnabled) {
12447            if (horizontalFadingEdgeEnabled) {
12448                initScrollCache();
12449            }
12450
12451            mViewFlags ^= FADING_EDGE_HORIZONTAL;
12452        }
12453    }
12454
12455    /**
12456     * <p>Indicate whether the vertical edges are faded when the view is
12457     * scrolled horizontally.</p>
12458     *
12459     * @return true if the vertical edges should are faded on scroll, false
12460     *         otherwise
12461     *
12462     * @see #setVerticalFadingEdgeEnabled(boolean)
12463     *
12464     * @attr ref android.R.styleable#View_requiresFadingEdge
12465     */
12466    public boolean isVerticalFadingEdgeEnabled() {
12467        return (mViewFlags & FADING_EDGE_VERTICAL) == FADING_EDGE_VERTICAL;
12468    }
12469
12470    /**
12471     * <p>Define whether the vertical edges should be faded when this view
12472     * is scrolled vertically.</p>
12473     *
12474     * @param verticalFadingEdgeEnabled true if the vertical edges should
12475     *                                  be faded when the view is scrolled
12476     *                                  vertically
12477     *
12478     * @see #isVerticalFadingEdgeEnabled()
12479     *
12480     * @attr ref android.R.styleable#View_requiresFadingEdge
12481     */
12482    public void setVerticalFadingEdgeEnabled(boolean verticalFadingEdgeEnabled) {
12483        if (isVerticalFadingEdgeEnabled() != verticalFadingEdgeEnabled) {
12484            if (verticalFadingEdgeEnabled) {
12485                initScrollCache();
12486            }
12487
12488            mViewFlags ^= FADING_EDGE_VERTICAL;
12489        }
12490    }
12491
12492    /**
12493     * Returns the strength, or intensity, of the top faded edge. The strength is
12494     * a value between 0.0 (no fade) and 1.0 (full fade). The default implementation
12495     * returns 0.0 or 1.0 but no value in between.
12496     *
12497     * Subclasses should override this method to provide a smoother fade transition
12498     * when scrolling occurs.
12499     *
12500     * @return the intensity of the top fade as a float between 0.0f and 1.0f
12501     */
12502    protected float getTopFadingEdgeStrength() {
12503        return computeVerticalScrollOffset() > 0 ? 1.0f : 0.0f;
12504    }
12505
12506    /**
12507     * Returns the strength, or intensity, of the bottom faded edge. The strength is
12508     * a value between 0.0 (no fade) and 1.0 (full fade). The default implementation
12509     * returns 0.0 or 1.0 but no value in between.
12510     *
12511     * Subclasses should override this method to provide a smoother fade transition
12512     * when scrolling occurs.
12513     *
12514     * @return the intensity of the bottom fade as a float between 0.0f and 1.0f
12515     */
12516    protected float getBottomFadingEdgeStrength() {
12517        return computeVerticalScrollOffset() + computeVerticalScrollExtent() <
12518                computeVerticalScrollRange() ? 1.0f : 0.0f;
12519    }
12520
12521    /**
12522     * Returns the strength, or intensity, of the left faded edge. The strength is
12523     * a value between 0.0 (no fade) and 1.0 (full fade). The default implementation
12524     * returns 0.0 or 1.0 but no value in between.
12525     *
12526     * Subclasses should override this method to provide a smoother fade transition
12527     * when scrolling occurs.
12528     *
12529     * @return the intensity of the left fade as a float between 0.0f and 1.0f
12530     */
12531    protected float getLeftFadingEdgeStrength() {
12532        return computeHorizontalScrollOffset() > 0 ? 1.0f : 0.0f;
12533    }
12534
12535    /**
12536     * Returns the strength, or intensity, of the right faded edge. The strength is
12537     * a value between 0.0 (no fade) and 1.0 (full fade). The default implementation
12538     * returns 0.0 or 1.0 but no value in between.
12539     *
12540     * Subclasses should override this method to provide a smoother fade transition
12541     * when scrolling occurs.
12542     *
12543     * @return the intensity of the right fade as a float between 0.0f and 1.0f
12544     */
12545    protected float getRightFadingEdgeStrength() {
12546        return computeHorizontalScrollOffset() + computeHorizontalScrollExtent() <
12547                computeHorizontalScrollRange() ? 1.0f : 0.0f;
12548    }
12549
12550    /**
12551     * <p>Indicate whether the horizontal scrollbar should be drawn or not. The
12552     * scrollbar is not drawn by default.</p>
12553     *
12554     * @return true if the horizontal scrollbar should be painted, false
12555     *         otherwise
12556     *
12557     * @see #setHorizontalScrollBarEnabled(boolean)
12558     */
12559    public boolean isHorizontalScrollBarEnabled() {
12560        return (mViewFlags & SCROLLBARS_HORIZONTAL) == SCROLLBARS_HORIZONTAL;
12561    }
12562
12563    /**
12564     * <p>Define whether the horizontal scrollbar should be drawn or not. The
12565     * scrollbar is not drawn by default.</p>
12566     *
12567     * @param horizontalScrollBarEnabled true if the horizontal scrollbar should
12568     *                                   be painted
12569     *
12570     * @see #isHorizontalScrollBarEnabled()
12571     */
12572    public void setHorizontalScrollBarEnabled(boolean horizontalScrollBarEnabled) {
12573        if (isHorizontalScrollBarEnabled() != horizontalScrollBarEnabled) {
12574            mViewFlags ^= SCROLLBARS_HORIZONTAL;
12575            computeOpaqueFlags();
12576            resolvePadding();
12577        }
12578    }
12579
12580    /**
12581     * <p>Indicate whether the vertical scrollbar should be drawn or not. The
12582     * scrollbar is not drawn by default.</p>
12583     *
12584     * @return true if the vertical scrollbar should be painted, false
12585     *         otherwise
12586     *
12587     * @see #setVerticalScrollBarEnabled(boolean)
12588     */
12589    public boolean isVerticalScrollBarEnabled() {
12590        return (mViewFlags & SCROLLBARS_VERTICAL) == SCROLLBARS_VERTICAL;
12591    }
12592
12593    /**
12594     * <p>Define whether the vertical scrollbar should be drawn or not. The
12595     * scrollbar is not drawn by default.</p>
12596     *
12597     * @param verticalScrollBarEnabled true if the vertical scrollbar should
12598     *                                 be painted
12599     *
12600     * @see #isVerticalScrollBarEnabled()
12601     */
12602    public void setVerticalScrollBarEnabled(boolean verticalScrollBarEnabled) {
12603        if (isVerticalScrollBarEnabled() != verticalScrollBarEnabled) {
12604            mViewFlags ^= SCROLLBARS_VERTICAL;
12605            computeOpaqueFlags();
12606            resolvePadding();
12607        }
12608    }
12609
12610    /**
12611     * @hide
12612     */
12613    protected void recomputePadding() {
12614        internalSetPadding(mUserPaddingLeft, mPaddingTop, mUserPaddingRight, mUserPaddingBottom);
12615    }
12616
12617    /**
12618     * Define whether scrollbars will fade when the view is not scrolling.
12619     *
12620     * @param fadeScrollbars wheter to enable fading
12621     *
12622     * @attr ref android.R.styleable#View_fadeScrollbars
12623     */
12624    public void setScrollbarFadingEnabled(boolean fadeScrollbars) {
12625        initScrollCache();
12626        final ScrollabilityCache scrollabilityCache = mScrollCache;
12627        scrollabilityCache.fadeScrollBars = fadeScrollbars;
12628        if (fadeScrollbars) {
12629            scrollabilityCache.state = ScrollabilityCache.OFF;
12630        } else {
12631            scrollabilityCache.state = ScrollabilityCache.ON;
12632        }
12633    }
12634
12635    /**
12636     *
12637     * Returns true if scrollbars will fade when this view is not scrolling
12638     *
12639     * @return true if scrollbar fading is enabled
12640     *
12641     * @attr ref android.R.styleable#View_fadeScrollbars
12642     */
12643    public boolean isScrollbarFadingEnabled() {
12644        return mScrollCache != null && mScrollCache.fadeScrollBars;
12645    }
12646
12647    /**
12648     *
12649     * Returns the delay before scrollbars fade.
12650     *
12651     * @return the delay before scrollbars fade
12652     *
12653     * @attr ref android.R.styleable#View_scrollbarDefaultDelayBeforeFade
12654     */
12655    public int getScrollBarDefaultDelayBeforeFade() {
12656        return mScrollCache == null ? ViewConfiguration.getScrollDefaultDelay() :
12657                mScrollCache.scrollBarDefaultDelayBeforeFade;
12658    }
12659
12660    /**
12661     * Define the delay before scrollbars fade.
12662     *
12663     * @param scrollBarDefaultDelayBeforeFade - the delay before scrollbars fade
12664     *
12665     * @attr ref android.R.styleable#View_scrollbarDefaultDelayBeforeFade
12666     */
12667    public void setScrollBarDefaultDelayBeforeFade(int scrollBarDefaultDelayBeforeFade) {
12668        getScrollCache().scrollBarDefaultDelayBeforeFade = scrollBarDefaultDelayBeforeFade;
12669    }
12670
12671    /**
12672     *
12673     * Returns the scrollbar fade duration.
12674     *
12675     * @return the scrollbar fade duration
12676     *
12677     * @attr ref android.R.styleable#View_scrollbarFadeDuration
12678     */
12679    public int getScrollBarFadeDuration() {
12680        return mScrollCache == null ? ViewConfiguration.getScrollBarFadeDuration() :
12681                mScrollCache.scrollBarFadeDuration;
12682    }
12683
12684    /**
12685     * Define the scrollbar fade duration.
12686     *
12687     * @param scrollBarFadeDuration - the scrollbar fade duration
12688     *
12689     * @attr ref android.R.styleable#View_scrollbarFadeDuration
12690     */
12691    public void setScrollBarFadeDuration(int scrollBarFadeDuration) {
12692        getScrollCache().scrollBarFadeDuration = scrollBarFadeDuration;
12693    }
12694
12695    /**
12696     *
12697     * Returns the scrollbar size.
12698     *
12699     * @return the scrollbar size
12700     *
12701     * @attr ref android.R.styleable#View_scrollbarSize
12702     */
12703    public int getScrollBarSize() {
12704        return mScrollCache == null ? ViewConfiguration.get(mContext).getScaledScrollBarSize() :
12705                mScrollCache.scrollBarSize;
12706    }
12707
12708    /**
12709     * Define the scrollbar size.
12710     *
12711     * @param scrollBarSize - the scrollbar size
12712     *
12713     * @attr ref android.R.styleable#View_scrollbarSize
12714     */
12715    public void setScrollBarSize(int scrollBarSize) {
12716        getScrollCache().scrollBarSize = scrollBarSize;
12717    }
12718
12719    /**
12720     * <p>Specify the style of the scrollbars. The scrollbars can be overlaid or
12721     * inset. When inset, they add to the padding of the view. And the scrollbars
12722     * can be drawn inside the padding area or on the edge of the view. For example,
12723     * if a view has a background drawable and you want to draw the scrollbars
12724     * inside the padding specified by the drawable, you can use
12725     * SCROLLBARS_INSIDE_OVERLAY or SCROLLBARS_INSIDE_INSET. If you want them to
12726     * appear at the edge of the view, ignoring the padding, then you can use
12727     * SCROLLBARS_OUTSIDE_OVERLAY or SCROLLBARS_OUTSIDE_INSET.</p>
12728     * @param style the style of the scrollbars. Should be one of
12729     * SCROLLBARS_INSIDE_OVERLAY, SCROLLBARS_INSIDE_INSET,
12730     * SCROLLBARS_OUTSIDE_OVERLAY or SCROLLBARS_OUTSIDE_INSET.
12731     * @see #SCROLLBARS_INSIDE_OVERLAY
12732     * @see #SCROLLBARS_INSIDE_INSET
12733     * @see #SCROLLBARS_OUTSIDE_OVERLAY
12734     * @see #SCROLLBARS_OUTSIDE_INSET
12735     *
12736     * @attr ref android.R.styleable#View_scrollbarStyle
12737     */
12738    public void setScrollBarStyle(@ScrollBarStyle int style) {
12739        if (style != (mViewFlags & SCROLLBARS_STYLE_MASK)) {
12740            mViewFlags = (mViewFlags & ~SCROLLBARS_STYLE_MASK) | (style & SCROLLBARS_STYLE_MASK);
12741            computeOpaqueFlags();
12742            resolvePadding();
12743        }
12744    }
12745
12746    /**
12747     * <p>Returns the current scrollbar style.</p>
12748     * @return the current scrollbar style
12749     * @see #SCROLLBARS_INSIDE_OVERLAY
12750     * @see #SCROLLBARS_INSIDE_INSET
12751     * @see #SCROLLBARS_OUTSIDE_OVERLAY
12752     * @see #SCROLLBARS_OUTSIDE_INSET
12753     *
12754     * @attr ref android.R.styleable#View_scrollbarStyle
12755     */
12756    @ViewDebug.ExportedProperty(mapping = {
12757            @ViewDebug.IntToString(from = SCROLLBARS_INSIDE_OVERLAY, to = "INSIDE_OVERLAY"),
12758            @ViewDebug.IntToString(from = SCROLLBARS_INSIDE_INSET, to = "INSIDE_INSET"),
12759            @ViewDebug.IntToString(from = SCROLLBARS_OUTSIDE_OVERLAY, to = "OUTSIDE_OVERLAY"),
12760            @ViewDebug.IntToString(from = SCROLLBARS_OUTSIDE_INSET, to = "OUTSIDE_INSET")
12761    })
12762    @ScrollBarStyle
12763    public int getScrollBarStyle() {
12764        return mViewFlags & SCROLLBARS_STYLE_MASK;
12765    }
12766
12767    /**
12768     * <p>Compute the horizontal range that the horizontal scrollbar
12769     * represents.</p>
12770     *
12771     * <p>The range is expressed in arbitrary units that must be the same as the
12772     * units used by {@link #computeHorizontalScrollExtent()} and
12773     * {@link #computeHorizontalScrollOffset()}.</p>
12774     *
12775     * <p>The default range is the drawing width of this view.</p>
12776     *
12777     * @return the total horizontal range represented by the horizontal
12778     *         scrollbar
12779     *
12780     * @see #computeHorizontalScrollExtent()
12781     * @see #computeHorizontalScrollOffset()
12782     * @see android.widget.ScrollBarDrawable
12783     */
12784    protected int computeHorizontalScrollRange() {
12785        return getWidth();
12786    }
12787
12788    /**
12789     * <p>Compute the horizontal offset of the horizontal scrollbar's thumb
12790     * within the horizontal range. This value is used to compute the position
12791     * of the thumb within the scrollbar's track.</p>
12792     *
12793     * <p>The range is expressed in arbitrary units that must be the same as the
12794     * units used by {@link #computeHorizontalScrollRange()} and
12795     * {@link #computeHorizontalScrollExtent()}.</p>
12796     *
12797     * <p>The default offset is the scroll offset of this view.</p>
12798     *
12799     * @return the horizontal offset of the scrollbar's thumb
12800     *
12801     * @see #computeHorizontalScrollRange()
12802     * @see #computeHorizontalScrollExtent()
12803     * @see android.widget.ScrollBarDrawable
12804     */
12805    protected int computeHorizontalScrollOffset() {
12806        return mScrollX;
12807    }
12808
12809    /**
12810     * <p>Compute the horizontal extent of the horizontal scrollbar's thumb
12811     * within the horizontal range. This value is used to compute the length
12812     * of the thumb within the scrollbar's track.</p>
12813     *
12814     * <p>The range is expressed in arbitrary units that must be the same as the
12815     * units used by {@link #computeHorizontalScrollRange()} and
12816     * {@link #computeHorizontalScrollOffset()}.</p>
12817     *
12818     * <p>The default extent is the drawing width of this view.</p>
12819     *
12820     * @return the horizontal extent of the scrollbar's thumb
12821     *
12822     * @see #computeHorizontalScrollRange()
12823     * @see #computeHorizontalScrollOffset()
12824     * @see android.widget.ScrollBarDrawable
12825     */
12826    protected int computeHorizontalScrollExtent() {
12827        return getWidth();
12828    }
12829
12830    /**
12831     * <p>Compute the vertical range that the vertical scrollbar represents.</p>
12832     *
12833     * <p>The range is expressed in arbitrary units that must be the same as the
12834     * units used by {@link #computeVerticalScrollExtent()} and
12835     * {@link #computeVerticalScrollOffset()}.</p>
12836     *
12837     * @return the total vertical range represented by the vertical scrollbar
12838     *
12839     * <p>The default range is the drawing height of this view.</p>
12840     *
12841     * @see #computeVerticalScrollExtent()
12842     * @see #computeVerticalScrollOffset()
12843     * @see android.widget.ScrollBarDrawable
12844     */
12845    protected int computeVerticalScrollRange() {
12846        return getHeight();
12847    }
12848
12849    /**
12850     * <p>Compute the vertical offset of the vertical scrollbar's thumb
12851     * within the horizontal range. This value is used to compute the position
12852     * of the thumb within the scrollbar's track.</p>
12853     *
12854     * <p>The range is expressed in arbitrary units that must be the same as the
12855     * units used by {@link #computeVerticalScrollRange()} and
12856     * {@link #computeVerticalScrollExtent()}.</p>
12857     *
12858     * <p>The default offset is the scroll offset of this view.</p>
12859     *
12860     * @return the vertical offset of the scrollbar's thumb
12861     *
12862     * @see #computeVerticalScrollRange()
12863     * @see #computeVerticalScrollExtent()
12864     * @see android.widget.ScrollBarDrawable
12865     */
12866    protected int computeVerticalScrollOffset() {
12867        return mScrollY;
12868    }
12869
12870    /**
12871     * <p>Compute the vertical extent of the vertical scrollbar's thumb
12872     * within the vertical range. This value is used to compute the length
12873     * of the thumb within the scrollbar's track.</p>
12874     *
12875     * <p>The range is expressed in arbitrary units that must be the same as the
12876     * units used by {@link #computeVerticalScrollRange()} and
12877     * {@link #computeVerticalScrollOffset()}.</p>
12878     *
12879     * <p>The default extent is the drawing height of this view.</p>
12880     *
12881     * @return the vertical extent of the scrollbar's thumb
12882     *
12883     * @see #computeVerticalScrollRange()
12884     * @see #computeVerticalScrollOffset()
12885     * @see android.widget.ScrollBarDrawable
12886     */
12887    protected int computeVerticalScrollExtent() {
12888        return getHeight();
12889    }
12890
12891    /**
12892     * Check if this view can be scrolled horizontally in a certain direction.
12893     *
12894     * @param direction Negative to check scrolling left, positive to check scrolling right.
12895     * @return true if this view can be scrolled in the specified direction, false otherwise.
12896     */
12897    public boolean canScrollHorizontally(int direction) {
12898        final int offset = computeHorizontalScrollOffset();
12899        final int range = computeHorizontalScrollRange() - computeHorizontalScrollExtent();
12900        if (range == 0) return false;
12901        if (direction < 0) {
12902            return offset > 0;
12903        } else {
12904            return offset < range - 1;
12905        }
12906    }
12907
12908    /**
12909     * Check if this view can be scrolled vertically in a certain direction.
12910     *
12911     * @param direction Negative to check scrolling up, positive to check scrolling down.
12912     * @return true if this view can be scrolled in the specified direction, false otherwise.
12913     */
12914    public boolean canScrollVertically(int direction) {
12915        final int offset = computeVerticalScrollOffset();
12916        final int range = computeVerticalScrollRange() - computeVerticalScrollExtent();
12917        if (range == 0) return false;
12918        if (direction < 0) {
12919            return offset > 0;
12920        } else {
12921            return offset < range - 1;
12922        }
12923    }
12924
12925    /**
12926     * <p>Request the drawing of the horizontal and the vertical scrollbar. The
12927     * scrollbars are painted only if they have been awakened first.</p>
12928     *
12929     * @param canvas the canvas on which to draw the scrollbars
12930     *
12931     * @see #awakenScrollBars(int)
12932     */
12933    protected final void onDrawScrollBars(Canvas canvas) {
12934        // scrollbars are drawn only when the animation is running
12935        final ScrollabilityCache cache = mScrollCache;
12936        if (cache != null) {
12937
12938            int state = cache.state;
12939
12940            if (state == ScrollabilityCache.OFF) {
12941                return;
12942            }
12943
12944            boolean invalidate = false;
12945
12946            if (state == ScrollabilityCache.FADING) {
12947                // We're fading -- get our fade interpolation
12948                if (cache.interpolatorValues == null) {
12949                    cache.interpolatorValues = new float[1];
12950                }
12951
12952                float[] values = cache.interpolatorValues;
12953
12954                // Stops the animation if we're done
12955                if (cache.scrollBarInterpolator.timeToValues(values) ==
12956                        Interpolator.Result.FREEZE_END) {
12957                    cache.state = ScrollabilityCache.OFF;
12958                } else {
12959                    cache.scrollBar.setAlpha(Math.round(values[0]));
12960                }
12961
12962                // This will make the scroll bars inval themselves after
12963                // drawing. We only want this when we're fading so that
12964                // we prevent excessive redraws
12965                invalidate = true;
12966            } else {
12967                // We're just on -- but we may have been fading before so
12968                // reset alpha
12969                cache.scrollBar.setAlpha(255);
12970            }
12971
12972
12973            final int viewFlags = mViewFlags;
12974
12975            final boolean drawHorizontalScrollBar =
12976                (viewFlags & SCROLLBARS_HORIZONTAL) == SCROLLBARS_HORIZONTAL;
12977            final boolean drawVerticalScrollBar =
12978                (viewFlags & SCROLLBARS_VERTICAL) == SCROLLBARS_VERTICAL
12979                && !isVerticalScrollBarHidden();
12980
12981            if (drawVerticalScrollBar || drawHorizontalScrollBar) {
12982                final int width = mRight - mLeft;
12983                final int height = mBottom - mTop;
12984
12985                final ScrollBarDrawable scrollBar = cache.scrollBar;
12986
12987                final int scrollX = mScrollX;
12988                final int scrollY = mScrollY;
12989                final int inside = (viewFlags & SCROLLBARS_OUTSIDE_MASK) == 0 ? ~0 : 0;
12990
12991                int left;
12992                int top;
12993                int right;
12994                int bottom;
12995
12996                if (drawHorizontalScrollBar) {
12997                    int size = scrollBar.getSize(false);
12998                    if (size <= 0) {
12999                        size = cache.scrollBarSize;
13000                    }
13001
13002                    scrollBar.setParameters(computeHorizontalScrollRange(),
13003                                            computeHorizontalScrollOffset(),
13004                                            computeHorizontalScrollExtent(), false);
13005                    final int verticalScrollBarGap = drawVerticalScrollBar ?
13006                            getVerticalScrollbarWidth() : 0;
13007                    top = scrollY + height - size - (mUserPaddingBottom & inside);
13008                    left = scrollX + (mPaddingLeft & inside);
13009                    right = scrollX + width - (mUserPaddingRight & inside) - verticalScrollBarGap;
13010                    bottom = top + size;
13011                    onDrawHorizontalScrollBar(canvas, scrollBar, left, top, right, bottom);
13012                    if (invalidate) {
13013                        invalidate(left, top, right, bottom);
13014                    }
13015                }
13016
13017                if (drawVerticalScrollBar) {
13018                    int size = scrollBar.getSize(true);
13019                    if (size <= 0) {
13020                        size = cache.scrollBarSize;
13021                    }
13022
13023                    scrollBar.setParameters(computeVerticalScrollRange(),
13024                                            computeVerticalScrollOffset(),
13025                                            computeVerticalScrollExtent(), true);
13026                    int verticalScrollbarPosition = mVerticalScrollbarPosition;
13027                    if (verticalScrollbarPosition == SCROLLBAR_POSITION_DEFAULT) {
13028                        verticalScrollbarPosition = isLayoutRtl() ?
13029                                SCROLLBAR_POSITION_LEFT : SCROLLBAR_POSITION_RIGHT;
13030                    }
13031                    switch (verticalScrollbarPosition) {
13032                        default:
13033                        case SCROLLBAR_POSITION_RIGHT:
13034                            left = scrollX + width - size - (mUserPaddingRight & inside);
13035                            break;
13036                        case SCROLLBAR_POSITION_LEFT:
13037                            left = scrollX + (mUserPaddingLeft & inside);
13038                            break;
13039                    }
13040                    top = scrollY + (mPaddingTop & inside);
13041                    right = left + size;
13042                    bottom = scrollY + height - (mUserPaddingBottom & inside);
13043                    onDrawVerticalScrollBar(canvas, scrollBar, left, top, right, bottom);
13044                    if (invalidate) {
13045                        invalidate(left, top, right, bottom);
13046                    }
13047                }
13048            }
13049        }
13050    }
13051
13052    /**
13053     * Override this if the vertical scrollbar needs to be hidden in a subclass, like when
13054     * FastScroller is visible.
13055     * @return whether to temporarily hide the vertical scrollbar
13056     * @hide
13057     */
13058    protected boolean isVerticalScrollBarHidden() {
13059        return false;
13060    }
13061
13062    /**
13063     * <p>Draw the horizontal scrollbar if
13064     * {@link #isHorizontalScrollBarEnabled()} returns true.</p>
13065     *
13066     * @param canvas the canvas on which to draw the scrollbar
13067     * @param scrollBar the scrollbar's drawable
13068     *
13069     * @see #isHorizontalScrollBarEnabled()
13070     * @see #computeHorizontalScrollRange()
13071     * @see #computeHorizontalScrollExtent()
13072     * @see #computeHorizontalScrollOffset()
13073     * @see android.widget.ScrollBarDrawable
13074     * @hide
13075     */
13076    protected void onDrawHorizontalScrollBar(Canvas canvas, Drawable scrollBar,
13077            int l, int t, int r, int b) {
13078        scrollBar.setBounds(l, t, r, b);
13079        scrollBar.draw(canvas);
13080    }
13081
13082    /**
13083     * <p>Draw the vertical scrollbar if {@link #isVerticalScrollBarEnabled()}
13084     * returns true.</p>
13085     *
13086     * @param canvas the canvas on which to draw the scrollbar
13087     * @param scrollBar the scrollbar's drawable
13088     *
13089     * @see #isVerticalScrollBarEnabled()
13090     * @see #computeVerticalScrollRange()
13091     * @see #computeVerticalScrollExtent()
13092     * @see #computeVerticalScrollOffset()
13093     * @see android.widget.ScrollBarDrawable
13094     * @hide
13095     */
13096    protected void onDrawVerticalScrollBar(Canvas canvas, Drawable scrollBar,
13097            int l, int t, int r, int b) {
13098        scrollBar.setBounds(l, t, r, b);
13099        scrollBar.draw(canvas);
13100    }
13101
13102    /**
13103     * Implement this to do your drawing.
13104     *
13105     * @param canvas the canvas on which the background will be drawn
13106     */
13107    protected void onDraw(Canvas canvas) {
13108    }
13109
13110    /*
13111     * Caller is responsible for calling requestLayout if necessary.
13112     * (This allows addViewInLayout to not request a new layout.)
13113     */
13114    void assignParent(ViewParent parent) {
13115        if (mParent == null) {
13116            mParent = parent;
13117        } else if (parent == null) {
13118            mParent = null;
13119        } else {
13120            throw new RuntimeException("view " + this + " being added, but"
13121                    + " it already has a parent");
13122        }
13123    }
13124
13125    /**
13126     * This is called when the view is attached to a window.  At this point it
13127     * has a Surface and will start drawing.  Note that this function is
13128     * guaranteed to be called before {@link #onDraw(android.graphics.Canvas)},
13129     * however it may be called any time before the first onDraw -- including
13130     * before or after {@link #onMeasure(int, int)}.
13131     *
13132     * @see #onDetachedFromWindow()
13133     */
13134    protected void onAttachedToWindow() {
13135        if ((mPrivateFlags & PFLAG_REQUEST_TRANSPARENT_REGIONS) != 0) {
13136            mParent.requestTransparentRegion(this);
13137        }
13138
13139        if ((mPrivateFlags & PFLAG_AWAKEN_SCROLL_BARS_ON_ATTACH) != 0) {
13140            initialAwakenScrollBars();
13141            mPrivateFlags &= ~PFLAG_AWAKEN_SCROLL_BARS_ON_ATTACH;
13142        }
13143
13144        mPrivateFlags3 &= ~PFLAG3_IS_LAID_OUT;
13145
13146        jumpDrawablesToCurrentState();
13147
13148        resetSubtreeAccessibilityStateChanged();
13149
13150        // rebuild, since Outline not maintained while View is detached
13151        rebuildOutline();
13152
13153        if (isFocused()) {
13154            InputMethodManager imm = InputMethodManager.peekInstance();
13155            imm.focusIn(this);
13156        }
13157    }
13158
13159    /**
13160     * Resolve all RTL related properties.
13161     *
13162     * @return true if resolution of RTL properties has been done
13163     *
13164     * @hide
13165     */
13166    public boolean resolveRtlPropertiesIfNeeded() {
13167        if (!needRtlPropertiesResolution()) return false;
13168
13169        // Order is important here: LayoutDirection MUST be resolved first
13170        if (!isLayoutDirectionResolved()) {
13171            resolveLayoutDirection();
13172            resolveLayoutParams();
13173        }
13174        // ... then we can resolve the others properties depending on the resolved LayoutDirection.
13175        if (!isTextDirectionResolved()) {
13176            resolveTextDirection();
13177        }
13178        if (!isTextAlignmentResolved()) {
13179            resolveTextAlignment();
13180        }
13181        // Should resolve Drawables before Padding because we need the layout direction of the
13182        // Drawable to correctly resolve Padding.
13183        if (!isDrawablesResolved()) {
13184            resolveDrawables();
13185        }
13186        if (!isPaddingResolved()) {
13187            resolvePadding();
13188        }
13189        onRtlPropertiesChanged(getLayoutDirection());
13190        return true;
13191    }
13192
13193    /**
13194     * Reset resolution of all RTL related properties.
13195     *
13196     * @hide
13197     */
13198    public void resetRtlProperties() {
13199        resetResolvedLayoutDirection();
13200        resetResolvedTextDirection();
13201        resetResolvedTextAlignment();
13202        resetResolvedPadding();
13203        resetResolvedDrawables();
13204    }
13205
13206    /**
13207     * @see #onScreenStateChanged(int)
13208     */
13209    void dispatchScreenStateChanged(int screenState) {
13210        onScreenStateChanged(screenState);
13211    }
13212
13213    /**
13214     * This method is called whenever the state of the screen this view is
13215     * attached to changes. A state change will usually occurs when the screen
13216     * turns on or off (whether it happens automatically or the user does it
13217     * manually.)
13218     *
13219     * @param screenState The new state of the screen. Can be either
13220     *                    {@link #SCREEN_STATE_ON} or {@link #SCREEN_STATE_OFF}
13221     */
13222    public void onScreenStateChanged(int screenState) {
13223    }
13224
13225    /**
13226     * Return true if the application tag in the AndroidManifest has set "supportRtl" to true
13227     */
13228    private boolean hasRtlSupport() {
13229        return mContext.getApplicationInfo().hasRtlSupport();
13230    }
13231
13232    /**
13233     * Return true if we are in RTL compatibility mode (either before Jelly Bean MR1 or
13234     * RTL not supported)
13235     */
13236    private boolean isRtlCompatibilityMode() {
13237        final int targetSdkVersion = getContext().getApplicationInfo().targetSdkVersion;
13238        return targetSdkVersion < JELLY_BEAN_MR1 || !hasRtlSupport();
13239    }
13240
13241    /**
13242     * @return true if RTL properties need resolution.
13243     *
13244     */
13245    private boolean needRtlPropertiesResolution() {
13246        return (mPrivateFlags2 & ALL_RTL_PROPERTIES_RESOLVED) != ALL_RTL_PROPERTIES_RESOLVED;
13247    }
13248
13249    /**
13250     * Called when any RTL property (layout direction or text direction or text alignment) has
13251     * been changed.
13252     *
13253     * Subclasses need to override this method to take care of cached information that depends on the
13254     * resolved layout direction, or to inform child views that inherit their layout direction.
13255     *
13256     * The default implementation does nothing.
13257     *
13258     * @param layoutDirection the direction of the layout
13259     *
13260     * @see #LAYOUT_DIRECTION_LTR
13261     * @see #LAYOUT_DIRECTION_RTL
13262     */
13263    public void onRtlPropertiesChanged(@ResolvedLayoutDir int layoutDirection) {
13264    }
13265
13266    /**
13267     * Resolve and cache the layout direction. LTR is set initially. This is implicitly supposing
13268     * that the parent directionality can and will be resolved before its children.
13269     *
13270     * @return true if resolution has been done, false otherwise.
13271     *
13272     * @hide
13273     */
13274    public boolean resolveLayoutDirection() {
13275        // Clear any previous layout direction resolution
13276        mPrivateFlags2 &= ~PFLAG2_LAYOUT_DIRECTION_RESOLVED_MASK;
13277
13278        if (hasRtlSupport()) {
13279            // Set resolved depending on layout direction
13280            switch ((mPrivateFlags2 & PFLAG2_LAYOUT_DIRECTION_MASK) >>
13281                    PFLAG2_LAYOUT_DIRECTION_MASK_SHIFT) {
13282                case LAYOUT_DIRECTION_INHERIT:
13283                    // We cannot resolve yet. LTR is by default and let the resolution happen again
13284                    // later to get the correct resolved value
13285                    if (!canResolveLayoutDirection()) return false;
13286
13287                    // Parent has not yet resolved, LTR is still the default
13288                    try {
13289                        if (!mParent.isLayoutDirectionResolved()) return false;
13290
13291                        if (mParent.getLayoutDirection() == LAYOUT_DIRECTION_RTL) {
13292                            mPrivateFlags2 |= PFLAG2_LAYOUT_DIRECTION_RESOLVED_RTL;
13293                        }
13294                    } catch (AbstractMethodError e) {
13295                        Log.e(VIEW_LOG_TAG, mParent.getClass().getSimpleName() +
13296                                " does not fully implement ViewParent", e);
13297                    }
13298                    break;
13299                case LAYOUT_DIRECTION_RTL:
13300                    mPrivateFlags2 |= PFLAG2_LAYOUT_DIRECTION_RESOLVED_RTL;
13301                    break;
13302                case LAYOUT_DIRECTION_LOCALE:
13303                    if((LAYOUT_DIRECTION_RTL ==
13304                            TextUtils.getLayoutDirectionFromLocale(Locale.getDefault()))) {
13305                        mPrivateFlags2 |= PFLAG2_LAYOUT_DIRECTION_RESOLVED_RTL;
13306                    }
13307                    break;
13308                default:
13309                    // Nothing to do, LTR by default
13310            }
13311        }
13312
13313        // Set to resolved
13314        mPrivateFlags2 |= PFLAG2_LAYOUT_DIRECTION_RESOLVED;
13315        return true;
13316    }
13317
13318    /**
13319     * Check if layout direction resolution can be done.
13320     *
13321     * @return true if layout direction resolution can be done otherwise return false.
13322     */
13323    public boolean canResolveLayoutDirection() {
13324        switch (getRawLayoutDirection()) {
13325            case LAYOUT_DIRECTION_INHERIT:
13326                if (mParent != null) {
13327                    try {
13328                        return mParent.canResolveLayoutDirection();
13329                    } catch (AbstractMethodError e) {
13330                        Log.e(VIEW_LOG_TAG, mParent.getClass().getSimpleName() +
13331                                " does not fully implement ViewParent", e);
13332                    }
13333                }
13334                return false;
13335
13336            default:
13337                return true;
13338        }
13339    }
13340
13341    /**
13342     * Reset the resolved layout direction. Layout direction will be resolved during a call to
13343     * {@link #onMeasure(int, int)}.
13344     *
13345     * @hide
13346     */
13347    public void resetResolvedLayoutDirection() {
13348        // Reset the current resolved bits
13349        mPrivateFlags2 &= ~PFLAG2_LAYOUT_DIRECTION_RESOLVED_MASK;
13350    }
13351
13352    /**
13353     * @return true if the layout direction is inherited.
13354     *
13355     * @hide
13356     */
13357    public boolean isLayoutDirectionInherited() {
13358        return (getRawLayoutDirection() == LAYOUT_DIRECTION_INHERIT);
13359    }
13360
13361    /**
13362     * @return true if layout direction has been resolved.
13363     */
13364    public boolean isLayoutDirectionResolved() {
13365        return (mPrivateFlags2 & PFLAG2_LAYOUT_DIRECTION_RESOLVED) == PFLAG2_LAYOUT_DIRECTION_RESOLVED;
13366    }
13367
13368    /**
13369     * Return if padding has been resolved
13370     *
13371     * @hide
13372     */
13373    boolean isPaddingResolved() {
13374        return (mPrivateFlags2 & PFLAG2_PADDING_RESOLVED) == PFLAG2_PADDING_RESOLVED;
13375    }
13376
13377    /**
13378     * Resolves padding depending on layout direction, if applicable, and
13379     * recomputes internal padding values to adjust for scroll bars.
13380     *
13381     * @hide
13382     */
13383    public void resolvePadding() {
13384        final int resolvedLayoutDirection = getLayoutDirection();
13385
13386        if (!isRtlCompatibilityMode()) {
13387            // Post Jelly Bean MR1 case: we need to take the resolved layout direction into account.
13388            // If start / end padding are defined, they will be resolved (hence overriding) to
13389            // left / right or right / left depending on the resolved layout direction.
13390            // If start / end padding are not defined, use the left / right ones.
13391            if (mBackground != null && (!mLeftPaddingDefined || !mRightPaddingDefined)) {
13392                Rect padding = sThreadLocal.get();
13393                if (padding == null) {
13394                    padding = new Rect();
13395                    sThreadLocal.set(padding);
13396                }
13397                mBackground.getPadding(padding);
13398                if (!mLeftPaddingDefined) {
13399                    mUserPaddingLeftInitial = padding.left;
13400                }
13401                if (!mRightPaddingDefined) {
13402                    mUserPaddingRightInitial = padding.right;
13403                }
13404            }
13405            switch (resolvedLayoutDirection) {
13406                case LAYOUT_DIRECTION_RTL:
13407                    if (mUserPaddingStart != UNDEFINED_PADDING) {
13408                        mUserPaddingRight = mUserPaddingStart;
13409                    } else {
13410                        mUserPaddingRight = mUserPaddingRightInitial;
13411                    }
13412                    if (mUserPaddingEnd != UNDEFINED_PADDING) {
13413                        mUserPaddingLeft = mUserPaddingEnd;
13414                    } else {
13415                        mUserPaddingLeft = mUserPaddingLeftInitial;
13416                    }
13417                    break;
13418                case LAYOUT_DIRECTION_LTR:
13419                default:
13420                    if (mUserPaddingStart != UNDEFINED_PADDING) {
13421                        mUserPaddingLeft = mUserPaddingStart;
13422                    } else {
13423                        mUserPaddingLeft = mUserPaddingLeftInitial;
13424                    }
13425                    if (mUserPaddingEnd != UNDEFINED_PADDING) {
13426                        mUserPaddingRight = mUserPaddingEnd;
13427                    } else {
13428                        mUserPaddingRight = mUserPaddingRightInitial;
13429                    }
13430            }
13431
13432            mUserPaddingBottom = (mUserPaddingBottom >= 0) ? mUserPaddingBottom : mPaddingBottom;
13433        }
13434
13435        internalSetPadding(mUserPaddingLeft, mPaddingTop, mUserPaddingRight, mUserPaddingBottom);
13436        onRtlPropertiesChanged(resolvedLayoutDirection);
13437
13438        mPrivateFlags2 |= PFLAG2_PADDING_RESOLVED;
13439    }
13440
13441    /**
13442     * Reset the resolved layout direction.
13443     *
13444     * @hide
13445     */
13446    public void resetResolvedPadding() {
13447        mPrivateFlags2 &= ~PFLAG2_PADDING_RESOLVED;
13448    }
13449
13450    /**
13451     * This is called when the view is detached from a window.  At this point it
13452     * no longer has a surface for drawing.
13453     *
13454     * @see #onAttachedToWindow()
13455     */
13456    protected void onDetachedFromWindow() {
13457    }
13458
13459    /**
13460     * This is a framework-internal mirror of onDetachedFromWindow() that's called
13461     * after onDetachedFromWindow().
13462     *
13463     * If you override this you *MUST* call super.onDetachedFromWindowInternal()!
13464     * The super method should be called at the end of the overriden method to ensure
13465     * subclasses are destroyed first
13466     *
13467     * @hide
13468     */
13469    protected void onDetachedFromWindowInternal() {
13470        mPrivateFlags &= ~PFLAG_CANCEL_NEXT_UP_EVENT;
13471        mPrivateFlags3 &= ~PFLAG3_IS_LAID_OUT;
13472
13473        removeUnsetPressCallback();
13474        removeLongPressCallback();
13475        removePerformClickCallback();
13476        removeSendViewScrolledAccessibilityEventCallback();
13477        stopNestedScroll();
13478
13479        // Anything that started animating right before detach should already
13480        // be in its final state when re-attached.
13481        jumpDrawablesToCurrentState();
13482
13483        destroyDrawingCache();
13484
13485        cleanupDraw();
13486        mCurrentAnimation = null;
13487    }
13488
13489    private void cleanupDraw() {
13490        resetDisplayList();
13491        if (mAttachInfo != null) {
13492            mAttachInfo.mViewRootImpl.cancelInvalidate(this);
13493        }
13494    }
13495
13496    void invalidateInheritedLayoutMode(int layoutModeOfRoot) {
13497    }
13498
13499    /**
13500     * @return The number of times this view has been attached to a window
13501     */
13502    protected int getWindowAttachCount() {
13503        return mWindowAttachCount;
13504    }
13505
13506    /**
13507     * Retrieve a unique token identifying the window this view is attached to.
13508     * @return Return the window's token for use in
13509     * {@link WindowManager.LayoutParams#token WindowManager.LayoutParams.token}.
13510     */
13511    public IBinder getWindowToken() {
13512        return mAttachInfo != null ? mAttachInfo.mWindowToken : null;
13513    }
13514
13515    /**
13516     * Retrieve the {@link WindowId} for the window this view is
13517     * currently attached to.
13518     */
13519    public WindowId getWindowId() {
13520        if (mAttachInfo == null) {
13521            return null;
13522        }
13523        if (mAttachInfo.mWindowId == null) {
13524            try {
13525                mAttachInfo.mIWindowId = mAttachInfo.mSession.getWindowId(
13526                        mAttachInfo.mWindowToken);
13527                mAttachInfo.mWindowId = new WindowId(
13528                        mAttachInfo.mIWindowId);
13529            } catch (RemoteException e) {
13530            }
13531        }
13532        return mAttachInfo.mWindowId;
13533    }
13534
13535    /**
13536     * Retrieve a unique token identifying the top-level "real" window of
13537     * the window that this view is attached to.  That is, this is like
13538     * {@link #getWindowToken}, except if the window this view in is a panel
13539     * window (attached to another containing window), then the token of
13540     * the containing window is returned instead.
13541     *
13542     * @return Returns the associated window token, either
13543     * {@link #getWindowToken()} or the containing window's token.
13544     */
13545    public IBinder getApplicationWindowToken() {
13546        AttachInfo ai = mAttachInfo;
13547        if (ai != null) {
13548            IBinder appWindowToken = ai.mPanelParentWindowToken;
13549            if (appWindowToken == null) {
13550                appWindowToken = ai.mWindowToken;
13551            }
13552            return appWindowToken;
13553        }
13554        return null;
13555    }
13556
13557    /**
13558     * Gets the logical display to which the view's window has been attached.
13559     *
13560     * @return The logical display, or null if the view is not currently attached to a window.
13561     */
13562    public Display getDisplay() {
13563        return mAttachInfo != null ? mAttachInfo.mDisplay : null;
13564    }
13565
13566    /**
13567     * Retrieve private session object this view hierarchy is using to
13568     * communicate with the window manager.
13569     * @return the session object to communicate with the window manager
13570     */
13571    /*package*/ IWindowSession getWindowSession() {
13572        return mAttachInfo != null ? mAttachInfo.mSession : null;
13573    }
13574
13575    /**
13576     * @param info the {@link android.view.View.AttachInfo} to associated with
13577     *        this view
13578     */
13579    void dispatchAttachedToWindow(AttachInfo info, int visibility) {
13580        //System.out.println("Attached! " + this);
13581        mAttachInfo = info;
13582        if (mOverlay != null) {
13583            mOverlay.getOverlayView().dispatchAttachedToWindow(info, visibility);
13584        }
13585        mWindowAttachCount++;
13586        // We will need to evaluate the drawable state at least once.
13587        mPrivateFlags |= PFLAG_DRAWABLE_STATE_DIRTY;
13588        if (mFloatingTreeObserver != null) {
13589            info.mTreeObserver.merge(mFloatingTreeObserver);
13590            mFloatingTreeObserver = null;
13591        }
13592        if ((mPrivateFlags&PFLAG_SCROLL_CONTAINER) != 0) {
13593            mAttachInfo.mScrollContainers.add(this);
13594            mPrivateFlags |= PFLAG_SCROLL_CONTAINER_ADDED;
13595        }
13596        performCollectViewAttributes(mAttachInfo, visibility);
13597        onAttachedToWindow();
13598
13599        ListenerInfo li = mListenerInfo;
13600        final CopyOnWriteArrayList<OnAttachStateChangeListener> listeners =
13601                li != null ? li.mOnAttachStateChangeListeners : null;
13602        if (listeners != null && listeners.size() > 0) {
13603            // NOTE: because of the use of CopyOnWriteArrayList, we *must* use an iterator to
13604            // perform the dispatching. The iterator is a safe guard against listeners that
13605            // could mutate the list by calling the various add/remove methods. This prevents
13606            // the array from being modified while we iterate it.
13607            for (OnAttachStateChangeListener listener : listeners) {
13608                listener.onViewAttachedToWindow(this);
13609            }
13610        }
13611
13612        int vis = info.mWindowVisibility;
13613        if (vis != GONE) {
13614            onWindowVisibilityChanged(vis);
13615        }
13616        if ((mPrivateFlags&PFLAG_DRAWABLE_STATE_DIRTY) != 0) {
13617            // If nobody has evaluated the drawable state yet, then do it now.
13618            refreshDrawableState();
13619        }
13620        needGlobalAttributesUpdate(false);
13621    }
13622
13623    void dispatchDetachedFromWindow() {
13624        AttachInfo info = mAttachInfo;
13625        if (info != null) {
13626            int vis = info.mWindowVisibility;
13627            if (vis != GONE) {
13628                onWindowVisibilityChanged(GONE);
13629            }
13630        }
13631
13632        onDetachedFromWindow();
13633        onDetachedFromWindowInternal();
13634
13635        ListenerInfo li = mListenerInfo;
13636        final CopyOnWriteArrayList<OnAttachStateChangeListener> listeners =
13637                li != null ? li.mOnAttachStateChangeListeners : null;
13638        if (listeners != null && listeners.size() > 0) {
13639            // NOTE: because of the use of CopyOnWriteArrayList, we *must* use an iterator to
13640            // perform the dispatching. The iterator is a safe guard against listeners that
13641            // could mutate the list by calling the various add/remove methods. This prevents
13642            // the array from being modified while we iterate it.
13643            for (OnAttachStateChangeListener listener : listeners) {
13644                listener.onViewDetachedFromWindow(this);
13645            }
13646        }
13647
13648        if ((mPrivateFlags & PFLAG_SCROLL_CONTAINER_ADDED) != 0) {
13649            mAttachInfo.mScrollContainers.remove(this);
13650            mPrivateFlags &= ~PFLAG_SCROLL_CONTAINER_ADDED;
13651        }
13652
13653        mAttachInfo = null;
13654        if (mOverlay != null) {
13655            mOverlay.getOverlayView().dispatchDetachedFromWindow();
13656        }
13657    }
13658
13659    /**
13660     * Cancel any deferred high-level input events that were previously posted to the event queue.
13661     *
13662     * <p>Many views post high-level events such as click handlers to the event queue
13663     * to run deferred in order to preserve a desired user experience - clearing visible
13664     * pressed states before executing, etc. This method will abort any events of this nature
13665     * that are currently in flight.</p>
13666     *
13667     * <p>Custom views that generate their own high-level deferred input events should override
13668     * {@link #onCancelPendingInputEvents()} and remove those pending events from the queue.</p>
13669     *
13670     * <p>This will also cancel pending input events for any child views.</p>
13671     *
13672     * <p>Note that this may not be sufficient as a debouncing strategy for clicks in all cases.
13673     * This will not impact newer events posted after this call that may occur as a result of
13674     * lower-level input events still waiting in the queue. If you are trying to prevent
13675     * double-submitted  events for the duration of some sort of asynchronous transaction
13676     * you should also take other steps to protect against unexpected double inputs e.g. calling
13677     * {@link #setEnabled(boolean) setEnabled(false)} and re-enabling the view when
13678     * the transaction completes, tracking already submitted transaction IDs, etc.</p>
13679     */
13680    public final void cancelPendingInputEvents() {
13681        dispatchCancelPendingInputEvents();
13682    }
13683
13684    /**
13685     * Called by {@link #cancelPendingInputEvents()} to cancel input events in flight.
13686     * Overridden by ViewGroup to dispatch. Package scoped to prevent app-side meddling.
13687     */
13688    void dispatchCancelPendingInputEvents() {
13689        mPrivateFlags3 &= ~PFLAG3_CALLED_SUPER;
13690        onCancelPendingInputEvents();
13691        if ((mPrivateFlags3 & PFLAG3_CALLED_SUPER) != PFLAG3_CALLED_SUPER) {
13692            throw new SuperNotCalledException("View " + getClass().getSimpleName() +
13693                    " did not call through to super.onCancelPendingInputEvents()");
13694        }
13695    }
13696
13697    /**
13698     * Called as the result of a call to {@link #cancelPendingInputEvents()} on this view or
13699     * a parent view.
13700     *
13701     * <p>This method is responsible for removing any pending high-level input events that were
13702     * posted to the event queue to run later. Custom view classes that post their own deferred
13703     * high-level events via {@link #post(Runnable)}, {@link #postDelayed(Runnable, long)} or
13704     * {@link android.os.Handler} should override this method, call
13705     * <code>super.onCancelPendingInputEvents()</code> and remove those callbacks as appropriate.
13706     * </p>
13707     */
13708    public void onCancelPendingInputEvents() {
13709        removePerformClickCallback();
13710        cancelLongPress();
13711        mPrivateFlags3 |= PFLAG3_CALLED_SUPER;
13712    }
13713
13714    /**
13715     * Store this view hierarchy's frozen state into the given container.
13716     *
13717     * @param container The SparseArray in which to save the view's state.
13718     *
13719     * @see #restoreHierarchyState(android.util.SparseArray)
13720     * @see #dispatchSaveInstanceState(android.util.SparseArray)
13721     * @see #onSaveInstanceState()
13722     */
13723    public void saveHierarchyState(SparseArray<Parcelable> container) {
13724        dispatchSaveInstanceState(container);
13725    }
13726
13727    /**
13728     * Called by {@link #saveHierarchyState(android.util.SparseArray)} to store the state for
13729     * this view and its children. May be overridden to modify how freezing happens to a
13730     * view's children; for example, some views may want to not store state for their children.
13731     *
13732     * @param container The SparseArray in which to save the view's state.
13733     *
13734     * @see #dispatchRestoreInstanceState(android.util.SparseArray)
13735     * @see #saveHierarchyState(android.util.SparseArray)
13736     * @see #onSaveInstanceState()
13737     */
13738    protected void dispatchSaveInstanceState(SparseArray<Parcelable> container) {
13739        if (mID != NO_ID && (mViewFlags & SAVE_DISABLED_MASK) == 0) {
13740            mPrivateFlags &= ~PFLAG_SAVE_STATE_CALLED;
13741            Parcelable state = onSaveInstanceState();
13742            if ((mPrivateFlags & PFLAG_SAVE_STATE_CALLED) == 0) {
13743                throw new IllegalStateException(
13744                        "Derived class did not call super.onSaveInstanceState()");
13745            }
13746            if (state != null) {
13747                // Log.i("View", "Freezing #" + Integer.toHexString(mID)
13748                // + ": " + state);
13749                container.put(mID, state);
13750            }
13751        }
13752    }
13753
13754    /**
13755     * Hook allowing a view to generate a representation of its internal state
13756     * that can later be used to create a new instance with that same state.
13757     * This state should only contain information that is not persistent or can
13758     * not be reconstructed later. For example, you will never store your
13759     * current position on screen because that will be computed again when a
13760     * new instance of the view is placed in its view hierarchy.
13761     * <p>
13762     * Some examples of things you may store here: the current cursor position
13763     * in a text view (but usually not the text itself since that is stored in a
13764     * content provider or other persistent storage), the currently selected
13765     * item in a list view.
13766     *
13767     * @return Returns a Parcelable object containing the view's current dynamic
13768     *         state, or null if there is nothing interesting to save. The
13769     *         default implementation returns null.
13770     * @see #onRestoreInstanceState(android.os.Parcelable)
13771     * @see #saveHierarchyState(android.util.SparseArray)
13772     * @see #dispatchSaveInstanceState(android.util.SparseArray)
13773     * @see #setSaveEnabled(boolean)
13774     */
13775    protected Parcelable onSaveInstanceState() {
13776        mPrivateFlags |= PFLAG_SAVE_STATE_CALLED;
13777        return BaseSavedState.EMPTY_STATE;
13778    }
13779
13780    /**
13781     * Restore this view hierarchy's frozen state from the given container.
13782     *
13783     * @param container The SparseArray which holds previously frozen states.
13784     *
13785     * @see #saveHierarchyState(android.util.SparseArray)
13786     * @see #dispatchRestoreInstanceState(android.util.SparseArray)
13787     * @see #onRestoreInstanceState(android.os.Parcelable)
13788     */
13789    public void restoreHierarchyState(SparseArray<Parcelable> container) {
13790        dispatchRestoreInstanceState(container);
13791    }
13792
13793    /**
13794     * Called by {@link #restoreHierarchyState(android.util.SparseArray)} to retrieve the
13795     * state for this view and its children. May be overridden to modify how restoring
13796     * happens to a view's children; for example, some views may want to not store state
13797     * for their children.
13798     *
13799     * @param container The SparseArray which holds previously saved state.
13800     *
13801     * @see #dispatchSaveInstanceState(android.util.SparseArray)
13802     * @see #restoreHierarchyState(android.util.SparseArray)
13803     * @see #onRestoreInstanceState(android.os.Parcelable)
13804     */
13805    protected void dispatchRestoreInstanceState(SparseArray<Parcelable> container) {
13806        if (mID != NO_ID) {
13807            Parcelable state = container.get(mID);
13808            if (state != null) {
13809                // Log.i("View", "Restoreing #" + Integer.toHexString(mID)
13810                // + ": " + state);
13811                mPrivateFlags &= ~PFLAG_SAVE_STATE_CALLED;
13812                onRestoreInstanceState(state);
13813                if ((mPrivateFlags & PFLAG_SAVE_STATE_CALLED) == 0) {
13814                    throw new IllegalStateException(
13815                            "Derived class did not call super.onRestoreInstanceState()");
13816                }
13817            }
13818        }
13819    }
13820
13821    /**
13822     * Hook allowing a view to re-apply a representation of its internal state that had previously
13823     * been generated by {@link #onSaveInstanceState}. This function will never be called with a
13824     * null state.
13825     *
13826     * @param state The frozen state that had previously been returned by
13827     *        {@link #onSaveInstanceState}.
13828     *
13829     * @see #onSaveInstanceState()
13830     * @see #restoreHierarchyState(android.util.SparseArray)
13831     * @see #dispatchRestoreInstanceState(android.util.SparseArray)
13832     */
13833    protected void onRestoreInstanceState(Parcelable state) {
13834        mPrivateFlags |= PFLAG_SAVE_STATE_CALLED;
13835        if (state != BaseSavedState.EMPTY_STATE && state != null) {
13836            throw new IllegalArgumentException("Wrong state class, expecting View State but "
13837                    + "received " + state.getClass().toString() + " instead. This usually happens "
13838                    + "when two views of different type have the same id in the same hierarchy. "
13839                    + "This view's id is " + ViewDebug.resolveId(mContext, getId()) + ". Make sure "
13840                    + "other views do not use the same id.");
13841        }
13842    }
13843
13844    /**
13845     * <p>Return the time at which the drawing of the view hierarchy started.</p>
13846     *
13847     * @return the drawing start time in milliseconds
13848     */
13849    public long getDrawingTime() {
13850        return mAttachInfo != null ? mAttachInfo.mDrawingTime : 0;
13851    }
13852
13853    /**
13854     * <p>Enables or disables the duplication of the parent's state into this view. When
13855     * duplication is enabled, this view gets its drawable state from its parent rather
13856     * than from its own internal properties.</p>
13857     *
13858     * <p>Note: in the current implementation, setting this property to true after the
13859     * view was added to a ViewGroup might have no effect at all. This property should
13860     * always be used from XML or set to true before adding this view to a ViewGroup.</p>
13861     *
13862     * <p>Note: if this view's parent addStateFromChildren property is enabled and this
13863     * property is enabled, an exception will be thrown.</p>
13864     *
13865     * <p>Note: if the child view uses and updates additionnal states which are unknown to the
13866     * parent, these states should not be affected by this method.</p>
13867     *
13868     * @param enabled True to enable duplication of the parent's drawable state, false
13869     *                to disable it.
13870     *
13871     * @see #getDrawableState()
13872     * @see #isDuplicateParentStateEnabled()
13873     */
13874    public void setDuplicateParentStateEnabled(boolean enabled) {
13875        setFlags(enabled ? DUPLICATE_PARENT_STATE : 0, DUPLICATE_PARENT_STATE);
13876    }
13877
13878    /**
13879     * <p>Indicates whether this duplicates its drawable state from its parent.</p>
13880     *
13881     * @return True if this view's drawable state is duplicated from the parent,
13882     *         false otherwise
13883     *
13884     * @see #getDrawableState()
13885     * @see #setDuplicateParentStateEnabled(boolean)
13886     */
13887    public boolean isDuplicateParentStateEnabled() {
13888        return (mViewFlags & DUPLICATE_PARENT_STATE) == DUPLICATE_PARENT_STATE;
13889    }
13890
13891    /**
13892     * <p>Specifies the type of layer backing this view. The layer can be
13893     * {@link #LAYER_TYPE_NONE}, {@link #LAYER_TYPE_SOFTWARE} or
13894     * {@link #LAYER_TYPE_HARDWARE}.</p>
13895     *
13896     * <p>A layer is associated with an optional {@link android.graphics.Paint}
13897     * instance that controls how the layer is composed on screen. The following
13898     * properties of the paint are taken into account when composing the layer:</p>
13899     * <ul>
13900     * <li>{@link android.graphics.Paint#getAlpha() Translucency (alpha)}</li>
13901     * <li>{@link android.graphics.Paint#getXfermode() Blending mode}</li>
13902     * <li>{@link android.graphics.Paint#getColorFilter() Color filter}</li>
13903     * </ul>
13904     *
13905     * <p>If this view has an alpha value set to < 1.0 by calling
13906     * {@link #setAlpha(float)}, the alpha value of the layer's paint is superceded
13907     * by this view's alpha value.</p>
13908     *
13909     * <p>Refer to the documentation of {@link #LAYER_TYPE_NONE},
13910     * {@link #LAYER_TYPE_SOFTWARE} and {@link #LAYER_TYPE_HARDWARE}
13911     * for more information on when and how to use layers.</p>
13912     *
13913     * @param layerType The type of layer to use with this view, must be one of
13914     *        {@link #LAYER_TYPE_NONE}, {@link #LAYER_TYPE_SOFTWARE} or
13915     *        {@link #LAYER_TYPE_HARDWARE}
13916     * @param paint The paint used to compose the layer. This argument is optional
13917     *        and can be null. It is ignored when the layer type is
13918     *        {@link #LAYER_TYPE_NONE}
13919     *
13920     * @see #getLayerType()
13921     * @see #LAYER_TYPE_NONE
13922     * @see #LAYER_TYPE_SOFTWARE
13923     * @see #LAYER_TYPE_HARDWARE
13924     * @see #setAlpha(float)
13925     *
13926     * @attr ref android.R.styleable#View_layerType
13927     */
13928    public void setLayerType(int layerType, Paint paint) {
13929        if (layerType < LAYER_TYPE_NONE || layerType > LAYER_TYPE_HARDWARE) {
13930            throw new IllegalArgumentException("Layer type can only be one of: LAYER_TYPE_NONE, "
13931                    + "LAYER_TYPE_SOFTWARE or LAYER_TYPE_HARDWARE");
13932        }
13933
13934        boolean typeChanged = mRenderNode.setLayerType(layerType);
13935
13936        if (!typeChanged) {
13937            setLayerPaint(paint);
13938            return;
13939        }
13940
13941        // Destroy any previous software drawing cache if needed
13942        if (mLayerType == LAYER_TYPE_SOFTWARE) {
13943            destroyDrawingCache();
13944        }
13945
13946        mLayerType = layerType;
13947        final boolean layerDisabled = (mLayerType == LAYER_TYPE_NONE);
13948        mLayerPaint = layerDisabled ? null : (paint == null ? new Paint() : paint);
13949        mRenderNode.setLayerPaint(mLayerPaint);
13950
13951        // draw() behaves differently if we are on a layer, so we need to
13952        // invalidate() here
13953        invalidateParentCaches();
13954        invalidate(true);
13955    }
13956
13957    /**
13958     * Updates the {@link Paint} object used with the current layer (used only if the current
13959     * layer type is not set to {@link #LAYER_TYPE_NONE}). Changed properties of the Paint
13960     * provided to {@link #setLayerType(int, android.graphics.Paint)} will be used the next time
13961     * the View is redrawn, but {@link #setLayerPaint(android.graphics.Paint)} must be called to
13962     * ensure that the view gets redrawn immediately.
13963     *
13964     * <p>A layer is associated with an optional {@link android.graphics.Paint}
13965     * instance that controls how the layer is composed on screen. The following
13966     * properties of the paint are taken into account when composing the layer:</p>
13967     * <ul>
13968     * <li>{@link android.graphics.Paint#getAlpha() Translucency (alpha)}</li>
13969     * <li>{@link android.graphics.Paint#getXfermode() Blending mode}</li>
13970     * <li>{@link android.graphics.Paint#getColorFilter() Color filter}</li>
13971     * </ul>
13972     *
13973     * <p>If this view has an alpha value set to < 1.0 by calling {@link #setAlpha(float)}, the
13974     * alpha value of the layer's paint is superceded by this view's alpha value.</p>
13975     *
13976     * @param paint The paint used to compose the layer. This argument is optional
13977     *        and can be null. It is ignored when the layer type is
13978     *        {@link #LAYER_TYPE_NONE}
13979     *
13980     * @see #setLayerType(int, android.graphics.Paint)
13981     */
13982    public void setLayerPaint(Paint paint) {
13983        int layerType = getLayerType();
13984        if (layerType != LAYER_TYPE_NONE) {
13985            mLayerPaint = paint == null ? new Paint() : paint;
13986            if (layerType == LAYER_TYPE_HARDWARE) {
13987                if (mRenderNode.setLayerPaint(mLayerPaint)) {
13988                    invalidateViewProperty(false, false);
13989                }
13990            } else {
13991                invalidate();
13992            }
13993        }
13994    }
13995
13996    /**
13997     * Indicates whether this view has a static layer. A view with layer type
13998     * {@link #LAYER_TYPE_NONE} is a static layer. Other types of layers are
13999     * dynamic.
14000     */
14001    boolean hasStaticLayer() {
14002        return true;
14003    }
14004
14005    /**
14006     * Indicates what type of layer is currently associated with this view. By default
14007     * a view does not have a layer, and the layer type is {@link #LAYER_TYPE_NONE}.
14008     * Refer to the documentation of {@link #setLayerType(int, android.graphics.Paint)}
14009     * for more information on the different types of layers.
14010     *
14011     * @return {@link #LAYER_TYPE_NONE}, {@link #LAYER_TYPE_SOFTWARE} or
14012     *         {@link #LAYER_TYPE_HARDWARE}
14013     *
14014     * @see #setLayerType(int, android.graphics.Paint)
14015     * @see #buildLayer()
14016     * @see #LAYER_TYPE_NONE
14017     * @see #LAYER_TYPE_SOFTWARE
14018     * @see #LAYER_TYPE_HARDWARE
14019     */
14020    public int getLayerType() {
14021        return mLayerType;
14022    }
14023
14024    /**
14025     * Forces this view's layer to be created and this view to be rendered
14026     * into its layer. If this view's layer type is set to {@link #LAYER_TYPE_NONE},
14027     * invoking this method will have no effect.
14028     *
14029     * This method can for instance be used to render a view into its layer before
14030     * starting an animation. If this view is complex, rendering into the layer
14031     * before starting the animation will avoid skipping frames.
14032     *
14033     * @throws IllegalStateException If this view is not attached to a window
14034     *
14035     * @see #setLayerType(int, android.graphics.Paint)
14036     */
14037    public void buildLayer() {
14038        if (mLayerType == LAYER_TYPE_NONE) return;
14039
14040        final AttachInfo attachInfo = mAttachInfo;
14041        if (attachInfo == null) {
14042            throw new IllegalStateException("This view must be attached to a window first");
14043        }
14044
14045        if (getWidth() == 0 || getHeight() == 0) {
14046            return;
14047        }
14048
14049        switch (mLayerType) {
14050            case LAYER_TYPE_HARDWARE:
14051                updateDisplayListIfDirty();
14052                if (attachInfo.mHardwareRenderer != null && mRenderNode.isValid()) {
14053                    attachInfo.mHardwareRenderer.buildLayer(mRenderNode);
14054                }
14055                break;
14056            case LAYER_TYPE_SOFTWARE:
14057                buildDrawingCache(true);
14058                break;
14059        }
14060    }
14061
14062    /**
14063     * If this View draws with a HardwareLayer, returns it.
14064     * Otherwise returns null
14065     *
14066     * TODO: Only TextureView uses this, can we eliminate it?
14067     */
14068    HardwareLayer getHardwareLayer() {
14069        return null;
14070    }
14071
14072    /**
14073     * Destroys all hardware rendering resources. This method is invoked
14074     * when the system needs to reclaim resources. Upon execution of this
14075     * method, you should free any OpenGL resources created by the view.
14076     *
14077     * Note: you <strong>must</strong> call
14078     * <code>super.destroyHardwareResources()</code> when overriding
14079     * this method.
14080     *
14081     * @hide
14082     */
14083    protected void destroyHardwareResources() {
14084        // Although the Layer will be destroyed by RenderNode, we want to release
14085        // the staging display list, which is also a signal to RenderNode that it's
14086        // safe to free its copy of the display list as it knows that we will
14087        // push an updated DisplayList if we try to draw again
14088        resetDisplayList();
14089    }
14090
14091    /**
14092     * <p>Enables or disables the drawing cache. When the drawing cache is enabled, the next call
14093     * to {@link #getDrawingCache()} or {@link #buildDrawingCache()} will draw the view in a
14094     * bitmap. Calling {@link #draw(android.graphics.Canvas)} will not draw from the cache when
14095     * the cache is enabled. To benefit from the cache, you must request the drawing cache by
14096     * calling {@link #getDrawingCache()} and draw it on screen if the returned bitmap is not
14097     * null.</p>
14098     *
14099     * <p>Enabling the drawing cache is similar to
14100     * {@link #setLayerType(int, android.graphics.Paint) setting a layer} when hardware
14101     * acceleration is turned off. When hardware acceleration is turned on, enabling the
14102     * drawing cache has no effect on rendering because the system uses a different mechanism
14103     * for acceleration which ignores the flag. If you want to use a Bitmap for the view, even
14104     * when hardware acceleration is enabled, see {@link #setLayerType(int, android.graphics.Paint)}
14105     * for information on how to enable software and hardware layers.</p>
14106     *
14107     * <p>This API can be used to manually generate
14108     * a bitmap copy of this view, by setting the flag to <code>true</code> and calling
14109     * {@link #getDrawingCache()}.</p>
14110     *
14111     * @param enabled true to enable the drawing cache, false otherwise
14112     *
14113     * @see #isDrawingCacheEnabled()
14114     * @see #getDrawingCache()
14115     * @see #buildDrawingCache()
14116     * @see #setLayerType(int, android.graphics.Paint)
14117     */
14118    public void setDrawingCacheEnabled(boolean enabled) {
14119        mCachingFailed = false;
14120        setFlags(enabled ? DRAWING_CACHE_ENABLED : 0, DRAWING_CACHE_ENABLED);
14121    }
14122
14123    /**
14124     * <p>Indicates whether the drawing cache is enabled for this view.</p>
14125     *
14126     * @return true if the drawing cache is enabled
14127     *
14128     * @see #setDrawingCacheEnabled(boolean)
14129     * @see #getDrawingCache()
14130     */
14131    @ViewDebug.ExportedProperty(category = "drawing")
14132    public boolean isDrawingCacheEnabled() {
14133        return (mViewFlags & DRAWING_CACHE_ENABLED) == DRAWING_CACHE_ENABLED;
14134    }
14135
14136    /**
14137     * Debugging utility which recursively outputs the dirty state of a view and its
14138     * descendants.
14139     *
14140     * @hide
14141     */
14142    @SuppressWarnings({"UnusedDeclaration"})
14143    public void outputDirtyFlags(String indent, boolean clear, int clearMask) {
14144        Log.d("View", indent + this + "             DIRTY(" + (mPrivateFlags & View.PFLAG_DIRTY_MASK) +
14145                ") DRAWN(" + (mPrivateFlags & PFLAG_DRAWN) + ")" + " CACHE_VALID(" +
14146                (mPrivateFlags & View.PFLAG_DRAWING_CACHE_VALID) +
14147                ") INVALIDATED(" + (mPrivateFlags & PFLAG_INVALIDATED) + ")");
14148        if (clear) {
14149            mPrivateFlags &= clearMask;
14150        }
14151        if (this instanceof ViewGroup) {
14152            ViewGroup parent = (ViewGroup) this;
14153            final int count = parent.getChildCount();
14154            for (int i = 0; i < count; i++) {
14155                final View child = parent.getChildAt(i);
14156                child.outputDirtyFlags(indent + "  ", clear, clearMask);
14157            }
14158        }
14159    }
14160
14161    /**
14162     * This method is used by ViewGroup to cause its children to restore or recreate their
14163     * display lists. It is called by getDisplayList() when the parent ViewGroup does not need
14164     * to recreate its own display list, which would happen if it went through the normal
14165     * draw/dispatchDraw mechanisms.
14166     *
14167     * @hide
14168     */
14169    protected void dispatchGetDisplayList() {}
14170
14171    /**
14172     * A view that is not attached or hardware accelerated cannot create a display list.
14173     * This method checks these conditions and returns the appropriate result.
14174     *
14175     * @return true if view has the ability to create a display list, false otherwise.
14176     *
14177     * @hide
14178     */
14179    public boolean canHaveDisplayList() {
14180        return !(mAttachInfo == null || mAttachInfo.mHardwareRenderer == null);
14181    }
14182
14183    private void updateDisplayListIfDirty() {
14184        final RenderNode renderNode = mRenderNode;
14185        if (!canHaveDisplayList()) {
14186            // can't populate RenderNode, don't try
14187            return;
14188        }
14189
14190        if ((mPrivateFlags & PFLAG_DRAWING_CACHE_VALID) == 0
14191                || !renderNode.isValid()
14192                || (mRecreateDisplayList)) {
14193            // Don't need to recreate the display list, just need to tell our
14194            // children to restore/recreate theirs
14195            if (renderNode.isValid()
14196                    && !mRecreateDisplayList) {
14197                mPrivateFlags |= PFLAG_DRAWN | PFLAG_DRAWING_CACHE_VALID;
14198                mPrivateFlags &= ~PFLAG_DIRTY_MASK;
14199                dispatchGetDisplayList();
14200
14201                return; // no work needed
14202            }
14203
14204            // If we got here, we're recreating it. Mark it as such to ensure that
14205            // we copy in child display lists into ours in drawChild()
14206            mRecreateDisplayList = true;
14207
14208            int width = mRight - mLeft;
14209            int height = mBottom - mTop;
14210            int layerType = getLayerType();
14211
14212            final HardwareCanvas canvas = renderNode.start(width, height);
14213            canvas.setHighContrastText(mAttachInfo.mHighContrastText);
14214
14215            try {
14216                final HardwareLayer layer = getHardwareLayer();
14217                if (layer != null && layer.isValid()) {
14218                    canvas.drawHardwareLayer(layer, 0, 0, mLayerPaint);
14219                } else if (layerType == LAYER_TYPE_SOFTWARE) {
14220                    buildDrawingCache(true);
14221                    Bitmap cache = getDrawingCache(true);
14222                    if (cache != null) {
14223                        canvas.drawBitmap(cache, 0, 0, mLayerPaint);
14224                    }
14225                } else {
14226                    computeScroll();
14227
14228                    canvas.translate(-mScrollX, -mScrollY);
14229                    mPrivateFlags |= PFLAG_DRAWN | PFLAG_DRAWING_CACHE_VALID;
14230                    mPrivateFlags &= ~PFLAG_DIRTY_MASK;
14231
14232                    // Fast path for layouts with no backgrounds
14233                    if ((mPrivateFlags & PFLAG_SKIP_DRAW) == PFLAG_SKIP_DRAW) {
14234                        dispatchDraw(canvas);
14235                        if (mOverlay != null && !mOverlay.isEmpty()) {
14236                            mOverlay.getOverlayView().draw(canvas);
14237                        }
14238                    } else {
14239                        draw(canvas);
14240                    }
14241                }
14242            } finally {
14243                renderNode.end(canvas);
14244                setDisplayListProperties(renderNode);
14245            }
14246        } else {
14247            mPrivateFlags |= PFLAG_DRAWN | PFLAG_DRAWING_CACHE_VALID;
14248            mPrivateFlags &= ~PFLAG_DIRTY_MASK;
14249        }
14250    }
14251
14252    /**
14253     * Returns a RenderNode with View draw content recorded, which can be
14254     * used to draw this view again without executing its draw method.
14255     *
14256     * @return A RenderNode ready to replay, or null if caching is not enabled.
14257     *
14258     * @hide
14259     */
14260    public RenderNode getDisplayList() {
14261        updateDisplayListIfDirty();
14262        return mRenderNode;
14263    }
14264
14265    private void resetDisplayList() {
14266        if (mRenderNode.isValid()) {
14267            mRenderNode.destroyDisplayListData();
14268        }
14269
14270        if (mBackgroundRenderNode != null && mBackgroundRenderNode.isValid()) {
14271            mBackgroundRenderNode.destroyDisplayListData();
14272        }
14273    }
14274
14275    /**
14276     * <p>Calling this method is equivalent to calling <code>getDrawingCache(false)</code>.</p>
14277     *
14278     * @return A non-scaled bitmap representing this view or null if cache is disabled.
14279     *
14280     * @see #getDrawingCache(boolean)
14281     */
14282    public Bitmap getDrawingCache() {
14283        return getDrawingCache(false);
14284    }
14285
14286    /**
14287     * <p>Returns the bitmap in which this view drawing is cached. The returned bitmap
14288     * is null when caching is disabled. If caching is enabled and the cache is not ready,
14289     * this method will create it. Calling {@link #draw(android.graphics.Canvas)} will not
14290     * draw from the cache when the cache is enabled. To benefit from the cache, you must
14291     * request the drawing cache by calling this method and draw it on screen if the
14292     * returned bitmap is not null.</p>
14293     *
14294     * <p>Note about auto scaling in compatibility mode: When auto scaling is not enabled,
14295     * this method will create a bitmap of the same size as this view. Because this bitmap
14296     * will be drawn scaled by the parent ViewGroup, the result on screen might show
14297     * scaling artifacts. To avoid such artifacts, you should call this method by setting
14298     * the auto scaling to true. Doing so, however, will generate a bitmap of a different
14299     * size than the view. This implies that your application must be able to handle this
14300     * size.</p>
14301     *
14302     * @param autoScale Indicates whether the generated bitmap should be scaled based on
14303     *        the current density of the screen when the application is in compatibility
14304     *        mode.
14305     *
14306     * @return A bitmap representing this view or null if cache is disabled.
14307     *
14308     * @see #setDrawingCacheEnabled(boolean)
14309     * @see #isDrawingCacheEnabled()
14310     * @see #buildDrawingCache(boolean)
14311     * @see #destroyDrawingCache()
14312     */
14313    public Bitmap getDrawingCache(boolean autoScale) {
14314        if ((mViewFlags & WILL_NOT_CACHE_DRAWING) == WILL_NOT_CACHE_DRAWING) {
14315            return null;
14316        }
14317        if ((mViewFlags & DRAWING_CACHE_ENABLED) == DRAWING_CACHE_ENABLED) {
14318            buildDrawingCache(autoScale);
14319        }
14320        return autoScale ? mDrawingCache : mUnscaledDrawingCache;
14321    }
14322
14323    /**
14324     * <p>Frees the resources used by the drawing cache. If you call
14325     * {@link #buildDrawingCache()} manually without calling
14326     * {@link #setDrawingCacheEnabled(boolean) setDrawingCacheEnabled(true)}, you
14327     * should cleanup the cache with this method afterwards.</p>
14328     *
14329     * @see #setDrawingCacheEnabled(boolean)
14330     * @see #buildDrawingCache()
14331     * @see #getDrawingCache()
14332     */
14333    public void destroyDrawingCache() {
14334        if (mDrawingCache != null) {
14335            mDrawingCache.recycle();
14336            mDrawingCache = null;
14337        }
14338        if (mUnscaledDrawingCache != null) {
14339            mUnscaledDrawingCache.recycle();
14340            mUnscaledDrawingCache = null;
14341        }
14342    }
14343
14344    /**
14345     * Setting a solid background color for the drawing cache's bitmaps will improve
14346     * performance and memory usage. Note, though that this should only be used if this
14347     * view will always be drawn on top of a solid color.
14348     *
14349     * @param color The background color to use for the drawing cache's bitmap
14350     *
14351     * @see #setDrawingCacheEnabled(boolean)
14352     * @see #buildDrawingCache()
14353     * @see #getDrawingCache()
14354     */
14355    public void setDrawingCacheBackgroundColor(int color) {
14356        if (color != mDrawingCacheBackgroundColor) {
14357            mDrawingCacheBackgroundColor = color;
14358            mPrivateFlags &= ~PFLAG_DRAWING_CACHE_VALID;
14359        }
14360    }
14361
14362    /**
14363     * @see #setDrawingCacheBackgroundColor(int)
14364     *
14365     * @return The background color to used for the drawing cache's bitmap
14366     */
14367    public int getDrawingCacheBackgroundColor() {
14368        return mDrawingCacheBackgroundColor;
14369    }
14370
14371    /**
14372     * <p>Calling this method is equivalent to calling <code>buildDrawingCache(false)</code>.</p>
14373     *
14374     * @see #buildDrawingCache(boolean)
14375     */
14376    public void buildDrawingCache() {
14377        buildDrawingCache(false);
14378    }
14379
14380    /**
14381     * <p>Forces the drawing cache to be built if the drawing cache is invalid.</p>
14382     *
14383     * <p>If you call {@link #buildDrawingCache()} manually without calling
14384     * {@link #setDrawingCacheEnabled(boolean) setDrawingCacheEnabled(true)}, you
14385     * should cleanup the cache by calling {@link #destroyDrawingCache()} afterwards.</p>
14386     *
14387     * <p>Note about auto scaling in compatibility mode: When auto scaling is not enabled,
14388     * this method will create a bitmap of the same size as this view. Because this bitmap
14389     * will be drawn scaled by the parent ViewGroup, the result on screen might show
14390     * scaling artifacts. To avoid such artifacts, you should call this method by setting
14391     * the auto scaling to true. Doing so, however, will generate a bitmap of a different
14392     * size than the view. This implies that your application must be able to handle this
14393     * size.</p>
14394     *
14395     * <p>You should avoid calling this method when hardware acceleration is enabled. If
14396     * you do not need the drawing cache bitmap, calling this method will increase memory
14397     * usage and cause the view to be rendered in software once, thus negatively impacting
14398     * performance.</p>
14399     *
14400     * @see #getDrawingCache()
14401     * @see #destroyDrawingCache()
14402     */
14403    public void buildDrawingCache(boolean autoScale) {
14404        if ((mPrivateFlags & PFLAG_DRAWING_CACHE_VALID) == 0 || (autoScale ?
14405                mDrawingCache == null : mUnscaledDrawingCache == null)) {
14406            mCachingFailed = false;
14407
14408            int width = mRight - mLeft;
14409            int height = mBottom - mTop;
14410
14411            final AttachInfo attachInfo = mAttachInfo;
14412            final boolean scalingRequired = attachInfo != null && attachInfo.mScalingRequired;
14413
14414            if (autoScale && scalingRequired) {
14415                width = (int) ((width * attachInfo.mApplicationScale) + 0.5f);
14416                height = (int) ((height * attachInfo.mApplicationScale) + 0.5f);
14417            }
14418
14419            final int drawingCacheBackgroundColor = mDrawingCacheBackgroundColor;
14420            final boolean opaque = drawingCacheBackgroundColor != 0 || isOpaque();
14421            final boolean use32BitCache = attachInfo != null && attachInfo.mUse32BitDrawingCache;
14422
14423            final long projectedBitmapSize = width * height * (opaque && !use32BitCache ? 2 : 4);
14424            final long drawingCacheSize =
14425                    ViewConfiguration.get(mContext).getScaledMaximumDrawingCacheSize();
14426            if (width <= 0 || height <= 0 || projectedBitmapSize > drawingCacheSize) {
14427                if (width > 0 && height > 0) {
14428                    Log.w(VIEW_LOG_TAG, "View too large to fit into drawing cache, needs "
14429                            + projectedBitmapSize + " bytes, only "
14430                            + drawingCacheSize + " available");
14431                }
14432                destroyDrawingCache();
14433                mCachingFailed = true;
14434                return;
14435            }
14436
14437            boolean clear = true;
14438            Bitmap bitmap = autoScale ? mDrawingCache : mUnscaledDrawingCache;
14439
14440            if (bitmap == null || bitmap.getWidth() != width || bitmap.getHeight() != height) {
14441                Bitmap.Config quality;
14442                if (!opaque) {
14443                    // Never pick ARGB_4444 because it looks awful
14444                    // Keep the DRAWING_CACHE_QUALITY_LOW flag just in case
14445                    switch (mViewFlags & DRAWING_CACHE_QUALITY_MASK) {
14446                        case DRAWING_CACHE_QUALITY_AUTO:
14447                        case DRAWING_CACHE_QUALITY_LOW:
14448                        case DRAWING_CACHE_QUALITY_HIGH:
14449                        default:
14450                            quality = Bitmap.Config.ARGB_8888;
14451                            break;
14452                    }
14453                } else {
14454                    // Optimization for translucent windows
14455                    // If the window is translucent, use a 32 bits bitmap to benefit from memcpy()
14456                    quality = use32BitCache ? Bitmap.Config.ARGB_8888 : Bitmap.Config.RGB_565;
14457                }
14458
14459                // Try to cleanup memory
14460                if (bitmap != null) bitmap.recycle();
14461
14462                try {
14463                    bitmap = Bitmap.createBitmap(mResources.getDisplayMetrics(),
14464                            width, height, quality);
14465                    bitmap.setDensity(getResources().getDisplayMetrics().densityDpi);
14466                    if (autoScale) {
14467                        mDrawingCache = bitmap;
14468                    } else {
14469                        mUnscaledDrawingCache = bitmap;
14470                    }
14471                    if (opaque && use32BitCache) bitmap.setHasAlpha(false);
14472                } catch (OutOfMemoryError e) {
14473                    // If there is not enough memory to create the bitmap cache, just
14474                    // ignore the issue as bitmap caches are not required to draw the
14475                    // view hierarchy
14476                    if (autoScale) {
14477                        mDrawingCache = null;
14478                    } else {
14479                        mUnscaledDrawingCache = null;
14480                    }
14481                    mCachingFailed = true;
14482                    return;
14483                }
14484
14485                clear = drawingCacheBackgroundColor != 0;
14486            }
14487
14488            Canvas canvas;
14489            if (attachInfo != null) {
14490                canvas = attachInfo.mCanvas;
14491                if (canvas == null) {
14492                    canvas = new Canvas();
14493                }
14494                canvas.setBitmap(bitmap);
14495                // Temporarily clobber the cached Canvas in case one of our children
14496                // is also using a drawing cache. Without this, the children would
14497                // steal the canvas by attaching their own bitmap to it and bad, bad
14498                // thing would happen (invisible views, corrupted drawings, etc.)
14499                attachInfo.mCanvas = null;
14500            } else {
14501                // This case should hopefully never or seldom happen
14502                canvas = new Canvas(bitmap);
14503            }
14504
14505            if (clear) {
14506                bitmap.eraseColor(drawingCacheBackgroundColor);
14507            }
14508
14509            computeScroll();
14510            final int restoreCount = canvas.save();
14511
14512            if (autoScale && scalingRequired) {
14513                final float scale = attachInfo.mApplicationScale;
14514                canvas.scale(scale, scale);
14515            }
14516
14517            canvas.translate(-mScrollX, -mScrollY);
14518
14519            mPrivateFlags |= PFLAG_DRAWN;
14520            if (mAttachInfo == null || !mAttachInfo.mHardwareAccelerated ||
14521                    mLayerType != LAYER_TYPE_NONE) {
14522                mPrivateFlags |= PFLAG_DRAWING_CACHE_VALID;
14523            }
14524
14525            // Fast path for layouts with no backgrounds
14526            if ((mPrivateFlags & PFLAG_SKIP_DRAW) == PFLAG_SKIP_DRAW) {
14527                mPrivateFlags &= ~PFLAG_DIRTY_MASK;
14528                dispatchDraw(canvas);
14529                if (mOverlay != null && !mOverlay.isEmpty()) {
14530                    mOverlay.getOverlayView().draw(canvas);
14531                }
14532            } else {
14533                draw(canvas);
14534            }
14535
14536            canvas.restoreToCount(restoreCount);
14537            canvas.setBitmap(null);
14538
14539            if (attachInfo != null) {
14540                // Restore the cached Canvas for our siblings
14541                attachInfo.mCanvas = canvas;
14542            }
14543        }
14544    }
14545
14546    /**
14547     * Create a snapshot of the view into a bitmap.  We should probably make
14548     * some form of this public, but should think about the API.
14549     */
14550    Bitmap createSnapshot(Bitmap.Config quality, int backgroundColor, boolean skipChildren) {
14551        int width = mRight - mLeft;
14552        int height = mBottom - mTop;
14553
14554        final AttachInfo attachInfo = mAttachInfo;
14555        final float scale = attachInfo != null ? attachInfo.mApplicationScale : 1.0f;
14556        width = (int) ((width * scale) + 0.5f);
14557        height = (int) ((height * scale) + 0.5f);
14558
14559        Bitmap bitmap = Bitmap.createBitmap(mResources.getDisplayMetrics(),
14560                width > 0 ? width : 1, height > 0 ? height : 1, quality);
14561        if (bitmap == null) {
14562            throw new OutOfMemoryError();
14563        }
14564
14565        Resources resources = getResources();
14566        if (resources != null) {
14567            bitmap.setDensity(resources.getDisplayMetrics().densityDpi);
14568        }
14569
14570        Canvas canvas;
14571        if (attachInfo != null) {
14572            canvas = attachInfo.mCanvas;
14573            if (canvas == null) {
14574                canvas = new Canvas();
14575            }
14576            canvas.setBitmap(bitmap);
14577            // Temporarily clobber the cached Canvas in case one of our children
14578            // is also using a drawing cache. Without this, the children would
14579            // steal the canvas by attaching their own bitmap to it and bad, bad
14580            // things would happen (invisible views, corrupted drawings, etc.)
14581            attachInfo.mCanvas = null;
14582        } else {
14583            // This case should hopefully never or seldom happen
14584            canvas = new Canvas(bitmap);
14585        }
14586
14587        if ((backgroundColor & 0xff000000) != 0) {
14588            bitmap.eraseColor(backgroundColor);
14589        }
14590
14591        computeScroll();
14592        final int restoreCount = canvas.save();
14593        canvas.scale(scale, scale);
14594        canvas.translate(-mScrollX, -mScrollY);
14595
14596        // Temporarily remove the dirty mask
14597        int flags = mPrivateFlags;
14598        mPrivateFlags &= ~PFLAG_DIRTY_MASK;
14599
14600        // Fast path for layouts with no backgrounds
14601        if ((mPrivateFlags & PFLAG_SKIP_DRAW) == PFLAG_SKIP_DRAW) {
14602            dispatchDraw(canvas);
14603            if (mOverlay != null && !mOverlay.isEmpty()) {
14604                mOverlay.getOverlayView().draw(canvas);
14605            }
14606        } else {
14607            draw(canvas);
14608        }
14609
14610        mPrivateFlags = flags;
14611
14612        canvas.restoreToCount(restoreCount);
14613        canvas.setBitmap(null);
14614
14615        if (attachInfo != null) {
14616            // Restore the cached Canvas for our siblings
14617            attachInfo.mCanvas = canvas;
14618        }
14619
14620        return bitmap;
14621    }
14622
14623    /**
14624     * Indicates whether this View is currently in edit mode. A View is usually
14625     * in edit mode when displayed within a developer tool. For instance, if
14626     * this View is being drawn by a visual user interface builder, this method
14627     * should return true.
14628     *
14629     * Subclasses should check the return value of this method to provide
14630     * different behaviors if their normal behavior might interfere with the
14631     * host environment. For instance: the class spawns a thread in its
14632     * constructor, the drawing code relies on device-specific features, etc.
14633     *
14634     * This method is usually checked in the drawing code of custom widgets.
14635     *
14636     * @return True if this View is in edit mode, false otherwise.
14637     */
14638    public boolean isInEditMode() {
14639        return false;
14640    }
14641
14642    /**
14643     * If the View draws content inside its padding and enables fading edges,
14644     * it needs to support padding offsets. Padding offsets are added to the
14645     * fading edges to extend the length of the fade so that it covers pixels
14646     * drawn inside the padding.
14647     *
14648     * Subclasses of this class should override this method if they need
14649     * to draw content inside the padding.
14650     *
14651     * @return True if padding offset must be applied, false otherwise.
14652     *
14653     * @see #getLeftPaddingOffset()
14654     * @see #getRightPaddingOffset()
14655     * @see #getTopPaddingOffset()
14656     * @see #getBottomPaddingOffset()
14657     *
14658     * @since CURRENT
14659     */
14660    protected boolean isPaddingOffsetRequired() {
14661        return false;
14662    }
14663
14664    /**
14665     * Amount by which to extend the left fading region. Called only when
14666     * {@link #isPaddingOffsetRequired()} returns true.
14667     *
14668     * @return The left padding offset in pixels.
14669     *
14670     * @see #isPaddingOffsetRequired()
14671     *
14672     * @since CURRENT
14673     */
14674    protected int getLeftPaddingOffset() {
14675        return 0;
14676    }
14677
14678    /**
14679     * Amount by which to extend the right fading region. Called only when
14680     * {@link #isPaddingOffsetRequired()} returns true.
14681     *
14682     * @return The right padding offset in pixels.
14683     *
14684     * @see #isPaddingOffsetRequired()
14685     *
14686     * @since CURRENT
14687     */
14688    protected int getRightPaddingOffset() {
14689        return 0;
14690    }
14691
14692    /**
14693     * Amount by which to extend the top fading region. Called only when
14694     * {@link #isPaddingOffsetRequired()} returns true.
14695     *
14696     * @return The top padding offset in pixels.
14697     *
14698     * @see #isPaddingOffsetRequired()
14699     *
14700     * @since CURRENT
14701     */
14702    protected int getTopPaddingOffset() {
14703        return 0;
14704    }
14705
14706    /**
14707     * Amount by which to extend the bottom fading region. Called only when
14708     * {@link #isPaddingOffsetRequired()} returns true.
14709     *
14710     * @return The bottom padding offset in pixels.
14711     *
14712     * @see #isPaddingOffsetRequired()
14713     *
14714     * @since CURRENT
14715     */
14716    protected int getBottomPaddingOffset() {
14717        return 0;
14718    }
14719
14720    /**
14721     * @hide
14722     * @param offsetRequired
14723     */
14724    protected int getFadeTop(boolean offsetRequired) {
14725        int top = mPaddingTop;
14726        if (offsetRequired) top += getTopPaddingOffset();
14727        return top;
14728    }
14729
14730    /**
14731     * @hide
14732     * @param offsetRequired
14733     */
14734    protected int getFadeHeight(boolean offsetRequired) {
14735        int padding = mPaddingTop;
14736        if (offsetRequired) padding += getTopPaddingOffset();
14737        return mBottom - mTop - mPaddingBottom - padding;
14738    }
14739
14740    /**
14741     * <p>Indicates whether this view is attached to a hardware accelerated
14742     * window or not.</p>
14743     *
14744     * <p>Even if this method returns true, it does not mean that every call
14745     * to {@link #draw(android.graphics.Canvas)} will be made with an hardware
14746     * accelerated {@link android.graphics.Canvas}. For instance, if this view
14747     * is drawn onto an offscreen {@link android.graphics.Bitmap} and its
14748     * window is hardware accelerated,
14749     * {@link android.graphics.Canvas#isHardwareAccelerated()} will likely
14750     * return false, and this method will return true.</p>
14751     *
14752     * @return True if the view is attached to a window and the window is
14753     *         hardware accelerated; false in any other case.
14754     */
14755    @ViewDebug.ExportedProperty(category = "drawing")
14756    public boolean isHardwareAccelerated() {
14757        return mAttachInfo != null && mAttachInfo.mHardwareAccelerated;
14758    }
14759
14760    /**
14761     * Sets a rectangular area on this view to which the view will be clipped
14762     * when it is drawn. Setting the value to null will remove the clip bounds
14763     * and the view will draw normally, using its full bounds.
14764     *
14765     * @param clipBounds The rectangular area, in the local coordinates of
14766     * this view, to which future drawing operations will be clipped.
14767     */
14768    public void setClipBounds(Rect clipBounds) {
14769        if (clipBounds != null) {
14770            if (clipBounds.equals(mClipBounds)) {
14771                return;
14772            }
14773            if (mClipBounds == null) {
14774                invalidate();
14775                mClipBounds = new Rect(clipBounds);
14776            } else {
14777                invalidate(Math.min(mClipBounds.left, clipBounds.left),
14778                        Math.min(mClipBounds.top, clipBounds.top),
14779                        Math.max(mClipBounds.right, clipBounds.right),
14780                        Math.max(mClipBounds.bottom, clipBounds.bottom));
14781                mClipBounds.set(clipBounds);
14782            }
14783        } else {
14784            if (mClipBounds != null) {
14785                invalidate();
14786                mClipBounds = null;
14787            }
14788        }
14789        mRenderNode.setClipBounds(mClipBounds);
14790    }
14791
14792    /**
14793     * Returns a copy of the current {@link #setClipBounds(Rect) clipBounds}.
14794     *
14795     * @return A copy of the current clip bounds if clip bounds are set,
14796     * otherwise null.
14797     */
14798    public Rect getClipBounds() {
14799        return (mClipBounds != null) ? new Rect(mClipBounds) : null;
14800    }
14801
14802    /**
14803     * Utility function, called by draw(canvas, parent, drawingTime) to handle the less common
14804     * case of an active Animation being run on the view.
14805     */
14806    private boolean drawAnimation(ViewGroup parent, long drawingTime,
14807            Animation a, boolean scalingRequired) {
14808        Transformation invalidationTransform;
14809        final int flags = parent.mGroupFlags;
14810        final boolean initialized = a.isInitialized();
14811        if (!initialized) {
14812            a.initialize(mRight - mLeft, mBottom - mTop, parent.getWidth(), parent.getHeight());
14813            a.initializeInvalidateRegion(0, 0, mRight - mLeft, mBottom - mTop);
14814            if (mAttachInfo != null) a.setListenerHandler(mAttachInfo.mHandler);
14815            onAnimationStart();
14816        }
14817
14818        final Transformation t = parent.getChildTransformation();
14819        boolean more = a.getTransformation(drawingTime, t, 1f);
14820        if (scalingRequired && mAttachInfo.mApplicationScale != 1f) {
14821            if (parent.mInvalidationTransformation == null) {
14822                parent.mInvalidationTransformation = new Transformation();
14823            }
14824            invalidationTransform = parent.mInvalidationTransformation;
14825            a.getTransformation(drawingTime, invalidationTransform, 1f);
14826        } else {
14827            invalidationTransform = t;
14828        }
14829
14830        if (more) {
14831            if (!a.willChangeBounds()) {
14832                if ((flags & (ViewGroup.FLAG_OPTIMIZE_INVALIDATE | ViewGroup.FLAG_ANIMATION_DONE)) ==
14833                        ViewGroup.FLAG_OPTIMIZE_INVALIDATE) {
14834                    parent.mGroupFlags |= ViewGroup.FLAG_INVALIDATE_REQUIRED;
14835                } else if ((flags & ViewGroup.FLAG_INVALIDATE_REQUIRED) == 0) {
14836                    // The child need to draw an animation, potentially offscreen, so
14837                    // make sure we do not cancel invalidate requests
14838                    parent.mPrivateFlags |= PFLAG_DRAW_ANIMATION;
14839                    parent.invalidate(mLeft, mTop, mRight, mBottom);
14840                }
14841            } else {
14842                if (parent.mInvalidateRegion == null) {
14843                    parent.mInvalidateRegion = new RectF();
14844                }
14845                final RectF region = parent.mInvalidateRegion;
14846                a.getInvalidateRegion(0, 0, mRight - mLeft, mBottom - mTop, region,
14847                        invalidationTransform);
14848
14849                // The child need to draw an animation, potentially offscreen, so
14850                // make sure we do not cancel invalidate requests
14851                parent.mPrivateFlags |= PFLAG_DRAW_ANIMATION;
14852
14853                final int left = mLeft + (int) region.left;
14854                final int top = mTop + (int) region.top;
14855                parent.invalidate(left, top, left + (int) (region.width() + .5f),
14856                        top + (int) (region.height() + .5f));
14857            }
14858        }
14859        return more;
14860    }
14861
14862    /**
14863     * This method is called by getDisplayList() when a display list is recorded for a View.
14864     * It pushes any properties to the RenderNode that aren't managed by the RenderNode.
14865     */
14866    void setDisplayListProperties(RenderNode renderNode) {
14867        if (renderNode != null) {
14868            if ((mPrivateFlags3 & PFLAG3_OUTLINE_INVALID) != 0) {
14869                rebuildOutline();
14870                mPrivateFlags3 &= ~PFLAG3_OUTLINE_INVALID;
14871            }
14872            renderNode.setHasOverlappingRendering(hasOverlappingRendering());
14873            if (mParent instanceof ViewGroup) {
14874                renderNode.setClipToBounds(
14875                        (((ViewGroup) mParent).mGroupFlags & ViewGroup.FLAG_CLIP_CHILDREN) != 0);
14876            }
14877            float alpha = 1;
14878            if (mParent instanceof ViewGroup && (((ViewGroup) mParent).mGroupFlags &
14879                    ViewGroup.FLAG_SUPPORT_STATIC_TRANSFORMATIONS) != 0) {
14880                ViewGroup parentVG = (ViewGroup) mParent;
14881                final Transformation t = parentVG.getChildTransformation();
14882                if (parentVG.getChildStaticTransformation(this, t)) {
14883                    final int transformType = t.getTransformationType();
14884                    if (transformType != Transformation.TYPE_IDENTITY) {
14885                        if ((transformType & Transformation.TYPE_ALPHA) != 0) {
14886                            alpha = t.getAlpha();
14887                        }
14888                        if ((transformType & Transformation.TYPE_MATRIX) != 0) {
14889                            renderNode.setStaticMatrix(t.getMatrix());
14890                        }
14891                    }
14892                }
14893            }
14894            if (mTransformationInfo != null) {
14895                alpha *= getFinalAlpha();
14896                if (alpha < 1) {
14897                    final int multipliedAlpha = (int) (255 * alpha);
14898                    if (onSetAlpha(multipliedAlpha)) {
14899                        alpha = 1;
14900                    }
14901                }
14902                renderNode.setAlpha(alpha);
14903            } else if (alpha < 1) {
14904                renderNode.setAlpha(alpha);
14905            }
14906        }
14907    }
14908
14909    /**
14910     * This method is called by ViewGroup.drawChild() to have each child view draw itself.
14911     * This draw() method is an implementation detail and is not intended to be overridden or
14912     * to be called from anywhere else other than ViewGroup.drawChild().
14913     */
14914    boolean draw(Canvas canvas, ViewGroup parent, long drawingTime) {
14915        boolean usingRenderNodeProperties = mAttachInfo != null && mAttachInfo.mHardwareAccelerated;
14916        boolean more = false;
14917        final boolean childHasIdentityMatrix = hasIdentityMatrix();
14918        final int flags = parent.mGroupFlags;
14919
14920        if ((flags & ViewGroup.FLAG_CLEAR_TRANSFORMATION) == ViewGroup.FLAG_CLEAR_TRANSFORMATION) {
14921            parent.getChildTransformation().clear();
14922            parent.mGroupFlags &= ~ViewGroup.FLAG_CLEAR_TRANSFORMATION;
14923        }
14924
14925        Transformation transformToApply = null;
14926        boolean concatMatrix = false;
14927
14928        boolean scalingRequired = false;
14929        boolean caching;
14930        int layerType = getLayerType();
14931
14932        final boolean hardwareAccelerated = canvas.isHardwareAccelerated();
14933        if ((flags & ViewGroup.FLAG_CHILDREN_DRAWN_WITH_CACHE) != 0 ||
14934                (flags & ViewGroup.FLAG_ALWAYS_DRAWN_WITH_CACHE) != 0) {
14935            caching = true;
14936            // Auto-scaled apps are not hw-accelerated, no need to set scaling flag on DisplayList
14937            if (mAttachInfo != null) scalingRequired = mAttachInfo.mScalingRequired;
14938        } else {
14939            caching = (layerType != LAYER_TYPE_NONE) || hardwareAccelerated;
14940        }
14941
14942        final Animation a = getAnimation();
14943        if (a != null) {
14944            more = drawAnimation(parent, drawingTime, a, scalingRequired);
14945            concatMatrix = a.willChangeTransformationMatrix();
14946            if (concatMatrix) {
14947                mPrivateFlags3 |= PFLAG3_VIEW_IS_ANIMATING_TRANSFORM;
14948            }
14949            transformToApply = parent.getChildTransformation();
14950        } else {
14951            if ((mPrivateFlags3 & PFLAG3_VIEW_IS_ANIMATING_TRANSFORM) != 0) {
14952                // No longer animating: clear out old animation matrix
14953                mRenderNode.setAnimationMatrix(null);
14954                mPrivateFlags3 &= ~PFLAG3_VIEW_IS_ANIMATING_TRANSFORM;
14955            }
14956            if (!usingRenderNodeProperties &&
14957                    (flags & ViewGroup.FLAG_SUPPORT_STATIC_TRANSFORMATIONS) != 0) {
14958                final Transformation t = parent.getChildTransformation();
14959                final boolean hasTransform = parent.getChildStaticTransformation(this, t);
14960                if (hasTransform) {
14961                    final int transformType = t.getTransformationType();
14962                    transformToApply = transformType != Transformation.TYPE_IDENTITY ? t : null;
14963                    concatMatrix = (transformType & Transformation.TYPE_MATRIX) != 0;
14964                }
14965            }
14966        }
14967
14968        concatMatrix |= !childHasIdentityMatrix;
14969
14970        // Sets the flag as early as possible to allow draw() implementations
14971        // to call invalidate() successfully when doing animations
14972        mPrivateFlags |= PFLAG_DRAWN;
14973
14974        if (!concatMatrix &&
14975                (flags & (ViewGroup.FLAG_SUPPORT_STATIC_TRANSFORMATIONS |
14976                        ViewGroup.FLAG_CLIP_CHILDREN)) == ViewGroup.FLAG_CLIP_CHILDREN &&
14977                canvas.quickReject(mLeft, mTop, mRight, mBottom, Canvas.EdgeType.BW) &&
14978                (mPrivateFlags & PFLAG_DRAW_ANIMATION) == 0) {
14979            mPrivateFlags2 |= PFLAG2_VIEW_QUICK_REJECTED;
14980            return more;
14981        }
14982        mPrivateFlags2 &= ~PFLAG2_VIEW_QUICK_REJECTED;
14983
14984        if (hardwareAccelerated) {
14985            // Clear INVALIDATED flag to allow invalidation to occur during rendering, but
14986            // retain the flag's value temporarily in the mRecreateDisplayList flag
14987            mRecreateDisplayList = (mPrivateFlags & PFLAG_INVALIDATED) == PFLAG_INVALIDATED;
14988            mPrivateFlags &= ~PFLAG_INVALIDATED;
14989        }
14990
14991        RenderNode renderNode = null;
14992        Bitmap cache = null;
14993        boolean hasDisplayList = false;
14994        if (caching) {
14995            if (!hardwareAccelerated) {
14996                if (layerType != LAYER_TYPE_NONE) {
14997                    layerType = LAYER_TYPE_SOFTWARE;
14998                    buildDrawingCache(true);
14999                }
15000                cache = getDrawingCache(true);
15001            } else {
15002                switch (layerType) {
15003                    case LAYER_TYPE_SOFTWARE:
15004                        if (usingRenderNodeProperties) {
15005                            hasDisplayList = canHaveDisplayList();
15006                        } else {
15007                            buildDrawingCache(true);
15008                            cache = getDrawingCache(true);
15009                        }
15010                        break;
15011                    case LAYER_TYPE_HARDWARE:
15012                        if (usingRenderNodeProperties) {
15013                            hasDisplayList = canHaveDisplayList();
15014                        }
15015                        break;
15016                    case LAYER_TYPE_NONE:
15017                        // Delay getting the display list until animation-driven alpha values are
15018                        // set up and possibly passed on to the view
15019                        hasDisplayList = canHaveDisplayList();
15020                        break;
15021                }
15022            }
15023        }
15024        usingRenderNodeProperties &= hasDisplayList;
15025        if (usingRenderNodeProperties) {
15026            renderNode = getDisplayList();
15027            if (!renderNode.isValid()) {
15028                // Uncommon, but possible. If a view is removed from the hierarchy during the call
15029                // to getDisplayList(), the display list will be marked invalid and we should not
15030                // try to use it again.
15031                renderNode = null;
15032                hasDisplayList = false;
15033                usingRenderNodeProperties = false;
15034            }
15035        }
15036
15037        int sx = 0;
15038        int sy = 0;
15039        if (!hasDisplayList) {
15040            computeScroll();
15041            sx = mScrollX;
15042            sy = mScrollY;
15043        }
15044
15045        final boolean hasNoCache = cache == null || hasDisplayList;
15046        final boolean offsetForScroll = cache == null && !hasDisplayList &&
15047                layerType != LAYER_TYPE_HARDWARE;
15048
15049        int restoreTo = -1;
15050        if (!usingRenderNodeProperties || transformToApply != null) {
15051            restoreTo = canvas.save();
15052        }
15053        if (offsetForScroll) {
15054            canvas.translate(mLeft - sx, mTop - sy);
15055        } else {
15056            if (!usingRenderNodeProperties) {
15057                canvas.translate(mLeft, mTop);
15058            }
15059            if (scalingRequired) {
15060                if (usingRenderNodeProperties) {
15061                    // TODO: Might not need this if we put everything inside the DL
15062                    restoreTo = canvas.save();
15063                }
15064                // mAttachInfo cannot be null, otherwise scalingRequired == false
15065                final float scale = 1.0f / mAttachInfo.mApplicationScale;
15066                canvas.scale(scale, scale);
15067            }
15068        }
15069
15070        float alpha = usingRenderNodeProperties ? 1 : (getAlpha() * getTransitionAlpha());
15071        if (transformToApply != null || alpha < 1 ||  !hasIdentityMatrix() ||
15072                (mPrivateFlags3 & PFLAG3_VIEW_IS_ANIMATING_ALPHA) == PFLAG3_VIEW_IS_ANIMATING_ALPHA) {
15073            if (transformToApply != null || !childHasIdentityMatrix) {
15074                int transX = 0;
15075                int transY = 0;
15076
15077                if (offsetForScroll) {
15078                    transX = -sx;
15079                    transY = -sy;
15080                }
15081
15082                if (transformToApply != null) {
15083                    if (concatMatrix) {
15084                        if (usingRenderNodeProperties) {
15085                            renderNode.setAnimationMatrix(transformToApply.getMatrix());
15086                        } else {
15087                            // Undo the scroll translation, apply the transformation matrix,
15088                            // then redo the scroll translate to get the correct result.
15089                            canvas.translate(-transX, -transY);
15090                            canvas.concat(transformToApply.getMatrix());
15091                            canvas.translate(transX, transY);
15092                        }
15093                        parent.mGroupFlags |= ViewGroup.FLAG_CLEAR_TRANSFORMATION;
15094                    }
15095
15096                    float transformAlpha = transformToApply.getAlpha();
15097                    if (transformAlpha < 1) {
15098                        alpha *= transformAlpha;
15099                        parent.mGroupFlags |= ViewGroup.FLAG_CLEAR_TRANSFORMATION;
15100                    }
15101                }
15102
15103                if (!childHasIdentityMatrix && !usingRenderNodeProperties) {
15104                    canvas.translate(-transX, -transY);
15105                    canvas.concat(getMatrix());
15106                    canvas.translate(transX, transY);
15107                }
15108            }
15109
15110            // Deal with alpha if it is or used to be <1
15111            if (alpha < 1 ||
15112                    (mPrivateFlags3 & PFLAG3_VIEW_IS_ANIMATING_ALPHA) == PFLAG3_VIEW_IS_ANIMATING_ALPHA) {
15113                if (alpha < 1) {
15114                    mPrivateFlags3 |= PFLAG3_VIEW_IS_ANIMATING_ALPHA;
15115                } else {
15116                    mPrivateFlags3 &= ~PFLAG3_VIEW_IS_ANIMATING_ALPHA;
15117                }
15118                parent.mGroupFlags |= ViewGroup.FLAG_CLEAR_TRANSFORMATION;
15119                if (hasNoCache) {
15120                    final int multipliedAlpha = (int) (255 * alpha);
15121                    if (!onSetAlpha(multipliedAlpha)) {
15122                        int layerFlags = Canvas.HAS_ALPHA_LAYER_SAVE_FLAG;
15123                        if ((flags & ViewGroup.FLAG_CLIP_CHILDREN) != 0 ||
15124                                layerType != LAYER_TYPE_NONE) {
15125                            layerFlags |= Canvas.CLIP_TO_LAYER_SAVE_FLAG;
15126                        }
15127                        if (usingRenderNodeProperties) {
15128                            renderNode.setAlpha(alpha * getAlpha() * getTransitionAlpha());
15129                        } else  if (layerType == LAYER_TYPE_NONE) {
15130                            final int scrollX = hasDisplayList ? 0 : sx;
15131                            final int scrollY = hasDisplayList ? 0 : sy;
15132                            canvas.saveLayerAlpha(scrollX, scrollY,
15133                                    scrollX + (mRight - mLeft), scrollY + (mBottom - mTop),
15134                                    multipliedAlpha, layerFlags);
15135                        }
15136                    } else {
15137                        // Alpha is handled by the child directly, clobber the layer's alpha
15138                        mPrivateFlags |= PFLAG_ALPHA_SET;
15139                    }
15140                }
15141            }
15142        } else if ((mPrivateFlags & PFLAG_ALPHA_SET) == PFLAG_ALPHA_SET) {
15143            onSetAlpha(255);
15144            mPrivateFlags &= ~PFLAG_ALPHA_SET;
15145        }
15146
15147        if (!usingRenderNodeProperties) {
15148            // apply clips directly, since RenderNode won't do it for this draw
15149            if ((flags & ViewGroup.FLAG_CLIP_CHILDREN) == ViewGroup.FLAG_CLIP_CHILDREN
15150                    && cache == null) {
15151                if (offsetForScroll) {
15152                    canvas.clipRect(sx, sy, sx + (mRight - mLeft), sy + (mBottom - mTop));
15153                } else {
15154                    if (!scalingRequired || cache == null) {
15155                        canvas.clipRect(0, 0, mRight - mLeft, mBottom - mTop);
15156                    } else {
15157                        canvas.clipRect(0, 0, cache.getWidth(), cache.getHeight());
15158                    }
15159                }
15160            }
15161
15162            if (mClipBounds != null) {
15163                // clip bounds ignore scroll
15164                canvas.clipRect(mClipBounds);
15165            }
15166        }
15167
15168
15169
15170        if (!usingRenderNodeProperties && hasDisplayList) {
15171            renderNode = getDisplayList();
15172            if (!renderNode.isValid()) {
15173                // Uncommon, but possible. If a view is removed from the hierarchy during the call
15174                // to getDisplayList(), the display list will be marked invalid and we should not
15175                // try to use it again.
15176                renderNode = null;
15177                hasDisplayList = false;
15178            }
15179        }
15180
15181        if (hasNoCache) {
15182            boolean layerRendered = false;
15183            if (layerType == LAYER_TYPE_HARDWARE && !usingRenderNodeProperties) {
15184                final HardwareLayer layer = getHardwareLayer();
15185                if (layer != null && layer.isValid()) {
15186                    int restoreAlpha = mLayerPaint.getAlpha();
15187                    mLayerPaint.setAlpha((int) (alpha * 255));
15188                    ((HardwareCanvas) canvas).drawHardwareLayer(layer, 0, 0, mLayerPaint);
15189                    mLayerPaint.setAlpha(restoreAlpha);
15190                    layerRendered = true;
15191                } else {
15192                    final int scrollX = hasDisplayList ? 0 : sx;
15193                    final int scrollY = hasDisplayList ? 0 : sy;
15194                    canvas.saveLayer(scrollX, scrollY,
15195                            scrollX + mRight - mLeft, scrollY + mBottom - mTop, mLayerPaint,
15196                            Canvas.HAS_ALPHA_LAYER_SAVE_FLAG | Canvas.CLIP_TO_LAYER_SAVE_FLAG);
15197                }
15198            }
15199
15200            if (!layerRendered) {
15201                if (!hasDisplayList) {
15202                    // Fast path for layouts with no backgrounds
15203                    if ((mPrivateFlags & PFLAG_SKIP_DRAW) == PFLAG_SKIP_DRAW) {
15204                        mPrivateFlags &= ~PFLAG_DIRTY_MASK;
15205                        dispatchDraw(canvas);
15206                    } else {
15207                        draw(canvas);
15208                    }
15209                } else {
15210                    mPrivateFlags &= ~PFLAG_DIRTY_MASK;
15211                    ((HardwareCanvas) canvas).drawRenderNode(renderNode, null, flags);
15212                }
15213            }
15214        } else if (cache != null) {
15215            mPrivateFlags &= ~PFLAG_DIRTY_MASK;
15216            Paint cachePaint;
15217            int restoreAlpha = 0;
15218
15219            if (layerType == LAYER_TYPE_NONE) {
15220                cachePaint = parent.mCachePaint;
15221                if (cachePaint == null) {
15222                    cachePaint = new Paint();
15223                    cachePaint.setDither(false);
15224                    parent.mCachePaint = cachePaint;
15225                }
15226            } else {
15227                cachePaint = mLayerPaint;
15228                restoreAlpha = mLayerPaint.getAlpha();
15229            }
15230            cachePaint.setAlpha((int) (alpha * 255));
15231            canvas.drawBitmap(cache, 0.0f, 0.0f, cachePaint);
15232            cachePaint.setAlpha(restoreAlpha);
15233        }
15234
15235        if (restoreTo >= 0) {
15236            canvas.restoreToCount(restoreTo);
15237        }
15238
15239        if (a != null && !more) {
15240            if (!hardwareAccelerated && !a.getFillAfter()) {
15241                onSetAlpha(255);
15242            }
15243            parent.finishAnimatingView(this, a);
15244        }
15245
15246        if (more && hardwareAccelerated) {
15247            if (a.hasAlpha() && (mPrivateFlags & PFLAG_ALPHA_SET) == PFLAG_ALPHA_SET) {
15248                // alpha animations should cause the child to recreate its display list
15249                invalidate(true);
15250            }
15251        }
15252
15253        mRecreateDisplayList = false;
15254
15255        return more;
15256    }
15257
15258    /**
15259     * Manually render this view (and all of its children) to the given Canvas.
15260     * The view must have already done a full layout before this function is
15261     * called.  When implementing a view, implement
15262     * {@link #onDraw(android.graphics.Canvas)} instead of overriding this method.
15263     * If you do need to override this method, call the superclass version.
15264     *
15265     * @param canvas The Canvas to which the View is rendered.
15266     */
15267    public void draw(Canvas canvas) {
15268        final int privateFlags = mPrivateFlags;
15269        final boolean dirtyOpaque = (privateFlags & PFLAG_DIRTY_MASK) == PFLAG_DIRTY_OPAQUE &&
15270                (mAttachInfo == null || !mAttachInfo.mIgnoreDirtyState);
15271        mPrivateFlags = (privateFlags & ~PFLAG_DIRTY_MASK) | PFLAG_DRAWN;
15272
15273        /*
15274         * Draw traversal performs several drawing steps which must be executed
15275         * in the appropriate order:
15276         *
15277         *      1. Draw the background
15278         *      2. If necessary, save the canvas' layers to prepare for fading
15279         *      3. Draw view's content
15280         *      4. Draw children
15281         *      5. If necessary, draw the fading edges and restore layers
15282         *      6. Draw decorations (scrollbars for instance)
15283         */
15284
15285        // Step 1, draw the background, if needed
15286        int saveCount;
15287
15288        if (!dirtyOpaque) {
15289            drawBackground(canvas);
15290        }
15291
15292        // skip step 2 & 5 if possible (common case)
15293        final int viewFlags = mViewFlags;
15294        boolean horizontalEdges = (viewFlags & FADING_EDGE_HORIZONTAL) != 0;
15295        boolean verticalEdges = (viewFlags & FADING_EDGE_VERTICAL) != 0;
15296        if (!verticalEdges && !horizontalEdges) {
15297            // Step 3, draw the content
15298            if (!dirtyOpaque) onDraw(canvas);
15299
15300            // Step 4, draw the children
15301            dispatchDraw(canvas);
15302
15303            // Step 6, draw decorations (scrollbars)
15304            onDrawScrollBars(canvas);
15305
15306            if (mOverlay != null && !mOverlay.isEmpty()) {
15307                mOverlay.getOverlayView().dispatchDraw(canvas);
15308            }
15309
15310            // we're done...
15311            return;
15312        }
15313
15314        /*
15315         * Here we do the full fledged routine...
15316         * (this is an uncommon case where speed matters less,
15317         * this is why we repeat some of the tests that have been
15318         * done above)
15319         */
15320
15321        boolean drawTop = false;
15322        boolean drawBottom = false;
15323        boolean drawLeft = false;
15324        boolean drawRight = false;
15325
15326        float topFadeStrength = 0.0f;
15327        float bottomFadeStrength = 0.0f;
15328        float leftFadeStrength = 0.0f;
15329        float rightFadeStrength = 0.0f;
15330
15331        // Step 2, save the canvas' layers
15332        int paddingLeft = mPaddingLeft;
15333
15334        final boolean offsetRequired = isPaddingOffsetRequired();
15335        if (offsetRequired) {
15336            paddingLeft += getLeftPaddingOffset();
15337        }
15338
15339        int left = mScrollX + paddingLeft;
15340        int right = left + mRight - mLeft - mPaddingRight - paddingLeft;
15341        int top = mScrollY + getFadeTop(offsetRequired);
15342        int bottom = top + getFadeHeight(offsetRequired);
15343
15344        if (offsetRequired) {
15345            right += getRightPaddingOffset();
15346            bottom += getBottomPaddingOffset();
15347        }
15348
15349        final ScrollabilityCache scrollabilityCache = mScrollCache;
15350        final float fadeHeight = scrollabilityCache.fadingEdgeLength;
15351        int length = (int) fadeHeight;
15352
15353        // clip the fade length if top and bottom fades overlap
15354        // overlapping fades produce odd-looking artifacts
15355        if (verticalEdges && (top + length > bottom - length)) {
15356            length = (bottom - top) / 2;
15357        }
15358
15359        // also clip horizontal fades if necessary
15360        if (horizontalEdges && (left + length > right - length)) {
15361            length = (right - left) / 2;
15362        }
15363
15364        if (verticalEdges) {
15365            topFadeStrength = Math.max(0.0f, Math.min(1.0f, getTopFadingEdgeStrength()));
15366            drawTop = topFadeStrength * fadeHeight > 1.0f;
15367            bottomFadeStrength = Math.max(0.0f, Math.min(1.0f, getBottomFadingEdgeStrength()));
15368            drawBottom = bottomFadeStrength * fadeHeight > 1.0f;
15369        }
15370
15371        if (horizontalEdges) {
15372            leftFadeStrength = Math.max(0.0f, Math.min(1.0f, getLeftFadingEdgeStrength()));
15373            drawLeft = leftFadeStrength * fadeHeight > 1.0f;
15374            rightFadeStrength = Math.max(0.0f, Math.min(1.0f, getRightFadingEdgeStrength()));
15375            drawRight = rightFadeStrength * fadeHeight > 1.0f;
15376        }
15377
15378        saveCount = canvas.getSaveCount();
15379
15380        int solidColor = getSolidColor();
15381        if (solidColor == 0) {
15382            final int flags = Canvas.HAS_ALPHA_LAYER_SAVE_FLAG;
15383
15384            if (drawTop) {
15385                canvas.saveLayer(left, top, right, top + length, null, flags);
15386            }
15387
15388            if (drawBottom) {
15389                canvas.saveLayer(left, bottom - length, right, bottom, null, flags);
15390            }
15391
15392            if (drawLeft) {
15393                canvas.saveLayer(left, top, left + length, bottom, null, flags);
15394            }
15395
15396            if (drawRight) {
15397                canvas.saveLayer(right - length, top, right, bottom, null, flags);
15398            }
15399        } else {
15400            scrollabilityCache.setFadeColor(solidColor);
15401        }
15402
15403        // Step 3, draw the content
15404        if (!dirtyOpaque) onDraw(canvas);
15405
15406        // Step 4, draw the children
15407        dispatchDraw(canvas);
15408
15409        // Step 5, draw the fade effect and restore layers
15410        final Paint p = scrollabilityCache.paint;
15411        final Matrix matrix = scrollabilityCache.matrix;
15412        final Shader fade = scrollabilityCache.shader;
15413
15414        if (drawTop) {
15415            matrix.setScale(1, fadeHeight * topFadeStrength);
15416            matrix.postTranslate(left, top);
15417            fade.setLocalMatrix(matrix);
15418            p.setShader(fade);
15419            canvas.drawRect(left, top, right, top + length, p);
15420        }
15421
15422        if (drawBottom) {
15423            matrix.setScale(1, fadeHeight * bottomFadeStrength);
15424            matrix.postRotate(180);
15425            matrix.postTranslate(left, bottom);
15426            fade.setLocalMatrix(matrix);
15427            p.setShader(fade);
15428            canvas.drawRect(left, bottom - length, right, bottom, p);
15429        }
15430
15431        if (drawLeft) {
15432            matrix.setScale(1, fadeHeight * leftFadeStrength);
15433            matrix.postRotate(-90);
15434            matrix.postTranslate(left, top);
15435            fade.setLocalMatrix(matrix);
15436            p.setShader(fade);
15437            canvas.drawRect(left, top, left + length, bottom, p);
15438        }
15439
15440        if (drawRight) {
15441            matrix.setScale(1, fadeHeight * rightFadeStrength);
15442            matrix.postRotate(90);
15443            matrix.postTranslate(right, top);
15444            fade.setLocalMatrix(matrix);
15445            p.setShader(fade);
15446            canvas.drawRect(right - length, top, right, bottom, p);
15447        }
15448
15449        canvas.restoreToCount(saveCount);
15450
15451        // Step 6, draw decorations (scrollbars)
15452        onDrawScrollBars(canvas);
15453
15454        if (mOverlay != null && !mOverlay.isEmpty()) {
15455            mOverlay.getOverlayView().dispatchDraw(canvas);
15456        }
15457    }
15458
15459    /**
15460     * Draws the background onto the specified canvas.
15461     *
15462     * @param canvas Canvas on which to draw the background
15463     */
15464    private void drawBackground(Canvas canvas) {
15465        final Drawable background = mBackground;
15466        if (background == null) {
15467            return;
15468        }
15469
15470        if (mBackgroundSizeChanged) {
15471            background.setBounds(0, 0,  mRight - mLeft, mBottom - mTop);
15472            mBackgroundSizeChanged = false;
15473            mPrivateFlags3 |= PFLAG3_OUTLINE_INVALID;
15474        }
15475
15476        // Attempt to use a display list if requested.
15477        if (canvas.isHardwareAccelerated() && mAttachInfo != null
15478                && mAttachInfo.mHardwareRenderer != null) {
15479            mBackgroundRenderNode = getDrawableRenderNode(background, mBackgroundRenderNode);
15480
15481            final RenderNode displayList = mBackgroundRenderNode;
15482            if (displayList != null && displayList.isValid()) {
15483                setBackgroundDisplayListProperties(displayList);
15484                ((HardwareCanvas) canvas).drawRenderNode(displayList);
15485                return;
15486            }
15487        }
15488
15489        final int scrollX = mScrollX;
15490        final int scrollY = mScrollY;
15491        if ((scrollX | scrollY) == 0) {
15492            background.draw(canvas);
15493        } else {
15494            canvas.translate(scrollX, scrollY);
15495            background.draw(canvas);
15496            canvas.translate(-scrollX, -scrollY);
15497        }
15498    }
15499
15500    /**
15501     * Set up background drawable display list properties.
15502     *
15503     * @param displayList Valid display list for the background drawable
15504     */
15505    private void setBackgroundDisplayListProperties(RenderNode displayList) {
15506        displayList.setTranslationX(mScrollX);
15507        displayList.setTranslationY(mScrollY);
15508    }
15509
15510    /**
15511     * Creates a new display list or updates the existing display list for the
15512     * specified Drawable.
15513     *
15514     * @param drawable Drawable for which to create a display list
15515     * @param renderNode Existing RenderNode, or {@code null}
15516     * @return A valid display list for the specified drawable
15517     */
15518    private RenderNode getDrawableRenderNode(Drawable drawable, RenderNode renderNode) {
15519        if (renderNode == null) {
15520            renderNode = RenderNode.create(drawable.getClass().getName(), this);
15521        }
15522
15523        final Rect bounds = drawable.getBounds();
15524        final int width = bounds.width();
15525        final int height = bounds.height();
15526        final HardwareCanvas canvas = renderNode.start(width, height);
15527        try {
15528            drawable.draw(canvas);
15529        } finally {
15530            renderNode.end(canvas);
15531        }
15532
15533        // Set up drawable properties that are view-independent.
15534        renderNode.setLeftTopRightBottom(bounds.left, bounds.top, bounds.right, bounds.bottom);
15535        renderNode.setProjectBackwards(drawable.isProjected());
15536        renderNode.setProjectionReceiver(true);
15537        renderNode.setClipToBounds(false);
15538        return renderNode;
15539    }
15540
15541    /**
15542     * Returns the overlay for this view, creating it if it does not yet exist.
15543     * Adding drawables to the overlay will cause them to be displayed whenever
15544     * the view itself is redrawn. Objects in the overlay should be actively
15545     * managed: remove them when they should not be displayed anymore. The
15546     * overlay will always have the same size as its host view.
15547     *
15548     * <p>Note: Overlays do not currently work correctly with {@link
15549     * SurfaceView} or {@link TextureView}; contents in overlays for these
15550     * types of views may not display correctly.</p>
15551     *
15552     * @return The ViewOverlay object for this view.
15553     * @see ViewOverlay
15554     */
15555    public ViewOverlay getOverlay() {
15556        if (mOverlay == null) {
15557            mOverlay = new ViewOverlay(mContext, this);
15558        }
15559        return mOverlay;
15560    }
15561
15562    /**
15563     * Override this if your view is known to always be drawn on top of a solid color background,
15564     * and needs to draw fading edges. Returning a non-zero color enables the view system to
15565     * optimize the drawing of the fading edges. If you do return a non-zero color, the alpha
15566     * should be set to 0xFF.
15567     *
15568     * @see #setVerticalFadingEdgeEnabled(boolean)
15569     * @see #setHorizontalFadingEdgeEnabled(boolean)
15570     *
15571     * @return The known solid color background for this view, or 0 if the color may vary
15572     */
15573    @ViewDebug.ExportedProperty(category = "drawing")
15574    public int getSolidColor() {
15575        return 0;
15576    }
15577
15578    /**
15579     * Build a human readable string representation of the specified view flags.
15580     *
15581     * @param flags the view flags to convert to a string
15582     * @return a String representing the supplied flags
15583     */
15584    private static String printFlags(int flags) {
15585        String output = "";
15586        int numFlags = 0;
15587        if ((flags & FOCUSABLE_MASK) == FOCUSABLE) {
15588            output += "TAKES_FOCUS";
15589            numFlags++;
15590        }
15591
15592        switch (flags & VISIBILITY_MASK) {
15593        case INVISIBLE:
15594            if (numFlags > 0) {
15595                output += " ";
15596            }
15597            output += "INVISIBLE";
15598            // USELESS HERE numFlags++;
15599            break;
15600        case GONE:
15601            if (numFlags > 0) {
15602                output += " ";
15603            }
15604            output += "GONE";
15605            // USELESS HERE numFlags++;
15606            break;
15607        default:
15608            break;
15609        }
15610        return output;
15611    }
15612
15613    /**
15614     * Build a human readable string representation of the specified private
15615     * view flags.
15616     *
15617     * @param privateFlags the private view flags to convert to a string
15618     * @return a String representing the supplied flags
15619     */
15620    private static String printPrivateFlags(int privateFlags) {
15621        String output = "";
15622        int numFlags = 0;
15623
15624        if ((privateFlags & PFLAG_WANTS_FOCUS) == PFLAG_WANTS_FOCUS) {
15625            output += "WANTS_FOCUS";
15626            numFlags++;
15627        }
15628
15629        if ((privateFlags & PFLAG_FOCUSED) == PFLAG_FOCUSED) {
15630            if (numFlags > 0) {
15631                output += " ";
15632            }
15633            output += "FOCUSED";
15634            numFlags++;
15635        }
15636
15637        if ((privateFlags & PFLAG_SELECTED) == PFLAG_SELECTED) {
15638            if (numFlags > 0) {
15639                output += " ";
15640            }
15641            output += "SELECTED";
15642            numFlags++;
15643        }
15644
15645        if ((privateFlags & PFLAG_IS_ROOT_NAMESPACE) == PFLAG_IS_ROOT_NAMESPACE) {
15646            if (numFlags > 0) {
15647                output += " ";
15648            }
15649            output += "IS_ROOT_NAMESPACE";
15650            numFlags++;
15651        }
15652
15653        if ((privateFlags & PFLAG_HAS_BOUNDS) == PFLAG_HAS_BOUNDS) {
15654            if (numFlags > 0) {
15655                output += " ";
15656            }
15657            output += "HAS_BOUNDS";
15658            numFlags++;
15659        }
15660
15661        if ((privateFlags & PFLAG_DRAWN) == PFLAG_DRAWN) {
15662            if (numFlags > 0) {
15663                output += " ";
15664            }
15665            output += "DRAWN";
15666            // USELESS HERE numFlags++;
15667        }
15668        return output;
15669    }
15670
15671    /**
15672     * <p>Indicates whether or not this view's layout will be requested during
15673     * the next hierarchy layout pass.</p>
15674     *
15675     * @return true if the layout will be forced during next layout pass
15676     */
15677    public boolean isLayoutRequested() {
15678        return (mPrivateFlags & PFLAG_FORCE_LAYOUT) == PFLAG_FORCE_LAYOUT;
15679    }
15680
15681    /**
15682     * Return true if o is a ViewGroup that is laying out using optical bounds.
15683     * @hide
15684     */
15685    public static boolean isLayoutModeOptical(Object o) {
15686        return o instanceof ViewGroup && ((ViewGroup) o).isLayoutModeOptical();
15687    }
15688
15689    private boolean setOpticalFrame(int left, int top, int right, int bottom) {
15690        Insets parentInsets = mParent instanceof View ?
15691                ((View) mParent).getOpticalInsets() : Insets.NONE;
15692        Insets childInsets = getOpticalInsets();
15693        return setFrame(
15694                left   + parentInsets.left - childInsets.left,
15695                top    + parentInsets.top  - childInsets.top,
15696                right  + parentInsets.left + childInsets.right,
15697                bottom + parentInsets.top  + childInsets.bottom);
15698    }
15699
15700    /**
15701     * Assign a size and position to a view and all of its
15702     * descendants
15703     *
15704     * <p>This is the second phase of the layout mechanism.
15705     * (The first is measuring). In this phase, each parent calls
15706     * layout on all of its children to position them.
15707     * This is typically done using the child measurements
15708     * that were stored in the measure pass().</p>
15709     *
15710     * <p>Derived classes should not override this method.
15711     * Derived classes with children should override
15712     * onLayout. In that method, they should
15713     * call layout on each of their children.</p>
15714     *
15715     * @param l Left position, relative to parent
15716     * @param t Top position, relative to parent
15717     * @param r Right position, relative to parent
15718     * @param b Bottom position, relative to parent
15719     */
15720    @SuppressWarnings({"unchecked"})
15721    public void layout(int l, int t, int r, int b) {
15722        if ((mPrivateFlags3 & PFLAG3_MEASURE_NEEDED_BEFORE_LAYOUT) != 0) {
15723            onMeasure(mOldWidthMeasureSpec, mOldHeightMeasureSpec);
15724            mPrivateFlags3 &= ~PFLAG3_MEASURE_NEEDED_BEFORE_LAYOUT;
15725        }
15726
15727        int oldL = mLeft;
15728        int oldT = mTop;
15729        int oldB = mBottom;
15730        int oldR = mRight;
15731
15732        boolean changed = isLayoutModeOptical(mParent) ?
15733                setOpticalFrame(l, t, r, b) : setFrame(l, t, r, b);
15734
15735        if (changed || (mPrivateFlags & PFLAG_LAYOUT_REQUIRED) == PFLAG_LAYOUT_REQUIRED) {
15736            onLayout(changed, l, t, r, b);
15737            mPrivateFlags &= ~PFLAG_LAYOUT_REQUIRED;
15738
15739            ListenerInfo li = mListenerInfo;
15740            if (li != null && li.mOnLayoutChangeListeners != null) {
15741                ArrayList<OnLayoutChangeListener> listenersCopy =
15742                        (ArrayList<OnLayoutChangeListener>)li.mOnLayoutChangeListeners.clone();
15743                int numListeners = listenersCopy.size();
15744                for (int i = 0; i < numListeners; ++i) {
15745                    listenersCopy.get(i).onLayoutChange(this, l, t, r, b, oldL, oldT, oldR, oldB);
15746                }
15747            }
15748        }
15749
15750        mPrivateFlags &= ~PFLAG_FORCE_LAYOUT;
15751        mPrivateFlags3 |= PFLAG3_IS_LAID_OUT;
15752    }
15753
15754    /**
15755     * Called from layout when this view should
15756     * assign a size and position to each of its children.
15757     *
15758     * Derived classes with children should override
15759     * this method and call layout on each of
15760     * their children.
15761     * @param changed This is a new size or position for this view
15762     * @param left Left position, relative to parent
15763     * @param top Top position, relative to parent
15764     * @param right Right position, relative to parent
15765     * @param bottom Bottom position, relative to parent
15766     */
15767    protected void onLayout(boolean changed, int left, int top, int right, int bottom) {
15768    }
15769
15770    /**
15771     * Assign a size and position to this view.
15772     *
15773     * This is called from layout.
15774     *
15775     * @param left Left position, relative to parent
15776     * @param top Top position, relative to parent
15777     * @param right Right position, relative to parent
15778     * @param bottom Bottom position, relative to parent
15779     * @return true if the new size and position are different than the
15780     *         previous ones
15781     * {@hide}
15782     */
15783    protected boolean setFrame(int left, int top, int right, int bottom) {
15784        boolean changed = false;
15785
15786        if (DBG) {
15787            Log.d("View", this + " View.setFrame(" + left + "," + top + ","
15788                    + right + "," + bottom + ")");
15789        }
15790
15791        if (mLeft != left || mRight != right || mTop != top || mBottom != bottom) {
15792            changed = true;
15793
15794            // Remember our drawn bit
15795            int drawn = mPrivateFlags & PFLAG_DRAWN;
15796
15797            int oldWidth = mRight - mLeft;
15798            int oldHeight = mBottom - mTop;
15799            int newWidth = right - left;
15800            int newHeight = bottom - top;
15801            boolean sizeChanged = (newWidth != oldWidth) || (newHeight != oldHeight);
15802
15803            // Invalidate our old position
15804            invalidate(sizeChanged);
15805
15806            mLeft = left;
15807            mTop = top;
15808            mRight = right;
15809            mBottom = bottom;
15810            mRenderNode.setLeftTopRightBottom(mLeft, mTop, mRight, mBottom);
15811
15812            mPrivateFlags |= PFLAG_HAS_BOUNDS;
15813
15814
15815            if (sizeChanged) {
15816                sizeChange(newWidth, newHeight, oldWidth, oldHeight);
15817            }
15818
15819            if ((mViewFlags & VISIBILITY_MASK) == VISIBLE || mGhostView != null) {
15820                // If we are visible, force the DRAWN bit to on so that
15821                // this invalidate will go through (at least to our parent).
15822                // This is because someone may have invalidated this view
15823                // before this call to setFrame came in, thereby clearing
15824                // the DRAWN bit.
15825                mPrivateFlags |= PFLAG_DRAWN;
15826                invalidate(sizeChanged);
15827                // parent display list may need to be recreated based on a change in the bounds
15828                // of any child
15829                invalidateParentCaches();
15830            }
15831
15832            // Reset drawn bit to original value (invalidate turns it off)
15833            mPrivateFlags |= drawn;
15834
15835            mBackgroundSizeChanged = true;
15836
15837            notifySubtreeAccessibilityStateChangedIfNeeded();
15838        }
15839        return changed;
15840    }
15841
15842    /**
15843     * Same as setFrame, but public and hidden. For use in {@link android.transition.ChangeBounds}.
15844     * @hide
15845     */
15846    public void setLeftTopRightBottom(int left, int top, int right, int bottom) {
15847        setFrame(left, top, right, bottom);
15848    }
15849
15850    private void sizeChange(int newWidth, int newHeight, int oldWidth, int oldHeight) {
15851        onSizeChanged(newWidth, newHeight, oldWidth, oldHeight);
15852        if (mOverlay != null) {
15853            mOverlay.getOverlayView().setRight(newWidth);
15854            mOverlay.getOverlayView().setBottom(newHeight);
15855        }
15856        mPrivateFlags3 |= PFLAG3_OUTLINE_INVALID;
15857    }
15858
15859    /**
15860     * Finalize inflating a view from XML.  This is called as the last phase
15861     * of inflation, after all child views have been added.
15862     *
15863     * <p>Even if the subclass overrides onFinishInflate, they should always be
15864     * sure to call the super method, so that we get called.
15865     */
15866    protected void onFinishInflate() {
15867    }
15868
15869    /**
15870     * Returns the resources associated with this view.
15871     *
15872     * @return Resources object.
15873     */
15874    public Resources getResources() {
15875        return mResources;
15876    }
15877
15878    /**
15879     * Invalidates the specified Drawable.
15880     *
15881     * @param drawable the drawable to invalidate
15882     */
15883    @Override
15884    public void invalidateDrawable(@NonNull Drawable drawable) {
15885        if (verifyDrawable(drawable)) {
15886            final Rect dirty = drawable.getDirtyBounds();
15887            final int scrollX = mScrollX;
15888            final int scrollY = mScrollY;
15889
15890            invalidate(dirty.left + scrollX, dirty.top + scrollY,
15891                    dirty.right + scrollX, dirty.bottom + scrollY);
15892
15893            mPrivateFlags3 |= PFLAG3_OUTLINE_INVALID;
15894        }
15895    }
15896
15897    /**
15898     * Schedules an action on a drawable to occur at a specified time.
15899     *
15900     * @param who the recipient of the action
15901     * @param what the action to run on the drawable
15902     * @param when the time at which the action must occur. Uses the
15903     *        {@link SystemClock#uptimeMillis} timebase.
15904     */
15905    @Override
15906    public void scheduleDrawable(Drawable who, Runnable what, long when) {
15907        if (verifyDrawable(who) && what != null) {
15908            final long delay = when - SystemClock.uptimeMillis();
15909            if (mAttachInfo != null) {
15910                mAttachInfo.mViewRootImpl.mChoreographer.postCallbackDelayed(
15911                        Choreographer.CALLBACK_ANIMATION, what, who,
15912                        Choreographer.subtractFrameDelay(delay));
15913            } else {
15914                ViewRootImpl.getRunQueue().postDelayed(what, delay);
15915            }
15916        }
15917    }
15918
15919    /**
15920     * Cancels a scheduled action on a drawable.
15921     *
15922     * @param who the recipient of the action
15923     * @param what the action to cancel
15924     */
15925    @Override
15926    public void unscheduleDrawable(Drawable who, Runnable what) {
15927        if (verifyDrawable(who) && what != null) {
15928            if (mAttachInfo != null) {
15929                mAttachInfo.mViewRootImpl.mChoreographer.removeCallbacks(
15930                        Choreographer.CALLBACK_ANIMATION, what, who);
15931            }
15932            ViewRootImpl.getRunQueue().removeCallbacks(what);
15933        }
15934    }
15935
15936    /**
15937     * Unschedule any events associated with the given Drawable.  This can be
15938     * used when selecting a new Drawable into a view, so that the previous
15939     * one is completely unscheduled.
15940     *
15941     * @param who The Drawable to unschedule.
15942     *
15943     * @see #drawableStateChanged
15944     */
15945    public void unscheduleDrawable(Drawable who) {
15946        if (mAttachInfo != null && who != null) {
15947            mAttachInfo.mViewRootImpl.mChoreographer.removeCallbacks(
15948                    Choreographer.CALLBACK_ANIMATION, null, who);
15949        }
15950    }
15951
15952    /**
15953     * Resolve the Drawables depending on the layout direction. This is implicitly supposing
15954     * that the View directionality can and will be resolved before its Drawables.
15955     *
15956     * Will call {@link View#onResolveDrawables} when resolution is done.
15957     *
15958     * @hide
15959     */
15960    protected void resolveDrawables() {
15961        // Drawables resolution may need to happen before resolving the layout direction (which is
15962        // done only during the measure() call).
15963        // If the layout direction is not resolved yet, we cannot resolve the Drawables except in
15964        // one case: when the raw layout direction has not been defined as LAYOUT_DIRECTION_INHERIT.
15965        // So, if the raw layout direction is LAYOUT_DIRECTION_LTR or LAYOUT_DIRECTION_RTL or
15966        // LAYOUT_DIRECTION_LOCALE, we can "cheat" and we don't need to wait for the layout
15967        // direction to be resolved as its resolved value will be the same as its raw value.
15968        if (!isLayoutDirectionResolved() &&
15969                getRawLayoutDirection() == View.LAYOUT_DIRECTION_INHERIT) {
15970            return;
15971        }
15972
15973        final int layoutDirection = isLayoutDirectionResolved() ?
15974                getLayoutDirection() : getRawLayoutDirection();
15975
15976        if (mBackground != null) {
15977            mBackground.setLayoutDirection(layoutDirection);
15978        }
15979        mPrivateFlags2 |= PFLAG2_DRAWABLE_RESOLVED;
15980        onResolveDrawables(layoutDirection);
15981    }
15982
15983    /**
15984     * Called when layout direction has been resolved.
15985     *
15986     * The default implementation does nothing.
15987     *
15988     * @param layoutDirection The resolved layout direction.
15989     *
15990     * @see #LAYOUT_DIRECTION_LTR
15991     * @see #LAYOUT_DIRECTION_RTL
15992     *
15993     * @hide
15994     */
15995    public void onResolveDrawables(@ResolvedLayoutDir int layoutDirection) {
15996    }
15997
15998    /**
15999     * @hide
16000     */
16001    protected void resetResolvedDrawables() {
16002        mPrivateFlags2 &= ~PFLAG2_DRAWABLE_RESOLVED;
16003    }
16004
16005    private boolean isDrawablesResolved() {
16006        return (mPrivateFlags2 & PFLAG2_DRAWABLE_RESOLVED) == PFLAG2_DRAWABLE_RESOLVED;
16007    }
16008
16009    /**
16010     * If your view subclass is displaying its own Drawable objects, it should
16011     * override this function and return true for any Drawable it is
16012     * displaying.  This allows animations for those drawables to be
16013     * scheduled.
16014     *
16015     * <p>Be sure to call through to the super class when overriding this
16016     * function.
16017     *
16018     * @param who The Drawable to verify.  Return true if it is one you are
16019     *            displaying, else return the result of calling through to the
16020     *            super class.
16021     *
16022     * @return boolean If true than the Drawable is being displayed in the
16023     *         view; else false and it is not allowed to animate.
16024     *
16025     * @see #unscheduleDrawable(android.graphics.drawable.Drawable)
16026     * @see #drawableStateChanged()
16027     */
16028    protected boolean verifyDrawable(Drawable who) {
16029        return who == mBackground;
16030    }
16031
16032    /**
16033     * This function is called whenever the state of the view changes in such
16034     * a way that it impacts the state of drawables being shown.
16035     * <p>
16036     * If the View has a StateListAnimator, it will also be called to run necessary state
16037     * change animations.
16038     * <p>
16039     * Be sure to call through to the superclass when overriding this function.
16040     *
16041     * @see Drawable#setState(int[])
16042     */
16043    protected void drawableStateChanged() {
16044        final Drawable d = mBackground;
16045        if (d != null && d.isStateful()) {
16046            d.setState(getDrawableState());
16047        }
16048
16049        if (mStateListAnimator != null) {
16050            mStateListAnimator.setState(getDrawableState());
16051        }
16052    }
16053
16054    /**
16055     * This function is called whenever the view hotspot changes and needs to
16056     * be propagated to drawables managed by the view.
16057     * <p>
16058     * Be sure to call through to the superclass when overriding this function.
16059     *
16060     * @param x hotspot x coordinate
16061     * @param y hotspot y coordinate
16062     */
16063    public void drawableHotspotChanged(float x, float y) {
16064        if (mBackground != null) {
16065            mBackground.setHotspot(x, y);
16066        }
16067    }
16068
16069    /**
16070     * Call this to force a view to update its drawable state. This will cause
16071     * drawableStateChanged to be called on this view. Views that are interested
16072     * in the new state should call getDrawableState.
16073     *
16074     * @see #drawableStateChanged
16075     * @see #getDrawableState
16076     */
16077    public void refreshDrawableState() {
16078        mPrivateFlags |= PFLAG_DRAWABLE_STATE_DIRTY;
16079        drawableStateChanged();
16080
16081        ViewParent parent = mParent;
16082        if (parent != null) {
16083            parent.childDrawableStateChanged(this);
16084        }
16085    }
16086
16087    /**
16088     * Return an array of resource IDs of the drawable states representing the
16089     * current state of the view.
16090     *
16091     * @return The current drawable state
16092     *
16093     * @see Drawable#setState(int[])
16094     * @see #drawableStateChanged()
16095     * @see #onCreateDrawableState(int)
16096     */
16097    public final int[] getDrawableState() {
16098        if ((mDrawableState != null) && ((mPrivateFlags & PFLAG_DRAWABLE_STATE_DIRTY) == 0)) {
16099            return mDrawableState;
16100        } else {
16101            mDrawableState = onCreateDrawableState(0);
16102            mPrivateFlags &= ~PFLAG_DRAWABLE_STATE_DIRTY;
16103            return mDrawableState;
16104        }
16105    }
16106
16107    /**
16108     * Generate the new {@link android.graphics.drawable.Drawable} state for
16109     * this view. This is called by the view
16110     * system when the cached Drawable state is determined to be invalid.  To
16111     * retrieve the current state, you should use {@link #getDrawableState}.
16112     *
16113     * @param extraSpace if non-zero, this is the number of extra entries you
16114     * would like in the returned array in which you can place your own
16115     * states.
16116     *
16117     * @return Returns an array holding the current {@link Drawable} state of
16118     * the view.
16119     *
16120     * @see #mergeDrawableStates(int[], int[])
16121     */
16122    protected int[] onCreateDrawableState(int extraSpace) {
16123        if ((mViewFlags & DUPLICATE_PARENT_STATE) == DUPLICATE_PARENT_STATE &&
16124                mParent instanceof View) {
16125            return ((View) mParent).onCreateDrawableState(extraSpace);
16126        }
16127
16128        int[] drawableState;
16129
16130        int privateFlags = mPrivateFlags;
16131
16132        int viewStateIndex = 0;
16133        if ((privateFlags & PFLAG_PRESSED) != 0) viewStateIndex |= VIEW_STATE_PRESSED;
16134        if ((mViewFlags & ENABLED_MASK) == ENABLED) viewStateIndex |= VIEW_STATE_ENABLED;
16135        if (isFocused()) viewStateIndex |= VIEW_STATE_FOCUSED;
16136        if ((privateFlags & PFLAG_SELECTED) != 0) viewStateIndex |= VIEW_STATE_SELECTED;
16137        if (hasWindowFocus()) viewStateIndex |= VIEW_STATE_WINDOW_FOCUSED;
16138        if ((privateFlags & PFLAG_ACTIVATED) != 0) viewStateIndex |= VIEW_STATE_ACTIVATED;
16139        if (mAttachInfo != null && mAttachInfo.mHardwareAccelerationRequested &&
16140                HardwareRenderer.isAvailable()) {
16141            // This is set if HW acceleration is requested, even if the current
16142            // process doesn't allow it.  This is just to allow app preview
16143            // windows to better match their app.
16144            viewStateIndex |= VIEW_STATE_ACCELERATED;
16145        }
16146        if ((privateFlags & PFLAG_HOVERED) != 0) viewStateIndex |= VIEW_STATE_HOVERED;
16147
16148        final int privateFlags2 = mPrivateFlags2;
16149        if ((privateFlags2 & PFLAG2_DRAG_CAN_ACCEPT) != 0) viewStateIndex |= VIEW_STATE_DRAG_CAN_ACCEPT;
16150        if ((privateFlags2 & PFLAG2_DRAG_HOVERED) != 0) viewStateIndex |= VIEW_STATE_DRAG_HOVERED;
16151
16152        drawableState = VIEW_STATE_SETS[viewStateIndex];
16153
16154        //noinspection ConstantIfStatement
16155        if (false) {
16156            Log.i("View", "drawableStateIndex=" + viewStateIndex);
16157            Log.i("View", toString()
16158                    + " pressed=" + ((privateFlags & PFLAG_PRESSED) != 0)
16159                    + " en=" + ((mViewFlags & ENABLED_MASK) == ENABLED)
16160                    + " fo=" + hasFocus()
16161                    + " sl=" + ((privateFlags & PFLAG_SELECTED) != 0)
16162                    + " wf=" + hasWindowFocus()
16163                    + ": " + Arrays.toString(drawableState));
16164        }
16165
16166        if (extraSpace == 0) {
16167            return drawableState;
16168        }
16169
16170        final int[] fullState;
16171        if (drawableState != null) {
16172            fullState = new int[drawableState.length + extraSpace];
16173            System.arraycopy(drawableState, 0, fullState, 0, drawableState.length);
16174        } else {
16175            fullState = new int[extraSpace];
16176        }
16177
16178        return fullState;
16179    }
16180
16181    /**
16182     * Merge your own state values in <var>additionalState</var> into the base
16183     * state values <var>baseState</var> that were returned by
16184     * {@link #onCreateDrawableState(int)}.
16185     *
16186     * @param baseState The base state values returned by
16187     * {@link #onCreateDrawableState(int)}, which will be modified to also hold your
16188     * own additional state values.
16189     *
16190     * @param additionalState The additional state values you would like
16191     * added to <var>baseState</var>; this array is not modified.
16192     *
16193     * @return As a convenience, the <var>baseState</var> array you originally
16194     * passed into the function is returned.
16195     *
16196     * @see #onCreateDrawableState(int)
16197     */
16198    protected static int[] mergeDrawableStates(int[] baseState, int[] additionalState) {
16199        final int N = baseState.length;
16200        int i = N - 1;
16201        while (i >= 0 && baseState[i] == 0) {
16202            i--;
16203        }
16204        System.arraycopy(additionalState, 0, baseState, i + 1, additionalState.length);
16205        return baseState;
16206    }
16207
16208    /**
16209     * Call {@link Drawable#jumpToCurrentState() Drawable.jumpToCurrentState()}
16210     * on all Drawable objects associated with this view.
16211     * <p>
16212     * Also calls {@link StateListAnimator#jumpToCurrentState()} if there is a StateListAnimator
16213     * attached to this view.
16214     */
16215    public void jumpDrawablesToCurrentState() {
16216        if (mBackground != null) {
16217            mBackground.jumpToCurrentState();
16218        }
16219        if (mStateListAnimator != null) {
16220            mStateListAnimator.jumpToCurrentState();
16221        }
16222    }
16223
16224    /**
16225     * Sets the background color for this view.
16226     * @param color the color of the background
16227     */
16228    @RemotableViewMethod
16229    public void setBackgroundColor(int color) {
16230        if (mBackground instanceof ColorDrawable) {
16231            ((ColorDrawable) mBackground.mutate()).setColor(color);
16232            computeOpaqueFlags();
16233            mBackgroundResource = 0;
16234        } else {
16235            setBackground(new ColorDrawable(color));
16236        }
16237    }
16238
16239    /**
16240     * Set the background to a given resource. The resource should refer to
16241     * a Drawable object or 0 to remove the background.
16242     * @param resid The identifier of the resource.
16243     *
16244     * @attr ref android.R.styleable#View_background
16245     */
16246    @RemotableViewMethod
16247    public void setBackgroundResource(int resid) {
16248        if (resid != 0 && resid == mBackgroundResource) {
16249            return;
16250        }
16251
16252        Drawable d = null;
16253        if (resid != 0) {
16254            d = mContext.getDrawable(resid);
16255        }
16256        setBackground(d);
16257
16258        mBackgroundResource = resid;
16259    }
16260
16261    /**
16262     * Set the background to a given Drawable, or remove the background. If the
16263     * background has padding, this View's padding is set to the background's
16264     * padding. However, when a background is removed, this View's padding isn't
16265     * touched. If setting the padding is desired, please use
16266     * {@link #setPadding(int, int, int, int)}.
16267     *
16268     * @param background The Drawable to use as the background, or null to remove the
16269     *        background
16270     */
16271    public void setBackground(Drawable background) {
16272        //noinspection deprecation
16273        setBackgroundDrawable(background);
16274    }
16275
16276    /**
16277     * @deprecated use {@link #setBackground(Drawable)} instead
16278     */
16279    @Deprecated
16280    public void setBackgroundDrawable(Drawable background) {
16281        computeOpaqueFlags();
16282
16283        if (background == mBackground) {
16284            return;
16285        }
16286
16287        boolean requestLayout = false;
16288
16289        mBackgroundResource = 0;
16290
16291        /*
16292         * Regardless of whether we're setting a new background or not, we want
16293         * to clear the previous drawable.
16294         */
16295        if (mBackground != null) {
16296            mBackground.setCallback(null);
16297            unscheduleDrawable(mBackground);
16298        }
16299
16300        if (background != null) {
16301            Rect padding = sThreadLocal.get();
16302            if (padding == null) {
16303                padding = new Rect();
16304                sThreadLocal.set(padding);
16305            }
16306            resetResolvedDrawables();
16307            background.setLayoutDirection(getLayoutDirection());
16308            if (background.getPadding(padding)) {
16309                resetResolvedPadding();
16310                switch (background.getLayoutDirection()) {
16311                    case LAYOUT_DIRECTION_RTL:
16312                        mUserPaddingLeftInitial = padding.right;
16313                        mUserPaddingRightInitial = padding.left;
16314                        internalSetPadding(padding.right, padding.top, padding.left, padding.bottom);
16315                        break;
16316                    case LAYOUT_DIRECTION_LTR:
16317                    default:
16318                        mUserPaddingLeftInitial = padding.left;
16319                        mUserPaddingRightInitial = padding.right;
16320                        internalSetPadding(padding.left, padding.top, padding.right, padding.bottom);
16321                }
16322                mLeftPaddingDefined = false;
16323                mRightPaddingDefined = false;
16324            }
16325
16326            // Compare the minimum sizes of the old Drawable and the new.  If there isn't an old or
16327            // if it has a different minimum size, we should layout again
16328            if (mBackground == null
16329                    || mBackground.getMinimumHeight() != background.getMinimumHeight()
16330                    || mBackground.getMinimumWidth() != background.getMinimumWidth()) {
16331                requestLayout = true;
16332            }
16333
16334            background.setCallback(this);
16335            if (background.isStateful()) {
16336                background.setState(getDrawableState());
16337            }
16338            background.setVisible(getVisibility() == VISIBLE, false);
16339            mBackground = background;
16340
16341            applyBackgroundTint();
16342
16343            if ((mPrivateFlags & PFLAG_SKIP_DRAW) != 0) {
16344                mPrivateFlags &= ~PFLAG_SKIP_DRAW;
16345                mPrivateFlags |= PFLAG_ONLY_DRAWS_BACKGROUND;
16346                requestLayout = true;
16347            }
16348        } else {
16349            /* Remove the background */
16350            mBackground = null;
16351
16352            if ((mPrivateFlags & PFLAG_ONLY_DRAWS_BACKGROUND) != 0) {
16353                /*
16354                 * This view ONLY drew the background before and we're removing
16355                 * the background, so now it won't draw anything
16356                 * (hence we SKIP_DRAW)
16357                 */
16358                mPrivateFlags &= ~PFLAG_ONLY_DRAWS_BACKGROUND;
16359                mPrivateFlags |= PFLAG_SKIP_DRAW;
16360            }
16361
16362            /*
16363             * When the background is set, we try to apply its padding to this
16364             * View. When the background is removed, we don't touch this View's
16365             * padding. This is noted in the Javadocs. Hence, we don't need to
16366             * requestLayout(), the invalidate() below is sufficient.
16367             */
16368
16369            // The old background's minimum size could have affected this
16370            // View's layout, so let's requestLayout
16371            requestLayout = true;
16372        }
16373
16374        computeOpaqueFlags();
16375
16376        if (requestLayout) {
16377            requestLayout();
16378        }
16379
16380        mBackgroundSizeChanged = true;
16381        invalidate(true);
16382    }
16383
16384    /**
16385     * Gets the background drawable
16386     *
16387     * @return The drawable used as the background for this view, if any.
16388     *
16389     * @see #setBackground(Drawable)
16390     *
16391     * @attr ref android.R.styleable#View_background
16392     */
16393    public Drawable getBackground() {
16394        return mBackground;
16395    }
16396
16397    /**
16398     * Applies a tint to the background drawable. Does not modify the current tint
16399     * mode, which is {@link PorterDuff.Mode#SRC_IN} by default.
16400     * <p>
16401     * Subsequent calls to {@link #setBackground(Drawable)} will automatically
16402     * mutate the drawable and apply the specified tint and tint mode using
16403     * {@link Drawable#setTintList(ColorStateList)}.
16404     *
16405     * @param tint the tint to apply, may be {@code null} to clear tint
16406     *
16407     * @attr ref android.R.styleable#View_backgroundTint
16408     * @see #getBackgroundTintList()
16409     * @see Drawable#setTintList(ColorStateList)
16410     */
16411    public void setBackgroundTintList(@Nullable ColorStateList tint) {
16412        if (mBackgroundTint == null) {
16413            mBackgroundTint = new TintInfo();
16414        }
16415        mBackgroundTint.mTintList = tint;
16416        mBackgroundTint.mHasTintList = true;
16417
16418        applyBackgroundTint();
16419    }
16420
16421    /**
16422     * Return the tint applied to the background drawable, if specified.
16423     *
16424     * @return the tint applied to the background drawable
16425     * @attr ref android.R.styleable#View_backgroundTint
16426     * @see #setBackgroundTintList(ColorStateList)
16427     */
16428    @Nullable
16429    public ColorStateList getBackgroundTintList() {
16430        return mBackgroundTint != null ? mBackgroundTint.mTintList : null;
16431    }
16432
16433    /**
16434     * Specifies the blending mode used to apply the tint specified by
16435     * {@link #setBackgroundTintList(ColorStateList)}} to the background
16436     * drawable. The default mode is {@link PorterDuff.Mode#SRC_IN}.
16437     *
16438     * @param tintMode the blending mode used to apply the tint, may be
16439     *                 {@code null} to clear tint
16440     * @attr ref android.R.styleable#View_backgroundTintMode
16441     * @see #getBackgroundTintMode()
16442     * @see Drawable#setTintMode(PorterDuff.Mode)
16443     */
16444    public void setBackgroundTintMode(@Nullable PorterDuff.Mode tintMode) {
16445        if (mBackgroundTint == null) {
16446            mBackgroundTint = new TintInfo();
16447        }
16448        mBackgroundTint.mTintMode = tintMode;
16449        mBackgroundTint.mHasTintMode = true;
16450
16451        applyBackgroundTint();
16452    }
16453
16454    /**
16455     * Return the blending mode used to apply the tint to the background
16456     * drawable, if specified.
16457     *
16458     * @return the blending mode used to apply the tint to the background
16459     *         drawable
16460     * @attr ref android.R.styleable#View_backgroundTintMode
16461     * @see #setBackgroundTintMode(PorterDuff.Mode)
16462     */
16463    @Nullable
16464    public PorterDuff.Mode getBackgroundTintMode() {
16465        return mBackgroundTint != null ? mBackgroundTint.mTintMode : null;
16466    }
16467
16468    private void applyBackgroundTint() {
16469        if (mBackground != null && mBackgroundTint != null) {
16470            final TintInfo tintInfo = mBackgroundTint;
16471            if (tintInfo.mHasTintList || tintInfo.mHasTintMode) {
16472                mBackground = mBackground.mutate();
16473
16474                if (tintInfo.mHasTintList) {
16475                    mBackground.setTintList(tintInfo.mTintList);
16476                }
16477
16478                if (tintInfo.mHasTintMode) {
16479                    mBackground.setTintMode(tintInfo.mTintMode);
16480                }
16481
16482                // The drawable (or one of its children) may not have been
16483                // stateful before applying the tint, so let's try again.
16484                if (mBackground.isStateful()) {
16485                    mBackground.setState(getDrawableState());
16486                }
16487            }
16488        }
16489    }
16490
16491    /**
16492     * Sets the padding. The view may add on the space required to display
16493     * the scrollbars, depending on the style and visibility of the scrollbars.
16494     * So the values returned from {@link #getPaddingLeft}, {@link #getPaddingTop},
16495     * {@link #getPaddingRight} and {@link #getPaddingBottom} may be different
16496     * from the values set in this call.
16497     *
16498     * @attr ref android.R.styleable#View_padding
16499     * @attr ref android.R.styleable#View_paddingBottom
16500     * @attr ref android.R.styleable#View_paddingLeft
16501     * @attr ref android.R.styleable#View_paddingRight
16502     * @attr ref android.R.styleable#View_paddingTop
16503     * @param left the left padding in pixels
16504     * @param top the top padding in pixels
16505     * @param right the right padding in pixels
16506     * @param bottom the bottom padding in pixels
16507     */
16508    public void setPadding(int left, int top, int right, int bottom) {
16509        resetResolvedPadding();
16510
16511        mUserPaddingStart = UNDEFINED_PADDING;
16512        mUserPaddingEnd = UNDEFINED_PADDING;
16513
16514        mUserPaddingLeftInitial = left;
16515        mUserPaddingRightInitial = right;
16516
16517        mLeftPaddingDefined = true;
16518        mRightPaddingDefined = true;
16519
16520        internalSetPadding(left, top, right, bottom);
16521    }
16522
16523    /**
16524     * @hide
16525     */
16526    protected void internalSetPadding(int left, int top, int right, int bottom) {
16527        mUserPaddingLeft = left;
16528        mUserPaddingRight = right;
16529        mUserPaddingBottom = bottom;
16530
16531        final int viewFlags = mViewFlags;
16532        boolean changed = false;
16533
16534        // Common case is there are no scroll bars.
16535        if ((viewFlags & (SCROLLBARS_VERTICAL|SCROLLBARS_HORIZONTAL)) != 0) {
16536            if ((viewFlags & SCROLLBARS_VERTICAL) != 0) {
16537                final int offset = (viewFlags & SCROLLBARS_INSET_MASK) == 0
16538                        ? 0 : getVerticalScrollbarWidth();
16539                switch (mVerticalScrollbarPosition) {
16540                    case SCROLLBAR_POSITION_DEFAULT:
16541                        if (isLayoutRtl()) {
16542                            left += offset;
16543                        } else {
16544                            right += offset;
16545                        }
16546                        break;
16547                    case SCROLLBAR_POSITION_RIGHT:
16548                        right += offset;
16549                        break;
16550                    case SCROLLBAR_POSITION_LEFT:
16551                        left += offset;
16552                        break;
16553                }
16554            }
16555            if ((viewFlags & SCROLLBARS_HORIZONTAL) != 0) {
16556                bottom += (viewFlags & SCROLLBARS_INSET_MASK) == 0
16557                        ? 0 : getHorizontalScrollbarHeight();
16558            }
16559        }
16560
16561        if (mPaddingLeft != left) {
16562            changed = true;
16563            mPaddingLeft = left;
16564        }
16565        if (mPaddingTop != top) {
16566            changed = true;
16567            mPaddingTop = top;
16568        }
16569        if (mPaddingRight != right) {
16570            changed = true;
16571            mPaddingRight = right;
16572        }
16573        if (mPaddingBottom != bottom) {
16574            changed = true;
16575            mPaddingBottom = bottom;
16576        }
16577
16578        if (changed) {
16579            requestLayout();
16580        }
16581    }
16582
16583    /**
16584     * Sets the relative padding. The view may add on the space required to display
16585     * the scrollbars, depending on the style and visibility of the scrollbars.
16586     * So the values returned from {@link #getPaddingStart}, {@link #getPaddingTop},
16587     * {@link #getPaddingEnd} and {@link #getPaddingBottom} may be different
16588     * from the values set in this call.
16589     *
16590     * @attr ref android.R.styleable#View_padding
16591     * @attr ref android.R.styleable#View_paddingBottom
16592     * @attr ref android.R.styleable#View_paddingStart
16593     * @attr ref android.R.styleable#View_paddingEnd
16594     * @attr ref android.R.styleable#View_paddingTop
16595     * @param start the start padding in pixels
16596     * @param top the top padding in pixels
16597     * @param end the end padding in pixels
16598     * @param bottom the bottom padding in pixels
16599     */
16600    public void setPaddingRelative(int start, int top, int end, int bottom) {
16601        resetResolvedPadding();
16602
16603        mUserPaddingStart = start;
16604        mUserPaddingEnd = end;
16605        mLeftPaddingDefined = true;
16606        mRightPaddingDefined = true;
16607
16608        switch(getLayoutDirection()) {
16609            case LAYOUT_DIRECTION_RTL:
16610                mUserPaddingLeftInitial = end;
16611                mUserPaddingRightInitial = start;
16612                internalSetPadding(end, top, start, bottom);
16613                break;
16614            case LAYOUT_DIRECTION_LTR:
16615            default:
16616                mUserPaddingLeftInitial = start;
16617                mUserPaddingRightInitial = end;
16618                internalSetPadding(start, top, end, bottom);
16619        }
16620    }
16621
16622    /**
16623     * Returns the top padding of this view.
16624     *
16625     * @return the top padding in pixels
16626     */
16627    public int getPaddingTop() {
16628        return mPaddingTop;
16629    }
16630
16631    /**
16632     * Returns the bottom padding of this view. If there are inset and enabled
16633     * scrollbars, this value may include the space required to display the
16634     * scrollbars as well.
16635     *
16636     * @return the bottom padding in pixels
16637     */
16638    public int getPaddingBottom() {
16639        return mPaddingBottom;
16640    }
16641
16642    /**
16643     * Returns the left padding of this view. If there are inset and enabled
16644     * scrollbars, this value may include the space required to display the
16645     * scrollbars as well.
16646     *
16647     * @return the left padding in pixels
16648     */
16649    public int getPaddingLeft() {
16650        if (!isPaddingResolved()) {
16651            resolvePadding();
16652        }
16653        return mPaddingLeft;
16654    }
16655
16656    /**
16657     * Returns the start padding of this view depending on its resolved layout direction.
16658     * If there are inset and enabled scrollbars, this value may include the space
16659     * required to display the scrollbars as well.
16660     *
16661     * @return the start padding in pixels
16662     */
16663    public int getPaddingStart() {
16664        if (!isPaddingResolved()) {
16665            resolvePadding();
16666        }
16667        return (getLayoutDirection() == LAYOUT_DIRECTION_RTL) ?
16668                mPaddingRight : mPaddingLeft;
16669    }
16670
16671    /**
16672     * Returns the right padding of this view. If there are inset and enabled
16673     * scrollbars, this value may include the space required to display the
16674     * scrollbars as well.
16675     *
16676     * @return the right padding in pixels
16677     */
16678    public int getPaddingRight() {
16679        if (!isPaddingResolved()) {
16680            resolvePadding();
16681        }
16682        return mPaddingRight;
16683    }
16684
16685    /**
16686     * Returns the end padding of this view depending on its resolved layout direction.
16687     * If there are inset and enabled scrollbars, this value may include the space
16688     * required to display the scrollbars as well.
16689     *
16690     * @return the end padding in pixels
16691     */
16692    public int getPaddingEnd() {
16693        if (!isPaddingResolved()) {
16694            resolvePadding();
16695        }
16696        return (getLayoutDirection() == LAYOUT_DIRECTION_RTL) ?
16697                mPaddingLeft : mPaddingRight;
16698    }
16699
16700    /**
16701     * Return if the padding as been set thru relative values
16702     * {@link #setPaddingRelative(int, int, int, int)} or thru
16703     * @attr ref android.R.styleable#View_paddingStart or
16704     * @attr ref android.R.styleable#View_paddingEnd
16705     *
16706     * @return true if the padding is relative or false if it is not.
16707     */
16708    public boolean isPaddingRelative() {
16709        return (mUserPaddingStart != UNDEFINED_PADDING || mUserPaddingEnd != UNDEFINED_PADDING);
16710    }
16711
16712    Insets computeOpticalInsets() {
16713        return (mBackground == null) ? Insets.NONE : mBackground.getOpticalInsets();
16714    }
16715
16716    /**
16717     * @hide
16718     */
16719    public void resetPaddingToInitialValues() {
16720        if (isRtlCompatibilityMode()) {
16721            mPaddingLeft = mUserPaddingLeftInitial;
16722            mPaddingRight = mUserPaddingRightInitial;
16723            return;
16724        }
16725        if (isLayoutRtl()) {
16726            mPaddingLeft = (mUserPaddingEnd >= 0) ? mUserPaddingEnd : mUserPaddingLeftInitial;
16727            mPaddingRight = (mUserPaddingStart >= 0) ? mUserPaddingStart : mUserPaddingRightInitial;
16728        } else {
16729            mPaddingLeft = (mUserPaddingStart >= 0) ? mUserPaddingStart : mUserPaddingLeftInitial;
16730            mPaddingRight = (mUserPaddingEnd >= 0) ? mUserPaddingEnd : mUserPaddingRightInitial;
16731        }
16732    }
16733
16734    /**
16735     * @hide
16736     */
16737    public Insets getOpticalInsets() {
16738        if (mLayoutInsets == null) {
16739            mLayoutInsets = computeOpticalInsets();
16740        }
16741        return mLayoutInsets;
16742    }
16743
16744    /**
16745     * Set this view's optical insets.
16746     *
16747     * <p>This method should be treated similarly to setMeasuredDimension and not as a general
16748     * property. Views that compute their own optical insets should call it as part of measurement.
16749     * This method does not request layout. If you are setting optical insets outside of
16750     * measure/layout itself you will want to call requestLayout() yourself.
16751     * </p>
16752     * @hide
16753     */
16754    public void setOpticalInsets(Insets insets) {
16755        mLayoutInsets = insets;
16756    }
16757
16758    /**
16759     * Changes the selection state of this view. A view can be selected or not.
16760     * Note that selection is not the same as focus. Views are typically
16761     * selected in the context of an AdapterView like ListView or GridView;
16762     * the selected view is the view that is highlighted.
16763     *
16764     * @param selected true if the view must be selected, false otherwise
16765     */
16766    public void setSelected(boolean selected) {
16767        //noinspection DoubleNegation
16768        if (((mPrivateFlags & PFLAG_SELECTED) != 0) != selected) {
16769            mPrivateFlags = (mPrivateFlags & ~PFLAG_SELECTED) | (selected ? PFLAG_SELECTED : 0);
16770            if (!selected) resetPressedState();
16771            invalidate(true);
16772            refreshDrawableState();
16773            dispatchSetSelected(selected);
16774            if (selected) {
16775                sendAccessibilityEvent(AccessibilityEvent.TYPE_VIEW_SELECTED);
16776            } else {
16777                notifyViewAccessibilityStateChangedIfNeeded(
16778                        AccessibilityEvent.CONTENT_CHANGE_TYPE_UNDEFINED);
16779            }
16780        }
16781    }
16782
16783    /**
16784     * Dispatch setSelected to all of this View's children.
16785     *
16786     * @see #setSelected(boolean)
16787     *
16788     * @param selected The new selected state
16789     */
16790    protected void dispatchSetSelected(boolean selected) {
16791    }
16792
16793    /**
16794     * Indicates the selection state of this view.
16795     *
16796     * @return true if the view is selected, false otherwise
16797     */
16798    @ViewDebug.ExportedProperty
16799    public boolean isSelected() {
16800        return (mPrivateFlags & PFLAG_SELECTED) != 0;
16801    }
16802
16803    /**
16804     * Changes the activated state of this view. A view can be activated or not.
16805     * Note that activation is not the same as selection.  Selection is
16806     * a transient property, representing the view (hierarchy) the user is
16807     * currently interacting with.  Activation is a longer-term state that the
16808     * user can move views in and out of.  For example, in a list view with
16809     * single or multiple selection enabled, the views in the current selection
16810     * set are activated.  (Um, yeah, we are deeply sorry about the terminology
16811     * here.)  The activated state is propagated down to children of the view it
16812     * is set on.
16813     *
16814     * @param activated true if the view must be activated, false otherwise
16815     */
16816    public void setActivated(boolean activated) {
16817        //noinspection DoubleNegation
16818        if (((mPrivateFlags & PFLAG_ACTIVATED) != 0) != activated) {
16819            mPrivateFlags = (mPrivateFlags & ~PFLAG_ACTIVATED) | (activated ? PFLAG_ACTIVATED : 0);
16820            invalidate(true);
16821            refreshDrawableState();
16822            dispatchSetActivated(activated);
16823        }
16824    }
16825
16826    /**
16827     * Dispatch setActivated to all of this View's children.
16828     *
16829     * @see #setActivated(boolean)
16830     *
16831     * @param activated The new activated state
16832     */
16833    protected void dispatchSetActivated(boolean activated) {
16834    }
16835
16836    /**
16837     * Indicates the activation state of this view.
16838     *
16839     * @return true if the view is activated, false otherwise
16840     */
16841    @ViewDebug.ExportedProperty
16842    public boolean isActivated() {
16843        return (mPrivateFlags & PFLAG_ACTIVATED) != 0;
16844    }
16845
16846    /**
16847     * Returns the ViewTreeObserver for this view's hierarchy. The view tree
16848     * observer can be used to get notifications when global events, like
16849     * layout, happen.
16850     *
16851     * The returned ViewTreeObserver observer is not guaranteed to remain
16852     * valid for the lifetime of this View. If the caller of this method keeps
16853     * a long-lived reference to ViewTreeObserver, it should always check for
16854     * the return value of {@link ViewTreeObserver#isAlive()}.
16855     *
16856     * @return The ViewTreeObserver for this view's hierarchy.
16857     */
16858    public ViewTreeObserver getViewTreeObserver() {
16859        if (mAttachInfo != null) {
16860            return mAttachInfo.mTreeObserver;
16861        }
16862        if (mFloatingTreeObserver == null) {
16863            mFloatingTreeObserver = new ViewTreeObserver();
16864        }
16865        return mFloatingTreeObserver;
16866    }
16867
16868    /**
16869     * <p>Finds the topmost view in the current view hierarchy.</p>
16870     *
16871     * @return the topmost view containing this view
16872     */
16873    public View getRootView() {
16874        if (mAttachInfo != null) {
16875            final View v = mAttachInfo.mRootView;
16876            if (v != null) {
16877                return v;
16878            }
16879        }
16880
16881        View parent = this;
16882
16883        while (parent.mParent != null && parent.mParent instanceof View) {
16884            parent = (View) parent.mParent;
16885        }
16886
16887        return parent;
16888    }
16889
16890    /**
16891     * Transforms a motion event from view-local coordinates to on-screen
16892     * coordinates.
16893     *
16894     * @param ev the view-local motion event
16895     * @return false if the transformation could not be applied
16896     * @hide
16897     */
16898    public boolean toGlobalMotionEvent(MotionEvent ev) {
16899        final AttachInfo info = mAttachInfo;
16900        if (info == null) {
16901            return false;
16902        }
16903
16904        final Matrix m = info.mTmpMatrix;
16905        m.set(Matrix.IDENTITY_MATRIX);
16906        transformMatrixToGlobal(m);
16907        ev.transform(m);
16908        return true;
16909    }
16910
16911    /**
16912     * Transforms a motion event from on-screen coordinates to view-local
16913     * coordinates.
16914     *
16915     * @param ev the on-screen motion event
16916     * @return false if the transformation could not be applied
16917     * @hide
16918     */
16919    public boolean toLocalMotionEvent(MotionEvent ev) {
16920        final AttachInfo info = mAttachInfo;
16921        if (info == null) {
16922            return false;
16923        }
16924
16925        final Matrix m = info.mTmpMatrix;
16926        m.set(Matrix.IDENTITY_MATRIX);
16927        transformMatrixToLocal(m);
16928        ev.transform(m);
16929        return true;
16930    }
16931
16932    /**
16933     * Modifies the input matrix such that it maps view-local coordinates to
16934     * on-screen coordinates.
16935     *
16936     * @param m input matrix to modify
16937     * @hide
16938     */
16939    public void transformMatrixToGlobal(Matrix m) {
16940        final ViewParent parent = mParent;
16941        if (parent instanceof View) {
16942            final View vp = (View) parent;
16943            vp.transformMatrixToGlobal(m);
16944            m.preTranslate(-vp.mScrollX, -vp.mScrollY);
16945        } else if (parent instanceof ViewRootImpl) {
16946            final ViewRootImpl vr = (ViewRootImpl) parent;
16947            vr.transformMatrixToGlobal(m);
16948            m.preTranslate(0, -vr.mCurScrollY);
16949        }
16950
16951        m.preTranslate(mLeft, mTop);
16952
16953        if (!hasIdentityMatrix()) {
16954            m.preConcat(getMatrix());
16955        }
16956    }
16957
16958    /**
16959     * Modifies the input matrix such that it maps on-screen coordinates to
16960     * view-local coordinates.
16961     *
16962     * @param m input matrix to modify
16963     * @hide
16964     */
16965    public void transformMatrixToLocal(Matrix m) {
16966        final ViewParent parent = mParent;
16967        if (parent instanceof View) {
16968            final View vp = (View) parent;
16969            vp.transformMatrixToLocal(m);
16970            m.postTranslate(vp.mScrollX, vp.mScrollY);
16971        } else if (parent instanceof ViewRootImpl) {
16972            final ViewRootImpl vr = (ViewRootImpl) parent;
16973            vr.transformMatrixToLocal(m);
16974            m.postTranslate(0, vr.mCurScrollY);
16975        }
16976
16977        m.postTranslate(-mLeft, -mTop);
16978
16979        if (!hasIdentityMatrix()) {
16980            m.postConcat(getInverseMatrix());
16981        }
16982    }
16983
16984    /**
16985     * @hide
16986     */
16987    @ViewDebug.ExportedProperty(category = "layout", indexMapping = {
16988            @ViewDebug.IntToString(from = 0, to = "x"),
16989            @ViewDebug.IntToString(from = 1, to = "y")
16990    })
16991    public int[] getLocationOnScreen() {
16992        int[] location = new int[2];
16993        getLocationOnScreen(location);
16994        return location;
16995    }
16996
16997    /**
16998     * <p>Computes the coordinates of this view on the screen. The argument
16999     * must be an array of two integers. After the method returns, the array
17000     * contains the x and y location in that order.</p>
17001     *
17002     * @param location an array of two integers in which to hold the coordinates
17003     */
17004    public void getLocationOnScreen(int[] location) {
17005        getLocationInWindow(location);
17006
17007        final AttachInfo info = mAttachInfo;
17008        if (info != null) {
17009            location[0] += info.mWindowLeft;
17010            location[1] += info.mWindowTop;
17011        }
17012    }
17013
17014    /**
17015     * <p>Computes the coordinates of this view in its window. The argument
17016     * must be an array of two integers. After the method returns, the array
17017     * contains the x and y location in that order.</p>
17018     *
17019     * @param location an array of two integers in which to hold the coordinates
17020     */
17021    public void getLocationInWindow(int[] location) {
17022        if (location == null || location.length < 2) {
17023            throw new IllegalArgumentException("location must be an array of two integers");
17024        }
17025
17026        if (mAttachInfo == null) {
17027            // When the view is not attached to a window, this method does not make sense
17028            location[0] = location[1] = 0;
17029            return;
17030        }
17031
17032        float[] position = mAttachInfo.mTmpTransformLocation;
17033        position[0] = position[1] = 0.0f;
17034
17035        if (!hasIdentityMatrix()) {
17036            getMatrix().mapPoints(position);
17037        }
17038
17039        position[0] += mLeft;
17040        position[1] += mTop;
17041
17042        ViewParent viewParent = mParent;
17043        while (viewParent instanceof View) {
17044            final View view = (View) viewParent;
17045
17046            position[0] -= view.mScrollX;
17047            position[1] -= view.mScrollY;
17048
17049            if (!view.hasIdentityMatrix()) {
17050                view.getMatrix().mapPoints(position);
17051            }
17052
17053            position[0] += view.mLeft;
17054            position[1] += view.mTop;
17055
17056            viewParent = view.mParent;
17057         }
17058
17059        if (viewParent instanceof ViewRootImpl) {
17060            // *cough*
17061            final ViewRootImpl vr = (ViewRootImpl) viewParent;
17062            position[1] -= vr.mCurScrollY;
17063        }
17064
17065        location[0] = (int) (position[0] + 0.5f);
17066        location[1] = (int) (position[1] + 0.5f);
17067    }
17068
17069    /**
17070     * {@hide}
17071     * @param id the id of the view to be found
17072     * @return the view of the specified id, null if cannot be found
17073     */
17074    protected View findViewTraversal(int id) {
17075        if (id == mID) {
17076            return this;
17077        }
17078        return null;
17079    }
17080
17081    /**
17082     * {@hide}
17083     * @param tag the tag of the view to be found
17084     * @return the view of specified tag, null if cannot be found
17085     */
17086    protected View findViewWithTagTraversal(Object tag) {
17087        if (tag != null && tag.equals(mTag)) {
17088            return this;
17089        }
17090        return null;
17091    }
17092
17093    /**
17094     * {@hide}
17095     * @param predicate The predicate to evaluate.
17096     * @param childToSkip If not null, ignores this child during the recursive traversal.
17097     * @return The first view that matches the predicate or null.
17098     */
17099    protected View findViewByPredicateTraversal(Predicate<View> predicate, View childToSkip) {
17100        if (predicate.apply(this)) {
17101            return this;
17102        }
17103        return null;
17104    }
17105
17106    /**
17107     * Look for a child view with the given id.  If this view has the given
17108     * id, return this view.
17109     *
17110     * @param id The id to search for.
17111     * @return The view that has the given id in the hierarchy or null
17112     */
17113    public final View findViewById(int id) {
17114        if (id < 0) {
17115            return null;
17116        }
17117        return findViewTraversal(id);
17118    }
17119
17120    /**
17121     * Finds a view by its unuque and stable accessibility id.
17122     *
17123     * @param accessibilityId The searched accessibility id.
17124     * @return The found view.
17125     */
17126    final View findViewByAccessibilityId(int accessibilityId) {
17127        if (accessibilityId < 0) {
17128            return null;
17129        }
17130        return findViewByAccessibilityIdTraversal(accessibilityId);
17131    }
17132
17133    /**
17134     * Performs the traversal to find a view by its unuque and stable accessibility id.
17135     *
17136     * <strong>Note:</strong>This method does not stop at the root namespace
17137     * boundary since the user can touch the screen at an arbitrary location
17138     * potentially crossing the root namespace bounday which will send an
17139     * accessibility event to accessibility services and they should be able
17140     * to obtain the event source. Also accessibility ids are guaranteed to be
17141     * unique in the window.
17142     *
17143     * @param accessibilityId The accessibility id.
17144     * @return The found view.
17145     *
17146     * @hide
17147     */
17148    public View findViewByAccessibilityIdTraversal(int accessibilityId) {
17149        if (getAccessibilityViewId() == accessibilityId) {
17150            return this;
17151        }
17152        return null;
17153    }
17154
17155    /**
17156     * Look for a child view with the given tag.  If this view has the given
17157     * tag, return this view.
17158     *
17159     * @param tag The tag to search for, using "tag.equals(getTag())".
17160     * @return The View that has the given tag in the hierarchy or null
17161     */
17162    public final View findViewWithTag(Object tag) {
17163        if (tag == null) {
17164            return null;
17165        }
17166        return findViewWithTagTraversal(tag);
17167    }
17168
17169    /**
17170     * {@hide}
17171     * Look for a child view that matches the specified predicate.
17172     * If this view matches the predicate, return this view.
17173     *
17174     * @param predicate The predicate to evaluate.
17175     * @return The first view that matches the predicate or null.
17176     */
17177    public final View findViewByPredicate(Predicate<View> predicate) {
17178        return findViewByPredicateTraversal(predicate, null);
17179    }
17180
17181    /**
17182     * {@hide}
17183     * Look for a child view that matches the specified predicate,
17184     * starting with the specified view and its descendents and then
17185     * recusively searching the ancestors and siblings of that view
17186     * until this view is reached.
17187     *
17188     * This method is useful in cases where the predicate does not match
17189     * a single unique view (perhaps multiple views use the same id)
17190     * and we are trying to find the view that is "closest" in scope to the
17191     * starting view.
17192     *
17193     * @param start The view to start from.
17194     * @param predicate The predicate to evaluate.
17195     * @return The first view that matches the predicate or null.
17196     */
17197    public final View findViewByPredicateInsideOut(View start, Predicate<View> predicate) {
17198        View childToSkip = null;
17199        for (;;) {
17200            View view = start.findViewByPredicateTraversal(predicate, childToSkip);
17201            if (view != null || start == this) {
17202                return view;
17203            }
17204
17205            ViewParent parent = start.getParent();
17206            if (parent == null || !(parent instanceof View)) {
17207                return null;
17208            }
17209
17210            childToSkip = start;
17211            start = (View) parent;
17212        }
17213    }
17214
17215    /**
17216     * Sets the identifier for this view. The identifier does not have to be
17217     * unique in this view's hierarchy. The identifier should be a positive
17218     * number.
17219     *
17220     * @see #NO_ID
17221     * @see #getId()
17222     * @see #findViewById(int)
17223     *
17224     * @param id a number used to identify the view
17225     *
17226     * @attr ref android.R.styleable#View_id
17227     */
17228    public void setId(int id) {
17229        mID = id;
17230        if (mID == View.NO_ID && mLabelForId != View.NO_ID) {
17231            mID = generateViewId();
17232        }
17233    }
17234
17235    /**
17236     * {@hide}
17237     *
17238     * @param isRoot true if the view belongs to the root namespace, false
17239     *        otherwise
17240     */
17241    public void setIsRootNamespace(boolean isRoot) {
17242        if (isRoot) {
17243            mPrivateFlags |= PFLAG_IS_ROOT_NAMESPACE;
17244        } else {
17245            mPrivateFlags &= ~PFLAG_IS_ROOT_NAMESPACE;
17246        }
17247    }
17248
17249    /**
17250     * {@hide}
17251     *
17252     * @return true if the view belongs to the root namespace, false otherwise
17253     */
17254    public boolean isRootNamespace() {
17255        return (mPrivateFlags&PFLAG_IS_ROOT_NAMESPACE) != 0;
17256    }
17257
17258    /**
17259     * Returns this view's identifier.
17260     *
17261     * @return a positive integer used to identify the view or {@link #NO_ID}
17262     *         if the view has no ID
17263     *
17264     * @see #setId(int)
17265     * @see #findViewById(int)
17266     * @attr ref android.R.styleable#View_id
17267     */
17268    @ViewDebug.CapturedViewProperty
17269    public int getId() {
17270        return mID;
17271    }
17272
17273    /**
17274     * Returns this view's tag.
17275     *
17276     * @return the Object stored in this view as a tag, or {@code null} if not
17277     *         set
17278     *
17279     * @see #setTag(Object)
17280     * @see #getTag(int)
17281     */
17282    @ViewDebug.ExportedProperty
17283    public Object getTag() {
17284        return mTag;
17285    }
17286
17287    /**
17288     * Sets the tag associated with this view. A tag can be used to mark
17289     * a view in its hierarchy and does not have to be unique within the
17290     * hierarchy. Tags can also be used to store data within a view without
17291     * resorting to another data structure.
17292     *
17293     * @param tag an Object to tag the view with
17294     *
17295     * @see #getTag()
17296     * @see #setTag(int, Object)
17297     */
17298    public void setTag(final Object tag) {
17299        mTag = tag;
17300    }
17301
17302    /**
17303     * Returns the tag associated with this view and the specified key.
17304     *
17305     * @param key The key identifying the tag
17306     *
17307     * @return the Object stored in this view as a tag, or {@code null} if not
17308     *         set
17309     *
17310     * @see #setTag(int, Object)
17311     * @see #getTag()
17312     */
17313    public Object getTag(int key) {
17314        if (mKeyedTags != null) return mKeyedTags.get(key);
17315        return null;
17316    }
17317
17318    /**
17319     * Sets a tag associated with this view and a key. A tag can be used
17320     * to mark a view in its hierarchy and does not have to be unique within
17321     * the hierarchy. Tags can also be used to store data within a view
17322     * without resorting to another data structure.
17323     *
17324     * The specified key should be an id declared in the resources of the
17325     * application to ensure it is unique (see the <a
17326     * href={@docRoot}guide/topics/resources/more-resources.html#Id">ID resource type</a>).
17327     * Keys identified as belonging to
17328     * the Android framework or not associated with any package will cause
17329     * an {@link IllegalArgumentException} to be thrown.
17330     *
17331     * @param key The key identifying the tag
17332     * @param tag An Object to tag the view with
17333     *
17334     * @throws IllegalArgumentException If they specified key is not valid
17335     *
17336     * @see #setTag(Object)
17337     * @see #getTag(int)
17338     */
17339    public void setTag(int key, final Object tag) {
17340        // If the package id is 0x00 or 0x01, it's either an undefined package
17341        // or a framework id
17342        if ((key >>> 24) < 2) {
17343            throw new IllegalArgumentException("The key must be an application-specific "
17344                    + "resource id.");
17345        }
17346
17347        setKeyedTag(key, tag);
17348    }
17349
17350    /**
17351     * Variation of {@link #setTag(int, Object)} that enforces the key to be a
17352     * framework id.
17353     *
17354     * @hide
17355     */
17356    public void setTagInternal(int key, Object tag) {
17357        if ((key >>> 24) != 0x1) {
17358            throw new IllegalArgumentException("The key must be a framework-specific "
17359                    + "resource id.");
17360        }
17361
17362        setKeyedTag(key, tag);
17363    }
17364
17365    private void setKeyedTag(int key, Object tag) {
17366        if (mKeyedTags == null) {
17367            mKeyedTags = new SparseArray<Object>(2);
17368        }
17369
17370        mKeyedTags.put(key, tag);
17371    }
17372
17373    /**
17374     * Prints information about this view in the log output, with the tag
17375     * {@link #VIEW_LOG_TAG}.
17376     *
17377     * @hide
17378     */
17379    public void debug() {
17380        debug(0);
17381    }
17382
17383    /**
17384     * Prints information about this view in the log output, with the tag
17385     * {@link #VIEW_LOG_TAG}. Each line in the output is preceded with an
17386     * indentation defined by the <code>depth</code>.
17387     *
17388     * @param depth the indentation level
17389     *
17390     * @hide
17391     */
17392    protected void debug(int depth) {
17393        String output = debugIndent(depth - 1);
17394
17395        output += "+ " + this;
17396        int id = getId();
17397        if (id != -1) {
17398            output += " (id=" + id + ")";
17399        }
17400        Object tag = getTag();
17401        if (tag != null) {
17402            output += " (tag=" + tag + ")";
17403        }
17404        Log.d(VIEW_LOG_TAG, output);
17405
17406        if ((mPrivateFlags & PFLAG_FOCUSED) != 0) {
17407            output = debugIndent(depth) + " FOCUSED";
17408            Log.d(VIEW_LOG_TAG, output);
17409        }
17410
17411        output = debugIndent(depth);
17412        output += "frame={" + mLeft + ", " + mTop + ", " + mRight
17413                + ", " + mBottom + "} scroll={" + mScrollX + ", " + mScrollY
17414                + "} ";
17415        Log.d(VIEW_LOG_TAG, output);
17416
17417        if (mPaddingLeft != 0 || mPaddingTop != 0 || mPaddingRight != 0
17418                || mPaddingBottom != 0) {
17419            output = debugIndent(depth);
17420            output += "padding={" + mPaddingLeft + ", " + mPaddingTop
17421                    + ", " + mPaddingRight + ", " + mPaddingBottom + "}";
17422            Log.d(VIEW_LOG_TAG, output);
17423        }
17424
17425        output = debugIndent(depth);
17426        output += "mMeasureWidth=" + mMeasuredWidth +
17427                " mMeasureHeight=" + mMeasuredHeight;
17428        Log.d(VIEW_LOG_TAG, output);
17429
17430        output = debugIndent(depth);
17431        if (mLayoutParams == null) {
17432            output += "BAD! no layout params";
17433        } else {
17434            output = mLayoutParams.debug(output);
17435        }
17436        Log.d(VIEW_LOG_TAG, output);
17437
17438        output = debugIndent(depth);
17439        output += "flags={";
17440        output += View.printFlags(mViewFlags);
17441        output += "}";
17442        Log.d(VIEW_LOG_TAG, output);
17443
17444        output = debugIndent(depth);
17445        output += "privateFlags={";
17446        output += View.printPrivateFlags(mPrivateFlags);
17447        output += "}";
17448        Log.d(VIEW_LOG_TAG, output);
17449    }
17450
17451    /**
17452     * Creates a string of whitespaces used for indentation.
17453     *
17454     * @param depth the indentation level
17455     * @return a String containing (depth * 2 + 3) * 2 white spaces
17456     *
17457     * @hide
17458     */
17459    protected static String debugIndent(int depth) {
17460        StringBuilder spaces = new StringBuilder((depth * 2 + 3) * 2);
17461        for (int i = 0; i < (depth * 2) + 3; i++) {
17462            spaces.append(' ').append(' ');
17463        }
17464        return spaces.toString();
17465    }
17466
17467    /**
17468     * <p>Return the offset of the widget's text baseline from the widget's top
17469     * boundary. If this widget does not support baseline alignment, this
17470     * method returns -1. </p>
17471     *
17472     * @return the offset of the baseline within the widget's bounds or -1
17473     *         if baseline alignment is not supported
17474     */
17475    @ViewDebug.ExportedProperty(category = "layout")
17476    public int getBaseline() {
17477        return -1;
17478    }
17479
17480    /**
17481     * Returns whether the view hierarchy is currently undergoing a layout pass. This
17482     * information is useful to avoid situations such as calling {@link #requestLayout()} during
17483     * a layout pass.
17484     *
17485     * @return whether the view hierarchy is currently undergoing a layout pass
17486     */
17487    public boolean isInLayout() {
17488        ViewRootImpl viewRoot = getViewRootImpl();
17489        return (viewRoot != null && viewRoot.isInLayout());
17490    }
17491
17492    /**
17493     * Call this when something has changed which has invalidated the
17494     * layout of this view. This will schedule a layout pass of the view
17495     * tree. This should not be called while the view hierarchy is currently in a layout
17496     * pass ({@link #isInLayout()}. If layout is happening, the request may be honored at the
17497     * end of the current layout pass (and then layout will run again) or after the current
17498     * frame is drawn and the next layout occurs.
17499     *
17500     * <p>Subclasses which override this method should call the superclass method to
17501     * handle possible request-during-layout errors correctly.</p>
17502     */
17503    public void requestLayout() {
17504        if (mMeasureCache != null) mMeasureCache.clear();
17505
17506        if (mAttachInfo != null && mAttachInfo.mViewRequestingLayout == null) {
17507            // Only trigger request-during-layout logic if this is the view requesting it,
17508            // not the views in its parent hierarchy
17509            ViewRootImpl viewRoot = getViewRootImpl();
17510            if (viewRoot != null && viewRoot.isInLayout()) {
17511                if (!viewRoot.requestLayoutDuringLayout(this)) {
17512                    return;
17513                }
17514            }
17515            mAttachInfo.mViewRequestingLayout = this;
17516        }
17517
17518        mPrivateFlags |= PFLAG_FORCE_LAYOUT;
17519        mPrivateFlags |= PFLAG_INVALIDATED;
17520
17521        if (mParent != null && !mParent.isLayoutRequested()) {
17522            mParent.requestLayout();
17523        }
17524        if (mAttachInfo != null && mAttachInfo.mViewRequestingLayout == this) {
17525            mAttachInfo.mViewRequestingLayout = null;
17526        }
17527    }
17528
17529    /**
17530     * Forces this view to be laid out during the next layout pass.
17531     * This method does not call requestLayout() or forceLayout()
17532     * on the parent.
17533     */
17534    public void forceLayout() {
17535        if (mMeasureCache != null) mMeasureCache.clear();
17536
17537        mPrivateFlags |= PFLAG_FORCE_LAYOUT;
17538        mPrivateFlags |= PFLAG_INVALIDATED;
17539    }
17540
17541    /**
17542     * <p>
17543     * This is called to find out how big a view should be. The parent
17544     * supplies constraint information in the width and height parameters.
17545     * </p>
17546     *
17547     * <p>
17548     * The actual measurement work of a view is performed in
17549     * {@link #onMeasure(int, int)}, called by this method. Therefore, only
17550     * {@link #onMeasure(int, int)} can and must be overridden by subclasses.
17551     * </p>
17552     *
17553     *
17554     * @param widthMeasureSpec Horizontal space requirements as imposed by the
17555     *        parent
17556     * @param heightMeasureSpec Vertical space requirements as imposed by the
17557     *        parent
17558     *
17559     * @see #onMeasure(int, int)
17560     */
17561    public final void measure(int widthMeasureSpec, int heightMeasureSpec) {
17562        boolean optical = isLayoutModeOptical(this);
17563        if (optical != isLayoutModeOptical(mParent)) {
17564            Insets insets = getOpticalInsets();
17565            int oWidth  = insets.left + insets.right;
17566            int oHeight = insets.top  + insets.bottom;
17567            widthMeasureSpec  = MeasureSpec.adjust(widthMeasureSpec,  optical ? -oWidth  : oWidth);
17568            heightMeasureSpec = MeasureSpec.adjust(heightMeasureSpec, optical ? -oHeight : oHeight);
17569        }
17570
17571        // Suppress sign extension for the low bytes
17572        long key = (long) widthMeasureSpec << 32 | (long) heightMeasureSpec & 0xffffffffL;
17573        if (mMeasureCache == null) mMeasureCache = new LongSparseLongArray(2);
17574
17575        final boolean forceLayout = (mPrivateFlags & PFLAG_FORCE_LAYOUT) == PFLAG_FORCE_LAYOUT;
17576        final boolean isExactly = MeasureSpec.getMode(widthMeasureSpec) == MeasureSpec.EXACTLY &&
17577                MeasureSpec.getMode(heightMeasureSpec) == MeasureSpec.EXACTLY;
17578        final boolean matchingSize = isExactly &&
17579                getMeasuredWidth() == MeasureSpec.getSize(widthMeasureSpec) &&
17580                getMeasuredHeight() == MeasureSpec.getSize(heightMeasureSpec);
17581        if (forceLayout || !matchingSize &&
17582                (widthMeasureSpec != mOldWidthMeasureSpec ||
17583                        heightMeasureSpec != mOldHeightMeasureSpec)) {
17584
17585            // first clears the measured dimension flag
17586            mPrivateFlags &= ~PFLAG_MEASURED_DIMENSION_SET;
17587
17588            resolveRtlPropertiesIfNeeded();
17589
17590            int cacheIndex = forceLayout ? -1 : mMeasureCache.indexOfKey(key);
17591            if (cacheIndex < 0 || sIgnoreMeasureCache) {
17592                // measure ourselves, this should set the measured dimension flag back
17593                onMeasure(widthMeasureSpec, heightMeasureSpec);
17594                mPrivateFlags3 &= ~PFLAG3_MEASURE_NEEDED_BEFORE_LAYOUT;
17595            } else {
17596                long value = mMeasureCache.valueAt(cacheIndex);
17597                // Casting a long to int drops the high 32 bits, no mask needed
17598                setMeasuredDimensionRaw((int) (value >> 32), (int) value);
17599                mPrivateFlags3 |= PFLAG3_MEASURE_NEEDED_BEFORE_LAYOUT;
17600            }
17601
17602            // flag not set, setMeasuredDimension() was not invoked, we raise
17603            // an exception to warn the developer
17604            if ((mPrivateFlags & PFLAG_MEASURED_DIMENSION_SET) != PFLAG_MEASURED_DIMENSION_SET) {
17605                throw new IllegalStateException("onMeasure() did not set the"
17606                        + " measured dimension by calling"
17607                        + " setMeasuredDimension()");
17608            }
17609
17610            mPrivateFlags |= PFLAG_LAYOUT_REQUIRED;
17611        }
17612
17613        mOldWidthMeasureSpec = widthMeasureSpec;
17614        mOldHeightMeasureSpec = heightMeasureSpec;
17615
17616        mMeasureCache.put(key, ((long) mMeasuredWidth) << 32 |
17617                (long) mMeasuredHeight & 0xffffffffL); // suppress sign extension
17618    }
17619
17620    /**
17621     * <p>
17622     * Measure the view and its content to determine the measured width and the
17623     * measured height. This method is invoked by {@link #measure(int, int)} and
17624     * should be overriden by subclasses to provide accurate and efficient
17625     * measurement of their contents.
17626     * </p>
17627     *
17628     * <p>
17629     * <strong>CONTRACT:</strong> When overriding this method, you
17630     * <em>must</em> call {@link #setMeasuredDimension(int, int)} to store the
17631     * measured width and height of this view. Failure to do so will trigger an
17632     * <code>IllegalStateException</code>, thrown by
17633     * {@link #measure(int, int)}. Calling the superclass'
17634     * {@link #onMeasure(int, int)} is a valid use.
17635     * </p>
17636     *
17637     * <p>
17638     * The base class implementation of measure defaults to the background size,
17639     * unless a larger size is allowed by the MeasureSpec. Subclasses should
17640     * override {@link #onMeasure(int, int)} to provide better measurements of
17641     * their content.
17642     * </p>
17643     *
17644     * <p>
17645     * If this method is overridden, it is the subclass's responsibility to make
17646     * sure the measured height and width are at least the view's minimum height
17647     * and width ({@link #getSuggestedMinimumHeight()} and
17648     * {@link #getSuggestedMinimumWidth()}).
17649     * </p>
17650     *
17651     * @param widthMeasureSpec horizontal space requirements as imposed by the parent.
17652     *                         The requirements are encoded with
17653     *                         {@link android.view.View.MeasureSpec}.
17654     * @param heightMeasureSpec vertical space requirements as imposed by the parent.
17655     *                         The requirements are encoded with
17656     *                         {@link android.view.View.MeasureSpec}.
17657     *
17658     * @see #getMeasuredWidth()
17659     * @see #getMeasuredHeight()
17660     * @see #setMeasuredDimension(int, int)
17661     * @see #getSuggestedMinimumHeight()
17662     * @see #getSuggestedMinimumWidth()
17663     * @see android.view.View.MeasureSpec#getMode(int)
17664     * @see android.view.View.MeasureSpec#getSize(int)
17665     */
17666    protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
17667        setMeasuredDimension(getDefaultSize(getSuggestedMinimumWidth(), widthMeasureSpec),
17668                getDefaultSize(getSuggestedMinimumHeight(), heightMeasureSpec));
17669    }
17670
17671    /**
17672     * <p>This method must be called by {@link #onMeasure(int, int)} to store the
17673     * measured width and measured height. Failing to do so will trigger an
17674     * exception at measurement time.</p>
17675     *
17676     * @param measuredWidth The measured width of this view.  May be a complex
17677     * bit mask as defined by {@link #MEASURED_SIZE_MASK} and
17678     * {@link #MEASURED_STATE_TOO_SMALL}.
17679     * @param measuredHeight The measured height of this view.  May be a complex
17680     * bit mask as defined by {@link #MEASURED_SIZE_MASK} and
17681     * {@link #MEASURED_STATE_TOO_SMALL}.
17682     */
17683    protected final void setMeasuredDimension(int measuredWidth, int measuredHeight) {
17684        boolean optical = isLayoutModeOptical(this);
17685        if (optical != isLayoutModeOptical(mParent)) {
17686            Insets insets = getOpticalInsets();
17687            int opticalWidth  = insets.left + insets.right;
17688            int opticalHeight = insets.top  + insets.bottom;
17689
17690            measuredWidth  += optical ? opticalWidth  : -opticalWidth;
17691            measuredHeight += optical ? opticalHeight : -opticalHeight;
17692        }
17693        setMeasuredDimensionRaw(measuredWidth, measuredHeight);
17694    }
17695
17696    /**
17697     * Sets the measured dimension without extra processing for things like optical bounds.
17698     * Useful for reapplying consistent values that have already been cooked with adjustments
17699     * for optical bounds, etc. such as those from the measurement cache.
17700     *
17701     * @param measuredWidth The measured width of this view.  May be a complex
17702     * bit mask as defined by {@link #MEASURED_SIZE_MASK} and
17703     * {@link #MEASURED_STATE_TOO_SMALL}.
17704     * @param measuredHeight The measured height of this view.  May be a complex
17705     * bit mask as defined by {@link #MEASURED_SIZE_MASK} and
17706     * {@link #MEASURED_STATE_TOO_SMALL}.
17707     */
17708    private void setMeasuredDimensionRaw(int measuredWidth, int measuredHeight) {
17709        mMeasuredWidth = measuredWidth;
17710        mMeasuredHeight = measuredHeight;
17711
17712        mPrivateFlags |= PFLAG_MEASURED_DIMENSION_SET;
17713    }
17714
17715    /**
17716     * Merge two states as returned by {@link #getMeasuredState()}.
17717     * @param curState The current state as returned from a view or the result
17718     * of combining multiple views.
17719     * @param newState The new view state to combine.
17720     * @return Returns a new integer reflecting the combination of the two
17721     * states.
17722     */
17723    public static int combineMeasuredStates(int curState, int newState) {
17724        return curState | newState;
17725    }
17726
17727    /**
17728     * Version of {@link #resolveSizeAndState(int, int, int)}
17729     * returning only the {@link #MEASURED_SIZE_MASK} bits of the result.
17730     */
17731    public static int resolveSize(int size, int measureSpec) {
17732        return resolveSizeAndState(size, measureSpec, 0) & MEASURED_SIZE_MASK;
17733    }
17734
17735    /**
17736     * Utility to reconcile a desired size and state, with constraints imposed
17737     * by a MeasureSpec.  Will take the desired size, unless a different size
17738     * is imposed by the constraints.  The returned value is a compound integer,
17739     * with the resolved size in the {@link #MEASURED_SIZE_MASK} bits and
17740     * optionally the bit {@link #MEASURED_STATE_TOO_SMALL} set if the resulting
17741     * size is smaller than the size the view wants to be.
17742     *
17743     * @param size How big the view wants to be
17744     * @param measureSpec Constraints imposed by the parent
17745     * @return Size information bit mask as defined by
17746     * {@link #MEASURED_SIZE_MASK} and {@link #MEASURED_STATE_TOO_SMALL}.
17747     */
17748    public static int resolveSizeAndState(int size, int measureSpec, int childMeasuredState) {
17749        int result = size;
17750        int specMode = MeasureSpec.getMode(measureSpec);
17751        int specSize =  MeasureSpec.getSize(measureSpec);
17752        switch (specMode) {
17753        case MeasureSpec.UNSPECIFIED:
17754            result = size;
17755            break;
17756        case MeasureSpec.AT_MOST:
17757            if (specSize < size) {
17758                result = specSize | MEASURED_STATE_TOO_SMALL;
17759            } else {
17760                result = size;
17761            }
17762            break;
17763        case MeasureSpec.EXACTLY:
17764            result = specSize;
17765            break;
17766        }
17767        return result | (childMeasuredState&MEASURED_STATE_MASK);
17768    }
17769
17770    /**
17771     * Utility to return a default size. Uses the supplied size if the
17772     * MeasureSpec imposed no constraints. Will get larger if allowed
17773     * by the MeasureSpec.
17774     *
17775     * @param size Default size for this view
17776     * @param measureSpec Constraints imposed by the parent
17777     * @return The size this view should be.
17778     */
17779    public static int getDefaultSize(int size, int measureSpec) {
17780        int result = size;
17781        int specMode = MeasureSpec.getMode(measureSpec);
17782        int specSize = MeasureSpec.getSize(measureSpec);
17783
17784        switch (specMode) {
17785        case MeasureSpec.UNSPECIFIED:
17786            result = size;
17787            break;
17788        case MeasureSpec.AT_MOST:
17789        case MeasureSpec.EXACTLY:
17790            result = specSize;
17791            break;
17792        }
17793        return result;
17794    }
17795
17796    /**
17797     * Returns the suggested minimum height that the view should use. This
17798     * returns the maximum of the view's minimum height
17799     * and the background's minimum height
17800     * ({@link android.graphics.drawable.Drawable#getMinimumHeight()}).
17801     * <p>
17802     * When being used in {@link #onMeasure(int, int)}, the caller should still
17803     * ensure the returned height is within the requirements of the parent.
17804     *
17805     * @return The suggested minimum height of the view.
17806     */
17807    protected int getSuggestedMinimumHeight() {
17808        return (mBackground == null) ? mMinHeight : max(mMinHeight, mBackground.getMinimumHeight());
17809
17810    }
17811
17812    /**
17813     * Returns the suggested minimum width that the view should use. This
17814     * returns the maximum of the view's minimum width)
17815     * and the background's minimum width
17816     *  ({@link android.graphics.drawable.Drawable#getMinimumWidth()}).
17817     * <p>
17818     * When being used in {@link #onMeasure(int, int)}, the caller should still
17819     * ensure the returned width is within the requirements of the parent.
17820     *
17821     * @return The suggested minimum width of the view.
17822     */
17823    protected int getSuggestedMinimumWidth() {
17824        return (mBackground == null) ? mMinWidth : max(mMinWidth, mBackground.getMinimumWidth());
17825    }
17826
17827    /**
17828     * Returns the minimum height of the view.
17829     *
17830     * @return the minimum height the view will try to be.
17831     *
17832     * @see #setMinimumHeight(int)
17833     *
17834     * @attr ref android.R.styleable#View_minHeight
17835     */
17836    public int getMinimumHeight() {
17837        return mMinHeight;
17838    }
17839
17840    /**
17841     * Sets the minimum height of the view. It is not guaranteed the view will
17842     * be able to achieve this minimum height (for example, if its parent layout
17843     * constrains it with less available height).
17844     *
17845     * @param minHeight The minimum height the view will try to be.
17846     *
17847     * @see #getMinimumHeight()
17848     *
17849     * @attr ref android.R.styleable#View_minHeight
17850     */
17851    public void setMinimumHeight(int minHeight) {
17852        mMinHeight = minHeight;
17853        requestLayout();
17854    }
17855
17856    /**
17857     * Returns the minimum width of the view.
17858     *
17859     * @return the minimum width the view will try to be.
17860     *
17861     * @see #setMinimumWidth(int)
17862     *
17863     * @attr ref android.R.styleable#View_minWidth
17864     */
17865    public int getMinimumWidth() {
17866        return mMinWidth;
17867    }
17868
17869    /**
17870     * Sets the minimum width of the view. It is not guaranteed the view will
17871     * be able to achieve this minimum width (for example, if its parent layout
17872     * constrains it with less available width).
17873     *
17874     * @param minWidth The minimum width the view will try to be.
17875     *
17876     * @see #getMinimumWidth()
17877     *
17878     * @attr ref android.R.styleable#View_minWidth
17879     */
17880    public void setMinimumWidth(int minWidth) {
17881        mMinWidth = minWidth;
17882        requestLayout();
17883
17884    }
17885
17886    /**
17887     * Get the animation currently associated with this view.
17888     *
17889     * @return The animation that is currently playing or
17890     *         scheduled to play for this view.
17891     */
17892    public Animation getAnimation() {
17893        return mCurrentAnimation;
17894    }
17895
17896    /**
17897     * Start the specified animation now.
17898     *
17899     * @param animation the animation to start now
17900     */
17901    public void startAnimation(Animation animation) {
17902        animation.setStartTime(Animation.START_ON_FIRST_FRAME);
17903        setAnimation(animation);
17904        invalidateParentCaches();
17905        invalidate(true);
17906    }
17907
17908    /**
17909     * Cancels any animations for this view.
17910     */
17911    public void clearAnimation() {
17912        if (mCurrentAnimation != null) {
17913            mCurrentAnimation.detach();
17914        }
17915        mCurrentAnimation = null;
17916        invalidateParentIfNeeded();
17917    }
17918
17919    /**
17920     * Sets the next animation to play for this view.
17921     * If you want the animation to play immediately, use
17922     * {@link #startAnimation(android.view.animation.Animation)} instead.
17923     * This method provides allows fine-grained
17924     * control over the start time and invalidation, but you
17925     * must make sure that 1) the animation has a start time set, and
17926     * 2) the view's parent (which controls animations on its children)
17927     * will be invalidated when the animation is supposed to
17928     * start.
17929     *
17930     * @param animation The next animation, or null.
17931     */
17932    public void setAnimation(Animation animation) {
17933        mCurrentAnimation = animation;
17934
17935        if (animation != null) {
17936            // If the screen is off assume the animation start time is now instead of
17937            // the next frame we draw. Keeping the START_ON_FIRST_FRAME start time
17938            // would cause the animation to start when the screen turns back on
17939            if (mAttachInfo != null && mAttachInfo.mDisplayState == Display.STATE_OFF
17940                    && animation.getStartTime() == Animation.START_ON_FIRST_FRAME) {
17941                animation.setStartTime(AnimationUtils.currentAnimationTimeMillis());
17942            }
17943            animation.reset();
17944        }
17945    }
17946
17947    /**
17948     * Invoked by a parent ViewGroup to notify the start of the animation
17949     * currently associated with this view. If you override this method,
17950     * always call super.onAnimationStart();
17951     *
17952     * @see #setAnimation(android.view.animation.Animation)
17953     * @see #getAnimation()
17954     */
17955    protected void onAnimationStart() {
17956        mPrivateFlags |= PFLAG_ANIMATION_STARTED;
17957    }
17958
17959    /**
17960     * Invoked by a parent ViewGroup to notify the end of the animation
17961     * currently associated with this view. If you override this method,
17962     * always call super.onAnimationEnd();
17963     *
17964     * @see #setAnimation(android.view.animation.Animation)
17965     * @see #getAnimation()
17966     */
17967    protected void onAnimationEnd() {
17968        mPrivateFlags &= ~PFLAG_ANIMATION_STARTED;
17969    }
17970
17971    /**
17972     * Invoked if there is a Transform that involves alpha. Subclass that can
17973     * draw themselves with the specified alpha should return true, and then
17974     * respect that alpha when their onDraw() is called. If this returns false
17975     * then the view may be redirected to draw into an offscreen buffer to
17976     * fulfill the request, which will look fine, but may be slower than if the
17977     * subclass handles it internally. The default implementation returns false.
17978     *
17979     * @param alpha The alpha (0..255) to apply to the view's drawing
17980     * @return true if the view can draw with the specified alpha.
17981     */
17982    protected boolean onSetAlpha(int alpha) {
17983        return false;
17984    }
17985
17986    /**
17987     * This is used by the RootView to perform an optimization when
17988     * the view hierarchy contains one or several SurfaceView.
17989     * SurfaceView is always considered transparent, but its children are not,
17990     * therefore all View objects remove themselves from the global transparent
17991     * region (passed as a parameter to this function).
17992     *
17993     * @param region The transparent region for this ViewAncestor (window).
17994     *
17995     * @return Returns true if the effective visibility of the view at this
17996     * point is opaque, regardless of the transparent region; returns false
17997     * if it is possible for underlying windows to be seen behind the view.
17998     *
17999     * {@hide}
18000     */
18001    public boolean gatherTransparentRegion(Region region) {
18002        final AttachInfo attachInfo = mAttachInfo;
18003        if (region != null && attachInfo != null) {
18004            final int pflags = mPrivateFlags;
18005            if ((pflags & PFLAG_SKIP_DRAW) == 0) {
18006                // The SKIP_DRAW flag IS NOT set, so this view draws. We need to
18007                // remove it from the transparent region.
18008                final int[] location = attachInfo.mTransparentLocation;
18009                getLocationInWindow(location);
18010                region.op(location[0], location[1], location[0] + mRight - mLeft,
18011                        location[1] + mBottom - mTop, Region.Op.DIFFERENCE);
18012            } else if ((pflags & PFLAG_ONLY_DRAWS_BACKGROUND) != 0 && mBackground != null &&
18013                    mBackground.getOpacity() != PixelFormat.TRANSPARENT) {
18014                // The ONLY_DRAWS_BACKGROUND flag IS set and the background drawable
18015                // exists, so we remove the background drawable's non-transparent
18016                // parts from this transparent region.
18017                applyDrawableToTransparentRegion(mBackground, region);
18018            }
18019        }
18020        return true;
18021    }
18022
18023    /**
18024     * Play a sound effect for this view.
18025     *
18026     * <p>The framework will play sound effects for some built in actions, such as
18027     * clicking, but you may wish to play these effects in your widget,
18028     * for instance, for internal navigation.
18029     *
18030     * <p>The sound effect will only be played if sound effects are enabled by the user, and
18031     * {@link #isSoundEffectsEnabled()} is true.
18032     *
18033     * @param soundConstant One of the constants defined in {@link SoundEffectConstants}
18034     */
18035    public void playSoundEffect(int soundConstant) {
18036        if (mAttachInfo == null || mAttachInfo.mRootCallbacks == null || !isSoundEffectsEnabled()) {
18037            return;
18038        }
18039        mAttachInfo.mRootCallbacks.playSoundEffect(soundConstant);
18040    }
18041
18042    /**
18043     * BZZZTT!!1!
18044     *
18045     * <p>Provide haptic feedback to the user for this view.
18046     *
18047     * <p>The framework will provide haptic feedback for some built in actions,
18048     * such as long presses, but you may wish to provide feedback for your
18049     * own widget.
18050     *
18051     * <p>The feedback will only be performed if
18052     * {@link #isHapticFeedbackEnabled()} is true.
18053     *
18054     * @param feedbackConstant One of the constants defined in
18055     * {@link HapticFeedbackConstants}
18056     */
18057    public boolean performHapticFeedback(int feedbackConstant) {
18058        return performHapticFeedback(feedbackConstant, 0);
18059    }
18060
18061    /**
18062     * BZZZTT!!1!
18063     *
18064     * <p>Like {@link #performHapticFeedback(int)}, with additional options.
18065     *
18066     * @param feedbackConstant One of the constants defined in
18067     * {@link HapticFeedbackConstants}
18068     * @param flags Additional flags as per {@link HapticFeedbackConstants}.
18069     */
18070    public boolean performHapticFeedback(int feedbackConstant, int flags) {
18071        if (mAttachInfo == null) {
18072            return false;
18073        }
18074        //noinspection SimplifiableIfStatement
18075        if ((flags & HapticFeedbackConstants.FLAG_IGNORE_VIEW_SETTING) == 0
18076                && !isHapticFeedbackEnabled()) {
18077            return false;
18078        }
18079        return mAttachInfo.mRootCallbacks.performHapticFeedback(feedbackConstant,
18080                (flags & HapticFeedbackConstants.FLAG_IGNORE_GLOBAL_SETTING) != 0);
18081    }
18082
18083    /**
18084     * Request that the visibility of the status bar or other screen/window
18085     * decorations be changed.
18086     *
18087     * <p>This method is used to put the over device UI into temporary modes
18088     * where the user's attention is focused more on the application content,
18089     * by dimming or hiding surrounding system affordances.  This is typically
18090     * used in conjunction with {@link Window#FEATURE_ACTION_BAR_OVERLAY
18091     * Window.FEATURE_ACTION_BAR_OVERLAY}, allowing the applications content
18092     * to be placed behind the action bar (and with these flags other system
18093     * affordances) so that smooth transitions between hiding and showing them
18094     * can be done.
18095     *
18096     * <p>Two representative examples of the use of system UI visibility is
18097     * implementing a content browsing application (like a magazine reader)
18098     * and a video playing application.
18099     *
18100     * <p>The first code shows a typical implementation of a View in a content
18101     * browsing application.  In this implementation, the application goes
18102     * into a content-oriented mode by hiding the status bar and action bar,
18103     * and putting the navigation elements into lights out mode.  The user can
18104     * then interact with content while in this mode.  Such an application should
18105     * provide an easy way for the user to toggle out of the mode (such as to
18106     * check information in the status bar or access notifications).  In the
18107     * implementation here, this is done simply by tapping on the content.
18108     *
18109     * {@sample development/samples/ApiDemos/src/com/example/android/apis/view/ContentBrowserActivity.java
18110     *      content}
18111     *
18112     * <p>This second code sample shows a typical implementation of a View
18113     * in a video playing application.  In this situation, while the video is
18114     * playing the application would like to go into a complete full-screen mode,
18115     * to use as much of the display as possible for the video.  When in this state
18116     * the user can not interact with the application; the system intercepts
18117     * touching on the screen to pop the UI out of full screen mode.  See
18118     * {@link #fitSystemWindows(Rect)} for a sample layout that goes with this code.
18119     *
18120     * {@sample development/samples/ApiDemos/src/com/example/android/apis/view/VideoPlayerActivity.java
18121     *      content}
18122     *
18123     * @param visibility  Bitwise-or of flags {@link #SYSTEM_UI_FLAG_LOW_PROFILE},
18124     * {@link #SYSTEM_UI_FLAG_HIDE_NAVIGATION}, {@link #SYSTEM_UI_FLAG_FULLSCREEN},
18125     * {@link #SYSTEM_UI_FLAG_LAYOUT_STABLE}, {@link #SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION},
18126     * {@link #SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN}, {@link #SYSTEM_UI_FLAG_IMMERSIVE},
18127     * and {@link #SYSTEM_UI_FLAG_IMMERSIVE_STICKY}.
18128     */
18129    public void setSystemUiVisibility(int visibility) {
18130        if (visibility != mSystemUiVisibility) {
18131            mSystemUiVisibility = visibility;
18132            if (mParent != null && mAttachInfo != null && !mAttachInfo.mRecomputeGlobalAttributes) {
18133                mParent.recomputeViewAttributes(this);
18134            }
18135        }
18136    }
18137
18138    /**
18139     * Returns the last {@link #setSystemUiVisibility(int)} that this view has requested.
18140     * @return  Bitwise-or of flags {@link #SYSTEM_UI_FLAG_LOW_PROFILE},
18141     * {@link #SYSTEM_UI_FLAG_HIDE_NAVIGATION}, {@link #SYSTEM_UI_FLAG_FULLSCREEN},
18142     * {@link #SYSTEM_UI_FLAG_LAYOUT_STABLE}, {@link #SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION},
18143     * {@link #SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN}, {@link #SYSTEM_UI_FLAG_IMMERSIVE},
18144     * and {@link #SYSTEM_UI_FLAG_IMMERSIVE_STICKY}.
18145     */
18146    public int getSystemUiVisibility() {
18147        return mSystemUiVisibility;
18148    }
18149
18150    /**
18151     * Returns the current system UI visibility that is currently set for
18152     * the entire window.  This is the combination of the
18153     * {@link #setSystemUiVisibility(int)} values supplied by all of the
18154     * views in the window.
18155     */
18156    public int getWindowSystemUiVisibility() {
18157        return mAttachInfo != null ? mAttachInfo.mSystemUiVisibility : 0;
18158    }
18159
18160    /**
18161     * Override to find out when the window's requested system UI visibility
18162     * has changed, that is the value returned by {@link #getWindowSystemUiVisibility()}.
18163     * This is different from the callbacks received through
18164     * {@link #setOnSystemUiVisibilityChangeListener(OnSystemUiVisibilityChangeListener)}
18165     * in that this is only telling you about the local request of the window,
18166     * not the actual values applied by the system.
18167     */
18168    public void onWindowSystemUiVisibilityChanged(int visible) {
18169    }
18170
18171    /**
18172     * Dispatch callbacks to {@link #onWindowSystemUiVisibilityChanged(int)} down
18173     * the view hierarchy.
18174     */
18175    public void dispatchWindowSystemUiVisiblityChanged(int visible) {
18176        onWindowSystemUiVisibilityChanged(visible);
18177    }
18178
18179    /**
18180     * Set a listener to receive callbacks when the visibility of the system bar changes.
18181     * @param l  The {@link OnSystemUiVisibilityChangeListener} to receive callbacks.
18182     */
18183    public void setOnSystemUiVisibilityChangeListener(OnSystemUiVisibilityChangeListener l) {
18184        getListenerInfo().mOnSystemUiVisibilityChangeListener = l;
18185        if (mParent != null && mAttachInfo != null && !mAttachInfo.mRecomputeGlobalAttributes) {
18186            mParent.recomputeViewAttributes(this);
18187        }
18188    }
18189
18190    /**
18191     * Dispatch callbacks to {@link #setOnSystemUiVisibilityChangeListener} down
18192     * the view hierarchy.
18193     */
18194    public void dispatchSystemUiVisibilityChanged(int visibility) {
18195        ListenerInfo li = mListenerInfo;
18196        if (li != null && li.mOnSystemUiVisibilityChangeListener != null) {
18197            li.mOnSystemUiVisibilityChangeListener.onSystemUiVisibilityChange(
18198                    visibility & PUBLIC_STATUS_BAR_VISIBILITY_MASK);
18199        }
18200    }
18201
18202    boolean updateLocalSystemUiVisibility(int localValue, int localChanges) {
18203        int val = (mSystemUiVisibility&~localChanges) | (localValue&localChanges);
18204        if (val != mSystemUiVisibility) {
18205            setSystemUiVisibility(val);
18206            return true;
18207        }
18208        return false;
18209    }
18210
18211    /** @hide */
18212    public void setDisabledSystemUiVisibility(int flags) {
18213        if (mAttachInfo != null) {
18214            if (mAttachInfo.mDisabledSystemUiVisibility != flags) {
18215                mAttachInfo.mDisabledSystemUiVisibility = flags;
18216                if (mParent != null) {
18217                    mParent.recomputeViewAttributes(this);
18218                }
18219            }
18220        }
18221    }
18222
18223    /**
18224     * Creates an image that the system displays during the drag and drop
18225     * operation. This is called a &quot;drag shadow&quot;. The default implementation
18226     * for a DragShadowBuilder based on a View returns an image that has exactly the same
18227     * appearance as the given View. The default also positions the center of the drag shadow
18228     * directly under the touch point. If no View is provided (the constructor with no parameters
18229     * is used), and {@link #onProvideShadowMetrics(Point,Point) onProvideShadowMetrics()} and
18230     * {@link #onDrawShadow(Canvas) onDrawShadow()} are not overriden, then the
18231     * default is an invisible drag shadow.
18232     * <p>
18233     * You are not required to use the View you provide to the constructor as the basis of the
18234     * drag shadow. The {@link #onDrawShadow(Canvas) onDrawShadow()} method allows you to draw
18235     * anything you want as the drag shadow.
18236     * </p>
18237     * <p>
18238     *  You pass a DragShadowBuilder object to the system when you start the drag. The system
18239     *  calls {@link #onProvideShadowMetrics(Point,Point) onProvideShadowMetrics()} to get the
18240     *  size and position of the drag shadow. It uses this data to construct a
18241     *  {@link android.graphics.Canvas} object, then it calls {@link #onDrawShadow(Canvas) onDrawShadow()}
18242     *  so that your application can draw the shadow image in the Canvas.
18243     * </p>
18244     *
18245     * <div class="special reference">
18246     * <h3>Developer Guides</h3>
18247     * <p>For a guide to implementing drag and drop features, read the
18248     * <a href="{@docRoot}guide/topics/ui/drag-drop.html">Drag and Drop</a> developer guide.</p>
18249     * </div>
18250     */
18251    public static class DragShadowBuilder {
18252        private final WeakReference<View> mView;
18253
18254        /**
18255         * Constructs a shadow image builder based on a View. By default, the resulting drag
18256         * shadow will have the same appearance and dimensions as the View, with the touch point
18257         * over the center of the View.
18258         * @param view A View. Any View in scope can be used.
18259         */
18260        public DragShadowBuilder(View view) {
18261            mView = new WeakReference<View>(view);
18262        }
18263
18264        /**
18265         * Construct a shadow builder object with no associated View.  This
18266         * constructor variant is only useful when the {@link #onProvideShadowMetrics(Point, Point)}
18267         * and {@link #onDrawShadow(Canvas)} methods are also overridden in order
18268         * to supply the drag shadow's dimensions and appearance without
18269         * reference to any View object. If they are not overridden, then the result is an
18270         * invisible drag shadow.
18271         */
18272        public DragShadowBuilder() {
18273            mView = new WeakReference<View>(null);
18274        }
18275
18276        /**
18277         * Returns the View object that had been passed to the
18278         * {@link #View.DragShadowBuilder(View)}
18279         * constructor.  If that View parameter was {@code null} or if the
18280         * {@link #View.DragShadowBuilder()}
18281         * constructor was used to instantiate the builder object, this method will return
18282         * null.
18283         *
18284         * @return The View object associate with this builder object.
18285         */
18286        @SuppressWarnings({"JavadocReference"})
18287        final public View getView() {
18288            return mView.get();
18289        }
18290
18291        /**
18292         * Provides the metrics for the shadow image. These include the dimensions of
18293         * the shadow image, and the point within that shadow that should
18294         * be centered under the touch location while dragging.
18295         * <p>
18296         * The default implementation sets the dimensions of the shadow to be the
18297         * same as the dimensions of the View itself and centers the shadow under
18298         * the touch point.
18299         * </p>
18300         *
18301         * @param shadowSize A {@link android.graphics.Point} containing the width and height
18302         * of the shadow image. Your application must set {@link android.graphics.Point#x} to the
18303         * desired width and must set {@link android.graphics.Point#y} to the desired height of the
18304         * image.
18305         *
18306         * @param shadowTouchPoint A {@link android.graphics.Point} for the position within the
18307         * shadow image that should be underneath the touch point during the drag and drop
18308         * operation. Your application must set {@link android.graphics.Point#x} to the
18309         * X coordinate and {@link android.graphics.Point#y} to the Y coordinate of this position.
18310         */
18311        public void onProvideShadowMetrics(Point shadowSize, Point shadowTouchPoint) {
18312            final View view = mView.get();
18313            if (view != null) {
18314                shadowSize.set(view.getWidth(), view.getHeight());
18315                shadowTouchPoint.set(shadowSize.x / 2, shadowSize.y / 2);
18316            } else {
18317                Log.e(View.VIEW_LOG_TAG, "Asked for drag thumb metrics but no view");
18318            }
18319        }
18320
18321        /**
18322         * Draws the shadow image. The system creates the {@link android.graphics.Canvas} object
18323         * based on the dimensions it received from the
18324         * {@link #onProvideShadowMetrics(Point, Point)} callback.
18325         *
18326         * @param canvas A {@link android.graphics.Canvas} object in which to draw the shadow image.
18327         */
18328        public void onDrawShadow(Canvas canvas) {
18329            final View view = mView.get();
18330            if (view != null) {
18331                view.draw(canvas);
18332            } else {
18333                Log.e(View.VIEW_LOG_TAG, "Asked to draw drag shadow but no view");
18334            }
18335        }
18336    }
18337
18338    /**
18339     * Starts a drag and drop operation. When your application calls this method, it passes a
18340     * {@link android.view.View.DragShadowBuilder} object to the system. The
18341     * system calls this object's {@link DragShadowBuilder#onProvideShadowMetrics(Point, Point)}
18342     * to get metrics for the drag shadow, and then calls the object's
18343     * {@link DragShadowBuilder#onDrawShadow(Canvas)} to draw the drag shadow itself.
18344     * <p>
18345     *  Once the system has the drag shadow, it begins the drag and drop operation by sending
18346     *  drag events to all the View objects in your application that are currently visible. It does
18347     *  this either by calling the View object's drag listener (an implementation of
18348     *  {@link android.view.View.OnDragListener#onDrag(View,DragEvent) onDrag()} or by calling the
18349     *  View object's {@link android.view.View#onDragEvent(DragEvent) onDragEvent()} method.
18350     *  Both are passed a {@link android.view.DragEvent} object that has a
18351     *  {@link android.view.DragEvent#getAction()} value of
18352     *  {@link android.view.DragEvent#ACTION_DRAG_STARTED}.
18353     * </p>
18354     * <p>
18355     * Your application can invoke startDrag() on any attached View object. The View object does not
18356     * need to be the one used in {@link android.view.View.DragShadowBuilder}, nor does it need to
18357     * be related to the View the user selected for dragging.
18358     * </p>
18359     * @param data A {@link android.content.ClipData} object pointing to the data to be
18360     * transferred by the drag and drop operation.
18361     * @param shadowBuilder A {@link android.view.View.DragShadowBuilder} object for building the
18362     * drag shadow.
18363     * @param myLocalState An {@link java.lang.Object} containing local data about the drag and
18364     * drop operation. This Object is put into every DragEvent object sent by the system during the
18365     * current drag.
18366     * <p>
18367     * myLocalState is a lightweight mechanism for the sending information from the dragged View
18368     * to the target Views. For example, it can contain flags that differentiate between a
18369     * a copy operation and a move operation.
18370     * </p>
18371     * @param flags Flags that control the drag and drop operation. No flags are currently defined,
18372     * so the parameter should be set to 0.
18373     * @return {@code true} if the method completes successfully, or
18374     * {@code false} if it fails anywhere. Returning {@code false} means the system was unable to
18375     * do a drag, and so no drag operation is in progress.
18376     */
18377    public final boolean startDrag(ClipData data, DragShadowBuilder shadowBuilder,
18378            Object myLocalState, int flags) {
18379        if (ViewDebug.DEBUG_DRAG) {
18380            Log.d(VIEW_LOG_TAG, "startDrag: data=" + data + " flags=" + flags);
18381        }
18382        boolean okay = false;
18383
18384        Point shadowSize = new Point();
18385        Point shadowTouchPoint = new Point();
18386        shadowBuilder.onProvideShadowMetrics(shadowSize, shadowTouchPoint);
18387
18388        if ((shadowSize.x < 0) || (shadowSize.y < 0) ||
18389                (shadowTouchPoint.x < 0) || (shadowTouchPoint.y < 0)) {
18390            throw new IllegalStateException("Drag shadow dimensions must not be negative");
18391        }
18392
18393        if (ViewDebug.DEBUG_DRAG) {
18394            Log.d(VIEW_LOG_TAG, "drag shadow: width=" + shadowSize.x + " height=" + shadowSize.y
18395                    + " shadowX=" + shadowTouchPoint.x + " shadowY=" + shadowTouchPoint.y);
18396        }
18397        Surface surface = new Surface();
18398        try {
18399            IBinder token = mAttachInfo.mSession.prepareDrag(mAttachInfo.mWindow,
18400                    flags, shadowSize.x, shadowSize.y, surface);
18401            if (ViewDebug.DEBUG_DRAG) Log.d(VIEW_LOG_TAG, "prepareDrag returned token=" + token
18402                    + " surface=" + surface);
18403            if (token != null) {
18404                Canvas canvas = surface.lockCanvas(null);
18405                try {
18406                    canvas.drawColor(0, PorterDuff.Mode.CLEAR);
18407                    shadowBuilder.onDrawShadow(canvas);
18408                } finally {
18409                    surface.unlockCanvasAndPost(canvas);
18410                }
18411
18412                final ViewRootImpl root = getViewRootImpl();
18413
18414                // Cache the local state object for delivery with DragEvents
18415                root.setLocalDragState(myLocalState);
18416
18417                // repurpose 'shadowSize' for the last touch point
18418                root.getLastTouchPoint(shadowSize);
18419
18420                okay = mAttachInfo.mSession.performDrag(mAttachInfo.mWindow, token,
18421                        shadowSize.x, shadowSize.y,
18422                        shadowTouchPoint.x, shadowTouchPoint.y, data);
18423                if (ViewDebug.DEBUG_DRAG) Log.d(VIEW_LOG_TAG, "performDrag returned " + okay);
18424
18425                // Off and running!  Release our local surface instance; the drag
18426                // shadow surface is now managed by the system process.
18427                surface.release();
18428            }
18429        } catch (Exception e) {
18430            Log.e(VIEW_LOG_TAG, "Unable to initiate drag", e);
18431            surface.destroy();
18432        }
18433
18434        return okay;
18435    }
18436
18437    /**
18438     * Handles drag events sent by the system following a call to
18439     * {@link android.view.View#startDrag(ClipData,DragShadowBuilder,Object,int) startDrag()}.
18440     *<p>
18441     * When the system calls this method, it passes a
18442     * {@link android.view.DragEvent} object. A call to
18443     * {@link android.view.DragEvent#getAction()} returns one of the action type constants defined
18444     * in DragEvent. The method uses these to determine what is happening in the drag and drop
18445     * operation.
18446     * @param event The {@link android.view.DragEvent} sent by the system.
18447     * The {@link android.view.DragEvent#getAction()} method returns an action type constant defined
18448     * in DragEvent, indicating the type of drag event represented by this object.
18449     * @return {@code true} if the method was successful, otherwise {@code false}.
18450     * <p>
18451     *  The method should return {@code true} in response to an action type of
18452     *  {@link android.view.DragEvent#ACTION_DRAG_STARTED} to receive drag events for the current
18453     *  operation.
18454     * </p>
18455     * <p>
18456     *  The method should also return {@code true} in response to an action type of
18457     *  {@link android.view.DragEvent#ACTION_DROP} if it consumed the drop, or
18458     *  {@code false} if it didn't.
18459     * </p>
18460     */
18461    public boolean onDragEvent(DragEvent event) {
18462        return false;
18463    }
18464
18465    /**
18466     * Detects if this View is enabled and has a drag event listener.
18467     * If both are true, then it calls the drag event listener with the
18468     * {@link android.view.DragEvent} it received. If the drag event listener returns
18469     * {@code true}, then dispatchDragEvent() returns {@code true}.
18470     * <p>
18471     * For all other cases, the method calls the
18472     * {@link android.view.View#onDragEvent(DragEvent) onDragEvent()} drag event handler
18473     * method and returns its result.
18474     * </p>
18475     * <p>
18476     * This ensures that a drag event is always consumed, even if the View does not have a drag
18477     * event listener. However, if the View has a listener and the listener returns true, then
18478     * onDragEvent() is not called.
18479     * </p>
18480     */
18481    public boolean dispatchDragEvent(DragEvent event) {
18482        ListenerInfo li = mListenerInfo;
18483        //noinspection SimplifiableIfStatement
18484        if (li != null && li.mOnDragListener != null && (mViewFlags & ENABLED_MASK) == ENABLED
18485                && li.mOnDragListener.onDrag(this, event)) {
18486            return true;
18487        }
18488        return onDragEvent(event);
18489    }
18490
18491    boolean canAcceptDrag() {
18492        return (mPrivateFlags2 & PFLAG2_DRAG_CAN_ACCEPT) != 0;
18493    }
18494
18495    /**
18496     * This needs to be a better API (NOT ON VIEW) before it is exposed.  If
18497     * it is ever exposed at all.
18498     * @hide
18499     */
18500    public void onCloseSystemDialogs(String reason) {
18501    }
18502
18503    /**
18504     * Given a Drawable whose bounds have been set to draw into this view,
18505     * update a Region being computed for
18506     * {@link #gatherTransparentRegion(android.graphics.Region)} so
18507     * that any non-transparent parts of the Drawable are removed from the
18508     * given transparent region.
18509     *
18510     * @param dr The Drawable whose transparency is to be applied to the region.
18511     * @param region A Region holding the current transparency information,
18512     * where any parts of the region that are set are considered to be
18513     * transparent.  On return, this region will be modified to have the
18514     * transparency information reduced by the corresponding parts of the
18515     * Drawable that are not transparent.
18516     * {@hide}
18517     */
18518    public void applyDrawableToTransparentRegion(Drawable dr, Region region) {
18519        if (DBG) {
18520            Log.i("View", "Getting transparent region for: " + this);
18521        }
18522        final Region r = dr.getTransparentRegion();
18523        final Rect db = dr.getBounds();
18524        final AttachInfo attachInfo = mAttachInfo;
18525        if (r != null && attachInfo != null) {
18526            final int w = getRight()-getLeft();
18527            final int h = getBottom()-getTop();
18528            if (db.left > 0) {
18529                //Log.i("VIEW", "Drawable left " + db.left + " > view 0");
18530                r.op(0, 0, db.left, h, Region.Op.UNION);
18531            }
18532            if (db.right < w) {
18533                //Log.i("VIEW", "Drawable right " + db.right + " < view " + w);
18534                r.op(db.right, 0, w, h, Region.Op.UNION);
18535            }
18536            if (db.top > 0) {
18537                //Log.i("VIEW", "Drawable top " + db.top + " > view 0");
18538                r.op(0, 0, w, db.top, Region.Op.UNION);
18539            }
18540            if (db.bottom < h) {
18541                //Log.i("VIEW", "Drawable bottom " + db.bottom + " < view " + h);
18542                r.op(0, db.bottom, w, h, Region.Op.UNION);
18543            }
18544            final int[] location = attachInfo.mTransparentLocation;
18545            getLocationInWindow(location);
18546            r.translate(location[0], location[1]);
18547            region.op(r, Region.Op.INTERSECT);
18548        } else {
18549            region.op(db, Region.Op.DIFFERENCE);
18550        }
18551    }
18552
18553    private void checkForLongClick(int delayOffset) {
18554        if ((mViewFlags & LONG_CLICKABLE) == LONG_CLICKABLE) {
18555            mHasPerformedLongPress = false;
18556
18557            if (mPendingCheckForLongPress == null) {
18558                mPendingCheckForLongPress = new CheckForLongPress();
18559            }
18560            mPendingCheckForLongPress.rememberWindowAttachCount();
18561            postDelayed(mPendingCheckForLongPress,
18562                    ViewConfiguration.getLongPressTimeout() - delayOffset);
18563        }
18564    }
18565
18566    /**
18567     * Inflate a view from an XML resource.  This convenience method wraps the {@link
18568     * LayoutInflater} class, which provides a full range of options for view inflation.
18569     *
18570     * @param context The Context object for your activity or application.
18571     * @param resource The resource ID to inflate
18572     * @param root A view group that will be the parent.  Used to properly inflate the
18573     * layout_* parameters.
18574     * @see LayoutInflater
18575     */
18576    public static View inflate(Context context, int resource, ViewGroup root) {
18577        LayoutInflater factory = LayoutInflater.from(context);
18578        return factory.inflate(resource, root);
18579    }
18580
18581    /**
18582     * Scroll the view with standard behavior for scrolling beyond the normal
18583     * content boundaries. Views that call this method should override
18584     * {@link #onOverScrolled(int, int, boolean, boolean)} to respond to the
18585     * results of an over-scroll operation.
18586     *
18587     * Views can use this method to handle any touch or fling-based scrolling.
18588     *
18589     * @param deltaX Change in X in pixels
18590     * @param deltaY Change in Y in pixels
18591     * @param scrollX Current X scroll value in pixels before applying deltaX
18592     * @param scrollY Current Y scroll value in pixels before applying deltaY
18593     * @param scrollRangeX Maximum content scroll range along the X axis
18594     * @param scrollRangeY Maximum content scroll range along the Y axis
18595     * @param maxOverScrollX Number of pixels to overscroll by in either direction
18596     *          along the X axis.
18597     * @param maxOverScrollY Number of pixels to overscroll by in either direction
18598     *          along the Y axis.
18599     * @param isTouchEvent true if this scroll operation is the result of a touch event.
18600     * @return true if scrolling was clamped to an over-scroll boundary along either
18601     *          axis, false otherwise.
18602     */
18603    @SuppressWarnings({"UnusedParameters"})
18604    protected boolean overScrollBy(int deltaX, int deltaY,
18605            int scrollX, int scrollY,
18606            int scrollRangeX, int scrollRangeY,
18607            int maxOverScrollX, int maxOverScrollY,
18608            boolean isTouchEvent) {
18609        final int overScrollMode = mOverScrollMode;
18610        final boolean canScrollHorizontal =
18611                computeHorizontalScrollRange() > computeHorizontalScrollExtent();
18612        final boolean canScrollVertical =
18613                computeVerticalScrollRange() > computeVerticalScrollExtent();
18614        final boolean overScrollHorizontal = overScrollMode == OVER_SCROLL_ALWAYS ||
18615                (overScrollMode == OVER_SCROLL_IF_CONTENT_SCROLLS && canScrollHorizontal);
18616        final boolean overScrollVertical = overScrollMode == OVER_SCROLL_ALWAYS ||
18617                (overScrollMode == OVER_SCROLL_IF_CONTENT_SCROLLS && canScrollVertical);
18618
18619        int newScrollX = scrollX + deltaX;
18620        if (!overScrollHorizontal) {
18621            maxOverScrollX = 0;
18622        }
18623
18624        int newScrollY = scrollY + deltaY;
18625        if (!overScrollVertical) {
18626            maxOverScrollY = 0;
18627        }
18628
18629        // Clamp values if at the limits and record
18630        final int left = -maxOverScrollX;
18631        final int right = maxOverScrollX + scrollRangeX;
18632        final int top = -maxOverScrollY;
18633        final int bottom = maxOverScrollY + scrollRangeY;
18634
18635        boolean clampedX = false;
18636        if (newScrollX > right) {
18637            newScrollX = right;
18638            clampedX = true;
18639        } else if (newScrollX < left) {
18640            newScrollX = left;
18641            clampedX = true;
18642        }
18643
18644        boolean clampedY = false;
18645        if (newScrollY > bottom) {
18646            newScrollY = bottom;
18647            clampedY = true;
18648        } else if (newScrollY < top) {
18649            newScrollY = top;
18650            clampedY = true;
18651        }
18652
18653        onOverScrolled(newScrollX, newScrollY, clampedX, clampedY);
18654
18655        return clampedX || clampedY;
18656    }
18657
18658    /**
18659     * Called by {@link #overScrollBy(int, int, int, int, int, int, int, int, boolean)} to
18660     * respond to the results of an over-scroll operation.
18661     *
18662     * @param scrollX New X scroll value in pixels
18663     * @param scrollY New Y scroll value in pixels
18664     * @param clampedX True if scrollX was clamped to an over-scroll boundary
18665     * @param clampedY True if scrollY was clamped to an over-scroll boundary
18666     */
18667    protected void onOverScrolled(int scrollX, int scrollY,
18668            boolean clampedX, boolean clampedY) {
18669        // Intentionally empty.
18670    }
18671
18672    /**
18673     * Returns the over-scroll mode for this view. The result will be
18674     * one of {@link #OVER_SCROLL_ALWAYS} (default), {@link #OVER_SCROLL_IF_CONTENT_SCROLLS}
18675     * (allow over-scrolling only if the view content is larger than the container),
18676     * or {@link #OVER_SCROLL_NEVER}.
18677     *
18678     * @return This view's over-scroll mode.
18679     */
18680    public int getOverScrollMode() {
18681        return mOverScrollMode;
18682    }
18683
18684    /**
18685     * Set the over-scroll mode for this view. Valid over-scroll modes are
18686     * {@link #OVER_SCROLL_ALWAYS} (default), {@link #OVER_SCROLL_IF_CONTENT_SCROLLS}
18687     * (allow over-scrolling only if the view content is larger than the container),
18688     * or {@link #OVER_SCROLL_NEVER}.
18689     *
18690     * Setting the over-scroll mode of a view will have an effect only if the
18691     * view is capable of scrolling.
18692     *
18693     * @param overScrollMode The new over-scroll mode for this view.
18694     */
18695    public void setOverScrollMode(int overScrollMode) {
18696        if (overScrollMode != OVER_SCROLL_ALWAYS &&
18697                overScrollMode != OVER_SCROLL_IF_CONTENT_SCROLLS &&
18698                overScrollMode != OVER_SCROLL_NEVER) {
18699            throw new IllegalArgumentException("Invalid overscroll mode " + overScrollMode);
18700        }
18701        mOverScrollMode = overScrollMode;
18702    }
18703
18704    /**
18705     * Enable or disable nested scrolling for this view.
18706     *
18707     * <p>If this property is set to true the view will be permitted to initiate nested
18708     * scrolling operations with a compatible parent view in the current hierarchy. If this
18709     * view does not implement nested scrolling this will have no effect. Disabling nested scrolling
18710     * while a nested scroll is in progress has the effect of {@link #stopNestedScroll() stopping}
18711     * the nested scroll.</p>
18712     *
18713     * @param enabled true to enable nested scrolling, false to disable
18714     *
18715     * @see #isNestedScrollingEnabled()
18716     */
18717    public void setNestedScrollingEnabled(boolean enabled) {
18718        if (enabled) {
18719            mPrivateFlags3 |= PFLAG3_NESTED_SCROLLING_ENABLED;
18720        } else {
18721            stopNestedScroll();
18722            mPrivateFlags3 &= ~PFLAG3_NESTED_SCROLLING_ENABLED;
18723        }
18724    }
18725
18726    /**
18727     * Returns true if nested scrolling is enabled for this view.
18728     *
18729     * <p>If nested scrolling is enabled and this View class implementation supports it,
18730     * this view will act as a nested scrolling child view when applicable, forwarding data
18731     * about the scroll operation in progress to a compatible and cooperating nested scrolling
18732     * parent.</p>
18733     *
18734     * @return true if nested scrolling is enabled
18735     *
18736     * @see #setNestedScrollingEnabled(boolean)
18737     */
18738    public boolean isNestedScrollingEnabled() {
18739        return (mPrivateFlags3 & PFLAG3_NESTED_SCROLLING_ENABLED) ==
18740                PFLAG3_NESTED_SCROLLING_ENABLED;
18741    }
18742
18743    /**
18744     * Begin a nestable scroll operation along the given axes.
18745     *
18746     * <p>A view starting a nested scroll promises to abide by the following contract:</p>
18747     *
18748     * <p>The view will call startNestedScroll upon initiating a scroll operation. In the case
18749     * of a touch scroll this corresponds to the initial {@link MotionEvent#ACTION_DOWN}.
18750     * In the case of touch scrolling the nested scroll will be terminated automatically in
18751     * the same manner as {@link ViewParent#requestDisallowInterceptTouchEvent(boolean)}.
18752     * In the event of programmatic scrolling the caller must explicitly call
18753     * {@link #stopNestedScroll()} to indicate the end of the nested scroll.</p>
18754     *
18755     * <p>If <code>startNestedScroll</code> returns true, a cooperative parent was found.
18756     * If it returns false the caller may ignore the rest of this contract until the next scroll.
18757     * Calling startNestedScroll while a nested scroll is already in progress will return true.</p>
18758     *
18759     * <p>At each incremental step of the scroll the caller should invoke
18760     * {@link #dispatchNestedPreScroll(int, int, int[], int[]) dispatchNestedPreScroll}
18761     * once it has calculated the requested scrolling delta. If it returns true the nested scrolling
18762     * parent at least partially consumed the scroll and the caller should adjust the amount it
18763     * scrolls by.</p>
18764     *
18765     * <p>After applying the remainder of the scroll delta the caller should invoke
18766     * {@link #dispatchNestedScroll(int, int, int, int, int[]) dispatchNestedScroll}, passing
18767     * both the delta consumed and the delta unconsumed. A nested scrolling parent may treat
18768     * these values differently. See {@link ViewParent#onNestedScroll(View, int, int, int, int)}.
18769     * </p>
18770     *
18771     * @param axes Flags consisting of a combination of {@link #SCROLL_AXIS_HORIZONTAL} and/or
18772     *             {@link #SCROLL_AXIS_VERTICAL}.
18773     * @return true if a cooperative parent was found and nested scrolling has been enabled for
18774     *         the current gesture.
18775     *
18776     * @see #stopNestedScroll()
18777     * @see #dispatchNestedPreScroll(int, int, int[], int[])
18778     * @see #dispatchNestedScroll(int, int, int, int, int[])
18779     */
18780    public boolean startNestedScroll(int axes) {
18781        if (hasNestedScrollingParent()) {
18782            // Already in progress
18783            return true;
18784        }
18785        if (isNestedScrollingEnabled()) {
18786            ViewParent p = getParent();
18787            View child = this;
18788            while (p != null) {
18789                try {
18790                    if (p.onStartNestedScroll(child, this, axes)) {
18791                        mNestedScrollingParent = p;
18792                        p.onNestedScrollAccepted(child, this, axes);
18793                        return true;
18794                    }
18795                } catch (AbstractMethodError e) {
18796                    Log.e(VIEW_LOG_TAG, "ViewParent " + p + " does not implement interface " +
18797                            "method onStartNestedScroll", e);
18798                    // Allow the search upward to continue
18799                }
18800                if (p instanceof View) {
18801                    child = (View) p;
18802                }
18803                p = p.getParent();
18804            }
18805        }
18806        return false;
18807    }
18808
18809    /**
18810     * Stop a nested scroll in progress.
18811     *
18812     * <p>Calling this method when a nested scroll is not currently in progress is harmless.</p>
18813     *
18814     * @see #startNestedScroll(int)
18815     */
18816    public void stopNestedScroll() {
18817        if (mNestedScrollingParent != null) {
18818            mNestedScrollingParent.onStopNestedScroll(this);
18819            mNestedScrollingParent = null;
18820        }
18821    }
18822
18823    /**
18824     * Returns true if this view has a nested scrolling parent.
18825     *
18826     * <p>The presence of a nested scrolling parent indicates that this view has initiated
18827     * a nested scroll and it was accepted by an ancestor view further up the view hierarchy.</p>
18828     *
18829     * @return whether this view has a nested scrolling parent
18830     */
18831    public boolean hasNestedScrollingParent() {
18832        return mNestedScrollingParent != null;
18833    }
18834
18835    /**
18836     * Dispatch one step of a nested scroll in progress.
18837     *
18838     * <p>Implementations of views that support nested scrolling should call this to report
18839     * info about a scroll in progress to the current nested scrolling parent. If a nested scroll
18840     * is not currently in progress or nested scrolling is not
18841     * {@link #isNestedScrollingEnabled() enabled} for this view this method does nothing.</p>
18842     *
18843     * <p>Compatible View implementations should also call
18844     * {@link #dispatchNestedPreScroll(int, int, int[], int[]) dispatchNestedPreScroll} before
18845     * consuming a component of the scroll event themselves.</p>
18846     *
18847     * @param dxConsumed Horizontal distance in pixels consumed by this view during this scroll step
18848     * @param dyConsumed Vertical distance in pixels consumed by this view during this scroll step
18849     * @param dxUnconsumed Horizontal scroll distance in pixels not consumed by this view
18850     * @param dyUnconsumed Horizontal scroll distance in pixels not consumed by this view
18851     * @param offsetInWindow Optional. If not null, on return this will contain the offset
18852     *                       in local view coordinates of this view from before this operation
18853     *                       to after it completes. View implementations may use this to adjust
18854     *                       expected input coordinate tracking.
18855     * @return true if the event was dispatched, false if it could not be dispatched.
18856     * @see #dispatchNestedPreScroll(int, int, int[], int[])
18857     */
18858    public boolean dispatchNestedScroll(int dxConsumed, int dyConsumed,
18859            int dxUnconsumed, int dyUnconsumed, int[] offsetInWindow) {
18860        if (isNestedScrollingEnabled() && mNestedScrollingParent != null) {
18861            if (dxConsumed != 0 || dyConsumed != 0 || dxUnconsumed != 0 || dyUnconsumed != 0) {
18862                int startX = 0;
18863                int startY = 0;
18864                if (offsetInWindow != null) {
18865                    getLocationInWindow(offsetInWindow);
18866                    startX = offsetInWindow[0];
18867                    startY = offsetInWindow[1];
18868                }
18869
18870                mNestedScrollingParent.onNestedScroll(this, dxConsumed, dyConsumed,
18871                        dxUnconsumed, dyUnconsumed);
18872
18873                if (offsetInWindow != null) {
18874                    getLocationInWindow(offsetInWindow);
18875                    offsetInWindow[0] -= startX;
18876                    offsetInWindow[1] -= startY;
18877                }
18878                return true;
18879            } else if (offsetInWindow != null) {
18880                // No motion, no dispatch. Keep offsetInWindow up to date.
18881                offsetInWindow[0] = 0;
18882                offsetInWindow[1] = 0;
18883            }
18884        }
18885        return false;
18886    }
18887
18888    /**
18889     * Dispatch one step of a nested scroll in progress before this view consumes any portion of it.
18890     *
18891     * <p>Nested pre-scroll events are to nested scroll events what touch intercept is to touch.
18892     * <code>dispatchNestedPreScroll</code> offers an opportunity for the parent view in a nested
18893     * scrolling operation to consume some or all of the scroll operation before the child view
18894     * consumes it.</p>
18895     *
18896     * @param dx Horizontal scroll distance in pixels
18897     * @param dy Vertical scroll distance in pixels
18898     * @param consumed Output. If not null, consumed[0] will contain the consumed component of dx
18899     *                 and consumed[1] the consumed dy.
18900     * @param offsetInWindow Optional. If not null, on return this will contain the offset
18901     *                       in local view coordinates of this view from before this operation
18902     *                       to after it completes. View implementations may use this to adjust
18903     *                       expected input coordinate tracking.
18904     * @return true if the parent consumed some or all of the scroll delta
18905     * @see #dispatchNestedScroll(int, int, int, int, int[])
18906     */
18907    public boolean dispatchNestedPreScroll(int dx, int dy, int[] consumed, int[] offsetInWindow) {
18908        if (isNestedScrollingEnabled() && mNestedScrollingParent != null) {
18909            if (dx != 0 || dy != 0) {
18910                int startX = 0;
18911                int startY = 0;
18912                if (offsetInWindow != null) {
18913                    getLocationInWindow(offsetInWindow);
18914                    startX = offsetInWindow[0];
18915                    startY = offsetInWindow[1];
18916                }
18917
18918                if (consumed == null) {
18919                    if (mTempNestedScrollConsumed == null) {
18920                        mTempNestedScrollConsumed = new int[2];
18921                    }
18922                    consumed = mTempNestedScrollConsumed;
18923                }
18924                consumed[0] = 0;
18925                consumed[1] = 0;
18926                mNestedScrollingParent.onNestedPreScroll(this, dx, dy, consumed);
18927
18928                if (offsetInWindow != null) {
18929                    getLocationInWindow(offsetInWindow);
18930                    offsetInWindow[0] -= startX;
18931                    offsetInWindow[1] -= startY;
18932                }
18933                return consumed[0] != 0 || consumed[1] != 0;
18934            } else if (offsetInWindow != null) {
18935                offsetInWindow[0] = 0;
18936                offsetInWindow[1] = 0;
18937            }
18938        }
18939        return false;
18940    }
18941
18942    /**
18943     * Dispatch a fling to a nested scrolling parent.
18944     *
18945     * <p>This method should be used to indicate that a nested scrolling child has detected
18946     * suitable conditions for a fling. Generally this means that a touch scroll has ended with a
18947     * {@link VelocityTracker velocity} in the direction of scrolling that meets or exceeds
18948     * the {@link ViewConfiguration#getScaledMinimumFlingVelocity() minimum fling velocity}
18949     * along a scrollable axis.</p>
18950     *
18951     * <p>If a nested scrolling child view would normally fling but it is at the edge of
18952     * its own content, it can use this method to delegate the fling to its nested scrolling
18953     * parent instead. The parent may optionally consume the fling or observe a child fling.</p>
18954     *
18955     * @param velocityX Horizontal fling velocity in pixels per second
18956     * @param velocityY Vertical fling velocity in pixels per second
18957     * @param consumed true if the child consumed the fling, false otherwise
18958     * @return true if the nested scrolling parent consumed or otherwise reacted to the fling
18959     */
18960    public boolean dispatchNestedFling(float velocityX, float velocityY, boolean consumed) {
18961        if (isNestedScrollingEnabled() && mNestedScrollingParent != null) {
18962            return mNestedScrollingParent.onNestedFling(this, velocityX, velocityY, consumed);
18963        }
18964        return false;
18965    }
18966
18967    /**
18968     * Dispatch a fling to a nested scrolling parent before it is processed by this view.
18969     *
18970     * <p>Nested pre-fling events are to nested fling events what touch intercept is to touch
18971     * and what nested pre-scroll is to nested scroll. <code>dispatchNestedPreFling</code>
18972     * offsets an opportunity for the parent view in a nested fling to fully consume the fling
18973     * before the child view consumes it. If this method returns <code>true</code>, a nested
18974     * parent view consumed the fling and this view should not scroll as a result.</p>
18975     *
18976     * <p>For a better user experience, only one view in a nested scrolling chain should consume
18977     * the fling at a time. If a parent view consumed the fling this method will return false.
18978     * Custom view implementations should account for this in two ways:</p>
18979     *
18980     * <ul>
18981     *     <li>If a custom view is paged and needs to settle to a fixed page-point, do not
18982     *     call <code>dispatchNestedPreFling</code>; consume the fling and settle to a valid
18983     *     position regardless.</li>
18984     *     <li>If a nested parent does consume the fling, this view should not scroll at all,
18985     *     even to settle back to a valid idle position.</li>
18986     * </ul>
18987     *
18988     * <p>Views should also not offer fling velocities to nested parent views along an axis
18989     * where scrolling is not currently supported; a {@link android.widget.ScrollView ScrollView}
18990     * should not offer a horizontal fling velocity to its parents since scrolling along that
18991     * axis is not permitted and carrying velocity along that motion does not make sense.</p>
18992     *
18993     * @param velocityX Horizontal fling velocity in pixels per second
18994     * @param velocityY Vertical fling velocity in pixels per second
18995     * @return true if a nested scrolling parent consumed the fling
18996     */
18997    public boolean dispatchNestedPreFling(float velocityX, float velocityY) {
18998        if (isNestedScrollingEnabled() && mNestedScrollingParent != null) {
18999            return mNestedScrollingParent.onNestedPreFling(this, velocityX, velocityY);
19000        }
19001        return false;
19002    }
19003
19004    /**
19005     * Gets a scale factor that determines the distance the view should scroll
19006     * vertically in response to {@link MotionEvent#ACTION_SCROLL}.
19007     * @return The vertical scroll scale factor.
19008     * @hide
19009     */
19010    protected float getVerticalScrollFactor() {
19011        if (mVerticalScrollFactor == 0) {
19012            TypedValue outValue = new TypedValue();
19013            if (!mContext.getTheme().resolveAttribute(
19014                    com.android.internal.R.attr.listPreferredItemHeight, outValue, true)) {
19015                throw new IllegalStateException(
19016                        "Expected theme to define listPreferredItemHeight.");
19017            }
19018            mVerticalScrollFactor = outValue.getDimension(
19019                    mContext.getResources().getDisplayMetrics());
19020        }
19021        return mVerticalScrollFactor;
19022    }
19023
19024    /**
19025     * Gets a scale factor that determines the distance the view should scroll
19026     * horizontally in response to {@link MotionEvent#ACTION_SCROLL}.
19027     * @return The horizontal scroll scale factor.
19028     * @hide
19029     */
19030    protected float getHorizontalScrollFactor() {
19031        // TODO: Should use something else.
19032        return getVerticalScrollFactor();
19033    }
19034
19035    /**
19036     * Return the value specifying the text direction or policy that was set with
19037     * {@link #setTextDirection(int)}.
19038     *
19039     * @return the defined text direction. It can be one of:
19040     *
19041     * {@link #TEXT_DIRECTION_INHERIT},
19042     * {@link #TEXT_DIRECTION_FIRST_STRONG}
19043     * {@link #TEXT_DIRECTION_ANY_RTL},
19044     * {@link #TEXT_DIRECTION_LTR},
19045     * {@link #TEXT_DIRECTION_RTL},
19046     * {@link #TEXT_DIRECTION_LOCALE}
19047     *
19048     * @attr ref android.R.styleable#View_textDirection
19049     *
19050     * @hide
19051     */
19052    @ViewDebug.ExportedProperty(category = "text", mapping = {
19053            @ViewDebug.IntToString(from = TEXT_DIRECTION_INHERIT, to = "INHERIT"),
19054            @ViewDebug.IntToString(from = TEXT_DIRECTION_FIRST_STRONG, to = "FIRST_STRONG"),
19055            @ViewDebug.IntToString(from = TEXT_DIRECTION_ANY_RTL, to = "ANY_RTL"),
19056            @ViewDebug.IntToString(from = TEXT_DIRECTION_LTR, to = "LTR"),
19057            @ViewDebug.IntToString(from = TEXT_DIRECTION_RTL, to = "RTL"),
19058            @ViewDebug.IntToString(from = TEXT_DIRECTION_LOCALE, to = "LOCALE")
19059    })
19060    public int getRawTextDirection() {
19061        return (mPrivateFlags2 & PFLAG2_TEXT_DIRECTION_MASK) >> PFLAG2_TEXT_DIRECTION_MASK_SHIFT;
19062    }
19063
19064    /**
19065     * Set the text direction.
19066     *
19067     * @param textDirection the direction to set. Should be one of:
19068     *
19069     * {@link #TEXT_DIRECTION_INHERIT},
19070     * {@link #TEXT_DIRECTION_FIRST_STRONG}
19071     * {@link #TEXT_DIRECTION_ANY_RTL},
19072     * {@link #TEXT_DIRECTION_LTR},
19073     * {@link #TEXT_DIRECTION_RTL},
19074     * {@link #TEXT_DIRECTION_LOCALE}
19075     *
19076     * Resolution will be done if the value is set to TEXT_DIRECTION_INHERIT. The resolution
19077     * proceeds up the parent chain of the view to get the value. If there is no parent, then it will
19078     * return the default {@link #TEXT_DIRECTION_FIRST_STRONG}.
19079     *
19080     * @attr ref android.R.styleable#View_textDirection
19081     */
19082    public void setTextDirection(int textDirection) {
19083        if (getRawTextDirection() != textDirection) {
19084            // Reset the current text direction and the resolved one
19085            mPrivateFlags2 &= ~PFLAG2_TEXT_DIRECTION_MASK;
19086            resetResolvedTextDirection();
19087            // Set the new text direction
19088            mPrivateFlags2 |= ((textDirection << PFLAG2_TEXT_DIRECTION_MASK_SHIFT) & PFLAG2_TEXT_DIRECTION_MASK);
19089            // Do resolution
19090            resolveTextDirection();
19091            // Notify change
19092            onRtlPropertiesChanged(getLayoutDirection());
19093            // Refresh
19094            requestLayout();
19095            invalidate(true);
19096        }
19097    }
19098
19099    /**
19100     * Return the resolved text direction.
19101     *
19102     * @return the resolved text direction. Returns one of:
19103     *
19104     * {@link #TEXT_DIRECTION_FIRST_STRONG}
19105     * {@link #TEXT_DIRECTION_ANY_RTL},
19106     * {@link #TEXT_DIRECTION_LTR},
19107     * {@link #TEXT_DIRECTION_RTL},
19108     * {@link #TEXT_DIRECTION_LOCALE}
19109     *
19110     * @attr ref android.R.styleable#View_textDirection
19111     */
19112    @ViewDebug.ExportedProperty(category = "text", mapping = {
19113            @ViewDebug.IntToString(from = TEXT_DIRECTION_INHERIT, to = "INHERIT"),
19114            @ViewDebug.IntToString(from = TEXT_DIRECTION_FIRST_STRONG, to = "FIRST_STRONG"),
19115            @ViewDebug.IntToString(from = TEXT_DIRECTION_ANY_RTL, to = "ANY_RTL"),
19116            @ViewDebug.IntToString(from = TEXT_DIRECTION_LTR, to = "LTR"),
19117            @ViewDebug.IntToString(from = TEXT_DIRECTION_RTL, to = "RTL"),
19118            @ViewDebug.IntToString(from = TEXT_DIRECTION_LOCALE, to = "LOCALE")
19119    })
19120    public int getTextDirection() {
19121        return (mPrivateFlags2 & PFLAG2_TEXT_DIRECTION_RESOLVED_MASK) >> PFLAG2_TEXT_DIRECTION_RESOLVED_MASK_SHIFT;
19122    }
19123
19124    /**
19125     * Resolve the text direction.
19126     *
19127     * @return true if resolution has been done, false otherwise.
19128     *
19129     * @hide
19130     */
19131    public boolean resolveTextDirection() {
19132        // Reset any previous text direction resolution
19133        mPrivateFlags2 &= ~(PFLAG2_TEXT_DIRECTION_RESOLVED | PFLAG2_TEXT_DIRECTION_RESOLVED_MASK);
19134
19135        if (hasRtlSupport()) {
19136            // Set resolved text direction flag depending on text direction flag
19137            final int textDirection = getRawTextDirection();
19138            switch(textDirection) {
19139                case TEXT_DIRECTION_INHERIT:
19140                    if (!canResolveTextDirection()) {
19141                        // We cannot do the resolution if there is no parent, so use the default one
19142                        mPrivateFlags2 |= PFLAG2_TEXT_DIRECTION_RESOLVED_DEFAULT;
19143                        // Resolution will need to happen again later
19144                        return false;
19145                    }
19146
19147                    // Parent has not yet resolved, so we still return the default
19148                    try {
19149                        if (!mParent.isTextDirectionResolved()) {
19150                            mPrivateFlags2 |= PFLAG2_TEXT_DIRECTION_RESOLVED_DEFAULT;
19151                            // Resolution will need to happen again later
19152                            return false;
19153                        }
19154                    } catch (AbstractMethodError e) {
19155                        Log.e(VIEW_LOG_TAG, mParent.getClass().getSimpleName() +
19156                                " does not fully implement ViewParent", e);
19157                        mPrivateFlags2 |= PFLAG2_TEXT_DIRECTION_RESOLVED |
19158                                PFLAG2_TEXT_DIRECTION_RESOLVED_DEFAULT;
19159                        return true;
19160                    }
19161
19162                    // Set current resolved direction to the same value as the parent's one
19163                    int parentResolvedDirection;
19164                    try {
19165                        parentResolvedDirection = mParent.getTextDirection();
19166                    } catch (AbstractMethodError e) {
19167                        Log.e(VIEW_LOG_TAG, mParent.getClass().getSimpleName() +
19168                                " does not fully implement ViewParent", e);
19169                        parentResolvedDirection = TEXT_DIRECTION_LTR;
19170                    }
19171                    switch (parentResolvedDirection) {
19172                        case TEXT_DIRECTION_FIRST_STRONG:
19173                        case TEXT_DIRECTION_ANY_RTL:
19174                        case TEXT_DIRECTION_LTR:
19175                        case TEXT_DIRECTION_RTL:
19176                        case TEXT_DIRECTION_LOCALE:
19177                            mPrivateFlags2 |=
19178                                    (parentResolvedDirection << PFLAG2_TEXT_DIRECTION_RESOLVED_MASK_SHIFT);
19179                            break;
19180                        default:
19181                            // Default resolved direction is "first strong" heuristic
19182                            mPrivateFlags2 |= PFLAG2_TEXT_DIRECTION_RESOLVED_DEFAULT;
19183                    }
19184                    break;
19185                case TEXT_DIRECTION_FIRST_STRONG:
19186                case TEXT_DIRECTION_ANY_RTL:
19187                case TEXT_DIRECTION_LTR:
19188                case TEXT_DIRECTION_RTL:
19189                case TEXT_DIRECTION_LOCALE:
19190                    // Resolved direction is the same as text direction
19191                    mPrivateFlags2 |= (textDirection << PFLAG2_TEXT_DIRECTION_RESOLVED_MASK_SHIFT);
19192                    break;
19193                default:
19194                    // Default resolved direction is "first strong" heuristic
19195                    mPrivateFlags2 |= PFLAG2_TEXT_DIRECTION_RESOLVED_DEFAULT;
19196            }
19197        } else {
19198            // Default resolved direction is "first strong" heuristic
19199            mPrivateFlags2 |= PFLAG2_TEXT_DIRECTION_RESOLVED_DEFAULT;
19200        }
19201
19202        // Set to resolved
19203        mPrivateFlags2 |= PFLAG2_TEXT_DIRECTION_RESOLVED;
19204        return true;
19205    }
19206
19207    /**
19208     * Check if text direction resolution can be done.
19209     *
19210     * @return true if text direction resolution can be done otherwise return false.
19211     */
19212    public boolean canResolveTextDirection() {
19213        switch (getRawTextDirection()) {
19214            case TEXT_DIRECTION_INHERIT:
19215                if (mParent != null) {
19216                    try {
19217                        return mParent.canResolveTextDirection();
19218                    } catch (AbstractMethodError e) {
19219                        Log.e(VIEW_LOG_TAG, mParent.getClass().getSimpleName() +
19220                                " does not fully implement ViewParent", e);
19221                    }
19222                }
19223                return false;
19224
19225            default:
19226                return true;
19227        }
19228    }
19229
19230    /**
19231     * Reset resolved text direction. Text direction will be resolved during a call to
19232     * {@link #onMeasure(int, int)}.
19233     *
19234     * @hide
19235     */
19236    public void resetResolvedTextDirection() {
19237        // Reset any previous text direction resolution
19238        mPrivateFlags2 &= ~(PFLAG2_TEXT_DIRECTION_RESOLVED | PFLAG2_TEXT_DIRECTION_RESOLVED_MASK);
19239        // Set to default value
19240        mPrivateFlags2 |= PFLAG2_TEXT_DIRECTION_RESOLVED_DEFAULT;
19241    }
19242
19243    /**
19244     * @return true if text direction is inherited.
19245     *
19246     * @hide
19247     */
19248    public boolean isTextDirectionInherited() {
19249        return (getRawTextDirection() == TEXT_DIRECTION_INHERIT);
19250    }
19251
19252    /**
19253     * @return true if text direction is resolved.
19254     */
19255    public boolean isTextDirectionResolved() {
19256        return (mPrivateFlags2 & PFLAG2_TEXT_DIRECTION_RESOLVED) == PFLAG2_TEXT_DIRECTION_RESOLVED;
19257    }
19258
19259    /**
19260     * Return the value specifying the text alignment or policy that was set with
19261     * {@link #setTextAlignment(int)}.
19262     *
19263     * @return the defined text alignment. It can be one of:
19264     *
19265     * {@link #TEXT_ALIGNMENT_INHERIT},
19266     * {@link #TEXT_ALIGNMENT_GRAVITY},
19267     * {@link #TEXT_ALIGNMENT_CENTER},
19268     * {@link #TEXT_ALIGNMENT_TEXT_START},
19269     * {@link #TEXT_ALIGNMENT_TEXT_END},
19270     * {@link #TEXT_ALIGNMENT_VIEW_START},
19271     * {@link #TEXT_ALIGNMENT_VIEW_END}
19272     *
19273     * @attr ref android.R.styleable#View_textAlignment
19274     *
19275     * @hide
19276     */
19277    @ViewDebug.ExportedProperty(category = "text", mapping = {
19278            @ViewDebug.IntToString(from = TEXT_ALIGNMENT_INHERIT, to = "INHERIT"),
19279            @ViewDebug.IntToString(from = TEXT_ALIGNMENT_GRAVITY, to = "GRAVITY"),
19280            @ViewDebug.IntToString(from = TEXT_ALIGNMENT_TEXT_START, to = "TEXT_START"),
19281            @ViewDebug.IntToString(from = TEXT_ALIGNMENT_TEXT_END, to = "TEXT_END"),
19282            @ViewDebug.IntToString(from = TEXT_ALIGNMENT_CENTER, to = "CENTER"),
19283            @ViewDebug.IntToString(from = TEXT_ALIGNMENT_VIEW_START, to = "VIEW_START"),
19284            @ViewDebug.IntToString(from = TEXT_ALIGNMENT_VIEW_END, to = "VIEW_END")
19285    })
19286    @TextAlignment
19287    public int getRawTextAlignment() {
19288        return (mPrivateFlags2 & PFLAG2_TEXT_ALIGNMENT_MASK) >> PFLAG2_TEXT_ALIGNMENT_MASK_SHIFT;
19289    }
19290
19291    /**
19292     * Set the text alignment.
19293     *
19294     * @param textAlignment The text alignment to set. Should be one of
19295     *
19296     * {@link #TEXT_ALIGNMENT_INHERIT},
19297     * {@link #TEXT_ALIGNMENT_GRAVITY},
19298     * {@link #TEXT_ALIGNMENT_CENTER},
19299     * {@link #TEXT_ALIGNMENT_TEXT_START},
19300     * {@link #TEXT_ALIGNMENT_TEXT_END},
19301     * {@link #TEXT_ALIGNMENT_VIEW_START},
19302     * {@link #TEXT_ALIGNMENT_VIEW_END}
19303     *
19304     * Resolution will be done if the value is set to TEXT_ALIGNMENT_INHERIT. The resolution
19305     * proceeds up the parent chain of the view to get the value. If there is no parent, then it
19306     * will return the default {@link #TEXT_ALIGNMENT_GRAVITY}.
19307     *
19308     * @attr ref android.R.styleable#View_textAlignment
19309     */
19310    public void setTextAlignment(@TextAlignment int textAlignment) {
19311        if (textAlignment != getRawTextAlignment()) {
19312            // Reset the current and resolved text alignment
19313            mPrivateFlags2 &= ~PFLAG2_TEXT_ALIGNMENT_MASK;
19314            resetResolvedTextAlignment();
19315            // Set the new text alignment
19316            mPrivateFlags2 |=
19317                    ((textAlignment << PFLAG2_TEXT_ALIGNMENT_MASK_SHIFT) & PFLAG2_TEXT_ALIGNMENT_MASK);
19318            // Do resolution
19319            resolveTextAlignment();
19320            // Notify change
19321            onRtlPropertiesChanged(getLayoutDirection());
19322            // Refresh
19323            requestLayout();
19324            invalidate(true);
19325        }
19326    }
19327
19328    /**
19329     * Return the resolved text alignment.
19330     *
19331     * @return the resolved text alignment. Returns one of:
19332     *
19333     * {@link #TEXT_ALIGNMENT_GRAVITY},
19334     * {@link #TEXT_ALIGNMENT_CENTER},
19335     * {@link #TEXT_ALIGNMENT_TEXT_START},
19336     * {@link #TEXT_ALIGNMENT_TEXT_END},
19337     * {@link #TEXT_ALIGNMENT_VIEW_START},
19338     * {@link #TEXT_ALIGNMENT_VIEW_END}
19339     *
19340     * @attr ref android.R.styleable#View_textAlignment
19341     */
19342    @ViewDebug.ExportedProperty(category = "text", mapping = {
19343            @ViewDebug.IntToString(from = TEXT_ALIGNMENT_INHERIT, to = "INHERIT"),
19344            @ViewDebug.IntToString(from = TEXT_ALIGNMENT_GRAVITY, to = "GRAVITY"),
19345            @ViewDebug.IntToString(from = TEXT_ALIGNMENT_TEXT_START, to = "TEXT_START"),
19346            @ViewDebug.IntToString(from = TEXT_ALIGNMENT_TEXT_END, to = "TEXT_END"),
19347            @ViewDebug.IntToString(from = TEXT_ALIGNMENT_CENTER, to = "CENTER"),
19348            @ViewDebug.IntToString(from = TEXT_ALIGNMENT_VIEW_START, to = "VIEW_START"),
19349            @ViewDebug.IntToString(from = TEXT_ALIGNMENT_VIEW_END, to = "VIEW_END")
19350    })
19351    @TextAlignment
19352    public int getTextAlignment() {
19353        return (mPrivateFlags2 & PFLAG2_TEXT_ALIGNMENT_RESOLVED_MASK) >>
19354                PFLAG2_TEXT_ALIGNMENT_RESOLVED_MASK_SHIFT;
19355    }
19356
19357    /**
19358     * Resolve the text alignment.
19359     *
19360     * @return true if resolution has been done, false otherwise.
19361     *
19362     * @hide
19363     */
19364    public boolean resolveTextAlignment() {
19365        // Reset any previous text alignment resolution
19366        mPrivateFlags2 &= ~(PFLAG2_TEXT_ALIGNMENT_RESOLVED | PFLAG2_TEXT_ALIGNMENT_RESOLVED_MASK);
19367
19368        if (hasRtlSupport()) {
19369            // Set resolved text alignment flag depending on text alignment flag
19370            final int textAlignment = getRawTextAlignment();
19371            switch (textAlignment) {
19372                case TEXT_ALIGNMENT_INHERIT:
19373                    // Check if we can resolve the text alignment
19374                    if (!canResolveTextAlignment()) {
19375                        // We cannot do the resolution if there is no parent so use the default
19376                        mPrivateFlags2 |= PFLAG2_TEXT_ALIGNMENT_RESOLVED_DEFAULT;
19377                        // Resolution will need to happen again later
19378                        return false;
19379                    }
19380
19381                    // Parent has not yet resolved, so we still return the default
19382                    try {
19383                        if (!mParent.isTextAlignmentResolved()) {
19384                            mPrivateFlags2 |= PFLAG2_TEXT_ALIGNMENT_RESOLVED_DEFAULT;
19385                            // Resolution will need to happen again later
19386                            return false;
19387                        }
19388                    } catch (AbstractMethodError e) {
19389                        Log.e(VIEW_LOG_TAG, mParent.getClass().getSimpleName() +
19390                                " does not fully implement ViewParent", e);
19391                        mPrivateFlags2 |= PFLAG2_TEXT_ALIGNMENT_RESOLVED |
19392                                PFLAG2_TEXT_ALIGNMENT_RESOLVED_DEFAULT;
19393                        return true;
19394                    }
19395
19396                    int parentResolvedTextAlignment;
19397                    try {
19398                        parentResolvedTextAlignment = mParent.getTextAlignment();
19399                    } catch (AbstractMethodError e) {
19400                        Log.e(VIEW_LOG_TAG, mParent.getClass().getSimpleName() +
19401                                " does not fully implement ViewParent", e);
19402                        parentResolvedTextAlignment = TEXT_ALIGNMENT_GRAVITY;
19403                    }
19404                    switch (parentResolvedTextAlignment) {
19405                        case TEXT_ALIGNMENT_GRAVITY:
19406                        case TEXT_ALIGNMENT_TEXT_START:
19407                        case TEXT_ALIGNMENT_TEXT_END:
19408                        case TEXT_ALIGNMENT_CENTER:
19409                        case TEXT_ALIGNMENT_VIEW_START:
19410                        case TEXT_ALIGNMENT_VIEW_END:
19411                            // Resolved text alignment is the same as the parent resolved
19412                            // text alignment
19413                            mPrivateFlags2 |=
19414                                    (parentResolvedTextAlignment << PFLAG2_TEXT_ALIGNMENT_RESOLVED_MASK_SHIFT);
19415                            break;
19416                        default:
19417                            // Use default resolved text alignment
19418                            mPrivateFlags2 |= PFLAG2_TEXT_ALIGNMENT_RESOLVED_DEFAULT;
19419                    }
19420                    break;
19421                case TEXT_ALIGNMENT_GRAVITY:
19422                case TEXT_ALIGNMENT_TEXT_START:
19423                case TEXT_ALIGNMENT_TEXT_END:
19424                case TEXT_ALIGNMENT_CENTER:
19425                case TEXT_ALIGNMENT_VIEW_START:
19426                case TEXT_ALIGNMENT_VIEW_END:
19427                    // Resolved text alignment is the same as text alignment
19428                    mPrivateFlags2 |= (textAlignment << PFLAG2_TEXT_ALIGNMENT_RESOLVED_MASK_SHIFT);
19429                    break;
19430                default:
19431                    // Use default resolved text alignment
19432                    mPrivateFlags2 |= PFLAG2_TEXT_ALIGNMENT_RESOLVED_DEFAULT;
19433            }
19434        } else {
19435            // Use default resolved text alignment
19436            mPrivateFlags2 |= PFLAG2_TEXT_ALIGNMENT_RESOLVED_DEFAULT;
19437        }
19438
19439        // Set the resolved
19440        mPrivateFlags2 |= PFLAG2_TEXT_ALIGNMENT_RESOLVED;
19441        return true;
19442    }
19443
19444    /**
19445     * Check if text alignment resolution can be done.
19446     *
19447     * @return true if text alignment resolution can be done otherwise return false.
19448     */
19449    public boolean canResolveTextAlignment() {
19450        switch (getRawTextAlignment()) {
19451            case TEXT_DIRECTION_INHERIT:
19452                if (mParent != null) {
19453                    try {
19454                        return mParent.canResolveTextAlignment();
19455                    } catch (AbstractMethodError e) {
19456                        Log.e(VIEW_LOG_TAG, mParent.getClass().getSimpleName() +
19457                                " does not fully implement ViewParent", e);
19458                    }
19459                }
19460                return false;
19461
19462            default:
19463                return true;
19464        }
19465    }
19466
19467    /**
19468     * Reset resolved text alignment. Text alignment will be resolved during a call to
19469     * {@link #onMeasure(int, int)}.
19470     *
19471     * @hide
19472     */
19473    public void resetResolvedTextAlignment() {
19474        // Reset any previous text alignment resolution
19475        mPrivateFlags2 &= ~(PFLAG2_TEXT_ALIGNMENT_RESOLVED | PFLAG2_TEXT_ALIGNMENT_RESOLVED_MASK);
19476        // Set to default
19477        mPrivateFlags2 |= PFLAG2_TEXT_ALIGNMENT_RESOLVED_DEFAULT;
19478    }
19479
19480    /**
19481     * @return true if text alignment is inherited.
19482     *
19483     * @hide
19484     */
19485    public boolean isTextAlignmentInherited() {
19486        return (getRawTextAlignment() == TEXT_ALIGNMENT_INHERIT);
19487    }
19488
19489    /**
19490     * @return true if text alignment is resolved.
19491     */
19492    public boolean isTextAlignmentResolved() {
19493        return (mPrivateFlags2 & PFLAG2_TEXT_ALIGNMENT_RESOLVED) == PFLAG2_TEXT_ALIGNMENT_RESOLVED;
19494    }
19495
19496    /**
19497     * Generate a value suitable for use in {@link #setId(int)}.
19498     * This value will not collide with ID values generated at build time by aapt for R.id.
19499     *
19500     * @return a generated ID value
19501     */
19502    public static int generateViewId() {
19503        for (;;) {
19504            final int result = sNextGeneratedId.get();
19505            // aapt-generated IDs have the high byte nonzero; clamp to the range under that.
19506            int newValue = result + 1;
19507            if (newValue > 0x00FFFFFF) newValue = 1; // Roll over to 1, not 0.
19508            if (sNextGeneratedId.compareAndSet(result, newValue)) {
19509                return result;
19510            }
19511        }
19512    }
19513
19514    /**
19515     * Gets the Views in the hierarchy affected by entering and exiting Activity Scene transitions.
19516     * @param transitioningViews This View will be added to transitioningViews if it is VISIBLE and
19517     *                           a normal View or a ViewGroup with
19518     *                           {@link android.view.ViewGroup#isTransitionGroup()} true.
19519     * @hide
19520     */
19521    public void captureTransitioningViews(List<View> transitioningViews) {
19522        if (getVisibility() == View.VISIBLE) {
19523            transitioningViews.add(this);
19524        }
19525    }
19526
19527    /**
19528     * Adds all Views that have {@link #getTransitionName()} non-null to namedElements.
19529     * @param namedElements Will contain all Views in the hierarchy having a transitionName.
19530     * @hide
19531     */
19532    public void findNamedViews(Map<String, View> namedElements) {
19533        if (getVisibility() == VISIBLE || mGhostView != null) {
19534            String transitionName = getTransitionName();
19535            if (transitionName != null) {
19536                namedElements.put(transitionName, this);
19537            }
19538        }
19539    }
19540
19541    //
19542    // Properties
19543    //
19544    /**
19545     * A Property wrapper around the <code>alpha</code> functionality handled by the
19546     * {@link View#setAlpha(float)} and {@link View#getAlpha()} methods.
19547     */
19548    public static final Property<View, Float> ALPHA = new FloatProperty<View>("alpha") {
19549        @Override
19550        public void setValue(View object, float value) {
19551            object.setAlpha(value);
19552        }
19553
19554        @Override
19555        public Float get(View object) {
19556            return object.getAlpha();
19557        }
19558    };
19559
19560    /**
19561     * A Property wrapper around the <code>translationX</code> functionality handled by the
19562     * {@link View#setTranslationX(float)} and {@link View#getTranslationX()} methods.
19563     */
19564    public static final Property<View, Float> TRANSLATION_X = new FloatProperty<View>("translationX") {
19565        @Override
19566        public void setValue(View object, float value) {
19567            object.setTranslationX(value);
19568        }
19569
19570                @Override
19571        public Float get(View object) {
19572            return object.getTranslationX();
19573        }
19574    };
19575
19576    /**
19577     * A Property wrapper around the <code>translationY</code> functionality handled by the
19578     * {@link View#setTranslationY(float)} and {@link View#getTranslationY()} methods.
19579     */
19580    public static final Property<View, Float> TRANSLATION_Y = new FloatProperty<View>("translationY") {
19581        @Override
19582        public void setValue(View object, float value) {
19583            object.setTranslationY(value);
19584        }
19585
19586        @Override
19587        public Float get(View object) {
19588            return object.getTranslationY();
19589        }
19590    };
19591
19592    /**
19593     * A Property wrapper around the <code>translationZ</code> functionality handled by the
19594     * {@link View#setTranslationZ(float)} and {@link View#getTranslationZ()} methods.
19595     */
19596    public static final Property<View, Float> TRANSLATION_Z = new FloatProperty<View>("translationZ") {
19597        @Override
19598        public void setValue(View object, float value) {
19599            object.setTranslationZ(value);
19600        }
19601
19602        @Override
19603        public Float get(View object) {
19604            return object.getTranslationZ();
19605        }
19606    };
19607
19608    /**
19609     * A Property wrapper around the <code>x</code> functionality handled by the
19610     * {@link View#setX(float)} and {@link View#getX()} methods.
19611     */
19612    public static final Property<View, Float> X = new FloatProperty<View>("x") {
19613        @Override
19614        public void setValue(View object, float value) {
19615            object.setX(value);
19616        }
19617
19618        @Override
19619        public Float get(View object) {
19620            return object.getX();
19621        }
19622    };
19623
19624    /**
19625     * A Property wrapper around the <code>y</code> functionality handled by the
19626     * {@link View#setY(float)} and {@link View#getY()} methods.
19627     */
19628    public static final Property<View, Float> Y = new FloatProperty<View>("y") {
19629        @Override
19630        public void setValue(View object, float value) {
19631            object.setY(value);
19632        }
19633
19634        @Override
19635        public Float get(View object) {
19636            return object.getY();
19637        }
19638    };
19639
19640    /**
19641     * A Property wrapper around the <code>z</code> functionality handled by the
19642     * {@link View#setZ(float)} and {@link View#getZ()} methods.
19643     */
19644    public static final Property<View, Float> Z = new FloatProperty<View>("z") {
19645        @Override
19646        public void setValue(View object, float value) {
19647            object.setZ(value);
19648        }
19649
19650        @Override
19651        public Float get(View object) {
19652            return object.getZ();
19653        }
19654    };
19655
19656    /**
19657     * A Property wrapper around the <code>rotation</code> functionality handled by the
19658     * {@link View#setRotation(float)} and {@link View#getRotation()} methods.
19659     */
19660    public static final Property<View, Float> ROTATION = new FloatProperty<View>("rotation") {
19661        @Override
19662        public void setValue(View object, float value) {
19663            object.setRotation(value);
19664        }
19665
19666        @Override
19667        public Float get(View object) {
19668            return object.getRotation();
19669        }
19670    };
19671
19672    /**
19673     * A Property wrapper around the <code>rotationX</code> functionality handled by the
19674     * {@link View#setRotationX(float)} and {@link View#getRotationX()} methods.
19675     */
19676    public static final Property<View, Float> ROTATION_X = new FloatProperty<View>("rotationX") {
19677        @Override
19678        public void setValue(View object, float value) {
19679            object.setRotationX(value);
19680        }
19681
19682        @Override
19683        public Float get(View object) {
19684            return object.getRotationX();
19685        }
19686    };
19687
19688    /**
19689     * A Property wrapper around the <code>rotationY</code> functionality handled by the
19690     * {@link View#setRotationY(float)} and {@link View#getRotationY()} methods.
19691     */
19692    public static final Property<View, Float> ROTATION_Y = new FloatProperty<View>("rotationY") {
19693        @Override
19694        public void setValue(View object, float value) {
19695            object.setRotationY(value);
19696        }
19697
19698        @Override
19699        public Float get(View object) {
19700            return object.getRotationY();
19701        }
19702    };
19703
19704    /**
19705     * A Property wrapper around the <code>scaleX</code> functionality handled by the
19706     * {@link View#setScaleX(float)} and {@link View#getScaleX()} methods.
19707     */
19708    public static final Property<View, Float> SCALE_X = new FloatProperty<View>("scaleX") {
19709        @Override
19710        public void setValue(View object, float value) {
19711            object.setScaleX(value);
19712        }
19713
19714        @Override
19715        public Float get(View object) {
19716            return object.getScaleX();
19717        }
19718    };
19719
19720    /**
19721     * A Property wrapper around the <code>scaleY</code> functionality handled by the
19722     * {@link View#setScaleY(float)} and {@link View#getScaleY()} methods.
19723     */
19724    public static final Property<View, Float> SCALE_Y = new FloatProperty<View>("scaleY") {
19725        @Override
19726        public void setValue(View object, float value) {
19727            object.setScaleY(value);
19728        }
19729
19730        @Override
19731        public Float get(View object) {
19732            return object.getScaleY();
19733        }
19734    };
19735
19736    /**
19737     * A MeasureSpec encapsulates the layout requirements passed from parent to child.
19738     * Each MeasureSpec represents a requirement for either the width or the height.
19739     * A MeasureSpec is comprised of a size and a mode. There are three possible
19740     * modes:
19741     * <dl>
19742     * <dt>UNSPECIFIED</dt>
19743     * <dd>
19744     * The parent has not imposed any constraint on the child. It can be whatever size
19745     * it wants.
19746     * </dd>
19747     *
19748     * <dt>EXACTLY</dt>
19749     * <dd>
19750     * The parent has determined an exact size for the child. The child is going to be
19751     * given those bounds regardless of how big it wants to be.
19752     * </dd>
19753     *
19754     * <dt>AT_MOST</dt>
19755     * <dd>
19756     * The child can be as large as it wants up to the specified size.
19757     * </dd>
19758     * </dl>
19759     *
19760     * MeasureSpecs are implemented as ints to reduce object allocation. This class
19761     * is provided to pack and unpack the &lt;size, mode&gt; tuple into the int.
19762     */
19763    public static class MeasureSpec {
19764        private static final int MODE_SHIFT = 30;
19765        private static final int MODE_MASK  = 0x3 << MODE_SHIFT;
19766
19767        /**
19768         * Measure specification mode: The parent has not imposed any constraint
19769         * on the child. It can be whatever size it wants.
19770         */
19771        public static final int UNSPECIFIED = 0 << MODE_SHIFT;
19772
19773        /**
19774         * Measure specification mode: The parent has determined an exact size
19775         * for the child. The child is going to be given those bounds regardless
19776         * of how big it wants to be.
19777         */
19778        public static final int EXACTLY     = 1 << MODE_SHIFT;
19779
19780        /**
19781         * Measure specification mode: The child can be as large as it wants up
19782         * to the specified size.
19783         */
19784        public static final int AT_MOST     = 2 << MODE_SHIFT;
19785
19786        /**
19787         * Creates a measure specification based on the supplied size and mode.
19788         *
19789         * The mode must always be one of the following:
19790         * <ul>
19791         *  <li>{@link android.view.View.MeasureSpec#UNSPECIFIED}</li>
19792         *  <li>{@link android.view.View.MeasureSpec#EXACTLY}</li>
19793         *  <li>{@link android.view.View.MeasureSpec#AT_MOST}</li>
19794         * </ul>
19795         *
19796         * <p><strong>Note:</strong> On API level 17 and lower, makeMeasureSpec's
19797         * implementation was such that the order of arguments did not matter
19798         * and overflow in either value could impact the resulting MeasureSpec.
19799         * {@link android.widget.RelativeLayout} was affected by this bug.
19800         * Apps targeting API levels greater than 17 will get the fixed, more strict
19801         * behavior.</p>
19802         *
19803         * @param size the size of the measure specification
19804         * @param mode the mode of the measure specification
19805         * @return the measure specification based on size and mode
19806         */
19807        public static int makeMeasureSpec(int size, int mode) {
19808            if (sUseBrokenMakeMeasureSpec) {
19809                return size + mode;
19810            } else {
19811                return (size & ~MODE_MASK) | (mode & MODE_MASK);
19812            }
19813        }
19814
19815        /**
19816         * Extracts the mode from the supplied measure specification.
19817         *
19818         * @param measureSpec the measure specification to extract the mode from
19819         * @return {@link android.view.View.MeasureSpec#UNSPECIFIED},
19820         *         {@link android.view.View.MeasureSpec#AT_MOST} or
19821         *         {@link android.view.View.MeasureSpec#EXACTLY}
19822         */
19823        public static int getMode(int measureSpec) {
19824            return (measureSpec & MODE_MASK);
19825        }
19826
19827        /**
19828         * Extracts the size from the supplied measure specification.
19829         *
19830         * @param measureSpec the measure specification to extract the size from
19831         * @return the size in pixels defined in the supplied measure specification
19832         */
19833        public static int getSize(int measureSpec) {
19834            return (measureSpec & ~MODE_MASK);
19835        }
19836
19837        static int adjust(int measureSpec, int delta) {
19838            final int mode = getMode(measureSpec);
19839            if (mode == UNSPECIFIED) {
19840                // No need to adjust size for UNSPECIFIED mode.
19841                return makeMeasureSpec(0, UNSPECIFIED);
19842            }
19843            int size = getSize(measureSpec) + delta;
19844            if (size < 0) {
19845                Log.e(VIEW_LOG_TAG, "MeasureSpec.adjust: new size would be negative! (" + size +
19846                        ") spec: " + toString(measureSpec) + " delta: " + delta);
19847                size = 0;
19848            }
19849            return makeMeasureSpec(size, mode);
19850        }
19851
19852        /**
19853         * Returns a String representation of the specified measure
19854         * specification.
19855         *
19856         * @param measureSpec the measure specification to convert to a String
19857         * @return a String with the following format: "MeasureSpec: MODE SIZE"
19858         */
19859        public static String toString(int measureSpec) {
19860            int mode = getMode(measureSpec);
19861            int size = getSize(measureSpec);
19862
19863            StringBuilder sb = new StringBuilder("MeasureSpec: ");
19864
19865            if (mode == UNSPECIFIED)
19866                sb.append("UNSPECIFIED ");
19867            else if (mode == EXACTLY)
19868                sb.append("EXACTLY ");
19869            else if (mode == AT_MOST)
19870                sb.append("AT_MOST ");
19871            else
19872                sb.append(mode).append(" ");
19873
19874            sb.append(size);
19875            return sb.toString();
19876        }
19877    }
19878
19879    private final class CheckForLongPress implements Runnable {
19880        private int mOriginalWindowAttachCount;
19881
19882        @Override
19883        public void run() {
19884            if (isPressed() && (mParent != null)
19885                    && mOriginalWindowAttachCount == mWindowAttachCount) {
19886                if (performLongClick()) {
19887                    mHasPerformedLongPress = true;
19888                }
19889            }
19890        }
19891
19892        public void rememberWindowAttachCount() {
19893            mOriginalWindowAttachCount = mWindowAttachCount;
19894        }
19895    }
19896
19897    private final class CheckForTap implements Runnable {
19898        public float x;
19899        public float y;
19900
19901        @Override
19902        public void run() {
19903            mPrivateFlags &= ~PFLAG_PREPRESSED;
19904            setPressed(true, x, y);
19905            checkForLongClick(ViewConfiguration.getTapTimeout());
19906        }
19907    }
19908
19909    private final class PerformClick implements Runnable {
19910        @Override
19911        public void run() {
19912            performClick();
19913        }
19914    }
19915
19916    /** @hide */
19917    public void hackTurnOffWindowResizeAnim(boolean off) {
19918        mAttachInfo.mTurnOffWindowResizeAnim = off;
19919    }
19920
19921    /**
19922     * This method returns a ViewPropertyAnimator object, which can be used to animate
19923     * specific properties on this View.
19924     *
19925     * @return ViewPropertyAnimator The ViewPropertyAnimator associated with this View.
19926     */
19927    public ViewPropertyAnimator animate() {
19928        if (mAnimator == null) {
19929            mAnimator = new ViewPropertyAnimator(this);
19930        }
19931        return mAnimator;
19932    }
19933
19934    /**
19935     * Sets the name of the View to be used to identify Views in Transitions.
19936     * Names should be unique in the View hierarchy.
19937     *
19938     * @param transitionName The name of the View to uniquely identify it for Transitions.
19939     */
19940    public final void setTransitionName(String transitionName) {
19941        mTransitionName = transitionName;
19942    }
19943
19944    /**
19945     * Returns the name of the View to be used to identify Views in Transitions.
19946     * Names should be unique in the View hierarchy.
19947     *
19948     * <p>This returns null if the View has not been given a name.</p>
19949     *
19950     * @return The name used of the View to be used to identify Views in Transitions or null
19951     * if no name has been given.
19952     */
19953    @ViewDebug.ExportedProperty
19954    public String getTransitionName() {
19955        return mTransitionName;
19956    }
19957
19958    /**
19959     * Interface definition for a callback to be invoked when a hardware key event is
19960     * dispatched to this view. The callback will be invoked before the key event is
19961     * given to the view. This is only useful for hardware keyboards; a software input
19962     * method has no obligation to trigger this listener.
19963     */
19964    public interface OnKeyListener {
19965        /**
19966         * Called when a hardware key is dispatched to a view. This allows listeners to
19967         * get a chance to respond before the target view.
19968         * <p>Key presses in software keyboards will generally NOT trigger this method,
19969         * although some may elect to do so in some situations. Do not assume a
19970         * software input method has to be key-based; even if it is, it may use key presses
19971         * in a different way than you expect, so there is no way to reliably catch soft
19972         * input key presses.
19973         *
19974         * @param v The view the key has been dispatched to.
19975         * @param keyCode The code for the physical key that was pressed
19976         * @param event The KeyEvent object containing full information about
19977         *        the event.
19978         * @return True if the listener has consumed the event, false otherwise.
19979         */
19980        boolean onKey(View v, int keyCode, KeyEvent event);
19981    }
19982
19983    /**
19984     * Interface definition for a callback to be invoked when a touch event is
19985     * dispatched to this view. The callback will be invoked before the touch
19986     * event is given to the view.
19987     */
19988    public interface OnTouchListener {
19989        /**
19990         * Called when a touch event is dispatched to a view. This allows listeners to
19991         * get a chance to respond before the target view.
19992         *
19993         * @param v The view the touch event has been dispatched to.
19994         * @param event The MotionEvent object containing full information about
19995         *        the event.
19996         * @return True if the listener has consumed the event, false otherwise.
19997         */
19998        boolean onTouch(View v, MotionEvent event);
19999    }
20000
20001    /**
20002     * Interface definition for a callback to be invoked when a hover event is
20003     * dispatched to this view. The callback will be invoked before the hover
20004     * event is given to the view.
20005     */
20006    public interface OnHoverListener {
20007        /**
20008         * Called when a hover event is dispatched to a view. This allows listeners to
20009         * get a chance to respond before the target view.
20010         *
20011         * @param v The view the hover event has been dispatched to.
20012         * @param event The MotionEvent object containing full information about
20013         *        the event.
20014         * @return True if the listener has consumed the event, false otherwise.
20015         */
20016        boolean onHover(View v, MotionEvent event);
20017    }
20018
20019    /**
20020     * Interface definition for a callback to be invoked when a generic motion event is
20021     * dispatched to this view. The callback will be invoked before the generic motion
20022     * event is given to the view.
20023     */
20024    public interface OnGenericMotionListener {
20025        /**
20026         * Called when a generic motion event is dispatched to a view. This allows listeners to
20027         * get a chance to respond before the target view.
20028         *
20029         * @param v The view the generic motion event has been dispatched to.
20030         * @param event The MotionEvent object containing full information about
20031         *        the event.
20032         * @return True if the listener has consumed the event, false otherwise.
20033         */
20034        boolean onGenericMotion(View v, MotionEvent event);
20035    }
20036
20037    /**
20038     * Interface definition for a callback to be invoked when a view has been clicked and held.
20039     */
20040    public interface OnLongClickListener {
20041        /**
20042         * Called when a view has been clicked and held.
20043         *
20044         * @param v The view that was clicked and held.
20045         *
20046         * @return true if the callback consumed the long click, false otherwise.
20047         */
20048        boolean onLongClick(View v);
20049    }
20050
20051    /**
20052     * Interface definition for a callback to be invoked when a drag is being dispatched
20053     * to this view.  The callback will be invoked before the hosting view's own
20054     * onDrag(event) method.  If the listener wants to fall back to the hosting view's
20055     * onDrag(event) behavior, it should return 'false' from this callback.
20056     *
20057     * <div class="special reference">
20058     * <h3>Developer Guides</h3>
20059     * <p>For a guide to implementing drag and drop features, read the
20060     * <a href="{@docRoot}guide/topics/ui/drag-drop.html">Drag and Drop</a> developer guide.</p>
20061     * </div>
20062     */
20063    public interface OnDragListener {
20064        /**
20065         * Called when a drag event is dispatched to a view. This allows listeners
20066         * to get a chance to override base View behavior.
20067         *
20068         * @param v The View that received the drag event.
20069         * @param event The {@link android.view.DragEvent} object for the drag event.
20070         * @return {@code true} if the drag event was handled successfully, or {@code false}
20071         * if the drag event was not handled. Note that {@code false} will trigger the View
20072         * to call its {@link #onDragEvent(DragEvent) onDragEvent()} handler.
20073         */
20074        boolean onDrag(View v, DragEvent event);
20075    }
20076
20077    /**
20078     * Interface definition for a callback to be invoked when the focus state of
20079     * a view changed.
20080     */
20081    public interface OnFocusChangeListener {
20082        /**
20083         * Called when the focus state of a view has changed.
20084         *
20085         * @param v The view whose state has changed.
20086         * @param hasFocus The new focus state of v.
20087         */
20088        void onFocusChange(View v, boolean hasFocus);
20089    }
20090
20091    /**
20092     * Interface definition for a callback to be invoked when a view is clicked.
20093     */
20094    public interface OnClickListener {
20095        /**
20096         * Called when a view has been clicked.
20097         *
20098         * @param v The view that was clicked.
20099         */
20100        void onClick(View v);
20101    }
20102
20103    /**
20104     * Interface definition for a callback to be invoked when the context menu
20105     * for this view is being built.
20106     */
20107    public interface OnCreateContextMenuListener {
20108        /**
20109         * Called when the context menu for this view is being built. It is not
20110         * safe to hold onto the menu after this method returns.
20111         *
20112         * @param menu The context menu that is being built
20113         * @param v The view for which the context menu is being built
20114         * @param menuInfo Extra information about the item for which the
20115         *            context menu should be shown. This information will vary
20116         *            depending on the class of v.
20117         */
20118        void onCreateContextMenu(ContextMenu menu, View v, ContextMenuInfo menuInfo);
20119    }
20120
20121    /**
20122     * Interface definition for a callback to be invoked when the status bar changes
20123     * visibility.  This reports <strong>global</strong> changes to the system UI
20124     * state, not what the application is requesting.
20125     *
20126     * @see View#setOnSystemUiVisibilityChangeListener(android.view.View.OnSystemUiVisibilityChangeListener)
20127     */
20128    public interface OnSystemUiVisibilityChangeListener {
20129        /**
20130         * Called when the status bar changes visibility because of a call to
20131         * {@link View#setSystemUiVisibility(int)}.
20132         *
20133         * @param visibility  Bitwise-or of flags {@link #SYSTEM_UI_FLAG_LOW_PROFILE},
20134         * {@link #SYSTEM_UI_FLAG_HIDE_NAVIGATION}, and {@link #SYSTEM_UI_FLAG_FULLSCREEN}.
20135         * This tells you the <strong>global</strong> state of these UI visibility
20136         * flags, not what your app is currently applying.
20137         */
20138        public void onSystemUiVisibilityChange(int visibility);
20139    }
20140
20141    /**
20142     * Interface definition for a callback to be invoked when this view is attached
20143     * or detached from its window.
20144     */
20145    public interface OnAttachStateChangeListener {
20146        /**
20147         * Called when the view is attached to a window.
20148         * @param v The view that was attached
20149         */
20150        public void onViewAttachedToWindow(View v);
20151        /**
20152         * Called when the view is detached from a window.
20153         * @param v The view that was detached
20154         */
20155        public void onViewDetachedFromWindow(View v);
20156    }
20157
20158    /**
20159     * Listener for applying window insets on a view in a custom way.
20160     *
20161     * <p>Apps may choose to implement this interface if they want to apply custom policy
20162     * to the way that window insets are treated for a view. If an OnApplyWindowInsetsListener
20163     * is set, its
20164     * {@link OnApplyWindowInsetsListener#onApplyWindowInsets(View, WindowInsets) onApplyWindowInsets}
20165     * method will be called instead of the View's own
20166     * {@link #onApplyWindowInsets(WindowInsets) onApplyWindowInsets} method. The listener
20167     * may optionally call the parameter View's <code>onApplyWindowInsets</code> method to apply
20168     * the View's normal behavior as part of its own.</p>
20169     */
20170    public interface OnApplyWindowInsetsListener {
20171        /**
20172         * When {@link View#setOnApplyWindowInsetsListener(View.OnApplyWindowInsetsListener) set}
20173         * on a View, this listener method will be called instead of the view's own
20174         * {@link View#onApplyWindowInsets(WindowInsets) onApplyWindowInsets} method.
20175         *
20176         * @param v The view applying window insets
20177         * @param insets The insets to apply
20178         * @return The insets supplied, minus any insets that were consumed
20179         */
20180        public WindowInsets onApplyWindowInsets(View v, WindowInsets insets);
20181    }
20182
20183    private final class UnsetPressedState implements Runnable {
20184        @Override
20185        public void run() {
20186            setPressed(false);
20187        }
20188    }
20189
20190    /**
20191     * Base class for derived classes that want to save and restore their own
20192     * state in {@link android.view.View#onSaveInstanceState()}.
20193     */
20194    public static class BaseSavedState extends AbsSavedState {
20195        /**
20196         * Constructor used when reading from a parcel. Reads the state of the superclass.
20197         *
20198         * @param source
20199         */
20200        public BaseSavedState(Parcel source) {
20201            super(source);
20202        }
20203
20204        /**
20205         * Constructor called by derived classes when creating their SavedState objects
20206         *
20207         * @param superState The state of the superclass of this view
20208         */
20209        public BaseSavedState(Parcelable superState) {
20210            super(superState);
20211        }
20212
20213        public static final Parcelable.Creator<BaseSavedState> CREATOR =
20214                new Parcelable.Creator<BaseSavedState>() {
20215            public BaseSavedState createFromParcel(Parcel in) {
20216                return new BaseSavedState(in);
20217            }
20218
20219            public BaseSavedState[] newArray(int size) {
20220                return new BaseSavedState[size];
20221            }
20222        };
20223    }
20224
20225    /**
20226     * A set of information given to a view when it is attached to its parent
20227     * window.
20228     */
20229    final static class AttachInfo {
20230        interface Callbacks {
20231            void playSoundEffect(int effectId);
20232            boolean performHapticFeedback(int effectId, boolean always);
20233        }
20234
20235        /**
20236         * InvalidateInfo is used to post invalidate(int, int, int, int) messages
20237         * to a Handler. This class contains the target (View) to invalidate and
20238         * the coordinates of the dirty rectangle.
20239         *
20240         * For performance purposes, this class also implements a pool of up to
20241         * POOL_LIMIT objects that get reused. This reduces memory allocations
20242         * whenever possible.
20243         */
20244        static class InvalidateInfo {
20245            private static final int POOL_LIMIT = 10;
20246
20247            private static final SynchronizedPool<InvalidateInfo> sPool =
20248                    new SynchronizedPool<InvalidateInfo>(POOL_LIMIT);
20249
20250            View target;
20251
20252            int left;
20253            int top;
20254            int right;
20255            int bottom;
20256
20257            public static InvalidateInfo obtain() {
20258                InvalidateInfo instance = sPool.acquire();
20259                return (instance != null) ? instance : new InvalidateInfo();
20260            }
20261
20262            public void recycle() {
20263                target = null;
20264                sPool.release(this);
20265            }
20266        }
20267
20268        final IWindowSession mSession;
20269
20270        final IWindow mWindow;
20271
20272        final IBinder mWindowToken;
20273
20274        final Display mDisplay;
20275
20276        final Callbacks mRootCallbacks;
20277
20278        IWindowId mIWindowId;
20279        WindowId mWindowId;
20280
20281        /**
20282         * The top view of the hierarchy.
20283         */
20284        View mRootView;
20285
20286        IBinder mPanelParentWindowToken;
20287
20288        boolean mHardwareAccelerated;
20289        boolean mHardwareAccelerationRequested;
20290        HardwareRenderer mHardwareRenderer;
20291        List<RenderNode> mPendingAnimatingRenderNodes;
20292
20293        /**
20294         * The state of the display to which the window is attached, as reported
20295         * by {@link Display#getState()}.  Note that the display state constants
20296         * declared by {@link Display} do not exactly line up with the screen state
20297         * constants declared by {@link View} (there are more display states than
20298         * screen states).
20299         */
20300        int mDisplayState = Display.STATE_UNKNOWN;
20301
20302        /**
20303         * Scale factor used by the compatibility mode
20304         */
20305        float mApplicationScale;
20306
20307        /**
20308         * Indicates whether the application is in compatibility mode
20309         */
20310        boolean mScalingRequired;
20311
20312        /**
20313         * If set, ViewRootImpl doesn't use its lame animation for when the window resizes.
20314         */
20315        boolean mTurnOffWindowResizeAnim;
20316
20317        /**
20318         * Left position of this view's window
20319         */
20320        int mWindowLeft;
20321
20322        /**
20323         * Top position of this view's window
20324         */
20325        int mWindowTop;
20326
20327        /**
20328         * Indicates whether views need to use 32-bit drawing caches
20329         */
20330        boolean mUse32BitDrawingCache;
20331
20332        /**
20333         * For windows that are full-screen but using insets to layout inside
20334         * of the screen areas, these are the current insets to appear inside
20335         * the overscan area of the display.
20336         */
20337        final Rect mOverscanInsets = new Rect();
20338
20339        /**
20340         * For windows that are full-screen but using insets to layout inside
20341         * of the screen decorations, these are the current insets for the
20342         * content of the window.
20343         */
20344        final Rect mContentInsets = new Rect();
20345
20346        /**
20347         * For windows that are full-screen but using insets to layout inside
20348         * of the screen decorations, these are the current insets for the
20349         * actual visible parts of the window.
20350         */
20351        final Rect mVisibleInsets = new Rect();
20352
20353        /**
20354         * For windows that are full-screen but using insets to layout inside
20355         * of the screen decorations, these are the current insets for the
20356         * stable system windows.
20357         */
20358        final Rect mStableInsets = new Rect();
20359
20360        /**
20361         * The internal insets given by this window.  This value is
20362         * supplied by the client (through
20363         * {@link ViewTreeObserver.OnComputeInternalInsetsListener}) and will
20364         * be given to the window manager when changed to be used in laying
20365         * out windows behind it.
20366         */
20367        final ViewTreeObserver.InternalInsetsInfo mGivenInternalInsets
20368                = new ViewTreeObserver.InternalInsetsInfo();
20369
20370        /**
20371         * Set to true when mGivenInternalInsets is non-empty.
20372         */
20373        boolean mHasNonEmptyGivenInternalInsets;
20374
20375        /**
20376         * All views in the window's hierarchy that serve as scroll containers,
20377         * used to determine if the window can be resized or must be panned
20378         * to adjust for a soft input area.
20379         */
20380        final ArrayList<View> mScrollContainers = new ArrayList<View>();
20381
20382        final KeyEvent.DispatcherState mKeyDispatchState
20383                = new KeyEvent.DispatcherState();
20384
20385        /**
20386         * Indicates whether the view's window currently has the focus.
20387         */
20388        boolean mHasWindowFocus;
20389
20390        /**
20391         * The current visibility of the window.
20392         */
20393        int mWindowVisibility;
20394
20395        /**
20396         * Indicates the time at which drawing started to occur.
20397         */
20398        long mDrawingTime;
20399
20400        /**
20401         * Indicates whether or not ignoring the DIRTY_MASK flags.
20402         */
20403        boolean mIgnoreDirtyState;
20404
20405        /**
20406         * This flag tracks when the mIgnoreDirtyState flag is set during draw(),
20407         * to avoid clearing that flag prematurely.
20408         */
20409        boolean mSetIgnoreDirtyState = false;
20410
20411        /**
20412         * Indicates whether the view's window is currently in touch mode.
20413         */
20414        boolean mInTouchMode;
20415
20416        /**
20417         * Indicates whether the view has requested unbuffered input dispatching for the current
20418         * event stream.
20419         */
20420        boolean mUnbufferedDispatchRequested;
20421
20422        /**
20423         * Indicates that ViewAncestor should trigger a global layout change
20424         * the next time it performs a traversal
20425         */
20426        boolean mRecomputeGlobalAttributes;
20427
20428        /**
20429         * Always report new attributes at next traversal.
20430         */
20431        boolean mForceReportNewAttributes;
20432
20433        /**
20434         * Set during a traveral if any views want to keep the screen on.
20435         */
20436        boolean mKeepScreenOn;
20437
20438        /**
20439         * Bitwise-or of all of the values that views have passed to setSystemUiVisibility().
20440         */
20441        int mSystemUiVisibility;
20442
20443        /**
20444         * Hack to force certain system UI visibility flags to be cleared.
20445         */
20446        int mDisabledSystemUiVisibility;
20447
20448        /**
20449         * Last global system UI visibility reported by the window manager.
20450         */
20451        int mGlobalSystemUiVisibility;
20452
20453        /**
20454         * True if a view in this hierarchy has an OnSystemUiVisibilityChangeListener
20455         * attached.
20456         */
20457        boolean mHasSystemUiListeners;
20458
20459        /**
20460         * Set if the window has requested to extend into the overscan region
20461         * via WindowManager.LayoutParams.FLAG_LAYOUT_IN_OVERSCAN.
20462         */
20463        boolean mOverscanRequested;
20464
20465        /**
20466         * Set if the visibility of any views has changed.
20467         */
20468        boolean mViewVisibilityChanged;
20469
20470        /**
20471         * Set to true if a view has been scrolled.
20472         */
20473        boolean mViewScrollChanged;
20474
20475        /**
20476         * Set to true if high contrast mode enabled
20477         */
20478        boolean mHighContrastText;
20479
20480        /**
20481         * Global to the view hierarchy used as a temporary for dealing with
20482         * x/y points in the transparent region computations.
20483         */
20484        final int[] mTransparentLocation = new int[2];
20485
20486        /**
20487         * Global to the view hierarchy used as a temporary for dealing with
20488         * x/y points in the ViewGroup.invalidateChild implementation.
20489         */
20490        final int[] mInvalidateChildLocation = new int[2];
20491
20492        /**
20493         * Global to the view hierarchy used as a temporary for dealng with
20494         * computing absolute on-screen location.
20495         */
20496        final int[] mTmpLocation = new int[2];
20497
20498        /**
20499         * Global to the view hierarchy used as a temporary for dealing with
20500         * x/y location when view is transformed.
20501         */
20502        final float[] mTmpTransformLocation = new float[2];
20503
20504        /**
20505         * The view tree observer used to dispatch global events like
20506         * layout, pre-draw, touch mode change, etc.
20507         */
20508        final ViewTreeObserver mTreeObserver = new ViewTreeObserver();
20509
20510        /**
20511         * A Canvas used by the view hierarchy to perform bitmap caching.
20512         */
20513        Canvas mCanvas;
20514
20515        /**
20516         * The view root impl.
20517         */
20518        final ViewRootImpl mViewRootImpl;
20519
20520        /**
20521         * A Handler supplied by a view's {@link android.view.ViewRootImpl}. This
20522         * handler can be used to pump events in the UI events queue.
20523         */
20524        final Handler mHandler;
20525
20526        /**
20527         * Temporary for use in computing invalidate rectangles while
20528         * calling up the hierarchy.
20529         */
20530        final Rect mTmpInvalRect = new Rect();
20531
20532        /**
20533         * Temporary for use in computing hit areas with transformed views
20534         */
20535        final RectF mTmpTransformRect = new RectF();
20536
20537        /**
20538         * Temporary for use in computing hit areas with transformed views
20539         */
20540        final RectF mTmpTransformRect1 = new RectF();
20541
20542        /**
20543         * Temporary list of rectanges.
20544         */
20545        final List<RectF> mTmpRectList = new ArrayList<>();
20546
20547        /**
20548         * Temporary for use in transforming invalidation rect
20549         */
20550        final Matrix mTmpMatrix = new Matrix();
20551
20552        /**
20553         * Temporary for use in transforming invalidation rect
20554         */
20555        final Transformation mTmpTransformation = new Transformation();
20556
20557        /**
20558         * Temporary for use in querying outlines from OutlineProviders
20559         */
20560        final Outline mTmpOutline = new Outline();
20561
20562        /**
20563         * Temporary list for use in collecting focusable descendents of a view.
20564         */
20565        final ArrayList<View> mTempArrayList = new ArrayList<View>(24);
20566
20567        /**
20568         * The id of the window for accessibility purposes.
20569         */
20570        int mAccessibilityWindowId = AccessibilityNodeInfo.UNDEFINED_ITEM_ID;
20571
20572        /**
20573         * Flags related to accessibility processing.
20574         *
20575         * @see AccessibilityNodeInfo#FLAG_INCLUDE_NOT_IMPORTANT_VIEWS
20576         * @see AccessibilityNodeInfo#FLAG_REPORT_VIEW_IDS
20577         */
20578        int mAccessibilityFetchFlags;
20579
20580        /**
20581         * The drawable for highlighting accessibility focus.
20582         */
20583        Drawable mAccessibilityFocusDrawable;
20584
20585        /**
20586         * Show where the margins, bounds and layout bounds are for each view.
20587         */
20588        boolean mDebugLayout = SystemProperties.getBoolean(DEBUG_LAYOUT_PROPERTY, false);
20589
20590        /**
20591         * Point used to compute visible regions.
20592         */
20593        final Point mPoint = new Point();
20594
20595        /**
20596         * Used to track which View originated a requestLayout() call, used when
20597         * requestLayout() is called during layout.
20598         */
20599        View mViewRequestingLayout;
20600
20601        /**
20602         * Creates a new set of attachment information with the specified
20603         * events handler and thread.
20604         *
20605         * @param handler the events handler the view must use
20606         */
20607        AttachInfo(IWindowSession session, IWindow window, Display display,
20608                ViewRootImpl viewRootImpl, Handler handler, Callbacks effectPlayer) {
20609            mSession = session;
20610            mWindow = window;
20611            mWindowToken = window.asBinder();
20612            mDisplay = display;
20613            mViewRootImpl = viewRootImpl;
20614            mHandler = handler;
20615            mRootCallbacks = effectPlayer;
20616        }
20617    }
20618
20619    /**
20620     * <p>ScrollabilityCache holds various fields used by a View when scrolling
20621     * is supported. This avoids keeping too many unused fields in most
20622     * instances of View.</p>
20623     */
20624    private static class ScrollabilityCache implements Runnable {
20625
20626        /**
20627         * Scrollbars are not visible
20628         */
20629        public static final int OFF = 0;
20630
20631        /**
20632         * Scrollbars are visible
20633         */
20634        public static final int ON = 1;
20635
20636        /**
20637         * Scrollbars are fading away
20638         */
20639        public static final int FADING = 2;
20640
20641        public boolean fadeScrollBars;
20642
20643        public int fadingEdgeLength;
20644        public int scrollBarDefaultDelayBeforeFade;
20645        public int scrollBarFadeDuration;
20646
20647        public int scrollBarSize;
20648        public ScrollBarDrawable scrollBar;
20649        public float[] interpolatorValues;
20650        public View host;
20651
20652        public final Paint paint;
20653        public final Matrix matrix;
20654        public Shader shader;
20655
20656        public final Interpolator scrollBarInterpolator = new Interpolator(1, 2);
20657
20658        private static final float[] OPAQUE = { 255 };
20659        private static final float[] TRANSPARENT = { 0.0f };
20660
20661        /**
20662         * When fading should start. This time moves into the future every time
20663         * a new scroll happens. Measured based on SystemClock.uptimeMillis()
20664         */
20665        public long fadeStartTime;
20666
20667
20668        /**
20669         * The current state of the scrollbars: ON, OFF, or FADING
20670         */
20671        public int state = OFF;
20672
20673        private int mLastColor;
20674
20675        public ScrollabilityCache(ViewConfiguration configuration, View host) {
20676            fadingEdgeLength = configuration.getScaledFadingEdgeLength();
20677            scrollBarSize = configuration.getScaledScrollBarSize();
20678            scrollBarDefaultDelayBeforeFade = ViewConfiguration.getScrollDefaultDelay();
20679            scrollBarFadeDuration = ViewConfiguration.getScrollBarFadeDuration();
20680
20681            paint = new Paint();
20682            matrix = new Matrix();
20683            // use use a height of 1, and then wack the matrix each time we
20684            // actually use it.
20685            shader = new LinearGradient(0, 0, 0, 1, 0xFF000000, 0, Shader.TileMode.CLAMP);
20686            paint.setShader(shader);
20687            paint.setXfermode(new PorterDuffXfermode(PorterDuff.Mode.DST_OUT));
20688
20689            this.host = host;
20690        }
20691
20692        public void setFadeColor(int color) {
20693            if (color != mLastColor) {
20694                mLastColor = color;
20695
20696                if (color != 0) {
20697                    shader = new LinearGradient(0, 0, 0, 1, color | 0xFF000000,
20698                            color & 0x00FFFFFF, Shader.TileMode.CLAMP);
20699                    paint.setShader(shader);
20700                    // Restore the default transfer mode (src_over)
20701                    paint.setXfermode(null);
20702                } else {
20703                    shader = new LinearGradient(0, 0, 0, 1, 0xFF000000, 0, Shader.TileMode.CLAMP);
20704                    paint.setShader(shader);
20705                    paint.setXfermode(new PorterDuffXfermode(PorterDuff.Mode.DST_OUT));
20706                }
20707            }
20708        }
20709
20710        public void run() {
20711            long now = AnimationUtils.currentAnimationTimeMillis();
20712            if (now >= fadeStartTime) {
20713
20714                // the animation fades the scrollbars out by changing
20715                // the opacity (alpha) from fully opaque to fully
20716                // transparent
20717                int nextFrame = (int) now;
20718                int framesCount = 0;
20719
20720                Interpolator interpolator = scrollBarInterpolator;
20721
20722                // Start opaque
20723                interpolator.setKeyFrame(framesCount++, nextFrame, OPAQUE);
20724
20725                // End transparent
20726                nextFrame += scrollBarFadeDuration;
20727                interpolator.setKeyFrame(framesCount, nextFrame, TRANSPARENT);
20728
20729                state = FADING;
20730
20731                // Kick off the fade animation
20732                host.invalidate(true);
20733            }
20734        }
20735    }
20736
20737    /**
20738     * Resuable callback for sending
20739     * {@link AccessibilityEvent#TYPE_VIEW_SCROLLED} accessibility event.
20740     */
20741    private class SendViewScrolledAccessibilityEvent implements Runnable {
20742        public volatile boolean mIsPending;
20743
20744        public void run() {
20745            sendAccessibilityEvent(AccessibilityEvent.TYPE_VIEW_SCROLLED);
20746            mIsPending = false;
20747        }
20748    }
20749
20750    /**
20751     * <p>
20752     * This class represents a delegate that can be registered in a {@link View}
20753     * to enhance accessibility support via composition rather via inheritance.
20754     * It is specifically targeted to widget developers that extend basic View
20755     * classes i.e. classes in package android.view, that would like their
20756     * applications to be backwards compatible.
20757     * </p>
20758     * <div class="special reference">
20759     * <h3>Developer Guides</h3>
20760     * <p>For more information about making applications accessible, read the
20761     * <a href="{@docRoot}guide/topics/ui/accessibility/index.html">Accessibility</a>
20762     * developer guide.</p>
20763     * </div>
20764     * <p>
20765     * A scenario in which a developer would like to use an accessibility delegate
20766     * is overriding a method introduced in a later API version then the minimal API
20767     * version supported by the application. For example, the method
20768     * {@link View#onInitializeAccessibilityNodeInfo(AccessibilityNodeInfo)} is not available
20769     * in API version 4 when the accessibility APIs were first introduced. If a
20770     * developer would like his application to run on API version 4 devices (assuming
20771     * all other APIs used by the application are version 4 or lower) and take advantage
20772     * of this method, instead of overriding the method which would break the application's
20773     * backwards compatibility, he can override the corresponding method in this
20774     * delegate and register the delegate in the target View if the API version of
20775     * the system is high enough i.e. the API version is same or higher to the API
20776     * version that introduced
20777     * {@link View#onInitializeAccessibilityNodeInfo(AccessibilityNodeInfo)}.
20778     * </p>
20779     * <p>
20780     * Here is an example implementation:
20781     * </p>
20782     * <code><pre><p>
20783     * if (Build.VERSION.SDK_INT >= 14) {
20784     *     // If the API version is equal of higher than the version in
20785     *     // which onInitializeAccessibilityNodeInfo was introduced we
20786     *     // register a delegate with a customized implementation.
20787     *     View view = findViewById(R.id.view_id);
20788     *     view.setAccessibilityDelegate(new AccessibilityDelegate() {
20789     *         public void onInitializeAccessibilityNodeInfo(View host,
20790     *                 AccessibilityNodeInfo info) {
20791     *             // Let the default implementation populate the info.
20792     *             super.onInitializeAccessibilityNodeInfo(host, info);
20793     *             // Set some other information.
20794     *             info.setEnabled(host.isEnabled());
20795     *         }
20796     *     });
20797     * }
20798     * </code></pre></p>
20799     * <p>
20800     * This delegate contains methods that correspond to the accessibility methods
20801     * in View. If a delegate has been specified the implementation in View hands
20802     * off handling to the corresponding method in this delegate. The default
20803     * implementation the delegate methods behaves exactly as the corresponding
20804     * method in View for the case of no accessibility delegate been set. Hence,
20805     * to customize the behavior of a View method, clients can override only the
20806     * corresponding delegate method without altering the behavior of the rest
20807     * accessibility related methods of the host view.
20808     * </p>
20809     */
20810    public static class AccessibilityDelegate {
20811
20812        /**
20813         * Sends an accessibility event of the given type. If accessibility is not
20814         * enabled this method has no effect.
20815         * <p>
20816         * The default implementation behaves as {@link View#sendAccessibilityEvent(int)
20817         *  View#sendAccessibilityEvent(int)} for the case of no accessibility delegate
20818         * been set.
20819         * </p>
20820         *
20821         * @param host The View hosting the delegate.
20822         * @param eventType The type of the event to send.
20823         *
20824         * @see View#sendAccessibilityEvent(int) View#sendAccessibilityEvent(int)
20825         */
20826        public void sendAccessibilityEvent(View host, int eventType) {
20827            host.sendAccessibilityEventInternal(eventType);
20828        }
20829
20830        /**
20831         * Performs the specified accessibility action on the view. For
20832         * possible accessibility actions look at {@link AccessibilityNodeInfo}.
20833         * <p>
20834         * The default implementation behaves as
20835         * {@link View#performAccessibilityAction(int, Bundle)
20836         *  View#performAccessibilityAction(int, Bundle)} for the case of
20837         *  no accessibility delegate been set.
20838         * </p>
20839         *
20840         * @param action The action to perform.
20841         * @return Whether the action was performed.
20842         *
20843         * @see View#performAccessibilityAction(int, Bundle)
20844         *      View#performAccessibilityAction(int, Bundle)
20845         */
20846        public boolean performAccessibilityAction(View host, int action, Bundle args) {
20847            return host.performAccessibilityActionInternal(action, args);
20848        }
20849
20850        /**
20851         * Sends an accessibility event. This method behaves exactly as
20852         * {@link #sendAccessibilityEvent(View, int)} but takes as an argument an
20853         * empty {@link AccessibilityEvent} and does not perform a check whether
20854         * accessibility is enabled.
20855         * <p>
20856         * The default implementation behaves as
20857         * {@link View#sendAccessibilityEventUnchecked(AccessibilityEvent)
20858         *  View#sendAccessibilityEventUnchecked(AccessibilityEvent)} for
20859         * the case of no accessibility delegate been set.
20860         * </p>
20861         *
20862         * @param host The View hosting the delegate.
20863         * @param event The event to send.
20864         *
20865         * @see View#sendAccessibilityEventUnchecked(AccessibilityEvent)
20866         *      View#sendAccessibilityEventUnchecked(AccessibilityEvent)
20867         */
20868        public void sendAccessibilityEventUnchecked(View host, AccessibilityEvent event) {
20869            host.sendAccessibilityEventUncheckedInternal(event);
20870        }
20871
20872        /**
20873         * Dispatches an {@link AccessibilityEvent} to the host {@link View} first and then
20874         * to its children for adding their text content to the event.
20875         * <p>
20876         * The default implementation behaves as
20877         * {@link View#dispatchPopulateAccessibilityEvent(AccessibilityEvent)
20878         *  View#dispatchPopulateAccessibilityEvent(AccessibilityEvent)} for
20879         * the case of no accessibility delegate been set.
20880         * </p>
20881         *
20882         * @param host The View hosting the delegate.
20883         * @param event The event.
20884         * @return True if the event population was completed.
20885         *
20886         * @see View#dispatchPopulateAccessibilityEvent(AccessibilityEvent)
20887         *      View#dispatchPopulateAccessibilityEvent(AccessibilityEvent)
20888         */
20889        public boolean dispatchPopulateAccessibilityEvent(View host, AccessibilityEvent event) {
20890            return host.dispatchPopulateAccessibilityEventInternal(event);
20891        }
20892
20893        /**
20894         * Gives a chance to the host View to populate the accessibility event with its
20895         * text content.
20896         * <p>
20897         * The default implementation behaves as
20898         * {@link View#onPopulateAccessibilityEvent(AccessibilityEvent)
20899         *  View#onPopulateAccessibilityEvent(AccessibilityEvent)} for
20900         * the case of no accessibility delegate been set.
20901         * </p>
20902         *
20903         * @param host The View hosting the delegate.
20904         * @param event The accessibility event which to populate.
20905         *
20906         * @see View#onPopulateAccessibilityEvent(AccessibilityEvent)
20907         *      View#onPopulateAccessibilityEvent(AccessibilityEvent)
20908         */
20909        public void onPopulateAccessibilityEvent(View host, AccessibilityEvent event) {
20910            host.onPopulateAccessibilityEventInternal(event);
20911        }
20912
20913        /**
20914         * Initializes an {@link AccessibilityEvent} with information about the
20915         * the host View which is the event source.
20916         * <p>
20917         * The default implementation behaves as
20918         * {@link View#onInitializeAccessibilityEvent(AccessibilityEvent)
20919         *  View#onInitializeAccessibilityEvent(AccessibilityEvent)} for
20920         * the case of no accessibility delegate been set.
20921         * </p>
20922         *
20923         * @param host The View hosting the delegate.
20924         * @param event The event to initialize.
20925         *
20926         * @see View#onInitializeAccessibilityEvent(AccessibilityEvent)
20927         *      View#onInitializeAccessibilityEvent(AccessibilityEvent)
20928         */
20929        public void onInitializeAccessibilityEvent(View host, AccessibilityEvent event) {
20930            host.onInitializeAccessibilityEventInternal(event);
20931        }
20932
20933        /**
20934         * Initializes an {@link AccessibilityNodeInfo} with information about the host view.
20935         * <p>
20936         * The default implementation behaves as
20937         * {@link View#onInitializeAccessibilityNodeInfo(AccessibilityNodeInfo)
20938         *  View#onInitializeAccessibilityNodeInfo(AccessibilityNodeInfo)} for
20939         * the case of no accessibility delegate been set.
20940         * </p>
20941         *
20942         * @param host The View hosting the delegate.
20943         * @param info The instance to initialize.
20944         *
20945         * @see View#onInitializeAccessibilityNodeInfo(AccessibilityNodeInfo)
20946         *      View#onInitializeAccessibilityNodeInfo(AccessibilityNodeInfo)
20947         */
20948        public void onInitializeAccessibilityNodeInfo(View host, AccessibilityNodeInfo info) {
20949            host.onInitializeAccessibilityNodeInfoInternal(info);
20950        }
20951
20952        /**
20953         * Called when a child of the host View has requested sending an
20954         * {@link AccessibilityEvent} and gives an opportunity to the parent (the host)
20955         * to augment the event.
20956         * <p>
20957         * The default implementation behaves as
20958         * {@link ViewGroup#onRequestSendAccessibilityEvent(View, AccessibilityEvent)
20959         *  ViewGroup#onRequestSendAccessibilityEvent(View, AccessibilityEvent)} for
20960         * the case of no accessibility delegate been set.
20961         * </p>
20962         *
20963         * @param host The View hosting the delegate.
20964         * @param child The child which requests sending the event.
20965         * @param event The event to be sent.
20966         * @return True if the event should be sent
20967         *
20968         * @see ViewGroup#onRequestSendAccessibilityEvent(View, AccessibilityEvent)
20969         *      ViewGroup#onRequestSendAccessibilityEvent(View, AccessibilityEvent)
20970         */
20971        public boolean onRequestSendAccessibilityEvent(ViewGroup host, View child,
20972                AccessibilityEvent event) {
20973            return host.onRequestSendAccessibilityEventInternal(child, event);
20974        }
20975
20976        /**
20977         * Gets the provider for managing a virtual view hierarchy rooted at this View
20978         * and reported to {@link android.accessibilityservice.AccessibilityService}s
20979         * that explore the window content.
20980         * <p>
20981         * The default implementation behaves as
20982         * {@link View#getAccessibilityNodeProvider() View#getAccessibilityNodeProvider()} for
20983         * the case of no accessibility delegate been set.
20984         * </p>
20985         *
20986         * @return The provider.
20987         *
20988         * @see AccessibilityNodeProvider
20989         */
20990        public AccessibilityNodeProvider getAccessibilityNodeProvider(View host) {
20991            return null;
20992        }
20993
20994        /**
20995         * Returns an {@link AccessibilityNodeInfo} representing the host view from the
20996         * point of view of an {@link android.accessibilityservice.AccessibilityService}.
20997         * This method is responsible for obtaining an accessibility node info from a
20998         * pool of reusable instances and calling
20999         * {@link #onInitializeAccessibilityNodeInfo(AccessibilityNodeInfo)} on the host
21000         * view to initialize the former.
21001         * <p>
21002         * <strong>Note:</strong> The client is responsible for recycling the obtained
21003         * instance by calling {@link AccessibilityNodeInfo#recycle()} to minimize object
21004         * creation.
21005         * </p>
21006         * <p>
21007         * The default implementation behaves as
21008         * {@link View#createAccessibilityNodeInfo() View#createAccessibilityNodeInfo()} for
21009         * the case of no accessibility delegate been set.
21010         * </p>
21011         * @return A populated {@link AccessibilityNodeInfo}.
21012         *
21013         * @see AccessibilityNodeInfo
21014         *
21015         * @hide
21016         */
21017        public AccessibilityNodeInfo createAccessibilityNodeInfo(View host) {
21018            return host.createAccessibilityNodeInfoInternal();
21019        }
21020    }
21021
21022    private class MatchIdPredicate implements Predicate<View> {
21023        public int mId;
21024
21025        @Override
21026        public boolean apply(View view) {
21027            return (view.mID == mId);
21028        }
21029    }
21030
21031    private class MatchLabelForPredicate implements Predicate<View> {
21032        private int mLabeledId;
21033
21034        @Override
21035        public boolean apply(View view) {
21036            return (view.mLabelForId == mLabeledId);
21037        }
21038    }
21039
21040    private class SendViewStateChangedAccessibilityEvent implements Runnable {
21041        private int mChangeTypes = 0;
21042        private boolean mPosted;
21043        private boolean mPostedWithDelay;
21044        private long mLastEventTimeMillis;
21045
21046        @Override
21047        public void run() {
21048            mPosted = false;
21049            mPostedWithDelay = false;
21050            mLastEventTimeMillis = SystemClock.uptimeMillis();
21051            if (AccessibilityManager.getInstance(mContext).isEnabled()) {
21052                final AccessibilityEvent event = AccessibilityEvent.obtain();
21053                event.setEventType(AccessibilityEvent.TYPE_WINDOW_CONTENT_CHANGED);
21054                event.setContentChangeTypes(mChangeTypes);
21055                sendAccessibilityEventUnchecked(event);
21056            }
21057            mChangeTypes = 0;
21058        }
21059
21060        public void runOrPost(int changeType) {
21061            mChangeTypes |= changeType;
21062
21063            // If this is a live region or the child of a live region, collect
21064            // all events from this frame and send them on the next frame.
21065            if (inLiveRegion()) {
21066                // If we're already posted with a delay, remove that.
21067                if (mPostedWithDelay) {
21068                    removeCallbacks(this);
21069                    mPostedWithDelay = false;
21070                }
21071                // Only post if we're not already posted.
21072                if (!mPosted) {
21073                    post(this);
21074                    mPosted = true;
21075                }
21076                return;
21077            }
21078
21079            if (mPosted) {
21080                return;
21081            }
21082
21083            final long timeSinceLastMillis = SystemClock.uptimeMillis() - mLastEventTimeMillis;
21084            final long minEventIntevalMillis =
21085                    ViewConfiguration.getSendRecurringAccessibilityEventsInterval();
21086            if (timeSinceLastMillis >= minEventIntevalMillis) {
21087                removeCallbacks(this);
21088                run();
21089            } else {
21090                postDelayed(this, minEventIntevalMillis - timeSinceLastMillis);
21091                mPostedWithDelay = true;
21092            }
21093        }
21094    }
21095
21096    private boolean inLiveRegion() {
21097        if (getAccessibilityLiveRegion() != View.ACCESSIBILITY_LIVE_REGION_NONE) {
21098            return true;
21099        }
21100
21101        ViewParent parent = getParent();
21102        while (parent instanceof View) {
21103            if (((View) parent).getAccessibilityLiveRegion()
21104                    != View.ACCESSIBILITY_LIVE_REGION_NONE) {
21105                return true;
21106            }
21107            parent = parent.getParent();
21108        }
21109
21110        return false;
21111    }
21112
21113    /**
21114     * Dump all private flags in readable format, useful for documentation and
21115     * sanity checking.
21116     */
21117    private static void dumpFlags() {
21118        final HashMap<String, String> found = Maps.newHashMap();
21119        try {
21120            for (Field field : View.class.getDeclaredFields()) {
21121                final int modifiers = field.getModifiers();
21122                if (Modifier.isStatic(modifiers) && Modifier.isFinal(modifiers)) {
21123                    if (field.getType().equals(int.class)) {
21124                        final int value = field.getInt(null);
21125                        dumpFlag(found, field.getName(), value);
21126                    } else if (field.getType().equals(int[].class)) {
21127                        final int[] values = (int[]) field.get(null);
21128                        for (int i = 0; i < values.length; i++) {
21129                            dumpFlag(found, field.getName() + "[" + i + "]", values[i]);
21130                        }
21131                    }
21132                }
21133            }
21134        } catch (IllegalAccessException e) {
21135            throw new RuntimeException(e);
21136        }
21137
21138        final ArrayList<String> keys = Lists.newArrayList();
21139        keys.addAll(found.keySet());
21140        Collections.sort(keys);
21141        for (String key : keys) {
21142            Log.d(VIEW_LOG_TAG, found.get(key));
21143        }
21144    }
21145
21146    private static void dumpFlag(HashMap<String, String> found, String name, int value) {
21147        // Sort flags by prefix, then by bits, always keeping unique keys
21148        final String bits = String.format("%32s", Integer.toBinaryString(value)).replace('0', ' ');
21149        final int prefix = name.indexOf('_');
21150        final String key = (prefix > 0 ? name.substring(0, prefix) : name) + bits + name;
21151        final String output = bits + " " + name;
21152        found.put(key, output);
21153    }
21154}
21155