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

/frameworks/base/core/java/android/widget/
H A DListPopupWindow.java281 * Set whether this window should be modal when shown.
283 * <p>If a popup window is modal, it will receive all touch and key input.
287 * @param modal {@code true} if the popup window should be modal, {@code false} otherwise.
289 public void setModal(boolean modal) { argument
290 mModal = modal;
291 mPopup.setFocusable(modal);
295 * Returns whether the popup window will be modal when shown.
297 * @return {@code true} if the popup window will be modal, {@code false} otherwise.
881 * views using non-modal ListPopupWindo
[all...]
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DListPopupWindow.java320 * Set whether this window should be modal when shown.
322 * <p>If a popup window is modal, it will receive all touch and key input.
326 * @param modal {@code true} if the popup window should be modal, {@code false} otherwise.
328 public void setModal(boolean modal) { argument
329 mModal = modal;
330 mPopup.setFocusable(modal);
334 * Returns whether the popup window will be modal when shown.
336 * @return {@code true} if the popup window will be modal, {@code false} otherwise.
928 * views using non-modal ListPopupWindo
[all...]

Completed in 980 milliseconds