Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
import android.animation.AnimatorSet;
import android.animation.ObjectAnimator;
import android.view.View;

public class Main {

    public static void rolloverY(View v) {
        ObjectAnimator yRollover = ObjectAnimator.ofFloat(v, "rotationY", 0f, 3600f);
        AnimatorSet set = new AnimatorSet();
        set.play(yRollover);
        yRollover.start();
    }
}