Searched defs:show (Results 26 - 50 of 106) sorted by relevance

12345

/frameworks/support/design/src/android/support/design/widget/
H A DSnackbarManager.java66 void show(); method in interface:SnackbarManager.Callback
70 public void show(int duration, Callback callback) { method in class:SnackbarManager
96 // Otherwise, just show it now
119 // If the callback is from a Snackbar currently show, remove it and show a new one
177 callback.show();
H A DFloatingActionButton.java239 * <p>This method will animate it the button show if the view has already been laid out.</p>
241 public void show() { method in class:FloatingActionButton
242 mImpl.show();
342 // If we're depending on an AppBarLayout we will show/hide it automatically
373 // show/hide the FAB
390 child.show();
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DRowContainerView.java71 public void showHeader(boolean show) { argument
72 mHeaderDock.setVisibility(show ? View.VISIBLE : View.GONE);
/frameworks/support/v7/appcompat/src/android/support/v7/app/
H A DNotificationCompat.java186 * @param actions the indices of the actions to show in the compact notification view
224 * @param show whether to show a cancel button
226 public MediaStyle setShowCancelButton(boolean show) { argument
227 mShowCancelButton = show;
/frameworks/base/core/java/android/app/
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
251 public int show(FragmentTransaction transaction, String tag) { method in class:DialogFragment
428 * used to show an AlertDialog instead of a generic Dialog; when doing so,
499 mDialog.show();
H A DFragmentTransaction.java96 public abstract FragmentTransaction show(Fragment fragment); method in class:FragmentTransaction
216 * Set the full title to show as a bread crumb when this transaction
231 * Set the short title to show as a bread crumb when this transaction
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 DToast.java43 * helps you create and show those.
94 * can call {@link #show}.
111 public void show() { method in class:Toast
129 * Close the view if it's showing, or don't show it if it isn't showing yet.
144 * Set the view to show.
160 * Set how long to show the view for.
253 * @param text The text to show. Can be formatted text.
377 public void show() { method in class:Toast.TN
/frameworks/base/media/java/android/media/
H A DSubtitleController.java180 mSelectedTrack.show();
278 show();
296 show();
347 public void show() { method in class:SubtitleController
355 mSelectedTrack.show();
452 * (track.show/hide, setSubtitleWidget) will take place.
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
H A DRecentsCreateFragment.java75 public static void show(FragmentManager fm) { method in class:RecentsCreateFragment
111 // When launched into empty recents, show drawer
H A DRootsFragment.java67 public static void show(FragmentManager fm, Intent includeApps) { method in class:RootsFragment
/frameworks/base/packages/SystemUI/src/com/android/systemui/assist/
H A DAssistDisclosure.java60 private void show() { method in class:AssistDisclosure
90 show();
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tiles/
H A DCellularTile.java189 public void setNoSims(boolean show) { argument
190 mInfo.noSim = show;
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DKeyguardBouncer.java62 public void show(boolean resetSecuritySelection) { method in class:KeyguardBouncer
74 // Keyguard. If we need to authenticate, show the bouncer.
114 show(false /* resetSecuritySelection */);
232 // We need to show it in case it is secure. If not, it will get dismissed in any case.
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DCallbackHandler.java148 public void setNoSims(boolean show) { argument
149 obtainMessage(MSG_NO_SIM_VISIBLE_CHANGED, show ? 1 : 0, 0).sendToTarget();
H A DKeyguardUserSwitcher.java92 show(animate);
107 public void show(boolean animate) { method in class:KeyguardUserSwitcher
/frameworks/base/packages/SystemUI/src/com/android/systemui/volume/
H A DVolumeUI.java140 d.show();
161 mRestorationNotification.show();
223 public void show() { method in class:VolumeUI.RestorationNotification
/frameworks/base/services/core/java/com/android/server/policy/
H A DBarController.java141 public boolean setBarShowingLw(final boolean show) { argument
143 if (show && mTransientBarState == TRANSIENT_BAR_HIDING) {
149 final boolean change = show ? mWin.showLw(!mNoAnimationOnNextShow)
258 vis &= ~View.SYSTEM_UI_FLAG_LOW_PROFILE; // never show transient bars in low profile
/frameworks/base/services/core/java/com/android/server/wm/
H A DDimLayer.java50 /** True after mDimSurface.show() has been called, false after mDimSurface.hide(). */
132 mDimSurface.show();
196 void show() { method in class:DimLayer
198 if (DEBUG) Slog.v(TAG, "show: immediate");
199 show(mLayer, mTargetAlpha, 0);
211 void show(int layer, float alpha, long duration) { method in class:DimLayer
212 if (DEBUG) Slog.v(TAG, "show: layer=" + layer + " alpha=" + alpha
215 Slog.e(TAG, "show: no Surface");
240 if (DEBUG) Slog.v(TAG, "show: mStartAlpha=" + mStartAlpha + " mStartTime=" + mStartTime);
262 show(mLaye
[all...]
/frameworks/native/libs/gui/
H A DSurfaceControl.cpp117 status_t SurfaceControl::show() { function in class:android::SurfaceControl
120 return mClient->show(mHandle);
/frameworks/support/design/eclair-mr1/android/support/design/widget/
H A DFloatingActionButtonEclairMr1.java186 void show() { method in class:FloatingActionButtonEclairMr1
189 // the show animation
/frameworks/support/v17/leanback/src/android/support/v17/leanback/app/
H A DBrandedFragment.java107 void showTitle(boolean show) { argument
109 if (show == mShowingTitle) {
112 mShowingTitle = show;
114 mTitleHelper.showTitle(show);
H A DBrandedSupportFragment.java109 void showTitle(boolean show) { argument
111 if (show == mShowingTitle) {
114 mShowingTitle = show;
116 mTitleHelper.showTitle(show);
/frameworks/support/v4/java/android/support/v4/app/
H A DDialogFragment.java134 public void show(FragmentManager manager, String tag) { method in class:DialogFragment
151 public int show(FragmentTransaction transaction, String tag) { method in class:DialogFragment
336 * used to show an AlertDialog instead of a generic Dialog; when doing so,
406 mDialog.show();
H A DFragmentTransaction.java121 public abstract FragmentTransaction show(Fragment fragment); method in class:FragmentTransaction
251 * Set the full title to show as a bread crumb when this transaction
266 * Set the short title to show as a bread crumb when this transaction

Completed in 735 milliseconds

12345