Searched defs:Keyframe (Results 1 - 1 of 1) sorted by path

/frameworks/base/core/java/android/animation/
H A DKeyframe.java20 * This class holds a time/value pair for an animation. The Keyframe class is used
27 * <p>The Keyframe class itself is abstract. The type-specific factory methods will return
28 * a subclass of Keyframe specific to the type of value being stored. This is done to improve
30 * <code>int</code> values). Other types will fall into a more general Keyframe class that
36 public abstract class Keyframe implements Cloneable { class in inherits:Cloneable
43 * The type of the value in this Keyframe. This type is determined at construction time,
62 * Constructs a Keyframe object with the given time and value. The time defines the
73 public static Keyframe ofInt(float fraction, int value) {
78 * Constructs a Keyframe object with the given time. The value at this time will be derived
89 public static Keyframe ofIn
[all...]

Completed in 51 milliseconds