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