List of usage examples for android.animation Animator setupStartValues
public void setupStartValues()
From source file:Main.java
public static boolean start(Animator animator) { if (animator != null && animator.isStarted() == false) { animator.setupStartValues(); animator.start();// w w w . j a v a 2 s . c o m return true; } return false; }