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

123

/frameworks/base/core/java/android/webkit/
H A DZoomControlBase.java23 public void show(); method in interface:ZoomControlBase
H A DZoomControlEmbedded.java38 public void show() { method in class:ZoomControlEmbedded
50 Toast.LENGTH_LONG).show();
H A DPluginFullScreenHolder.java79 public void show() { method in class:PluginFullScreenHolder
H A DZoomControlExternal.java44 public void show() { method in class:ZoomControlExternal
48 getControls().show(true);
131 public void show(boolean showZoom) { method in class:ZoomControlExternal.ExtendedZoomControls
H A DHTML5VideoFullScreen.java106 mMediaController.show();
191 mMediaController.show();
225 mMediaController.show();
261 // Don't show the controller after exiting the full screen.
346 mMediaController.show(0);
390 public void show() { method in class:HTML5VideoFullScreen.FullScreenMediaController
391 super.show();
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DRotationToggle.java57 public void setRotationLockControlVisibility(boolean show) { argument
58 setVisibility(show ? VISIBLE : GONE);
/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.java51 public void show(IBinder windowToken) { method in class:MenuDialogHelper
89 mDialog.show();
/frameworks/base/policy/src/com/android/internal/policy/impl/keyguard_obsolete/
H A DBiometricSensorUnlock.java48 public void show(long timeoutMilliseconds); method in interface:BiometricSensorUnlock
H A DKeyguardViewBase.java112 abstract public void show(); method in class:KeyguardViewBase
/frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/testapp/
H A DTestAppLoadingScreen.java56 public void showLoadingScreen(boolean show) { argument
57 if (show) {
106 // Creates a simple script to show a loding screen until everything is initialized
/frameworks/base/core/java/android/app/
H A DPresentation.java71 * So an application can simply watch for these notifications and show or dismiss
75 * that the application should use if it wants to show content on the secondary display.
77 * case the application should show its content locally without using a presentation.
79 * Here's how to use the media router to create and show a presentation on the preferred
89 * presentation.show();
109 * attempted to show a presentation on the main display it might obscure its own content
125 * presentation.show();
129 * manager to enumerate displays and show content on multiple presentation displays
229 * Inherited from {@link Dialog#show}. Will throw
234 public void show() { method in class:Presentation
[all...]
H A DFragmentTransaction.java93 public abstract FragmentTransaction show(Fragment fragment); method in class:FragmentTransaction
203 * Set the full title to show as a bread crumb when this transaction
218 * Set the short title to show as a bread crumb when this transaction
H A DDialogFragment.java35 * the dialog (deciding when to show, hide, dismiss it) should be done through
64 * happen. This means you should use {@link #show(FragmentManager, String)}
65 * or {@link #show(FragmentTransaction, String)} to add an instance of
105 * show the dialog and receive results from it:
225 public void show(FragmentManager manager, String tag) { method in class:DialogFragment
242 public int show(FragmentTransaction transaction, String tag) { method in class:DialogFragment
419 * used to show an AlertDialog instead of a generic Dialog; when doing so,
490 mDialog.show();
H A DProgressDialog.java92 public static ProgressDialog show(Context context, CharSequence title, method in class:ProgressDialog
94 return show(context, title, message, false);
97 public static ProgressDialog show(Context context, CharSequence title, method in class:ProgressDialog
99 return show(context, title, message, indeterminate, false, null);
102 public static ProgressDialog show(Context context, CharSequence title, method in class:ProgressDialog
104 return show(context, title, message, indeterminate, cancelable, null);
107 public static ProgressDialog show(Context context, CharSequence title, method in class:ProgressDialog
116 dialog.show();
/frameworks/base/core/java/android/widget/
H A DZoomControls.java84 public void show() { method in class:ZoomControls
H A DPopupMenu.java75 * items before calling {@link #show()}.
77 * @see #show()
107 public void show() { method in class:PopupMenu
108 mPopup.show();
113 * @see #show()
167 new MenuPopupHelper(mContext, subMenu, mAnchor).show();
H A DToast.java38 * helps you create and show those.
84 * can call {@link #show}.
99 public void show() { method in class:Toast
117 * Close the view if it's showing, or don't show it if it isn't showing yet.
132 * Set the view to show.
148 * Set how long to show the view for.
232 * @param text The text to show. Can be formatted text.
356 public void show() { method in class:Toast.TN
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DAutoRotateController.java75 void setRotationLockControlVisibility(boolean show); argument
/frameworks/base/services/java/com/android/server/wm/
H A DDimSurface.java52 mDimSurface.show();
61 void show(int dw, int dh, int layer, int color) { method in class:DimSurface
63 Slog.e(TAG, "show: no Surface");
77 mDimSurface.show();
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/tablet/
H A DShirtPocket.java63 show(false);
70 private void show(boolean animate) { method in class:ShirtPocket.DropZone
103 show(true);
/frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/
H A DKeyguardViewBase.java110 abstract public void show(); method in class:KeyguardViewBase
H A DClockView.java108 void setShowAmPm(boolean show) { argument
110 mAmPmTextView.setVisibility(show ? View.VISIBLE : View.GONE);
/frameworks/base/core/java/com/android/internal/widget/
H A DDigitalClock.java120 void setShowAmPm(boolean show) { argument
122 mAmPmTextView.setVisibility(show ? View.VISIBLE : View.GONE);
/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DSearchPanelView.java92 // Have keyguard show the bouncer and launch the activity if the user succeeds.
227 public void show(final boolean show, boolean animate) { argument
228 if (!show) {
232 mShowing = show;
233 if (show) {
254 // This will indirectly cause show(false, ...) to get called

Completed in 272 milliseconds

123