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

/frameworks/base/core/java/android/view/
H A DViewGroup.java1145 boolean hasFocusable(boolean allowAutoFocus, boolean dispatchExplicit) { method in class:ViewGroup
1146 // This should probably be super.hasFocusable, but that would change
1148 // shouldBlockFocusForTouchscreen() in ViewGroup.hasFocusable.
1180 || (!dispatchExplicit && child.hasFocusable())) {
H A DView.java877 * Prior to O, auto-focusable didn't exist and widgets such as ListView use hasFocusable
6807 * for which {@link #hasFocusable()} returns {@code true}. A "reachable hasFocusable()"
6826 public boolean hasFocusable() { method in class:View
6827 return hasFocusable(!sHasFocusableExcludeAutoFocusable, false);
6838 * {@link #hasFocusable()} in that only views explicitly set focusable will cause
6845 * @see #hasFocusable()
6848 return hasFocusable(false, true);
6851 boolean hasFocusable(boolean allowAutoFocus, boolean dispatchExplicit) { method in class:View
10508 if (!hasFocusable()) {
[all...]

Completed in 95 milliseconds