Android examples for android.view.animation:Fade Animation
get Fade In Alpha Animation
import android.view.animation.AlphaAnimation; public class Main { public static AlphaAnimation getInAlphaAnim() { AlphaAnimation animation = new AlphaAnimation(0, 1); animation.setDuration(1000);/* w ww . java2 s. com*/ animation.setFillAfter(true); animation.setRepeatCount(1); return animation; } }