Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
//License from project: Apache License 

import android.animation.Animator;
import android.animation.AnimatorSet;
import android.animation.ObjectAnimator;
import android.view.View;

public class Main {
    public static void animateSpinIn(View view, long duration, Animator.AnimatorListener listener) {
        AnimatorSet animatorSet = new AnimatorSet();
        animatorSet.setDuration(duration);
        animatorSet.playTogether(ObjectAnimator.ofFloat(view, "rotation", -200, 0),
                ObjectAnimator.ofFloat(view, "alpha", 0, 1));
        animatorSet.start();
    }
}