Android examples for android.view.animation:Zoom Animation
get Zoom Out animation from ScaleAnimation
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*/ }