Home | History | Annotate | Download | only in widget

Lines Matching refs:scroller

135     /** Scroller used to control acceleration toward maximum velocity. */
171 /** Whether to reset the scroller start time on the next animation. */
177 /** Whether the auto-scroller is actively scrolling. */
180 /** Whether the auto-scroller is enabled. */
183 /** Whether the auto-scroller consumes events when scrolling. */
472 // If the auto scroller was not previously active, but it should
491 final ClampedScroller scroller = mScroller;
492 final int verticalDirection = scroller.getVerticalDirection();
493 final int horizontalDirection = scroller.getHorizontalDirection();
695 final ClampedScroller scroller = mScroller;
696 if (scroller.isFinished() || !shouldAnimate()) {
706 scroller.computeScrollDelta();
708 final int deltaX = scroller.getDeltaX();
709 final int deltaY = scroller.getDeltaY();
712 // Keep going until the scroller has permanently stopped.
718 * Scroller whose velocity follows the curve of an {@link Interpolator} and
739 * Creates a new ramp-up scroller that reaches full velocity after a
759 * Starts the scroller at the current animation time.
771 * Stops the scroller at the current animation time.
811 * starting the scroller with {@link #start()}.
832 * Sets the target velocity for this scroller.