Home | History | Annotate | Download | only in widget

Lines Matching defs: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 {
158 * Create a Scroller with the default duration and interpolator.
160 public Scroller(Context context) {
165 * Create a Scroller with the specified interpolator. If the interpolator is
169 public Scroller(Context context, Interpolator interpolator) {
175 * Create a Scroller with the specified interpolator. If the interpolator is
179 public Scroller(Context context, Interpolator interpolator, boolean flywheel) {
210 * Returns whether the scroller has finished scrolling.
212 * @return True if the scroller has finished scrolling, false otherwise.
422 * @param minX Minimum X value. The scroller will not scroll past this
424 * @param maxX Maximum X value. The scroller will not scroll past this
426 * @param minY Minimum Y value. The scroller will not scroll past this
428 * @param maxY Maximum Y value. The scroller will not scroll past this
518 * aborting the animating cause the scroller to move to the final x and y
554 * Sets the final position (X) for this scroller.
567 * Sets the final position (Y) for this scroller.