|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectandroid.support.v4.widget.ScrollerCompat
public class ScrollerCompat
Provides access to new Scroller
APIs when available.
This class provides a platform version-independent mechanism for obeying the current device's preferred scroll physics and fling behavior. It offers a subset of the APIs from Scroller or OverScroller.
Method Summary | |
---|---|
void |
abortAnimation()
Stops the animation. |
boolean |
computeScrollOffset()
Call this when you want to know the new location. |
static ScrollerCompat |
create(android.content.Context context)
|
static ScrollerCompat |
create(android.content.Context context,
android.view.animation.Interpolator interpolator)
|
void |
fling(int startX,
int startY,
int velocityX,
int velocityY,
int minX,
int maxX,
int minY,
int maxY)
Start scrolling based on a fling gesture. |
void |
fling(int startX,
int startY,
int velocityX,
int velocityY,
int minX,
int maxX,
int minY,
int maxY,
int overX,
int overY)
Start scrolling based on a fling gesture. |
float |
getCurrVelocity()
Returns the current velocity on platform versions that support it. |
int |
getCurrX()
Returns the current X offset in the scroll. |
int |
getCurrY()
Returns the current Y offset in the scroll. |
int |
getFinalX()
|
int |
getFinalY()
|
boolean |
isFinished()
Returns whether the scroller has finished scrolling. |
boolean |
isOverScrolled()
Returns whether the current Scroller is currently returning to a valid position. |
void |
notifyHorizontalEdgeReached(int startX,
int finalX,
int overX)
Notify the scroller that we've reached a horizontal boundary. |
void |
notifyVerticalEdgeReached(int startY,
int finalY,
int overY)
Notify the scroller that we've reached a vertical boundary. |
void |
startScroll(int startX,
int startY,
int dx,
int dy)
Start scrolling by providing a starting point and the distance to travel. |
void |
startScroll(int startX,
int startY,
int dx,
int dy,
int duration)
Start scrolling by providing a starting point and the distance to travel. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Method Detail |
---|
public static ScrollerCompat create(android.content.Context context)
public static ScrollerCompat create(android.content.Context context, android.view.animation.Interpolator interpolator)
public boolean isFinished()
public int getCurrX()
public int getCurrY()
public int getFinalX()
public int getFinalY()
public float getCurrVelocity()
The device must support at least API level 14 (Ice Cream Sandwich).
On older platform versions this method will return 0. This method should
only be used as input for nonessential visual effects such as EdgeEffectCompat
.
public boolean computeScrollOffset()
public void startScroll(int startX, int startY, int dx, int dy)
startX
- Starting horizontal scroll offset in pixels. Positive
numbers will scroll the content to the left.startY
- Starting vertical scroll offset in pixels. Positive numbers
will scroll the content up.dx
- Horizontal distance to travel. Positive numbers will scroll the
content to the left.dy
- Vertical distance to travel. Positive numbers will scroll the
content up.public void startScroll(int startX, int startY, int dx, int dy, int duration)
startX
- Starting horizontal scroll offset in pixels. Positive
numbers will scroll the content to the left.startY
- Starting vertical scroll offset in pixels. Positive numbers
will scroll the content up.dx
- Horizontal distance to travel. Positive numbers will scroll the
content to the left.dy
- Vertical distance to travel. Positive numbers will scroll the
content up.duration
- Duration of the scroll in milliseconds.public void fling(int startX, int startY, int velocityX, int velocityY, int minX, int maxX, int minY, int maxY)
startX
- Starting point of the scroll (X)startY
- Starting point of the scroll (Y)velocityX
- Initial velocity of the fling (X) measured in pixels per
second.velocityY
- Initial velocity of the fling (Y) measured in pixels per
secondminX
- Minimum X value. The scroller will not scroll past this
point.maxX
- Maximum X value. The scroller will not scroll past this
point.minY
- Minimum Y value. The scroller will not scroll past this
point.maxY
- Maximum Y value. The scroller will not scroll past this
point.public void fling(int startX, int startY, int velocityX, int velocityY, int minX, int maxX, int minY, int maxY, int overX, int overY)
startX
- Starting point of the scroll (X)startY
- Starting point of the scroll (Y)velocityX
- Initial velocity of the fling (X) measured in pixels per
second.velocityY
- Initial velocity of the fling (Y) measured in pixels per
secondminX
- Minimum X value. The scroller will not scroll past this
point.maxX
- Maximum X value. The scroller will not scroll past this
point.minY
- Minimum Y value. The scroller will not scroll past this
point.maxY
- Maximum Y value. The scroller will not scroll past this
point.overX
- Overfling range. If > 0, horizontal overfling in either
direction will be possible.overY
- Overfling range. If > 0, vertical overfling in either
direction will be possible.public void abortAnimation()
public void notifyHorizontalEdgeReached(int startX, int finalX, int overX)
startX
- Starting/current X positionfinalX
- Desired final X positionoverX
- Magnitude of overscroll allowed. This should be the maximum
desired distance from finalX. Absolute value - must be positive.public void notifyVerticalEdgeReached(int startY, int finalY, int overY)
startY
- Starting/current Y positionfinalY
- Desired final Y positionoverY
- Magnitude of overscroll allowed. This should be the maximum
desired distance from finalY. Absolute value - must be positive.public boolean isOverScrolled()
fling(int, int, int, int, int, int, int, int, int, int)
method.
One should check this value before calling
startScroll(int, int, int, int)
as the interpolation currently in progress
to restore a valid position will then be stopped. The caller has to take into account
the fact that the started scroll will start from an overscrolled position.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |