play Animator Together - Android Animation

Android examples for Animation:Animation Creation

Description

play Animator Together

Demo Code


//package com.java2s;
import android.animation.Animator;
import android.animation.AnimatorSet;

public class Main {
    public static AnimatorSet playTogether(Animator... animators) {
        AnimatorSet set = new AnimatorSet();
        set.playTogether(animators);/*from  w  ww  .  ja v  a2 s.  c o m*/

        return set;
    }
}

Related Tutorials