Android examples for Animation:Scale Animation
get Zoom Out ScaleAnimation
//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 }