main Fragment Back From Left At Animation - Android Animation

Android examples for Animation:Move Animation

Description

main Fragment Back From Left 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 mainFragmentBackFromLeftAt(int currentX,
            int distance) {
        // TODO Auto-generated method stub
        AnimationSet animationSet = new AnimationSet(true);

        Animation step2 = new TranslateAnimation(Animation.ABSOLUTE,
                currentX - distance, Animation.ABSOLUTE, 0,
                Animation.ABSOLUTE, 0, Animation.ABSOLUTE, 0);
        step2.setDuration(100);//from  ww w .ja  va 2 s  . c o m

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

Related Tutorials