Home | History | Annotate | Download | only in widget

Lines Matching refs:anim

75         ObjectAnimator anim = ObjectAnimator.ofFloat(this, property, toValue);
76 anim.setDuration(duration);
77 anim.setStartDelay(delay);
78 anim.setInterpolator(EASE_OUT_INTERPOLATOR);
79 this.addAnimation(anim, replace);
81 return anim;
111 * @param anim
115 private DrawableHolder addAnimation(ObjectAnimator anim, boolean overwrite) {
116 if (anim != null)
117 mAnimators.add(anim);
118 mNeedToStart.add(anim);
149 ObjectAnimator anim = mNeedToStart.get(i);
150 anim.addUpdateListener(listener);
151 anim.addListener(this);
152 anim.start();