Home | History | Annotate | Download | only in widget

Lines Matching refs:Scroller

29  * <p>This class encapsulates scrolling. You can use scrollers ({@link Scroller}
38 * <pre> private Scroller mScroller = new Scroller(context);
52 * whether the scroller is finished. If it isn't, it means that a fling or
63 public class Scroller {
149 * Create a Scroller with the default duration and interpolator.
151 public Scroller(Context context) {
156 * Create a Scroller with the specified interpolator. If the interpolator is
160 public Scroller(Context context, Interpolator interpolator) {
166 * Create a Scroller with the specified interpolator. If the interpolator is
170 public Scroller(Context context, Interpolator interpolator, boolean flywheel) {
205 * Returns whether the scroller has finished scrolling.
207 * @return True if the scroller has finished scrolling, false otherwise.
411 * @param minX Minimum X value. The scroller will not scroll past this
413 * @param maxX Maximum X value. The scroller will not scroll past this
415 * @param minY Minimum Y value. The scroller will not scroll past this
417 * @param maxY Maximum Y value. The scroller will not scroll past this
493 * aborting the animating cause the scroller to move to the final x and y
529 * Sets the final position (X) for this scroller.
542 * Sets the final position (Y) for this scroller.