Searched defs:show (Results 1 - 23 of 23) sorted by relevance

/frameworks/base/core/java/com/android/internal/view/menu/
H A DContextMenuBuilder.java32 * view was added directly to the window manager) and needs to show
37 * call {@link #show(View, IBinder)} which will populate the menu
38 * with a view's context menu items and show the context menu.
77 public MenuDialogHelper show(View originalView, IBinder token) { method in class:ContextMenuBuilder
88 helper.show(token);
H A DMenuDialogHelper.java48 public void show(IBinder windowToken) { method in class:MenuDialogHelper
86 mDialog.show();
/frameworks/base/core/java/android/widget/
H A DZoomControls.java82 public void show() { method in class:ZoomControls
H A DToast.java36 * helps you create and show those.
81 * can call {@link #show}.
96 public void show() { method in class:Toast
115 * Close the view if it's showing, or don't show it if it isn't showing yet.
125 * Set the view to show.
141 * Set how long to show the view for.
225 * @param text The text to show. Can be formatted text.
334 public void show() { method in class:Toast.TN
H A DMediaController.java54 * Functions like show() and hide() have no effect when MediaController
58 * show the buttons according to these rules:
248 public void show() { method in class:MediaController
249 show(sDefaultTimeout);
278 * @param timeout The timeout in milliseconds. Use 0 to show
281 public void show(int timeout) { method in class:MediaController
403 show(sDefaultTimeout);
409 show(sDefaultTimeout);
421 show(sDefaultTimeout);
434 // don't show th
[all...]
H A DTextView.java4508 * If there isn't a click listener, try to show the soft
4628 // Multi-line text editors should always show an enter key.
6791 getInsertionController().show();
6808 // If this tap was actually used to show the IMM, leave cursor or selection unchanged
6855 // Save previous selection, in case this event is used to show the IME.
7554 getSelectionController().show();
7559 getSelectionController().show();
7679 getSelectionController().show();
7705 public void show(); method in interface:TextView.CursorController
7709 * See also {@link #show()}
7825 public void show() { method in class:TextView.HandleView
8009 public void show() { method in class:TextView.InsertionPointCursorController
8087 public void show() { method in class:TextView.SelectionModifierCursorController
[all...]
/frameworks/base/policy/src/com/android/internal/policy/impl/
H A DPowerDialog.java171 public void show() { method in class:PowerDialog
172 super.show();
173 Log.d(TAG, "show... disabling expand");
H A DKeyguardViewManager.java94 public synchronized void show() { method in class:KeyguardViewManager
95 if (DEBUG) Log.d(TAG, "show(); mKeyguardView==" + mKeyguardView);
186 show();
/frameworks/base/core/java/android/app/
H A DDatePickerDialog.java131 public void show() { method in class:DatePickerDialog
132 super.show();
H A DProgressDialog.java83 public static ProgressDialog show(Context context, CharSequence title, method in class:ProgressDialog
85 return show(context, title, message, false);
88 public static ProgressDialog show(Context context, CharSequence title, method in class:ProgressDialog
90 return show(context, title, message, indeterminate, false, null);
93 public static ProgressDialog show(Context context, CharSequence title, method in class:ProgressDialog
95 return show(context, title, message, indeterminate, cancelable, null);
98 public static ProgressDialog show(Context context, CharSequence title, method in class:ProgressDialog
107 dialog.show();
H A DAlertDialog.java125 * @param view The view to show in the content area of the dialog
781 * {@link Dialog#show()} the dialog. This allows the user to do any extra processing
782 * before displaying the dialog. Use {@link #show()} if you don't have any other processing
798 * {@link Dialog#show()}'s the dialog.
800 public AlertDialog show() { method in class:AlertDialog.Builder
802 dialog.show();
H A DDialog.java193 * {@link Activity#showDialog(int)} is used to show this Dialog, that
216 public void show() { method in class:Dialog
374 show();
H A DDownloadManager.java470 * @param show whether the download manager should show a notification for this download.
473 public Request setShowRunningNotification(boolean show) { argument
474 mShowNotification = show;
H A DSearchDialog.java89 // The string used for privateImeOptions to identify to the IME that it should not show
178 // but necessary to show the popup window until the window manager supports
235 public boolean show(String initialQuery, boolean selectInitialQuery, method in class:SearchDialog
247 * Does the rest of the work required to show the search dialog. Called by
248 * {@link #show(String, boolean, ComponentName, Bundle)} and
254 // set up the searchable and show the dialog
255 if (!show(componentName, appSearchData)) {
274 private boolean show(ComponentName componentName, Bundle appSearchData) { method in class:SearchDialog
277 Log.d(LOG_TAG, "show(" + componentName + ", "
294 // show th
[all...]
H A DActivityThread.java779 // otherwise, show human-readable format
2443 private final void updateVisibility(ActivityClientRecord r, boolean show) { argument
2446 if (show) {
2470 private final void handleStopActivity(IBinder token, boolean show, int configChanges) { argument
2475 performStopActivityInner(r, info, show);
2478 TAG, "Finishing stop of " + r + ": show=" + show
2481 updateVisibility(r, show);
2499 private final void handleWindowVisibility(IBinder token, boolean show) { argument
2501 if (!show
[all...]
/frameworks/base/core/java/com/android/internal/widget/
H A DDigitalClock.java107 void setShowAmPm(boolean show) { argument
108 mAmPm.setVisibility(show ? View.VISIBLE : View.GONE);
H A DSlidingTab.java64 private static final int ANIM_TARGET_TIME = 500; // Time to show targets (in ms)
249 void show(boolean animate) { method in class:SlidingTab.Slider
566 // Clear animations so sliders don't continue to animate when we show the widget again.
613 mOtherSlider.show(true);
639 int holdOffset = holdAfter ? 0 : width; // how much of tab to show at the end of anim
648 int holdOffset = holdAfter ? 0 : height; // how much of tab to show at end of anim
/frameworks/base/core/java/android/text/
H A DDynamicLayout.java345 private void dump(boolean show) { argument
351 if (show) {
/frameworks/base/core/java/android/view/
H A DSurface.java376 public native void show(); method in class:Surface
/frameworks/base/libs/surfaceflinger_client/
H A DSurfaceComposerClient.cpp469 status_t SurfaceComposerClient::show(SurfaceID id, int32_t) function in class:android::SurfaceComposerClient
H A DSurface.cpp178 status_t SurfaceControl::show(int32_t layer) { function in class:android::SurfaceControl
182 return client->show(mToken, layer);
/frameworks/base/core/java/android/webkit/
H A DWebView.java133 * invoke the Browser application with a URL Intent rather than show it
209 * Toast.makeText(activity, "Oh no! " + description, Toast.LENGTH_SHORT).show();
330 public void show(boolean showZoom, boolean canZoomOut) { method in class:WebView.ExtendedZoomControls
1134 }).show();
2593 // Only show overscroll bars if there was no movement in any direction
2596 // Don't show left/right glows if we fit the whole content.
2597 // Also don't show if there was vertical movement.
3437 // When drawing the title bar, move it horizontally to always show
3656 * webkit draws. Thus we need to reposition it to show in the correct
4471 , Toast.LENGTH_SHORT).show();
[all...]
/frameworks/base/services/java/com/android/server/
H A DWindowManagerService.java3425 // The previous app was getting ready to show a
3450 // show a starting window -- the current effect (a full-screen
7506 "performing show on: " + w);
8742 // We can now show all of the drawn windows!
9428 mBackgroundFillerSurface.show();
9447 mDimAnimator.show(dw, dh);
9479 mBlurSurface.show();
9721 * Have the surface flinger show a surface, robustly dealing with
9723 * to show the surface, then we will try to get rid of other surfaces
9732 win.mSurface.show();
10488 void show(int dw, int dh) { method in class:WindowManagerService.DimAnimator
[all...]

Completed in 452 milliseconds