Searched refs:modal (Results 1 - 3 of 3) 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...]
/frameworks/base/services/core/java/com/android/server/wm/
H A DWindowState.java1661 final boolean modal = (flags & (FLAG_NOT_TOUCH_MODAL | FLAG_NOT_FOCUSABLE)) == 0;
1662 if (modal && mAppToken != null) {
1665 // If this is a modal window we need to dismiss it if it's not full screen and the
1687 // Not modal or full screen modal

Completed in 148 milliseconds