Searched defs:focusable (Results 1 - 5 of 5) 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
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
140 * <p>Create a new empty, non focusable popup window of dimension (0,0).</p>
149 * <p>Create a new empty, non focusable popup window of dimension (0,0).</p>
158 * <p>Create a new empty, non focusable popup window of dimension (0,0).</p>
217 * <p>Create a new empty, non focusable popup window of dimension (0,0).</p>
227 * <p>Create a new non focusable popup window which can display the
240 * <p>Create a new empty, non focusable popup window. The dimension of the
254 * <p>Create a new non focusable popu
281 PopupWindow(View contentView, int width, int height, boolean focusable) argument
427 setFocusable(boolean focusable) argument
[all...]
/frameworks/base/core/java/android/view/
H A DView.java500 * {@link #isFocusableInTouchMode} is true will be focusable, such as text editing widgets.
921 * should add all focusable Views regardless if they are focusable in touch mode.
927 * should add only Views focusable in touch mode.
2687 * Returns true if this view is focusable or if it contains a reachable View
2691 * Only {@link #VISIBLE} views are considered focusable.
2693 * @return True if the view is focusable or if the view contains a focusable
3157 * Setting this to false will also ensure that this view is not focusable
3160 * @param focusable I
3165 setFocusable(boolean focusable) argument
[all...]

Completed in 52 milliseconds