Uses of Interface
com.nineoldandroids.animation.TypeEvaluator

Packages that use TypeEvaluator
com.nineoldandroids.animation   
 

Uses of TypeEvaluator in com.nineoldandroids.animation
 

Classes in com.nineoldandroids.animation that implement TypeEvaluator
 class ArgbEvaluator
          This evaluator can be used to perform type interpolation between integer values that represent ARGB colors.
 class FloatEvaluator
          This evaluator can be used to perform type interpolation between float values.
 class IntEvaluator
          This evaluator can be used to perform type interpolation between int values.
 

Methods in com.nineoldandroids.animation with parameters of type TypeEvaluator
static ObjectAnimator ObjectAnimator.ofObject(Object target, String propertyName, TypeEvaluator evaluator, Object... values)
          Constructs and returns an ObjectAnimator that animates between Object values.
static
<V> PropertyValuesHolder
PropertyValuesHolder.ofObject(Property property, TypeEvaluator<V> evaluator, V... values)
          Constructs and returns a PropertyValuesHolder with a given property and set of Object 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.
static
<T,V> ObjectAnimator
ObjectAnimator.ofObject(T target, Property<T,V> property, TypeEvaluator<V> evaluator, V... values)
          Constructs and returns an ObjectAnimator that animates between Object values.
static ValueAnimator ValueAnimator.ofObject(TypeEvaluator evaluator, Object... values)
          Constructs and returns a ValueAnimator that animates between Object values.
 void ValueAnimator.setEvaluator(TypeEvaluator value)
          The type evaluator to be used when calculating the animated values of this animation.
 void PropertyValuesHolder.setEvaluator(TypeEvaluator evaluator)
          The TypeEvaluator will the automatically determined based on the type of values supplied to PropertyValuesHolder.