Android examples for Animation:Alpha Fly Animation
Create Alpha Animation with Accelerate Interpolator
//package com.java2s; import android.view.animation.AccelerateInterpolator; import android.view.animation.AlphaAnimation; import android.view.animation.Animation; public class Main { public static Animation inAlphaAnimation() { AlphaAnimation alpha = new AlphaAnimation(0.0f, 1.0f); alpha.setDuration(1000);/*from w w w. ja va 2 s . c om*/ alpha.setInterpolator(new AccelerateInterpolator()); return alpha; } }