Searched refs:hide (Results 1 - 25 of 101) sorted by relevance

12345

/packages/apps/Dialer/java/com/android/dialer/widget/
H A DDialerFloatingActionButton.java39 * <li>Animating on first show/hide
40 * <li>Being able to call show/hide rapidly and being in the proper state
63 public void hide() { method in class:DialerFloatingActionButton
64 super.hide();
69 public void hide(@Nullable OnVisibilityChangedListener onVisibilityChangedListener) { method in class:DialerFloatingActionButton
70 super.hide(onVisibilityChangedListener);
77 "Do not call setVisibility, call show/hide instead");
H A DFloatingActionButtonController.java155 /** @see FloatingActionButton#hide() */
157 fab.hide();
161 fab.hide(listener);
/packages/apps/Camera2/src/com/android/camera/filmstrip/
H A DFilmstripContentPanel.java64 void hide(); method in interface:FilmstripContentPanel
/packages/services/Car/
H A Dapicheck.mk58 -hide 113 \
59 -hide 110
96 -hide 113 \
97 -hide 110
135 $(hide) $(ACP) $(PRIVATE_PROGUARD_INTERMEDIATES_OUTPUT) $(PRIVATE_PROGUARD_OUTPUT_FILE)
164 -hide 2 -hide 3 -hide 4 -hide 5 -hide
[all...]
/packages/apps/DeskClock/src/com/android/deskclock/
H A DMoveScreensaverRunnable.java43 /** Accelerate the hide animation. */
123 final AnimatorSet hide = new AnimatorSet();
124 hide.setDuration(FADE_TIME);
125 hide.setInterpolator(mAcceleration);
126 hide.play(getAlphaAnimator(mSaverView, 1f, 0f))
143 // Execute hide followed by show.
145 all.play(show).after(hide);
/packages/apps/Dialer/java/com/android/newbubble/
H A DNewBubble.java38 void hide(); method in interface:NewBubble
/packages/apps/Gallery2/src/com/android/gallery3d/app/
H A DMovieControllerOverlay.java55 hide();
64 public void hide() { method in class:MovieControllerOverlay
67 super.hide();
123 hide();
H A DPhotoPageBottomControls.java82 private void hide() { method in class:PhotoPageBottomControls
103 hide();
/packages/apps/UnifiedEmail/src/com/android/mail/
H A DMinTimeProgressView.java72 private void hide() { method in class:MinTimeProgressView
82 // so put a delayed message in to hide it when its been
104 hide();
/packages/apps/Dialer/java/com/android/incallui/baseui/
H A DBaseFragment.java58 getFragmentManager().beginTransaction().hide(this).commit();
/packages/apps/Dialer/java/com/android/newbubble/stub/
H A DNewBubbleStub.java36 public void hide() {} method in class:NewBubbleStub
/packages/apps/Settings/src/com/android/settings/widget/
H A DSwitchBarController.java41 mSwitchBar.hide();
/packages/apps/TV/tests/unit/src/com/android/tv/menu/
H A DMenuTest.java58 mMenu.hide(false);
70 mMenu.hide(false);
91 mMenu.hide(true);
115 mMenu.hide(false);
139 mMenu.hide(false);
/packages/apps/Gallery2/src/com/android/gallery3d/ui/
H A DDetailsHelper.java46 public void hide(); method in interface:DetailsHelper.DetailsViewContainer
98 public void hide() { method in class:DetailsHelper
99 mContainer.hide();
/packages/apps/Messaging/build/
H A Dgcheckstyle.mk32 $(hide) pushd $(PRIVATE_PATH)/build/gcheckstyle && \
40 $(hide) -/usr/local/buildtools/java/jdk/bin/java -jar $(STYLE_JAR) $(SOURCES) > $@
44 $(hide) $(PRIVATE_PATH)/build/process_style_output.py -omit $(abspath $(PRIVATE_PATH))/ < $< | $(PRIVATE_PATH)/build/colorize_errors.py
/packages/apps/Messaging/src/com/android/messaging/ui/conversation/
H A DConversationInput.java42 public abstract boolean hide(boolean animate); method in class:ConversationInput
88 * initiated by this class (through the show/hide methods), and for external changes
90 * handling an input showing, we will hide all other inputs to ensure they are mutually
H A DConversationInputManager.java196 * Show or hide the sim selector
273 success = target.hide(animate);
292 // All inputs are mutually exclusive. Showing one will hide everything else.
425 public boolean hide(boolean animate) { method in class:ConversationInputManager.ConversationMediaPicker
523 public boolean hide(boolean animate) { method in class:ConversationInputManager.SimSelector
524 final boolean result = super.hide(animate);
545 public boolean hide(boolean animate) { method in class:ConversationInputManager.ConversationImeKeyboard
/packages/apps/Settings/src/com/android/settings/notification/
H A DZenFooterPreferenceController.java53 protected void hide(PreferenceScreen screen) { method in class:ZenFooterPreferenceController
/packages/apps/Settings/tests/robotests/src/com/android/settings/password/
H A DConfirmCredentialTest.java47 LastTryDialog.hide(fm);
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/EN/
H A DTutorialEN.java193 void hide() { method in class:TutorialEN.Bubble
266 mBubbles.get(i).hide();
282 void hide() { method in class:TutorialEN
284 mBubbles.get(i).hide();
291 hide();
/packages/apps/Dialer/java/com/android/dialer/main/impl/
H A DNewMainActivityPeer.java171 supportTransaction.hide(callLogFragment);
174 supportTransaction.hide(supportFragmentManager.findFragmentByTag(VOICEMAIL_TAG));
/packages/apps/Settings/src/com/android/settings/nfc/
H A DAndroidBeam.java92 mSwitchBar.hide();
111 mSwitchBar.hide();
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/
H A DEditorPlaceHolder.java68 public void hide() { method in class:EditorPlaceHolder
/packages/apps/DeskClock/src/com/android/alarmclock/
H A DDigitalAppWidgetCityViewsFactory.java123 hide(rv, R.id.left_clock, R.id.city_name_left, R.id.city_day_left);
130 hide(rv, R.id.right_clock, R.id.city_name_right, R.id.city_day_right);
208 private void hide(RemoteViews clock, int clockId, int labelId, int dayId) { method in class:DigitalAppWidgetCityViewsFactory
/packages/apps/Dialer/java/com/android/incallui/
H A DNewReturnToCallController.java97 hide();
106 hide();
114 private void hide() { method in class:NewReturnToCallController
116 bubble.hide();
118 LogUtil.i("ReturnToCallController.hide", "hide() called without calling show()");
177 // Show "Call ended" and hide bubble when there is no outgoing, active or background call
178 LogUtil.i("ReturnToCallController.onDisconnect", "show call ended and hide bubble");
184 hide();

Completed in 616 milliseconds

12345