|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use ObjectAnimator | |
---|---|
com.nineoldandroids.animation |
Uses of ObjectAnimator in com.nineoldandroids.animation |
---|
Methods in com.nineoldandroids.animation that return ObjectAnimator | ||
---|---|---|
ObjectAnimator |
ObjectAnimator.clone()
|
|
static ObjectAnimator |
ObjectAnimator.ofFloat(Object target,
String propertyName,
float... values)
Constructs and returns an ObjectAnimator that animates between float values. |
|
static
|
ObjectAnimator.ofFloat(T target,
Property<T,Float> property,
float... values)
Constructs and returns an ObjectAnimator that animates between float values. |
|
static ObjectAnimator |
ObjectAnimator.ofInt(Object target,
String propertyName,
int... values)
Constructs and returns an ObjectAnimator that animates between int values. |
|
static
|
ObjectAnimator.ofInt(T target,
Property<T,Integer> property,
int... values)
Constructs and returns an ObjectAnimator that animates between int values. |
|
static ObjectAnimator |
ObjectAnimator.ofObject(Object target,
String propertyName,
TypeEvaluator evaluator,
Object... values)
Constructs and returns an ObjectAnimator that animates between Object values. |
|
static
|
ObjectAnimator.ofObject(T target,
Property<T,V> property,
TypeEvaluator<V> evaluator,
V... values)
Constructs and returns an ObjectAnimator that animates between Object values. |
|
static ObjectAnimator |
ObjectAnimator.ofPropertyValuesHolder(Object target,
PropertyValuesHolder... values)
Constructs and returns an ObjectAnimator that animates between the sets of values specified in PropertyValueHolder objects. |
|
ObjectAnimator |
ObjectAnimator.setDuration(long duration)
Sets the length of the animation. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |