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

/frameworks/base/tests/FrameworkTest/src/com/android/frameworktest/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
291 * Sets whether the zoom controls should be focusable. If the controls are
292 * focusable, then trackball and arrow key interactions are possible.
295 * @param focusable Whether the zoom controls should be focusable.
297 public void setFocusable(boolean focusable) { argument
299 if (focusable) {
H A DAdapterView.java201 * Indicates what focusable state is requested when calling setFocusable().
203 * determining the focusable state (such as whether its empty or the text
662 public void setFocusable(boolean focusable) { argument
666 mDesiredFocusableState = focusable;
667 if (!focusable) {
671 super.setFocusable(focusable && (!empty || isInFilterMode()));
675 public void setFocusableInTouchMode(boolean focusable) { argument
679 mDesiredFocusableInTouchModeState = focusable;
680 if (focusable) {
684 super.setFocusableInTouchMode(focusable
[all...]
H A DPopupWindow.java53 * if it is focusable than it needs to work with the input method, else
60 * work with an input method, regardless of whether it is focusable. This
68 * work with an input method, regardless of whether it is focusable. This
137 * <p>Create a new empty, non focusable popup window of dimension (0,0).</p>
146 * <p>Create a new empty, non focusable popup window of dimension (0,0).</p>
155 * <p>Create a new empty, non focusable popup window of dimension (0,0).</p>
210 * <p>Create a new empty, non focusable popup window of dimension (0,0).</p>
220 * <p>Create a new non focusable popup window which can display the
233 * <p>Create a new empty, non focusable popup window. The dimension of the
247 * <p>Create a new non focusable popu
274 PopupWindow(View contentView, int width, int height, boolean focusable) argument
420 setFocusable(boolean focusable) argument
[all...]
/frameworks/base/awt/java/awt/
H A DComponent.java965 * The focusable.
967 private boolean focusable = true; // By default, all Components return field in class:Component
976 * The called set focusable.
981 * The overridden is focusable.
3025 * Checks whether or not this Component can be focusable.
3027 * @return true, if this Component can be focusable, false otherwise.
3035 return focusable; // a Component must either be both focusable and
3043 * Checks if this Component can be focusable or not.
3045 * @return true, if this Component can be focusable, fals
[all...]
/frameworks/base/core/java/android/view/
H A DView.java499 * {@link #isFocusableInTouchMode} is true will be focusable, such as text editing widgets.
890 * should add all focusable Views regardless if they are focusable in touch mode.
896 * should add only Views focusable in touch mode.
2567 * Returns true if this view is focusable or if it contains a reachable View
2571 * Only {@link #VISIBLE} views are considered focusable.
2573 * @return True if the view is focusable or if the view contains a focusable
3028 * Setting this to false will also ensure that this view is not focusable
3031 * @param focusable I
3036 setFocusable(boolean focusable) argument
[all...]

Completed in 95 milliseconds