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

123

/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/packages/Keyguard/src/com/android/keyguard/
H A DChallengeLayout.java37 * If you want to show the challenge layout in bouncer mode where applicable,
40 * @param b true to show, false to hide
42 void showChallenge(boolean show); argument
H A DKeyguardViewBase.java73 abstract public void show(); method in class:KeyguardViewBase
H A DKeyguardDisplayManager.java44 void show() { method in class:KeyguardDisplayManager
46 if (DEBUG) Slog.v(TAG, "show");
111 mPresentation.show();
H A DKeyguardViewStateManager.java108 public void showBouncer(boolean show) { argument
110 show ? R.string.keyguard_accessibility_show_bouncer
138 // We use mAppWidgetToShow to show a particular widget after you add it--
/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/support/v4/java/android/support/v4/widget/
H A DContentLoadingProgressBar.java91 * hidden until it has been shown for at least a minimum show time. If the
118 public void show() { method in class:ContentLoadingProgressBar
/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.java111 show();
123 // This will be null until show() is called.
134 * items before calling {@link #show()}.
136 * @see #show()
166 public void show() { method in class:PopupMenu
167 mPopup.show();
172 * @see #show()
226 new MenuPopupHelper(mContext, subMenu, mAnchor).show();
H A DToast.java39 * helps you create and show those.
85 * can call {@link #show}.
102 public void show() { method in class:Toast
120 * Close the view if it's showing, or don't show it if it isn't showing yet.
135 * Set the view to show.
151 * Set how long to show the view for.
235 * @param text The text to show. Can be formatted text.
359 public void show() { method in class:Toast.TN
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
H A DCreateDirectoryFragment.java49 public static void show(FragmentManager fm) { method in class:CreateDirectoryFragment
51 dialog.show(fm, TAG_CREATE_DIRECTORY);
126 Toast.makeText(mActivity, R.string.create_error, Toast.LENGTH_SHORT).show();
H A DSaveFragment.java52 public static void show(FragmentManager fm, String mimeType, String displayName) { method in class:SaveFragment
H A DRecentsCreateFragment.java77 public static void show(FragmentManager fm) { method in class:RecentsCreateFragment
113 // When launched into empty recents, show drawer
H A DRootsFragment.java69 public static void show(FragmentManager fm, Intent includeApps) { method in class:RootsFragment
/frameworks/support/v7/appcompat/src/android/support/v7/app/
H A DActionBarImplHC.java51 public void show() { method in class:ActionBarImplHC
52 super.show();
/frameworks/support/v7/appcompat/src/android/support/v7/internal/view/menu/
H A DMenuDialogHelper.java52 public void show(IBinder windowToken) { method in class:MenuDialogHelper
92 mDialog.show();
/frameworks/base/services/java/com/android/server/wm/
H A DDimLayer.java36 /** True after mDimSurface.show() has been called, false after mDimSurface.hide(). */
118 mDimSurface.show();
142 void show() { method in class:DimLayer
144 if (DEBUG) Slog.v(TAG, "show: immediate");
145 show(mLayer, mTargetAlpha, 0);
157 void show(int layer, float alpha, long duration) { method in class:DimLayer
158 if (DEBUG) Slog.v(TAG, "show: layer=" + layer + " alpha=" + alpha
161 Slog.e(TAG, "show: no Surface");
212 if (DEBUG) Slog.v(TAG, "show: mStartAlpha=" + mStartAlpha + " mStartTime=" + mStartTime);
234 show(mLaye
[all...]
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
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();
/frameworks/base/media/java/android/media/
H A DSubtitleController.java179 mSelectedTrack.show();
277 show();
294 show();
345 public void show() { method in class:SubtitleController
353 mSelectedTrack.show();
437 * (track.show/hide, setSubtitleWidget) will take place.
/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DSearchPanelView.java91 // Have keyguard show the bouncer and launch the activity if the user succeeds.
214 public void show(final boolean show, boolean animate) { argument
215 if (!show) {
219 mShowing = show;
220 if (show) {
241 // This will indirectly cause show(false, ...) to get called

Completed in 1422 milliseconds

123