Create fly out To Left Animation with absolute value - Android Animation

Android examples for Animation:Alpha Fly Animation

Description

Create fly out To Left Animation with absolute value

Demo Code


//package com.java2s;
import android.view.animation.AccelerateInterpolator;

import android.view.animation.Animation;

import android.view.animation.TranslateAnimation;

public class Main {
    public static Animation outToLeftAnimation(
            final android.view.animation.Animation.AnimationListener animationlistener) {
        final TranslateAnimation translateanimation = new TranslateAnimation(
                2, 0F, 2, -1F, 2, 0F, 2, 0F);
        translateanimation.setDuration(300L);
        translateanimation.setInterpolator(new AccelerateInterpolator());
        translateanimation.setAnimationListener(animationlistener);
        return translateanimation;
    }/*from w  w w . j  a v  a  2 s .c  o  m*/
}

Related Tutorials