Java tutorial
//package com.java2s; import android.view.animation.TranslateAnimation; public class Main { private static TranslateAnimation trans(int fromXType, int fromXValue, int toXType, int toXValue, int fromYType, int fromYValue, int toYType, int toYValue) { TranslateAnimation anima = new TranslateAnimation(fromXType, fromXValue, toXType, toXValue, fromYType, fromYValue, toYType, toYValue); anima.setDuration(500); return anima; } }