Create fly in From Left Animation - Android Animation

Android examples for Animation:Alpha Fly Animation

Description

Create fly in From Left Animation

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 inFromLeftAnimation(
            final android.view.animation.Animation.AnimationListener animationlistener) {
        final TranslateAnimation translateanimation = new TranslateAnimation(
                2, -1F, 2, 0F, 2, 0F, 2, 0F);
        translateanimation.setDuration(300L);
        translateanimation.setInterpolator(new AccelerateInterpolator());
        translateanimation.setAnimationListener(animationlistener);
        return translateanimation;
    }/*from  ww  w .ja  va2s. c  o  m*/
}

Related Tutorials