get Fade In Alpha Animation - Android android.view.animation

Android examples for android.view.animation:Fade Animation

Description

get Fade In Alpha Animation

Demo Code

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;
  }

}

Related Tutorials