Lines Matching refs:focusable

105      * if it is focusable than it needs to work with the input method, else
112 * work with an input method, regardless of whether it is focusable. This
120 * work with an input method, regardless of whether it is focusable. This
240 * <p>Create a new empty, non focusable popup window of dimension (0,0).</p>
249 * <p>Create a new empty, non focusable popup window of dimension (0,0).</p>
258 * <p>Create a new empty, non focusable popup window of dimension (0,0).</p>
267 * <p>Create a new, empty, non focusable popup window of dimension (0,0).</p>
313 * <p>Create a new empty, non focusable popup window of dimension (0,0).</p>
323 * <p>Create a new non focusable popup window which can display the
336 * <p>Create a new empty, non focusable popup window. The dimension of the
350 * <p>Create a new non focusable popup window which can display the
375 * @param focusable true if the popup can be focused, false otherwise
377 public PopupWindow(View contentView, int width, int height, boolean focusable) {
386 setFocusable(focusable);
654 * @return true if the popup is focusable, false otherwise
663 * <p>Changes the focusability of the popup window. When focusable, the
665 * contains a focusable {@link android.view.View}. By default a popup
666 * window is not focusable.</p>
672 * @param focusable true if the popup should grab focus, false otherwise.
678 public void setFocusable(boolean focusable) {
679 mFocusable = focusable;
777 * but not focusable, which means touches outside of the window will
1838 // The decor view is non-interactive and non-IME-focusable during exit transitions.