Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

import android.view.View;
import android.view.animation.AlphaAnimation;

public class Main {

    public static void setAlphaAnimation(View v, int time, int repeatCount, int startOffset) {
        AlphaAnimation myAnimation_Alpha = new AlphaAnimation(0f, 1.0f);
        myAnimation_Alpha.setDuration(time);
        myAnimation_Alpha.setRepeatCount(repeatCount);
        myAnimation_Alpha.setStartOffset(startOffset);
        v.setAnimation(myAnimation_Alpha);
    }
}