Here you can find the source of mainFragmentBackFromLeft()
static public Animation mainFragmentBackFromLeft()
//package com.java2s; import android.view.animation.Animation; import android.view.animation.AnimationSet; import android.view.animation.BounceInterpolator; import android.view.animation.TranslateAnimation; public class Main { static public Animation mainFragmentBackFromLeft() { AnimationSet animationSet = new AnimationSet(true); Animation step2 = new TranslateAnimation(Animation.ABSOLUTE, -700, Animation.ABSOLUTE, 0, Animation.ABSOLUTE, 0, Animation.ABSOLUTE, 0);//from w w w .j a v a2s. c o m step2.setDuration(400); animationSet.addAnimation(step2); animationSet.setInterpolator(new BounceInterpolator()); return animationSet; } }