public class RandomLinearIntegerValueAnimator extends Object implements ValueAnimator<Integer>
ValueAnimator
that continuously animates between
randomly selected values in a range. Once the stop value
has been reached, the animator chooses a new random target
value.
Each animation between values is linear and has a fixed
duration.Constructor and Description |
---|
RandomLinearIntegerValueAnimator(int min,
int max,
int duration)
Construct a
RandomLinearIntegerValueAnimator with the given
range and duration for each sub-animation. |
RandomLinearIntegerValueAnimator(int min,
int max,
int duration,
int initial)
Construct a
RandomLinearIntegerValueAnimator with the given
range, duration for each sub-animation and fixed initial value. |
RandomLinearIntegerValueAnimator(int startWait,
int stopWait,
int min,
int max,
int duration)
Construct a
RandomLinearIntegerValueAnimator with the given
range and duration for each sub-animation. |
RandomLinearIntegerValueAnimator(int startWait,
int stopWait,
int min,
int max,
int duration,
int initial)
Construct a
RandomLinearIntegerValueAnimator with the given
range, duration for each sub-animation and fixed initial value. |
Modifier and Type | Method and Description |
---|---|
boolean |
hasFinished()
Has the animator finished animating the value.
|
Integer |
nextValue()
Get the next value.
|
void |
reset()
Reset the animator back to its initial condition.
|
protected void |
setNextAnimator(int v1) |
public RandomLinearIntegerValueAnimator(int min, int max, int duration)
RandomLinearIntegerValueAnimator
with the given
range and duration for each sub-animation.min
- minimum allowed valuemax
- maximum allowed valueduration
- duration between valuespublic RandomLinearIntegerValueAnimator(int min, int max, int duration, int initial)
RandomLinearIntegerValueAnimator
with the given
range, duration for each sub-animation and fixed initial value.min
- minimum allowed valuemax
- maximum allowed valueduration
- duration between valuesinitial
- initial starting valuepublic RandomLinearIntegerValueAnimator(int startWait, int stopWait, int min, int max, int duration)
RandomLinearIntegerValueAnimator
with the given
range and duration for each sub-animation.
The sub-animations will start after startWait ticks, and
finish stopWait ticks after startWait+duration.startWait
- amount of time in ticks to wait before starting animation.stopWait
- amount of time in ticks to wait after finishing animation.min
- minimum allowed valuemax
- maximum allowed valueduration
- duration between valuespublic RandomLinearIntegerValueAnimator(int startWait, int stopWait, int min, int max, int duration, int initial)
RandomLinearIntegerValueAnimator
with the given
range, duration for each sub-animation and fixed initial value.
The sub-animations will start after startWait ticks, and
finish stopWait ticks after startWait+duration.startWait
- amount of time in ticks to wait before starting animation.stopWait
- amount of time in ticks to wait after finishing animation.min
- minimum allowed valuemax
- maximum allowed valueduration
- duration between valuesinitial
- initial starting valuepublic Integer nextValue()
ValueAnimator
nextValue
in interface ValueAnimator<Integer>
public boolean hasFinished()
ValueAnimator
hasFinished
in interface ValueAnimator<Integer>
public void reset()
ValueAnimator
reset
in interface ValueAnimator<Integer>
protected void setNextAnimator(int v1)