Uses of Class
com.nineoldandroids.animation.Keyframe

Packages that use Keyframe
com.nineoldandroids.animation   
 

Uses of Keyframe in com.nineoldandroids.animation
 

Methods in com.nineoldandroids.animation that return Keyframe
abstract  Keyframe Keyframe.clone()
           
static Keyframe Keyframe.ofFloat(float fraction)
          Constructs a Keyframe object with the given time.
static Keyframe Keyframe.ofFloat(float fraction, float value)
          Constructs a Keyframe object with the given time and value.
static Keyframe Keyframe.ofInt(float fraction)
          Constructs a Keyframe object with the given time.
static Keyframe Keyframe.ofInt(float fraction, int value)
          Constructs a Keyframe object with the given time and value.
static Keyframe Keyframe.ofObject(float fraction)
          Constructs a Keyframe object with the given time.
static Keyframe Keyframe.ofObject(float fraction, Object value)
          Constructs a Keyframe object with the given time and value.
 

Methods in com.nineoldandroids.animation with parameters of type Keyframe
static PropertyValuesHolder PropertyValuesHolder.ofKeyframe(Property property, Keyframe... values)
          Constructs and returns a PropertyValuesHolder object with the specified property and set of values.
static PropertyValuesHolder PropertyValuesHolder.ofKeyframe(String propertyName, Keyframe... values)
          Constructs and returns a PropertyValuesHolder object with the specified property name and set of values.
 void PropertyValuesHolder.setKeyframes(Keyframe... values)
          Set the animated values for this object to this set of Keyframes.