main Fragment Back From Right At Animation - Android Animation

Android examples for Animation:Move Animation

Description

main Fragment Back From Right At Animation

Demo Code


//package com.java2s;

import android.view.animation.Animation;
import android.view.animation.AnimationSet;

import android.view.animation.TranslateAnimation;

public class Main {
    public static Animation mainFragmentBackFromRightAt(int from) {
        // TODO Auto-generated method stub
        AnimationSet animationSet = new AnimationSet(true);

        Animation step2 = new TranslateAnimation(Animation.ABSOLUTE, from,
                Animation.ABSOLUTE, 0, Animation.ABSOLUTE, 0,
                Animation.ABSOLUTE, 0);/*from  w  w w.  j  a v a2  s . c o  m*/
        step2.setDuration(100);

        animationSet.addAnimation(step2);
        //      animationSet.setInterpolator(new BounceInterpolator());
        return animationSet;
    }
}

Related Tutorials