Lines Matching defs:animator

62      * Applies the interpolator and length to the animator, such that the fling animation is
65 * @param animator the animator to apply
67 * @param endValue the end value of the animator
70 public void apply(Animator animator, float currValue, float endValue, float velocity) {
71 apply(animator, currValue, endValue, velocity, Math.abs(endValue - currValue));
75 * Applies the interpolator and length to the animator, such that the fling animation is
78 * @param animator the animator to apply
80 * @param endValue the end value of the animator
83 public void apply(ViewPropertyAnimator animator, float currValue, float endValue,
85 apply(animator, currValue, endValue, velocity, Math.abs(endValue - currValue));
89 * Applies the interpolator and length to the animator, such that the fling animation is
92 * @param animator the animator to apply
94 * @param endValue the end value of the animator
99 public void apply(Animator animator, float currValue, float endValue, float velocity,
103 animator.setDuration(properties.duration);
104 animator.setInterpolator(properties.interpolator);
108 * Applies the interpolator and length to the animator, such that the fling animation is
111 * @param animator the animator to apply
113 * @param endValue the end value of the animator
118 public void apply(ViewPropertyAnimator animator, float currValue, float endValue,
122 animator.setDuration(properties.duration);
123 animator.setInterpolator(properties.interpolator);
155 * Applies the interpolator and length to the animator, such that the fling animation is
159 * @param animator the animator to apply
161 * @param endValue the end value of the animator
166 public void applyDismissing(Animator animator, float currValue, float endValue,
170 animator.setDuration(properties.duration);
171 animator.setInterpolator(properties.interpolator);
175 * Applies the interpolator and length to the animator, such that the fling animation is
179 * @param animator the animator to apply
181 * @param endValue the end value of the animator
186 public void applyDismissing(ViewPropertyAnimator animator, float currValue, float endValue,
190 animator.setDuration(properties.duration);
191 animator.setInterpolator(properties.interpolator);