Searched defs:hide (Results 1 - 25 of 39) sorted by relevance

12

/packages/apps/Camera2/src/com/android/camera/filmstrip/
H A DFilmstripContentPanel.java64 void hide(); method in interface:FilmstripContentPanel
/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/Gallery2/src/com/android/gallery3d/filtershow/
H A DEditorPlaceHolder.java68 public void hide() { method in class:EditorPlaceHolder
/packages/apps/Messaging/src/com/android/messaging/ui/conversation/
H A DConversationSimSelector.java86 public boolean hide(boolean animate) { method in class:ConversationSimSelector
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 DConversationFastScroller.java104 // Whether we are waiting to hide the scrollbar (i.e. scrolling has stopped).
117 hide(true /* animate */);
160 hide(false /* animate */);
238 private void hide(boolean animate) { method in class:ConversationFastScroller
426 hide(false /* animate */);
/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 DReturnToCallController.java89 hide();
97 private void hide() { method in class:ReturnToCallController
99 bubble.hide();
101 LogUtil.i("ReturnToCallController.hide", "hide() called without calling show()");
142 hide();
/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();
H A DCommonControllerOverlay.java122 hide();
190 public void hide() { method in class:CommonControllerOverlay
/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();
H A DDialogDetailsView.java71 public void hide() { method in class:DialogDetailsView
72 mDialog.hide();
/packages/apps/UnifiedEmail/src/com/android/mail/browse/
H A DConversationPagerController.java53 * cons: the activity's Controller has to specially handle show/hide conversation view,
180 public void hide(boolean changeVisibility) { method in class:ConversationPagerController
182 LogUtils.d(LOG_TAG, "IN CPC.hide, but already hidden");
194 LogUtils.d(LOG_TAG, "IN CPC.hide, clearing adapter and unregistering list observer");
203 * to call {@link #hide(boolean)} afterwards to finish the cleanup. See go/xqaxk. Sorry...
270 * {@link #hide(boolean)}.
/packages/apps/Camera2/src/com/android/camera/app/
H A DFilmstripBottomPanel.java289 public void hide() { method in class:FilmstripBottomPanel
/packages/apps/Dialer/java/com/android/incallui/contactgrid/
H A DContactGridManager.java115 public void hide() { method in class:ContactGridManager
119 public void setAvatarHidden(boolean hide) { argument
120 if (hide != hideAvatar) {
121 hideAvatar = hide;
/packages/apps/Launcher3/src/com/android/launcher3/
H A DButtonDropTarget.java307 public boolean updateText(boolean hide) { argument
308 if ((hide && getText().toString().isEmpty()) || (!hide && mText.equals(getText()))) {
312 setText(hide ? "" : mText);
/packages/apps/UnifiedEmail/src/com/android/mail/ui/
H A DActionableToastBar.java56 * hide the toast bar while it is being animated
121 hide(true, false /* actionClicked */);
224 hide(true /* animate */, true /* actionClicked */);
240 // Set up runnable to execute hide toast once delay is completed
252 public void hide(boolean animate, boolean actionClicked) { method in class:ActionableToastBar
262 // immediate hiding implies no position adjustment of the FAB and hide the toast bar
322 * multi-line view visible and hide the single line view; otherwise vice versa. If the action
323 * text is present, display it, otherwise hide it.
/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/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/JAJP/
H A DTutorialJAJP.java196 void hide() { method in class:TutorialJAJP.Bubble
338 mBubbles.get(i).hide();
364 void hide() { method in class:TutorialJAJP
366 mBubbles.get(i).hide();
373 hide();
/packages/apps/Settings/src/com/android/settings/password/
H A DConfirmDeviceCredentialBaseFragment.java415 static void hide(FragmentManager from) { method in class:ConfirmDeviceCredentialBaseFragment.LastTryDialog
/packages/apps/Settings/src/com/android/settings/widget/
H A DSwitchBar.java131 // Default is hide
221 public void hide() { method in class:SwitchBar
354 /** @hide */
363 /** @hide */
/packages/apps/TV/src/com/android/tv/menu/
H A DMenu.java218 public void hide(boolean withAnimation) { method in class:Menu
250 * Schedules to hide the menu in some seconds.
261 * If {@code keepVisible} is set to {@code true}, the hide schedule doesn't close the main menu,
262 * but calling {@link #hide} still hides it.
263 * If {@code keepVisible} is set to {@code false}, the hide schedule works as usual.
350 menu.hide(true);
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
H A DTextCandidates1LineViewManager.java98 /** Whether hide the view if there is no candidate */
214 * Set auto-hide mode.
215 * @param hide {@code true} if the view will hidden when no candidate exists;
218 public void setAutoHide(boolean hide) { argument
219 mAutoHideMode = hide;
/packages/apps/Camera2/src/com/android/camera/widget/
H A DFilmstripLayout.java178 public void hide() { method in class:FilmstripLayout
223 hide();

Completed in 549 milliseconds

12