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

Android examples for Animation:Alpha Fly Animation

Description

Create fly in From Bottom 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 inFromBottomAnimation() {
        Animation inFromLeft = new TranslateAnimation(
                Animation.RELATIVE_TO_PARENT, 0.0f,
                Animation.RELATIVE_TO_PARENT, 0.0f,
                Animation.RELATIVE_TO_PARENT, +1.0f,
                Animation.RELATIVE_TO_PARENT, 0.0f);
        inFromLeft.setDuration(350);//from   w  ww.j  a va 2s.  c  om
        inFromLeft.setInterpolator(new AccelerateInterpolator());
        return inFromLeft;
    }
}

Related Tutorials