Searched refs:animate (Results 1 - 25 of 128) sorted by relevance

123456

/packages/apps/Launcher3/src/com/android/launcher3/
H A DPageIndicatorMarker.java61 mActiveMarker.animate().cancel();
65 mInactiveMarker.animate().cancel();
68 mActiveMarker.animate()
73 mInactiveMarker.animate()
82 mInactiveMarker.animate().cancel();
84 mActiveMarker.animate().cancel();
89 mInactiveMarker.animate().alpha(1f)
91 mActiveMarker.animate()
H A DInterruptibleInOutAnimator.java64 private void animate(int direction) { method in class:InterruptibleInOutAnimator
106 * direction and animate for a correspondingly shorter duration.
109 animate(IN);
116 * direction and animate for a correspondingly shorter duration.
119 animate(OUT);
/packages/apps/Messaging/src/com/android/messaging/ui/conversation/
H A DConversationSimSelector.java37 private Pair<Boolean /* show */, Boolean /* animate */> mPendingShow;
52 final boolean animate = mPendingShow.second;
58 show, animate);
80 public boolean show(boolean animate) { argument
82 return showHide(true, animate);
86 public boolean hide(boolean animate) { argument
87 return showHide(false, animate);
90 private boolean showHide(final boolean show, final boolean animate) { argument
96 mSimSelectorView.showOrHide(show, animate);
99 mPendingShow = Pair.create(show, animate);
[all...]
H A DConversationInput.java31 final boolean animate);
41 public abstract boolean show(boolean animate); argument
42 public abstract boolean hide(boolean animate); argument
51 mConversationInputBase.showHideInternal(this, false /* show */, true /* animate */);
63 * @param animate
66 public boolean toggle(final boolean animate) { argument
67 mConversationInputBase.showHideInternal(this, !mShowing /* show */, true /* animate */);
78 mConversationInputBase.showHideInternal(this, true /* show */, false /* animate */);
30 showHideInternal(final ConversationInput target, final boolean show, final boolean animate) argument
H A DConversationInputManager.java191 public void showHideMediaPicker(final boolean show, final boolean animate) { argument
192 showHideInternal(mMediaInput, show, animate);
198 * @param animate whether to animate the change in 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);
209 public void hideAllInputs(final boolean animate) { argument
212 showHideInternal(mInputs[i], false, animate);
223 toggleSimSelector(final boolean animate, final SubscriptionListEntry subEntry) argument
261 showHideInternal(final ConversationInput target, final boolean show, final boolean animate) argument
350 show(boolean animate) argument
425 hide(boolean animate) argument
516 show(boolean animate) argument
523 hide(boolean animate) argument
539 show(boolean animate) argument
545 hide(boolean animate) argument
[all...]
H A DConversationActivityUiState.java33 void onConversationContactPickerUiStateChanged(int oldState, int newState, boolean animate); argument
207 private void performUiStateUpdate(final int conversationContactState, final boolean animate) { argument
215 notifyOnOverallUiStateChanged(oldState, mConversationContactUiState, animate);
221 final int oldState, final int newState, final boolean animate) {
231 mHost.onConversationContactPickerUiStateChanged(oldState, newState, animate);
220 notifyOnOverallUiStateChanged( final int oldState, final int newState, final boolean animate) argument
H A DSimSelectorView.java88 public void showOrHide(final boolean show, final boolean animate) { argument
96 if (animate) {
100 animate().alpha(mShow ? 1.0f : 0.0f)
115 if (animate) {
/packages/experimental/Bummer/src/com/android/dreams/bummer/
H A DBummerView.java37 boolean animate = false;
40 animate = mAnimate;
54 if (animate) {
55 animate().x(newx)
84 public void setAnimationParams(boolean animate, int delay, int animTime) { argument
85 mAnimate = animate;
/packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
H A DBummerView.java37 boolean animate = false;
40 animate = mAnimate;
54 if (animate) {
55 animate().x(newx)
84 public void setAnimationParams(boolean animate, int delay, int animTime) { argument
85 mAnimate = animate;
/packages/apps/PackageInstaller/src/com/android/packageinstaller/permission/ui/handheld/
H A DPermissionsFrameFragment.java63 protected void setLoading(boolean loading, boolean animate) { argument
64 setLoading(loading, animate, false);
67 private void setLoading(boolean loading, boolean animate, boolean force) { argument
71 // If there is no created view, there is no reason to animate.
72 animate = false;
75 setViewShown(mPrefsView, !loading, animate);
78 setViewShown(mLoadingView, loading, animate);
93 private void setViewShown(final View view, boolean shown, boolean animate) { argument
94 if (animate) {
H A DGrantPermissionsViewHandlerImpl.java122 // If this is a second (or later) permission and the views exist, then animate.
147 mIconView.animate()
155 mCurrentDesc.animate()
164 mDoNotAskCheckbox.animate()
200 mDescContainer.animate()
231 mCurrentDesc.animate()
241 mDoNotAskCheckbox.animate()
/packages/apps/PackageInstaller/src/com/android/packageinstaller/permission/ui/wear/settings/
H A DExtendedViewHolder.java52 public void onCenterProximity(boolean isCentralItem, boolean animate) { argument
58 if (animate) {
71 if (animate) {
82 super.onCenterProximity(isCentralItem, animate);
/packages/apps/Messaging/src/com/android/messaging/ui/
H A DSnackBarInteraction.java32 * to animate this component.
40 * to animate this component.
59 return mView.animate().translationY(-rootView.getMeasuredHeight());
64 return mView.animate().translationY(0);
/packages/apps/UnifiedEmail/src/com/android/mail/compose/
H A DCcBccView.java49 public void show(boolean animate, boolean showCc, boolean showBcc) { argument
53 if (animate) {
54 animate(ccWasAlreadyShown);
66 private void animate(boolean ccWasAlreadyShown) { method in class:CcBccView
/packages/apps/Launcher2/src/com/android/launcher2/
H A DInterruptibleInOutAnimator.java62 private void animate(int direction) { method in class:InterruptibleInOutAnimator
104 * direction and animate for a correspondingly shorter duration.
107 animate(IN);
114 * direction and animate for a correspondingly shorter duration.
117 animate(OUT);
/packages/apps/ContactsCommon/src/com/android/contacts/common/widget/
H A DFloatingActionButtonController.java113 * @param animate Whether or not to animate the transition.
115 public void align(int align, boolean animate) { argument
116 align(align, 0 /*offsetX */, 0 /* offsetY */, animate);
125 * @param animate Whether or not to animate the transition.
127 public void align(int align, int offsetX, int offsetY, boolean animate) { argument
135 if (animate && mFloatingActionButtonContainer.isShown()) {
136 mFloatingActionButtonContainer.animate()
151 * @param animate Whethe
153 resize(int dimension, boolean animate) argument
[all...]
/packages/apps/Messaging/src/com/android/messaging/ui/mediapicker/camerafocus/
H A DPieItem.java41 private float animate; field in class:PieItem
99 animate = a;
103 return animate;
154 return start + animate;
/packages/apps/PackageInstaller/src/com/android/packageinstaller/permission/ui/television/
H A DPermissionsFrameFragment.java84 protected void setLoading(boolean loading, boolean animate) { argument
85 setLoading(loading, animate, false);
88 private void setLoading(boolean loading, boolean animate, boolean force) { argument
92 // If there is no created view, there is no reason to animate.
93 animate = false;
96 setViewShown(mPrefsView, !loading, animate);
99 setViewShown(mLoadingView, loading, animate);
104 private void setViewShown(final View view, boolean shown, boolean animate) { argument
105 if (animate) {
/packages/apps/Settings/src/com/android/settings/
H A DPreviewPagerAdapter.java113 void setPreviewLayer(int newIndex, int currentIndex, int currentItem, boolean animate) { argument
117 if (animate && previewFrame == mPreviewFrames[currentItem]) {
118 lastLayer.animate()
136 if (animate && previewFrame == mPreviewFrames[currentItem]) {
137 nextLayer.animate()
/packages/apps/Dialer/src/com/android/dialer/widget/
H A DActionBarController.java48 slideActionBar(true /* slideUp */, false /* animate */);
53 slideActionBar(true /* slideUp */, false /* animate */);
86 mSearchBox.expand(true /* animate */, true /* requestFocus */);
100 mSearchBox.collapse(true /* animate */);
107 slideActionBar(false /* slideUp */, false /* animate */);
109 slideActionBar(true /* slideUp */, false /* animate */);
130 mSearchBox.expand(false /* animate */, false /* requestFocus */);
132 slideActionBar(false /* slideUp */, true /* animate */);
148 slideActionBar(true /* slideUp */, true /* animate */);
155 public void slideActionBar(boolean slideUp, boolean animate) { argument
[all...]
/packages/apps/DeskClock/src/com/android/deskclock/
H A DBaseActivity.java40 * Duration in millis to animate changes to the background color.
61 setBackgroundColor(backgroundColor, false /* animate */);
77 setBackgroundColor(Utils.getCurrentHourColor(), true /* animate */);
83 setBackgroundColor(Utils.getCurrentHourColor(), true /* animate */);
101 // Save the background color so we can animate the change when the activity is restored.
111 * @param animate {@code true} if the change should be animated
113 protected void setBackgroundColor(int color, boolean animate) { argument
120 if (animate) {
/packages/apps/TV/src/com/android/tv/ui/
H A DIntroView.java89 v.animate()
101 v.animate()
/packages/apps/Messaging/src/com/android/messaging/ui/mediapicker/
H A DMediaPickerPanel.java117 setExpanded(mExpanded, false /* animate */, mViewPager.getCurrentItem(),
240 * @param animate need animation
243 void setExpanded(final boolean expanded, final boolean animate, final int startingPage) { argument
244 setExpanded(expanded, animate, startingPage, false /* force */);
247 private void setExpanded(final boolean expanded, final boolean animate, final int startingPage, argument
257 setDesiredHeight(getDesiredHeight(), animate);
270 setFullScreenView(true, animate);
278 private void setDesiredHeight(int height, final boolean animate) { argument
284 if (animate) {
321 * @param animate Tru
323 setFullScreenView(final boolean fullScreen, final boolean animate) argument
[all...]
/packages/services/Car/car-support-lib/src/android/support/car/ui/
H A DPagedScrollBarView.java124 protected void setParameters(int range, int offset, int extent, boolean animate) { argument
144 moveY(mScrollThumb, thumbOffset, animate);
200 private void moveY(final View view, float newPosition, boolean animate) { argument
201 final int duration = animate ? 200 : 0;
202 view.animate()
/packages/apps/UnifiedEmail/src/com/android/mail/ui/
H A DActionableToastBar.java224 hide(true /* animate */, true /* actionClicked */);
232 // if this toast bar is not yet hidden, animate it in place; otherwise we just update the
252 public void hide(boolean animate, boolean actionClicked) { argument
259 if (animate) {
376 animate()
394 mFloatingActionButton.animate()
409 animate()
428 mFloatingActionButton.animate()
444 * which to animate is the height of the toast bar + any margin beneath the toast bar.

Completed in 1186 milliseconds

123456