List of usage examples for android.animation Keyframe ofInt
public static Keyframe ofInt(float fraction)
From source file:android.support.graphics.drawable.AnimatorInflaterCompat.java
private static Keyframe createNewKeyframe(Keyframe sampleKeyframe, float fraction) { return sampleKeyframe.getType() == float.class ? Keyframe.ofFloat(fraction) : (sampleKeyframe.getType() == int.class) ? Keyframe.ofInt(fraction) : Keyframe.ofObject(fraction); }