Create Translate Animation - Android Animation

Android examples for Animation:Translate Animation

Description

Create Translate Animation

Demo Code


//package com.java2s;

import android.view.animation.Animation;
import android.view.animation.TranslateAnimation;

public class Main {
    public static Animation picInAnimation() {
        Animation animation = new TranslateAnimation(10, 200, 10, 400);
        animation.setDuration(2000);// w  w w  .j a  v  a 2  s  .  c  o m
        animation.setRepeatCount(1);
        return animation;
    }
}

Related Tutorials