Create fly in From Left Animation with relative to parent - Android Animation

Android examples for Animation:Alpha Fly Animation

Description

Create fly in From Left Animation with relative to parent

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() {
        Animation inFromLeft = new TranslateAnimation(
                Animation.RELATIVE_TO_PARENT, -1.0f,
                Animation.RELATIVE_TO_PARENT, 0.0f,
                Animation.RELATIVE_TO_PARENT, 0.0f,
                Animation.RELATIVE_TO_PARENT, 0.0f);
        inFromLeft.setDuration(350);// ww w .  jav  a 2  s .  com
        inFromLeft.setInterpolator(new AccelerateInterpolator());
        return inFromLeft;
    }
}

Related Tutorials