Searched defs:FOCUSABLE (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/core/java/android/view/
H A DView.java897 @IntDef({NOT_FOCUSABLE, FOCUSABLE, FOCUSABLE_AUTO})
915 public static final int FOCUSABLE = 0x00000001; field in class:View
4884 viewFlagValues |= FOCUSABLE_IN_TOUCH_MODE | FOCUSABLE;
5494 out.append((mViewFlags & FOCUSABLE) == FOCUSABLE ? 'F' : '.');
6873 * {@link #FOCUSABLE} are considered focusable.
9474 setFocusable(focusable ? FOCUSABLE : NOT_FOCUSABLE);
9486 * @param focusable One of {@link #NOT_FOCUSABLE}, {@link #FOCUSABLE},
9492 if ((focusable & (FOCUSABLE_AUTO | FOCUSABLE)) == 0) {
9519 setFlags(FOCUSABLE, FOCUSABLE_MAS
[all...]

Completed in 59 milliseconds