Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

import android.view.animation.Animation;
import android.view.animation.AnimationSet;

public class Main {
    public static AnimationSet getAnimationSet(Animation... animations) {
        AnimationSet set = new AnimationSet(true);
        for (Animation animation : animations)
            set.addAnimation(animation);
        return set;
    }
}