Java tutorial
//package com.java2s; import android.view.animation.Animation; import android.view.animation.TranslateAnimation; public class Main { public static Animation picInAnimation() { Animation animation = new TranslateAnimation(10, 200, 10, 400); animation.setDuration(2000); animation.setRepeatCount(1); return animation; } }