HomeSort by relevance Sort by last modified time
    Searched refs:animate (Results 1 - 25 of 456) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/support/v4/api21/android/support/v4/view/
ViewPropertyAnimatorCompatLollipop.java 24 view.animate().translationZ(value);
28 view.animate().translationZBy(value);
32 view.animate().z(value);
36 view.animate().zBy(value);
  /frameworks/support/v4/ics/android/support/v4/view/
ViewPropertyAnimatorCompatICS.java 26 view.animate().setDuration(value);
30 view.animate().alpha(value);
34 view.animate().translationX(value);
38 view.animate().translationY(value);
42 return view.animate().getDuration();
46 view.animate().setInterpolator(value);
50 view.animate().setStartDelay(value);
54 return view.animate().getStartDelay();
58 view.animate().alphaBy(value);
62 view.animate().rotation(value)
    [all...]
  /external/glide/library/src/main/java/com/bumptech/glide/request/animation/
ViewPropertyAnimation.java 37 public boolean animate(R current, ViewAdapter adapter) { method in class:ViewPropertyAnimation
40 animator.animate(adapter.getView());
52 * @param view The view to animate.
54 void animate(View view); method in interface:ViewPropertyAnimation.Animator
GlideAnimation.java 54 boolean animate(R current, ViewAdapter adapter); method in interface:GlideAnimation
DrawableCrossFadeViewAnimation.java 43 public boolean animate(T current, ViewAdapter adapter) { method in class:DrawableCrossFadeViewAnimation
52 defaultAnimation.animate(current, adapter);
  /frameworks/support/v4/jellybean/android/support/v4/view/
ViewPropertyAnimatorCompatJB.java 25 view.animate().withStartAction(runnable);
29 view.animate().withEndAction(runnable);
33 view.animate().withLayer();
39 view.animate().setListener(new AnimatorListenerAdapter() {
56 view.animate().setListener(null);
  /frameworks/support/v4/jellybean-mr2/android/support/v4/view/
ViewPropertyAnimatorCompatJellybeanMr2.java 23 return (Interpolator) view.animate().getInterpolator();
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
NavigationBarTransitions.java 45 applyModeBackground(-1, getMode(), false /*animate*/);
46 applyMode(getMode(), false /*animate*/, true /*force*/);
50 protected void onTransition(int oldMode, int newMode, boolean animate) {
51 super.onTransition(oldMode, newMode, animate);
52 applyMode(newMode, animate, false /*force*/);
55 private void applyMode(int mode, boolean animate, boolean force) {
58 applyLightsOut(isLightsOut(mode), animate, force); local
61 private void applyLightsOut(boolean lightsOut, boolean animate, boolean force) {
70 navButtons.animate().cancel();
71 lowLights.animate().cancel()
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/
PageIndicatorMarker.java 60 mActiveMarker.animate().cancel();
64 mInactiveMarker.animate().cancel();
67 mActiveMarker.animate()
72 mInactiveMarker.animate()
81 mInactiveMarker.animate().cancel();
83 mActiveMarker.animate().cancel();
88 mInactiveMarker.animate().alpha(1f)
90 mActiveMarker.animate()
  /packages/apps/Messaging/src/com/android/messaging/ui/conversation/
ConversationSimSelector.java 37 private Pair<Boolean /* show */, Boolean /* animate */> mPendingShow;
52 final boolean animate = mPendingShow.second;
58 show, animate);
80 public boolean show(boolean animate) {
82 return showHide(true, animate);
86 public boolean hide(boolean animate) {
87 return showHide(false, animate);
90 private boolean showHide(final boolean show, final boolean animate) {
96 mSimSelectorView.showOrHide(show, animate);
99 mPendingShow = Pair.create(show, animate);
    [all...]
ConversationInput.java 31 final boolean animate);
41 public abstract boolean show(boolean animate);
42 public abstract boolean hide(boolean animate);
51 mConversationInputBase.showHideInternal(this, false /* show */, true /* animate */);
63 * @param animate
66 public boolean toggle(final boolean animate) {
67 mConversationInputBase.showHideInternal(this, !mShowing /* show */, true /* animate */);
78 mConversationInputBase.showHideInternal(this, true /* show */, false /* animate */);
ConversationInputManager.java 191 public void showHideMediaPicker(final boolean show, final boolean animate) {
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) {
202 return showHideInternal(mSimInput, show, animate);
205 public void showHideImeKeyboard(final boolean show, final boolean animate) {
206 showHideInternal(mImeInput, show, animate);
209 public void hideAllInputs(final boolean animate) {
212 showHideInternal(mInputs[i], false, animate);
    [all...]
  /frameworks/base/packages/PrintSpooler/src/com/android/printspooler/widget/
PreviewPageFrame.java 69 public void setSelected(boolean selected, boolean animate) {
75 if (animate) {
76 animate().translationZ(mSelectedElevation)
83 if (animate) {
84 animate().translationZ(mNotSelectedElevation)
  /external/skia/src/animator/
SkAnimateActive.cpp 142 SkAnimateBase* animate = fAnimators[index]; local
143 SkMSec duration = animate->dur;
151 // int entries = animate->entries();
153 // value.fOperand = animate->getValues()[entries - 1];
154 // value.fType = animate->getValuesType();
171 SkAnimateBase* animate = fAnimators[index]; local
173 int count = animate->components();
174 if (animate->formula.size() > 0) {
177 SkDEBUGCODE(bool success = ) animate->fFieldInfo->setValue(fMaker, &values, 0, 0, NULL,
178 animate->getValuesType(), animate->formula)
201 SkAnimateBase* animate = fAnimators[index]; local
237 SkAnimateBase* animate = fAnimators[index]; local
273 SkAnimateBase* animate = fAnimators[index]; local
301 SkAnimateBase* animate = fAnimators[index]; local
332 SkAnimateBase* animate = fAnimators[index]; local
343 SkAnimateBase* animate = fAnimators[index]; local
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/volume/
IconPulser.java 38 target.animate().cancel();
39 target.animate().scaleX(PULSE_SCALE).scaleY(PULSE_SCALE)
44 target.animate().scaleX(1).scaleY(1).setListener(null);
  /packages/experimental/Bummer/src/com/android/dreams/bummer/
BummerView.java 37 boolean animate = false;
40 animate = mAnimate;
54 if (animate) {
55 animate().x(newx)
84 public void setAnimationParams(boolean animate, int delay, int animTime) {
85 mAnimate = animate;
  /packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
BummerView.java 37 boolean animate = false;
40 animate = mAnimate;
54 if (animate) {
55 animate().x(newx)
84 public void setAnimationParams(boolean animate, int delay, int animTime) {
85 mAnimate = animate;
  /frameworks/support/v4/kitkat/android/support/v4/view/
ViewPropertyAnimatorCompatKK.java 25 view.animate().setUpdateListener(new ValueAnimator.AnimatorUpdateListener() {
  /frameworks/base/packages/SystemUI/src/com/android/systemui/assist/
AssistOrbContainer.java 66 public void show(final boolean show, boolean animate) {
70 if (animate) {
77 if (animate) {
108 mScrim.animate()
113 mNavbarScrim.animate()
131 mScrim.animate()
136 mNavbarScrim.animate()
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowAbsSpinner.java 27 public void setSelection(int position, boolean animate) {
29 animatedTransition = animate;
  /frameworks/base/packages/Keyguard/src/com/android/keyguard/
EmergencyCarrierArea.java 51 mCarrierText.animate().alpha(0);
54 mCarrierText.animate().alpha(1);
  /packages/apps/Messaging/src/com/android/messaging/ui/
SnackBarInteraction.java 32 * to animate this component.
40 * to animate this component.
59 return mView.animate().translationY(-rootView.getMeasuredHeight());
64 return mView.animate().translationY(0);
  /development/samples/devbytes/animation/PictureViewer/src/com/example/android/pictureviewer/
PictureViewer.java 57 prevImageView.animate().setDuration(1000);
58 nextImageView.animate().setDuration(1000);
76 prevImageView.animate().alpha(0).withLayer();
77 nextImageView.animate().alpha(1).withLayer().
  /packages/apps/Browser/src/com/android/browser/view/
PieItem.java 36 private float animate; field in class:PieItem
87 animate = a;
91 return animate;
125 return start + animate;
  /packages/apps/UnifiedEmail/src/com/android/mail/compose/
CcBccView.java 49 public void show(boolean animate, boolean showCc, boolean showBcc) {
53 if (animate) {
54 animate(ccWasAlreadyShown);
66 private void animate(boolean ccWasAlreadyShown) { method in class:CcBccView

Completed in 480 milliseconds

1 2 3 4 5 6 7 8 91011>>