Android examples for android.view.animation:slide Animation
Create slide in From Left Animation
import android.view.animation.AccelerateInterpolator; import android.view.animation.Animation; import android.view.animation.TranslateAnimation; public class Main{ public static Animation inFromLeftAnimation() { Animation inFromLeft = new TranslateAnimation( Animation.RELATIVE_TO_PARENT, -1.0f, Animation.RELATIVE_TO_PARENT, 0.0f, Animation.RELATIVE_TO_PARENT, 0.0f, Animation.RELATIVE_TO_PARENT, 0.0f); inFromLeft.setDuration(500);/*from www. j a v a2 s .c o m*/ inFromLeft.setInterpolator(new AccelerateInterpolator()); return inFromLeft; } }