Home | History | Annotate | Download | only in shadows

Lines Matching defs:focusable

67     protected boolean focusable;
130 * Also sets focusable in touch mode to false if {@code focusable} is false, which is the Android behavior.
132 * @param focusable the new status of the {@code View}'s focusability
135 public void setFocusable(boolean focusable) {
136 this.focusable = focusable;
137 if (!focusable) {
148 * Also sets focusable to true if {@code focusableInTouchMode} is true, which is the Android behavior.
167 return focusable;
820 setFocusable(attributeSet.getAttributeBooleanValue("android", "focusable", false));