Package | Description |
---|---|
com.actionbarsherlock.internal.nineoldandroids.animation |
Modifier and Type | Method and Description |
---|---|
PropertyValuesHolder |
PropertyValuesHolder.clone() |
PropertyValuesHolder[] |
ValueAnimator.getValues()
Returns the values that this ValueAnimator animates between.
|
static PropertyValuesHolder |
PropertyValuesHolder.ofFloat(String propertyName,
float... values)
Constructs and returns a PropertyValuesHolder with a given property name and
set of float values.
|
static PropertyValuesHolder |
PropertyValuesHolder.ofInt(String propertyName,
int... values)
Constructs and returns a PropertyValuesHolder with a given property name and
set of int values.
|
static PropertyValuesHolder |
PropertyValuesHolder.ofKeyframe(String propertyName,
Keyframe... values)
Constructs and returns a PropertyValuesHolder object with the specified property name and set
of values.
|
static PropertyValuesHolder |
PropertyValuesHolder.ofObject(String propertyName,
TypeEvaluator evaluator,
Object... values)
Constructs and returns a PropertyValuesHolder with a given property name and
set of Object values.
|
Modifier and Type | Method and Description |
---|---|
static ObjectAnimator |
ObjectAnimator.ofPropertyValuesHolder(Object target,
PropertyValuesHolder... values)
Constructs and returns an ObjectAnimator that animates between the sets of values specified
in
PropertyValueHolder objects. |
static ValueAnimator |
ValueAnimator.ofPropertyValuesHolder(PropertyValuesHolder... values)
Constructs and returns a ValueAnimator that animates between the values
specified in the PropertyValuesHolder objects.
|
void |
ValueAnimator.setValues(PropertyValuesHolder... values)
Sets the values, per property, being animated between.
|
Copyright © 2011–2014. All rights reserved.