get Zoom Out animation from ScaleAnimation - Android android.view.animation

Android examples for android.view.animation:Zoom Animation

Description

get Zoom Out animation from ScaleAnimation

Demo Code

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   www. ja  v  a  2  s  .c  o m*/

}

Related Tutorials