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

/frameworks/base/core/java/android/view/
H A DViewGroup.java1214 boolean hasFocusable(boolean allowAutoFocus, boolean dispatchExplicit) { method in class:ViewGroup
1215 // This should probably be super.hasFocusable, but that would change
1217 // shouldBlockFocusForTouchscreen() in ViewGroup.hasFocusable.
1249 || (!dispatchExplicit && child.hasFocusable())) {
H A DView.java884 * Prior to O, auto-focusable didn't exist and widgets such as ListView use hasFocusable
7150 * for which {@link #hasFocusable()} returns {@code true}. A "reachable hasFocusable()"
7169 public boolean hasFocusable() { method in class:View
7170 return hasFocusable(!sHasFocusableExcludeAutoFocusable, false);
7181 * {@link #hasFocusable()} in that only views explicitly set focusable will cause
7188 * @see #hasFocusable()
7191 return hasFocusable(false, true);
7194 boolean hasFocusable(boolean allowAutoFocus, boolean dispatchExplicit) { method in class:View
11225 if (!hasFocusable()) {
[all...]

Completed in 49 milliseconds