Java tutorial
//package com.java2s; import android.view.animation.Animation; import android.view.animation.ScaleAnimation; public class Main { public static ScaleAnimation getScaleAnimation(float start, float end, int duration) { ScaleAnimation scaleAnimation = new ScaleAnimation(start, end, start, end, Animation.RELATIVE_TO_SELF, 0.5f, Animation.RELATIVE_TO_SELF, 0.5f); scaleAnimation.setDuration(duration); scaleAnimation.setFillAfter(true); return scaleAnimation; } }