|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectandroid.support.v4.widget.EdgeEffectCompat
public class EdgeEffectCompat
Helper for accessing EdgeEffect
introduced after
API level 4 in a backwards compatible fashion.
This class is used to access EdgeEffect
on platform versions
that support it. When running on older platforms it will result in no-ops. It should
be used by views that wish to use the standard Android visual effects at the edges
of scrolling containers.
Constructor Summary | |
---|---|
EdgeEffectCompat(android.content.Context context)
Construct a new EdgeEffect themed using the given context. |
Method Summary | |
---|---|
boolean |
draw(android.graphics.Canvas canvas)
Draw into the provided canvas. |
void |
finish()
Immediately finish the current animation. |
boolean |
isFinished()
Reports if this EdgeEffectCompat's animation is finished. |
boolean |
onAbsorb(int velocity)
Call when the effect absorbs an impact at the given velocity. |
boolean |
onPull(float deltaDistance)
A view should call this when content is pulled away from an edge by the user. |
boolean |
onRelease()
Call when the object is released after being pulled. |
void |
setSize(int width,
int height)
Set the size of this edge effect in pixels. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public EdgeEffectCompat(android.content.Context context)
Note: On platform versions that do not support EdgeEffect, all operations on the newly constructed object will be mocked/no-ops.
context
- Context to use for theming the effectMethod Detail |
---|
public void setSize(int width, int height)
width
- Effect width in pixelsheight
- Effect height in pixelspublic boolean isFinished()
draw(Canvas)
the host widget should schedule another
drawing pass to continue the animation.
public void finish()
isFinished()
will return true.
public boolean onPull(float deltaDistance)
View.invalidate()
if this method
returns true and draw the results accordingly.
deltaDistance
- Change in distance since the last call. Values may be 0 (no change) to
1.f (full length of the view) or negative values to express change
back toward the edge reached to initiate the effect.
public boolean onRelease()
View.invalidate()
if this method
returns true and thereby draw the results accordingly.
public boolean onAbsorb(int velocity)
When using a Scroller
or OverScroller
,
the method getCurrVelocity
will provide a reasonable approximation
to use here.
velocity
- Velocity at impact in pixels per second.
public boolean draw(android.graphics.Canvas canvas)
canvas
- Canvas to draw into
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |