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

/frameworks/base/core/java/com/android/internal/view/menu/
H A DMenuItemImpl.java308 * Refreshes the shortcut shown on the ItemViews. This method retrieves current
309 * shortcut state (mode and shown) from the menu that contains this item.
316 * Refreshes the shortcut shown on the ItemViews. This is usually called by
321 * @param menuShortcutShown The menu's shortcut shown mode. In addition,
544 * @param shown Whether to show (true) or hide (false).
545 * @return Whether the item's shown state was changed
547 boolean setVisibleInt(boolean shown) { argument
549 mFlags = (mFlags & ~HIDDEN) | (shown ? 0 : HIDDEN);
553 public MenuItem setVisible(boolean shown) { argument
554 // Try to set the shown stat
[all...]
/frameworks/base/core/java/android/inputmethodservice/
H A DInputMethodService.java103 * <li>The candidates view, if currently shown, is placed above the soft
125 * soft input view should be shown to the user. This is done by implementing
127 * whether it should be shown in the current environment. If any of your
145 * view, because the candidates view tends to be more transient, being shown
147 * by the user. To control whether the candidates view is shown, you use
149 * view tends to be shown and hidden a lot, it does not impact the application
667 // window is shown for them.
850 * text. When false, the extracted text will not be shown, allowing some
856 public void setExtractViewShown(boolean shown) { argument
857 if (mExtractViewHidden == shown) {
992 setCandidatesViewShown(boolean shown) argument
1006 updateCandidatesVisibility(boolean shown) argument
[all...]

Completed in 5 milliseconds