Java tutorial
//package com.java2s; import android.view.View; import android.view.animation.Animation; import android.view.animation.ScaleAnimation; public class Main { public static void btnScaleSelf(View view) { ScaleAnimation sa = new ScaleAnimation(0, 1, 0, 1, Animation.RELATIVE_TO_SELF, 0.5F, Animation.RELATIVE_TO_SELF, 0.5F); sa.setDuration(1000); view.startAnimation(sa); } }