Home | History | Annotate | Download | only in launcher3

Lines Matching refs:interpolator

25 import android.view.animation.Interpolator;
29 * you can modify the Interpolator post-construction.
125 public void setInterpolator(TimeInterpolator interpolator) {
126 mInterpolator = interpolator;
130 * Create a Scroller with the default duration and interpolator.
137 * Create a Scroller with the specified interpolator. If the interpolator is
138 * null, the default (viscous) interpolator will be used. "Flywheel" behavior will
141 public LauncherScroller(Context context, Interpolator interpolator) {
142 this(context, interpolator,
147 * Create a Scroller with the specified interpolator. If the interpolator is
148 * null, the default (viscous) interpolator will be used. Specify whether or
151 public LauncherScroller(Context context, Interpolator interpolator, boolean flywheel) {
153 mInterpolator = interpolator;