Android examples for Animation:Translate Animation
get Translate Animation
//package com.java2s; import android.view.animation.Animation; import android.view.animation.TranslateAnimation; public class Main { public static Animation getTranslate(float fromXDelta, float toXDelta, float fromYDelta, float toYDelta, long duration) { TranslateAnimation animation = new TranslateAnimation(fromXDelta, toXDelta, fromYDelta, toYDelta); animation.setFillAfter(true);/*from www . j a v a 2 s . c om*/ animation.setDuration(duration); return animation; } }