Searched defs:shown (Results 1 - 10 of 10) 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...]
H A DActivityManagerNative.java3213 public void setLockScreenShown(boolean shown) throws RemoteException argument
3218 data.writeInt(shown ? 1 : 0);
H A DIActivityManager.java217 public void setLockScreenShown(boolean shown) throws RemoteException; argument
/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.java416 * Gets whether the {@link CalendarView} is shown.
418 * @return True if the calendar view is shown.
436 * Sets whether the {@link CalendarView} is shown.
438 * @param shown True if the calendar view is to be shown.
440 public void setCalendarViewShown(boolean shown) { argument
441 mCalendarView.setVisibility(shown ? VISIBLE : GONE);
445 * Gets whether the spinners are shown.
447 * @return True if the spinners are shown.
454 * Sets whether the spinners are shown
458 setSpinnersShown(boolean shown) argument
[all...]
/frameworks/base/core/java/com/android/internal/view/menu/
H A DMenuItemImpl.java471 * @param shown Whether to show (true) or hide (false).
472 * @return Whether the item's shown state was changed
474 boolean setVisibleInt(boolean shown) { argument
476 mFlags = (mFlags & ~HIDDEN) | (shown ? 0 : HIDDEN);
480 public MenuItem setVisible(boolean shown) { argument
481 // Try to set the shown state to the given state. If the shown state was changed
483 // the shown state has changed for this item
484 if (setVisibleInt(shown)) mMenu.onItemVisibleChanged(this);
/frameworks/base/core/java/com/android/internal/widget/
H A DLockPatternUtils.java1257 * @param shown indicates whether the given screen wants the emergency button to show at all
1260 * @param shown shown if true; hidden if false
1263 public void updateEmergencyCallButtonState(Button button, int phoneState, boolean shown, argument
1265 if (isEmergencyCallCapable() && shown) {
1296 * @param shown
1298 public void updateEmergencyCallButtonState(Button button, int phoneState, boolean shown) { argument
1299 updateEmergencyCallButtonState(button, phoneState, shown, false, true);
/frameworks/base/core/java/android/inputmethodservice/
H A DInputMethodService.java108 * <li>The candidates view, if currently shown, is placed above the soft
130 * soft input view should be shown to the user. This is done by implementing
132 * whether it should be shown in the current environment. If any of your
150 * view, because the candidates view tends to be more transient, being shown
152 * by the user. To control whether the candidates view is shown, you use
154 * view tends to be shown and hidden a lot, it does not impact the application
426 // If user uses hard keyboard, IME button should always be shown.
769 // window is shown for them.
775 // If user uses hard keyboard, IME button should always be shown.
972 * text. When false, the extracted text will not be shown, allowin
978 setExtractViewShown(boolean shown) argument
1115 setCandidatesViewShown(boolean shown) argument
1129 updateCandidatesVisibility(boolean shown) argument
[all...]
/frameworks/base/services/java/com/android/server/accessibility/
H A DScreenMagnifier.java1626 public void setFrameShown(boolean shown, boolean animate) { argument
1627 if (mViewportFrame.isShown() == shown) {
1634 if (shown) {
1643 if (shown) {
1733 Slog.i(LOG_TAG, "ViewportWindow shown.");
/frameworks/base/services/java/com/android/server/am/
H A DActivityManagerService.java709 * State of external call telling us if the lock screen is shown.
979 // Just kill the app if there is no dialog to be shown.
2283 // version than the last one shown, and we are not running in
3634 // applications can't abuse it to prevent system UI from being shown.
7182 public void setLockScreenShown(boolean shown) { argument
7190 mLockScreenShown = shown;
12803 // If this process has shown some UI, let it immediately
12880 // If this process has shown some UI, let it immediately
12918 // If this process has recently shown UI, and

Completed in 633 milliseconds