Example usage for Java android.widget Scroller fields, constructors, methods, implement or subclass
The text is from its open source code.
Scroller(Context context) Create a Scroller with the default duration and interpolator. | |
Scroller(Context context, Interpolator interpolator) Create a Scroller with the specified interpolator. | |
Scroller(Context context, Interpolator interpolator, boolean flywheel) Create a Scroller with the specified interpolator. |
boolean | computeScrollOffset() Call this when you want to know the new location. |
void | forceFinished(boolean finished) Force the finished field to a particular value. |
int | getCurrY() Returns the current Y offset in the scroll. |
int | getFinalY() Returns where the scroll will end. |
int | getStartY() Returns the start Y offset in the scroll. |
boolean | isFinished() Returns whether the scroller has finished scrolling. |