Searched defs:show (Results 51 - 75 of 106) sorted by relevance

12345

/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DPopupMenu.java160 show();
172 // This will be null until show() is called.
183 * items before calling {@link #show()}.
185 * @see #show()
215 public void show() { method in class:PopupMenu
216 mPopup.show();
221 * @see #show()
275 new MenuPopupHelper(mContext, subMenu, mAnchor).show();
H A DAppCompatSpinner.java263 mPopup.show();
424 mPopup.show();
760 public void show() { method in class:AppCompatSpinner.DropdownPopup
766 super.show();
791 // Use super.show here to update; we don't want to move the selected
793 DropdownPopup.super.show();
/frameworks/base/core/java/android/app/
H A DSearchDialog.java70 // The string used for privateImeOptions to identify to the IME that it should not show
149 // but necessary to show the popup window until the window manager supports
207 public boolean show(String initialQuery, boolean selectInitialQuery, method in class:SearchDialog
219 * Does the rest of the work required to show the search dialog. Called by
220 * {@link #show(String, boolean, ComponentName, Bundle)} and
226 // set up the searchable and show the dialog
227 if (!show(componentName, appSearchData)) {
245 private boolean show(ComponentName componentName, Bundle appSearchData) { method in class:SearchDialog
248 Log.d(LOG_TAG, "show(" + componentName + ", "
265 // show th
[all...]
H A DAlertDialog.java230 * example, via {@link #show()} or {@link #create()}).
278 * @param view The view to show in the content area of the dialog
1081 * processing is needed, {@link #show()} may be called instead to both
1107 * dialog.show();
1110 public AlertDialog show() { method in class:AlertDialog.Builder
1112 dialog.show();
H A DActionBar.java169 * e.g. show an arrow to the left indicating the action that will be taken.
269 * @param resId Resource ID of a drawable to show as an icon.
284 * @param icon Drawable to show as an icon.
299 * @param resId Resource ID of a drawable to show as a logo.
314 * @param logo Drawable to show as a logo.
468 * @param showHome true to show home, false otherwise.
482 * @param showHomeAsUp true to show the user that selecting home will return one
784 public abstract void show(); method in class:ActionBar
945 * {@link #hide() hidden}. A call to {@link #show() show} wil
[all...]
H A DDialog.java246 * {@link Activity#showDialog(int)} is used to show this Dialog, that
281 public void show() { method in class:Dialog
463 show();
495 * created (for example, via {@link #show()} or {@link #create()}).
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DNetworkController.java45 void setNoSims(boolean show); argument
/frameworks/base/services/core/java/com/android/server/display/
H A DOverlayDisplayWindow.java117 public void show() { method in class:OverlayDisplayWindow
185 Slog.w(TAG, "Cannot show overlay display because there is no "
186 + "default display upon which to show it.");
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DPlaybackControlsPresenter.java97 void showMoreActions(boolean show) { argument
98 if (show) {
H A DPlaybackControlsRowPresenter.java288 public void showBottomSpace(ViewHolder vh, boolean show) { argument
289 vh.mBottomSpacer.setVisibility(show ? View.VISIBLE : View.GONE);
H A DDetailsOverviewRowPresenter.java247 private void showMoreLeft(boolean show) { argument
248 if (show != mShowMoreLeft) {
249 mActionsRow.setFadingLeftEdge(show);
250 mShowMoreLeft = show;
254 private void showMoreRight(boolean show) { argument
255 if (show != mShowMoreRight) {
256 mActionsRow.setFadingRightEdge(show);
257 mShowMoreRight = show;
/frameworks/base/core/java/android/widget/
H A DMediaController.java56 * Functions like show() and hide() have no effect when MediaController
60 * show the buttons according to these rules:
317 public void show() { method in class:MediaController
318 show(sDefaultTimeout);
357 * @param timeout The timeout in milliseconds. Use 0 to show
360 public void show(int timeout) { method in class:MediaController
469 show(0); // show until hide is called
472 show(sDefaultTimeout); // start timeout
485 show(sDefaultTimeou
[all...]
H A DSpinner.java280 mPopup.show(getTextDirection(), getTextAlignment());
758 mPopup.show(getTextDirection(), getTextAlignment());
872 mPopup.show(getTextDirection(), getTextAlignment());
1031 public void show(int textDirection, int textAlignment); method in interface:Spinner.SpinnerPopup
1087 public void show(int textDirection, int textAlignment) { method in class:Spinner.DialogPopup
1100 mPopup.show();
1217 public void show(int textDirection, int textAlignment) { method in class:Spinner.DropdownPopup
1223 super.show();
1249 // Use super.show here to update; we don't want to move the selected
1251 DropdownPopup.super.show();
[all...]
/frameworks/base/core/java/com/android/internal/view/menu/
H A DActionMenuItem.java224 public void setShowAsAction(int show) { argument
225 // Do nothing. ActionMenuItems always show as action buttons.
H A DMenuPopupHelper.java123 public void show() { method in class:MenuPopupHelper
134 * Attempts to show the popup anchored to the view specified by
170 mPopup.show();
255 mPopup.show();
/frameworks/base/media/java/android/media/
H A DSubtitleTrack.java272 public void show() { method in class:SubtitleTrack
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DStatusBarKeyguardViewManager.java102 public void show(Bundle options) { method in class:StatusBarKeyguardViewManager
118 mBouncer.show(true /* resetSecuritySelection */);
128 mBouncer.show(false /* resetSecuritySelection */);
139 mBouncer.show(false /* resetSecuritySelection */);
/frameworks/support/design/src/android/support/design/widget/
H A DSnackbar.java53 * Snackbars provide lightweight feedback about an operation. They show a brief message at the
112 * @see Snackbar#show()
128 * that is {@link #show() shown} until either it is dismissed, or another Snackbar is shown.
199 * @param text The text to show. Can be formatted text.
346 * Set how long to show the view for.
379 public void show() { method in class:Snackbar
380 SnackbarManager.getInstance().show(mDuration, mManagerCallback);
412 public void show() {
/frameworks/support/v7/appcompat/src/android/support/v7/app/
H A DAlertDialog.java116 * example, via {@link #show()} or {@link #create()}).
164 * @param view The view to show in the content area of the dialog
877 * {@link Dialog#show()} the dialog. This allows the user to do any extra processing
878 * before displaying the dialog. Use {@link #show()} if you don't have any other processing
898 * {@link Dialog#show()}'s the dialog.
900 public AlertDialog show() { method in class:AlertDialog.Builder
902 dialog.show();
/frameworks/support/v7/appcompat/src/android/support/v7/internal/view/menu/
H A DActionMenuItem.java228 public void setShowAsAction(int show) { argument
229 // Do nothing. ActionMenuItems always show as action buttons.
H A DMenuPopupHelper.java128 public void show() { method in class:MenuPopupHelper
163 mPopup.show();
245 mPopup.show();
/frameworks/base/core/java/android/view/
H A DSurfaceControl.java256 * and position, call {@link #show} if appropriate, and close the transaction.
386 public void show() { method in class:SurfaceControl
/frameworks/base/core/java/com/android/internal/app/
H A DToolbarActionBar.java396 public void show() { method in class:ToolbarActionBar
/frameworks/base/core/java/com/android/internal/inputmethod/
H A DInputMethodUtils.java1265 public void setShowImeWithHardKeyboard(boolean show) { argument
1267 show ? 1 : 0, mCurrentUserId);
/frameworks/base/core/java/com/android/internal/widget/
H A DFloatingToolbar.java122 * NOTE: Call {@link #updateLayout()} or {@link #show()} to effect visual changes to the
146 * NOTE: Call {@link #updateLayout()} or {@link #show()} to effect visual changes to the
158 * NOTE: Call {@link #updateLayout()} or {@link #show()} to effect visual changes to the
173 public FloatingToolbar show() { method in class:FloatingToolbar
183 mPopup.show(mContentRect);
198 // show() performs all the logic we need here.
199 show();
432 public void show(Rect contentRectOnScreen) { method in class:FloatingToolbar.FloatingToolbarPopup
447 // If we're yet to show the popup, set the container visibility to zero.
448 // The "show" animatio
[all...]

Completed in 697 milliseconds

12345