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

/frameworks/base/core/java/android/app/
H A DListFragment.java182 * that is to be shown when the list is empty.
188 * way to have the built-in indeterminant progress state be shown.
286 * be shown when the list is empty. If you would like to have it
287 * shown, call this method to supply the text it should use.
304 * this time an indeterminant progress indicator will be shown instead.
307 * behavior of ListFragment is to start with the list not being shown, only
309 * If the list at that point had not been shown, when it does get shown
312 * @param shown If true, the list view is shown; i
315 setListShown(boolean shown) argument
323 setListShownNoAnimation(boolean shown) argument
337 setListShown(boolean shown, boolean animate) argument
[all...]
/frameworks/support/v4/java/android/support/v4/app/
H A DListFragment.java80 * that is to be shown when the list is empty.
86 * way to have the built-in indeterminant progress state be shown.
228 * be shown when the list is empty. If you would like to have it
229 * shown, call this method to supply the text it should use.
246 * this time an indeterminant progress indicator will be shown instead.
249 * behavior of ListFragment is to start with the list not being shown, only
251 * If the list at that point had not been shown, when it does get shown
254 * @param shown If true, the list view is shown; i
257 setListShown(boolean shown) argument
265 setListShownNoAnimation(boolean shown) argument
279 setListShown(boolean shown, boolean animate) argument
[all...]
/frameworks/base/core/java/android/widget/
H A DDatePicker.java400 * Gets whether the {@link CalendarView} is shown.
402 * @return True if the calendar view is shown.
420 * Sets whether the {@link CalendarView} is shown.
422 * @param shown True if the calendar view is to be shown.
424 public void setCalendarViewShown(boolean shown) { argument
425 mCalendarView.setVisibility(shown ? VISIBLE : GONE);
429 * Gets whether the spinners are shown.
431 * @return True if the spinners are shown.
438 * Sets whether the spinners are shown
442 setSpinnersShown(boolean shown) argument
[all...]
/frameworks/base/core/java/com/android/internal/view/menu/
H A DMenuItemImpl.java465 * @param shown Whether to show (true) or hide (false).
466 * @return Whether the item's shown state was changed
468 boolean setVisibleInt(boolean shown) { argument
470 mFlags = (mFlags & ~HIDDEN) | (shown ? 0 : HIDDEN);
474 public MenuItem setVisible(boolean shown) { argument
475 // Try to set the shown state to the given state. If the shown state was changed
477 // the shown state has changed for this item
478 if (setVisibleInt(shown)) mMenu.onItemVisibleChanged(this);
/frameworks/base/core/java/com/android/internal/widget/
H A DLockPatternUtils.java1035 * @param shown indicates whether the given screen wants the emergency button to show at all
1037 public void updateEmergencyCallButtonState(Button button, int phoneState, boolean shown) { argument
1038 if (isEmergencyCallCapable() && shown) {
/frameworks/base/core/java/android/inputmethodservice/
H A DInputMethodService.java107 * <li>The candidates view, if currently shown, is placed above the soft
129 * soft input view should be shown to the user. This is done by implementing
131 * whether it should be shown in the current environment. If any of your
149 * view, because the candidates view tends to be more transient, being shown
151 * by the user. To control whether the candidates view is shown, you use
153 * view tends to be shown and hidden a lot, it does not impact the application
424 // If user uses hard keyboard, IME button should always be shown.
744 // window is shown for them.
750 // If user uses hard keyboard, IME button should always be shown.
947 * text. When false, the extracted text will not be shown, allowin
953 setExtractViewShown(boolean shown) argument
1090 setCandidatesViewShown(boolean shown) argument
1104 updateCandidatesVisibility(boolean shown) argument
[all...]

Completed in 181 milliseconds