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

/frameworks/base/core/tests/coretests/src/android/widget/focus/
H A DListWithMailMessages.java82 public MailMessage(String subject, String body, boolean focusable) { argument
85 mFocusable = focusable;
109 public void setFocusable(boolean focusable) { argument
110 mFocusable = focusable;
/frameworks/base/core/java/android/widget/
H A DZoomButtonsController.java45 * - This window is never touchable, and by default is not focusable.
53 * - When it is focusable, it forwards uninteresting events to the owner view's
292 * Sets whether the zoom controls should be focusable. If the controls are
293 * focusable, then trackball and arrow key interactions are possible.
296 * @param focusable Whether the zoom controls should be focusable.
298 public void setFocusable(boolean focusable) { argument
300 if (focusable) {
H A DAdapterView.java207 * Indicates what focusable state is requested when calling setFocusable().
209 * determining the focusable state (such as whether its empty or the text
686 public void setFocusable(boolean focusable) { argument
690 mDesiredFocusableState = focusable;
691 if (!focusable) {
695 super.setFocusable(focusable && (!empty || isInFilterMode()));
699 public void setFocusableInTouchMode(boolean focusable) { argument
703 mDesiredFocusableInTouchModeState = focusable;
704 if (focusable) {
708 super.setFocusableInTouchMode(focusable
[all...]
H A DPopupWindow.java55 * if it is focusable than it needs to work with the input method, else
62 * work with an input method, regardless of whether it is focusable. This
70 * work with an input method, regardless of whether it is focusable. This
151 * <p>Create a new empty, non focusable popup window of dimension (0,0).</p>
160 * <p>Create a new empty, non focusable popup window of dimension (0,0).</p>
169 * <p>Create a new empty, non focusable popup window of dimension (0,0).</p>
178 * <p>Create a new, empty, non focusable popup window of dimension (0,0).</p>
237 * <p>Create a new empty, non focusable popup window of dimension (0,0).</p>
247 * <p>Create a new non focusable popup window which can display the
260 * <p>Create a new empty, non focusable popu
301 PopupWindow(View contentView, int width, int height, boolean focusable) argument
446 setFocusable(boolean focusable) argument
[all...]
/frameworks/support/v4/ics/android/support/v4/view/accessibility/
H A DAccessibilityNodeInfoCompatIcs.java176 public static void setFocusable(Object info, boolean focusable) { argument
177 ((AccessibilityNodeInfo) info).setFocusable(focusable);
/frameworks/testing/uiautomator/library/core-src/com/android/uiautomator/core/
H A DUiSelector.java386 * Set the search criteria to match widgets that are focusable.
400 public UiSelector focusable(boolean val) { method in class:UiSelector
/frameworks/uiautomator/core/com/android/uiautomator/core/
H A DUiSelector.java386 * Set the search criteria to match widgets that are focusable.
400 public UiSelector focusable(boolean val) { method in class:UiSelector
/frameworks/support/v4/java/android/support/v4/view/accessibility/
H A DAccessibilityNodeInfoCompat.java70 public void setFocusable(Object info, boolean focusable); argument
321 public void setFocusable(Object info, boolean focusable) { argument
608 public void setFocusable(Object info, boolean focusable) { argument
609 AccessibilityNodeInfoCompatIcs.setFocusable(info, focusable);
1529 * Gets whether this node is focusable.
1531 * @return True if the node is focusable.
1538 * Sets whether this node is focusable.
1545 * @param focusable True if the node is focusable.
1548 public void setFocusable(boolean focusable) { argument
[all...]
/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
H A DAdapterViewICS.java209 * Indicates what focusable state is requested when calling setFocusable().
211 * determining the focusable state (such as whether its empty or the text
688 public void setFocusable(boolean focusable) { argument
692 mDesiredFocusableState = focusable;
693 if (!focusable) {
697 super.setFocusable(focusable && (!empty || isInFilterMode()));
701 public void setFocusableInTouchMode(boolean focusable) { argument
705 mDesiredFocusableInTouchModeState = focusable;
706 if (focusable) {
710 super.setFocusableInTouchMode(focusable
[all...]
/frameworks/base/core/java/android/view/accessibility/
H A DAccessibilityNodeInfo.java1093 * Gets whether this node is focusable.
1095 * @return True if the node is focusable.
1102 * Sets whether this node is focusable.
1109 * @param focusable True if the node is focusable.
1113 public void setFocusable(boolean focusable) { argument
1114 setBooleanProperty(BOOLEAN_PROPERTY_FOCUSABLE, focusable);
2518 builder.append("; focusable: ").append(isFocusable());
/frameworks/base/core/java/android/view/
H A DView.java519 * {@link #isFocusableInTouchMode} is true will be focusable, such as text editing widgets.
1026 * should add all focusable Views regardless if they are focusable in touch mode.
1032 * should add only Views focusable in touch mode.
4683 * to give focus to the first focusable View from the top. Hence, if this
4763 * Returns true if this view is focusable or if it contains a reachable View
4767 * Only {@link #VISIBLE} views are considered focusable.
4769 * @return True if the view is focusable or if the view contains a focusable
6065 * Setting this to false will also ensure that this view is not focusable
6073 setFocusable(boolean focusable) argument
[all...]

Completed in 337 milliseconds