Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

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

public class Main {
    public static AnimatorSet playSequentially(Animator... animators) {
        AnimatorSet set = new AnimatorSet();
        set.playSequentially(animators);

        return set;
    }
}