Home | History | Annotate | Download | only in common

Lines Matching refs:interpolator

24 import android.view.animation.Interpolator;
55 private Interpolator mInterpolator;
104 * Create a Scroller with the default duration and interpolator.
111 * Create a Scroller with the specified interpolator. If the interpolator is
112 * null, the default (viscous) interpolator will be used. "Flywheel" behavior will
115 public Scroller(Context context, Interpolator interpolator) {
116 this(context, interpolator,
121 * Create a Scroller with the specified interpolator. If the interpolator is
122 * null, the default (viscous) interpolator will be used. Specify whether or
125 public Scroller(Context context, Interpolator interpolator, boolean flywheel) {
127 mInterpolator = interpolator;