Java tutorial
//package com.java2s; //License from project: Open Source License import android.view.View; import android.view.animation.Animation; import android.view.animation.TranslateAnimation; public class Main { private static TranslateAnimation getTranslateX0To100Animation(View view, long duration) { TranslateAnimation animation = new TranslateAnimation(Animation.RELATIVE_TO_SELF, 0, Animation.RELATIVE_TO_SELF, 1, Animation.ABSOLUTE, 0, Animation.ABSOLUTE, 0); animation.setDuration(duration); return animation; } }