Java tutorial
//package com.java2s; import android.view.animation.Animation; import android.view.animation.DecelerateInterpolator; import android.view.animation.ScaleAnimation; public class Main { public static Animation getScaleAnimation_see_all() { Animation animation = new ScaleAnimation(1.0f, 1.0f, 0.0f, 1.0f, Animation.RELATIVE_TO_SELF, 0f, Animation.RELATIVE_TO_SELF, 0f); animation.setInterpolator(new DecelerateInterpolator()); animation.setDuration(200); return animation; } }