Android examples for Animation:Alpha Fly Animation
Create fly out To Bottom Animation with absolute value
//package com.java2s; import android.view.animation.AccelerateInterpolator; import android.view.animation.Animation; import android.view.animation.TranslateAnimation; public class Main { public static Animation outToBottomAnimation( final android.view.animation.Animation.AnimationListener animationlistener) { final TranslateAnimation translateanimation = new TranslateAnimation( 2, 0F, 2, 0F, 2, 0F, 2, 1F); translateanimation.setDuration(600L); translateanimation.setInterpolator(new AccelerateInterpolator()); translateanimation.setAnimationListener(animationlistener); return translateanimation; }//from w w w . j a v a 2 s. com }