Android examples for Animation:Alpha Fly Animation
Create fly out To Right 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 outToRightAnimation( final android.view.animation.Animation.AnimationListener animationlistener) { final TranslateAnimation translateanimation = new TranslateAnimation( 2, 0F, 2, 1F, 2, 0F, 2, -1F); translateanimation.setDuration(300L); translateanimation.setInterpolator(new AccelerateInterpolator()); translateanimation.setAnimationListener(animationlistener); return translateanimation; }//from www. j a v a2 s .c o m }