that_person

Android Code Example: AnimatorSet (via http://goo.gl/0Iw9ZH)

Aug 26th, 2014
209
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.17 KB | None | 0 0
  1. AnimatorSet set = new AnimatorSet();
  2. set.playSequentially(moveAnim, skewAnim, wobbleAnim);
  3. if (finishDownAnim != null) {
  4.         set.play(finishDownAnim).before(moveAnim);
  5. }
Add Comment
Please, Sign In to add comment