Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

import android.view.animation.Animation;

import android.view.animation.TranslateAnimation;

public class Main {
    public static Animation getTranlateAnmation(float fromXDelta, float toXDelta, float fromYDelta, float toYDelta,
            int millisSecond) {
        Animation animation = new TranslateAnimation(fromXDelta, toXDelta, fromYDelta, toYDelta);
        animation.setDuration(millisSecond);
        return animation;
    }
}