Searched defs:show (Results 101 - 125 of 144) sorted by relevance

123456

/packages/apps/Dialer/java/com/android/dialer/interactions/
H A DPhoneNumberInteraction.java357 PhoneDisambiguationDialogFragment.show(
495 public static void show( method in class:PhoneNumberInteraction.PhoneDisambiguationDialogFragment
508 fragment.show(fragmentManager, TAG);
/packages/apps/DocumentsUI/src/com/android/documentsui/sidebar/
H A DRootsFragment.java114 public static RootsFragment show(FragmentManager fm, Intent includeApps) { method in class:RootsFragment
/packages/apps/Gallery2/src/com/android/gallery3d/app/
H A DCommonControllerOverlay.java87 // Depending on the usage, the timeBar can show a single scrubber, or
206 show();
210 public void show() { method in class:CommonControllerOverlay
H A DGalleryActionBar.java309 }).create().show();
342 public void show() { method in class:GalleryActionBar
343 if (mActionBar != null) mActionBar.show();
/packages/apps/Messaging/src/com/android/messaging/ui/
H A DSnackBar.java155 * Sets the duration to show this toast for in milliseconds.
185 public void show() { method in class:SnackBar.Builder
186 mSnackBarManager.show(build());
208 null /* WindowManager will show this in show() below */);
/packages/apps/Messaging/src/com/android/messaging/ui/contact/
H A DContactPickerFragment.java366 startExplodeTransitionForContactLists(false /* show */);
371 showHideContactPagerWithAnimation(false /* show */);
388 toggleContactListItemsVisibilityForPendingTransition(false /* show */);
389 startExplodeTransitionForContactLists(true /* show */);
503 * @param show whether the contact lists are to be shown or hidden.
505 private void startExplodeTransitionForContactLists(final boolean show) { argument
528 toggleContactListItemsVisibilityForPendingTransition(show);
535 private void toggleContactListItemsVisibilityForPendingTransition(final boolean show) { argument
540 mAllContactsListViewHolder.toggleVisibilityForPendingTransition(show, mPendingExplodeView);
541 mFrequentContactsListViewHolder.toggleVisibilityForPendingTransition(show,
545 showHideContactPagerWithAnimation(final boolean show) argument
[all...]
/packages/apps/Messaging/src/com/android/messaging/ui/conversation/
H A DConversationFastScroller.java49 * up or down. As the thumb is dragged, we show a floating bubble alongside it that shows the
186 // Only show the scrollbar once the user starts scrolling
188 show();
210 private void show() { method in class:ConversationFastScroller
H A DConversationInputManager.java64 void showHideSimSelector(boolean show); argument
191 public void showHideMediaPicker(final boolean show, final boolean animate) { argument
192 showHideInternal(mMediaInput, show, animate);
197 * @param show visibility
201 public boolean showHideSimSelector(final boolean show, final boolean animate) { argument
202 return showHideInternal(mSimInput, show, animate);
205 public void showHideImeKeyboard(final boolean show, final boolean animate) { argument
206 showHideInternal(mImeInput, show, animate);
261 public boolean showHideInternal(final ConversationInput target, final boolean show, argument
267 if (target.mShowing == show) {
350 public boolean show(boolean animate) { method in class:ConversationInputManager.ConversationMediaPicker
516 public boolean show(boolean animate) { method in class:ConversationInputManager.SimSelector
539 public boolean show(boolean animate) { method in class:ConversationInputManager.ConversationImeKeyboard
[all...]
/packages/apps/Settings/src/com/android/settings/
H A DConfirmDeviceCredentialBaseFragment.java130 // verifyTiedProfileChallenge. In such case, we also wanna show the user message that
294 LastTryDialog.show(getFragmentManager(), title, getLastTryErrorMessage(),
298 LastTryDialog.show(getFragmentManager(), null /* title */,
342 static boolean show(FragmentManager from, String title, int message, int button, method in class:ConfirmDeviceCredentialBaseFragment.LastTryDialog
356 dialog.show(from, TAG);
H A DUserCredentialsSettings.java83 CredentialDialogFragment.show(this, item);
104 public static void show(Fragment target, Credential item) { method in class:UserCredentialsSettings.CredentialDialogFragment
112 frag.show(target.getFragmentManager(), TAG);
256 // Do not show work profile keys in user credentials
261 // Do not show synthetic password keys in user credential
/packages/apps/Settings/src/com/android/settings/datausage/
H A DBillingCycleSettings.java129 CycleEditorFragment.show(this);
132 BytesEditorFragment.show(this, false);
135 BytesEditorFragment.show(this, true);
149 ConfirmLimitFragment.show(this);
206 public static void show(DataUsageEditController parent, boolean isLimit) { method in class:BillingCycleSettings.BytesEditorFragment
222 dialog.show(targetFragment.getFragmentManager(), TAG_WARNING_EDITOR);
315 public static void show(BillingCycleSettings parent) { method in class:BillingCycleSettings.CycleEditorFragment
324 dialog.show(parent.getFragmentManager(), TAG_CYCLE_EDITOR);
384 public static void show(BillingCycleSettings parent) { method in class:BillingCycleSettings.ConfirmLimitFragment
407 dialog.show(paren
[all...]
/packages/apps/Settings/src/com/android/settings/widget/
H A DSwitchBar.java215 public void show() { method in class:SwitchBar
/packages/apps/TV/src/com/android/tv/menu/
H A DMenu.java167 public void show(@MenuShowReason int reason) { method in class:Menu
168 if (DEBUG) Log.d(TAG, "show reason:" + reason);
/packages/services/Car/car-support-lib/src/android/support/car/ui/
H A DCarNavExtender.java327 * By default, Android Auto will show a navigation chevron on cards. However, a separate icon
406 * @param show Whether or not to show the notification in the stream.
409 public CarNavExtender setShowInStream(boolean show) { argument
410 mShowInStream = show;
415 * @return Whether or not to show the notification in the stream.
422 * @param show Whether or not to show the notification as a heads up notification.
425 public CarNavExtender setShowAsHeadsUp(boolean show) { argument
426 mShowAsHeadsUp = show;
[all...]
/packages/services/Car/tests/InstrumentClusterRendererSample/src/com/android/car/cluster/sample/
H A DClusterView.java292 Log.d(TAG, "card to show: " + cardToShow + ", animation: " + animation);
339 // animation and show underlying card.
346 // Card was created in the past and is in the queue, need to show
352 // Card doesn't exist, but we want to show it.
355 // We want to add the card to the panel, but do not want to show it.
414 // Card was created in the past and is in the queue, need to show reverse reveal
609 private Animator createRevealAnimator(CardView card, Interpolator interpolator, boolean show) { argument
615 show ? 0 : radius /* start radius */,
616 show ? radius : 0 /* end radius */);
/packages/apps/Camera2/src/com/android/camera/widget/
H A DFilmstripLayout.java184 public void show() { method in class:FilmstripLayout
280 // run the same view show/hides and animations
/packages/apps/Dialer/java/com/android/dialer/app/calllog/
H A DCallLogFragment.java79 // No limit specified for the number of logs to show; use the CallLogQueryHandler's default.
568 public void onShowModalAlert(boolean show) { argument
571 "show: %b, fragment: %s, isVisible: %b",
572 show,
577 if (show) {
H A DCallLogListItemViewHolder.java445 // Treat as voicemail list item; show play button if not expanded.
456 // Treat as normal list item; show call button, if possible.
489 // number, remove all action buttons but still show the voicemail playback layout.
546 // For voicemail calls, show the voicemail playback layout; hide otherwise.
657 public void showActions(boolean show) { argument
658 showOrHideVoicemailTranscriptionView(show);
660 if (show) {
685 updatePrimaryActionButton(show);
914 // The edit number before call does not show up if any of the conditions apply:
/packages/apps/Dialer/java/com/android/incallui/
H A DInCallActivity.java293 public void showConferenceFragment(boolean show) { argument
294 if (show) {
299 public boolean showDialpadFragment(boolean show, boolean animate) { argument
300 boolean didChange = common.showDialpadFragment(show, animate);
304 getInCallScreen().onInCallScreenDialpadVisibilityChange(show);
702 transaction.show(inCallScreen.getInCallScreenFragment());
H A DInCallActivityCommon.java278 // If there is a pending request to show or hide the dialpad, handle that now.
281 // Exit fullscreen so that the user has access to the dialpad hide/show button and
285 inCallActivity.showDialpadFragment(true /* show */, animateDialpadOnShow /* animate */);
296 inCallActivity.showDialpadFragment(false /* show */, false /* animate */);
374 inCallActivity.showDialpadFragment(false /* show */, true /* animate */);
488 fragment.show(inCallActivity.getSupportFragmentManager(), "postCharWait");
583 Toast.makeText(inCallActivity.getApplicationContext(), message, Toast.LENGTH_LONG).show();
597 dialog.show();
644 fragment.show(inCallActivity.getSupportFragmentManager(), TAG_INTERNATIONAL_CALL_ON_WIFI);
653 .show();
707 showDialpadFragment(boolean show, boolean animate) argument
[all...]
/packages/apps/Dialer/java/com/android/incallui/incall/impl/
H A DInCallFragment.java89 // initially show the attachment page. After a delay seconds we'll animate to the button grid.
347 Toast.makeText(getContext(), R.string.incall_note_sent, Toast.LENGTH_LONG).show();
379 public void showButton(@InCallButtonIds int buttonId, boolean show) { argument
382 "buttionId: %s, show: %b",
384 show);
386 getButtonController(buttonId).setAllowed(show);
468 .show(getChildFragmentManager(), null);
532 // Need to show or hide location
/packages/apps/Launcher3/src/com/android/launcher3/dragndrop/
H A DDragView.java309 * Create a window containing this view and show it.
314 public void show(int touchX, int touchY) { method in class:DragView
/packages/apps/PackageInstaller/src/android/support/wearable/view/
H A DCircledImageView.java517 * @param show true if the progress spinner is shown, false to hide it.
519 public void showIndeterminateProgress(boolean show) { argument
520 mProgressIndeterminate = show;
521 if (show) {
/packages/apps/Settings/src/com/android/settings/deviceinfo/
H A DPrivateVolumeSettings.java427 RenameFragment.show(this, mVolume);
491 SystemInfoFragment.show(this);
496 OtherInfoFragment.show(this, mStorageManager.getBestVolumeDescription(mVolume),
502 ConfirmClearCacheFragment.show(this);
510 UserInfoFragment.show(this, pref.getTitle(), pref.getSummary());
681 public static void show(PrivateVolumeSettings parent, VolumeInfo vol) { method in class:PrivateVolumeSettings.RenameFragment
689 dialog.show(parent.getFragmentManager(), TAG_RENAME);
732 public static void show(Fragment parent) { method in class:PrivateVolumeSettings.SystemInfoFragment
737 dialog.show(parent.getFragmentManager(), TAG_SYSTEM_INFO);
756 public static void show(Fragmen method in class:PrivateVolumeSettings.OtherInfoFragment
801 public static void show(Fragment parent, CharSequence userLabel, CharSequence userSize) { method in class:PrivateVolumeSettings.UserInfoFragment
839 public static void show(Fragment parent) { method in class:PrivateVolumeSettings.ConfirmClearCacheFragment
[all...]
/packages/apps/TV/src/com/android/tv/tuner/cc/
H A DCaptionWindowLayout.java168 public void show() { method in class:CaptionWindowLayout
416 show();

Completed in 2426 milliseconds

123456