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.view.animation.AlphaAnimation;

public class Main {

    public static AlphaAnimation getAlphaAnimation(Float fromAlpha, Float endAlpha, long durationMillis) {
        AlphaAnimation inAlphaAnimation = new AlphaAnimation(fromAlpha, endAlpha);
        inAlphaAnimation.setDuration(durationMillis);
        return inAlphaAnimation;
    }
}