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 {
    private static AnimatorSet buildMenuAnimation(View target, float alpha, int animationDuration) {

        AnimatorSet alphaAnimation = new AnimatorSet();
        alphaAnimation.playTogether(ObjectAnimator.ofFloat(target, "alpha", alpha));

        alphaAnimation.setDuration(animationDuration);
        return alphaAnimation;
    }
}