Android examples for Animation:Scale Animation
create Zoom Out Near Animation
//package com.java2s; import android.view.animation.AlphaAnimation; import android.view.animation.Animation; import android.view.animation.AnimationSet; import android.view.animation.DecelerateInterpolator; import android.view.animation.LinearInterpolator; import android.view.animation.ScaleAnimation; public class Main { private static final long MEDIUM = 500; public static Animation createZoomOutNearAnim() { AnimationSet ret;/*from w ww .ja va 2 s . c om*/ Animation anim; ret = new AnimationSet(false); anim = new AlphaAnimation(0f, 1f); anim.setDuration(MEDIUM); anim.setInterpolator(new LinearInterpolator()); ret.addAnimation(anim); anim = new ScaleAnimation(3, 1, 3, 1, Animation.RELATIVE_TO_SELF, 0.5f, Animation.RELATIVE_TO_SELF, 0.5f); anim.setDuration(MEDIUM); anim.setInterpolator(new DecelerateInterpolator()); ret.addAnimation(anim); return ret; } }