List of usage examples for android.animation ObjectAnimator setIntValues
@Override public void setIntValues(int... values)
From source file:Main.java
public static ObjectAnimator ofInt(Object target, String propertyName, int... values) { ObjectAnimator anim = new ObjectAnimator(); anim.setTarget(target);/*from w ww .j a v a 2 s . c om*/ anim.setPropertyName(propertyName); anim.setIntValues(values); cancelOnDestroyActivity(anim); return anim; }