get Zoom Out ScaleAnimation - Android Animation

Android examples for Animation:Scale Animation

Description

get Zoom Out ScaleAnimation

Demo Code


//package com.java2s;
import android.view.animation.Animation;
import android.view.animation.ScaleAnimation;

public class Main {
    public static Animation getZoomOut() {
        Animation animation = new ScaleAnimation(0, 0, 0, 0);
        return animation;
    }//from   ww  w. j  a va 2  s. co  m
}

Related Tutorials