Java tutorial
//package com.java2s; //License from project: Apache License import android.view.animation.AlphaAnimation; import android.view.animation.LinearInterpolator; public class Main { public static void setAlphaAnim(float fromAlpha, float toAlpha, long duration) { AlphaAnimation alphaAnimation = new AlphaAnimation(fromAlpha, toAlpha); alphaAnimation.setDuration(duration); alphaAnimation.setInterpolator(new LinearInterpolator()); } }