Searched refs:show (Results 1 - 25 of 161) sorted by relevance

1234567

/frameworks/base/core/java/android/app/
H A DITransientNotification.aidl22 void 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();
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
/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 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.java90 mMediaController.show();
174 mMediaController.show();
220 mMediaController.show();
248 // Don't show the controller after exiting the full screen.
330 mMediaController.show(0);
373 public void show() { method in class:HTML5VideoFullScreen.FullScreenMediaController
374 super.show();
/frameworks/base/policy/src/com/android/internal/policy/impl/
H A DBiometricSensorUnlock.java48 public void show(long timeoutMilliseconds); method in interface:BiometricSensorUnlock
/frameworks/base/tests/StatusBar/src/com/android/statusbartest/
H A DToastTest.java90 mToast1.show();
104 mToast1.show();
114 mToast1.show();
128 mToast2.show();
137 toast.show();
147 toast.show();
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DRotationToggle.java41 public void setRotationLockControlVisibility(boolean show) { argument
42 setVisibility(show ? VISIBLE : GONE);
/frameworks/base/core/java/android/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();
H A DMediaController.java56 * Functions like show() and hide() have no effect when MediaController
60 * show the buttons according to these rules:
297 public void show() { method in class:MediaController
298 show(sDefaultTimeout);
327 * @param timeout The timeout in milliseconds. Use 0 to show
330 public void show(int timeout) { method in class:MediaController
437 show(sDefaultTimeout);
443 show(sDefaultTimeout);
457 show(sDefaultTimeout);
467 show(sDefaultTimeou
[all...]
/frameworks/base/core/tests/coretests/src/android/widget/layout/linear/
H A DBaselineAlignmentZeroWidthAndWeight.java31 findViewById(R.id.show).setOnClickListener(new View.OnClickListener() {
/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);
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
H A DTimeDialogActivity.java41 new TimePickerDialog(TimeDialogActivity.this, null, 12, 12, true).show();
/frameworks/base/tests/RenderScriptTests/PerfTest/src/com/android/perftest/
H A DRsBench.java109 Toast.LENGTH_SHORT).show();
114 builder.show();
125 Toast.LENGTH_SHORT).show();
130 debugBuilder.show();
/frameworks/base/packages/SystemUI/src/com/android/systemui/recent/
H A DRecentsPanelView.java255 show(false, false);
280 public void show(boolean show, boolean animate) { argument
281 if (show) {
287 show(show, animate, null, false);
295 show(true, mWaitingToShowAnimated, null, false);
308 public void show(boolean show, boolean animate, argument
312 if (show) {
527 updateIcon(ViewHolder h, Drawable icon, boolean show, boolean anim) argument
540 updateThumbnail(ViewHolder h, Bitmap thumbnail, boolean show, boolean anim) argument
[all...]
/frameworks/base/media/tests/CameraBrowser/src/com/android/camerabrowser/
H A DObjectViewer.java84 Toast.LENGTH_SHORT).show();
177 Toast.makeText(this, R.string.object_saved_message, Toast.LENGTH_SHORT).show();
182 Toast.makeText(this, R.string.save_failed_message, Toast.LENGTH_SHORT).show();
188 Toast.makeText(this, R.string.object_deleted_message, Toast.LENGTH_SHORT).show();
191 Toast.makeText(this, R.string.delete_failed_message, Toast.LENGTH_SHORT).show();
/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DSearchPanelView.java191 public void show(final boolean show, boolean animate) { argument
192 if (!show) {
196 mShowing = show;
197 if (show) {
218 // This will indirectly cause show(false, ...) to get called
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/tablet/
H A DSettingsView.java73 public void setRotationLockControlVisibility(boolean show) {
74 mRotationLockContainer.setVisibility(show ? View.VISIBLE : View.GONE);
75 mRotationLockSeparator.setVisibility(show ? View.VISIBLE : View.GONE);
H A DShirtPocket.java64 show(false);
71 private void show(boolean animate) { method in class:ShirtPocket.DropZone
104 show(true);
H A DNotificationPanel.java132 public void show(boolean show, boolean animate) { argument
134 if (mShowing != show) {
135 mShowing = show;
136 if (show) {
143 mChoreo.startAnimation(show);
147 mShowing = show;
148 setVisibility(show ? View.VISIBLE : View.GONE);
326 // NB: it will be invisible until you show it
415 // we want to show th
[all...]
/frameworks/base/services/java/com/android/server/wm/
H A DDimSurface.java60 void show(int dw, int dh, int layer, int color) { method in class:DimSurface
71 mDimSurface.show();
/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/com/android/internal/os/storage/
H A DExternalStorageFormatter.java98 mProgressDialog.show();
136 Toast.makeText(this, msg, Toast.LENGTH_LONG).show();
178 R.string.format_error, Toast.LENGTH_LONG).show();
227 mProgressDialog.show();

Completed in 292 milliseconds

1234567