Android examples for Animation:Scale Animation
perform Scale Y Animation
//package com.java2s; import android.content.Context; import android.view.View; import android.view.animation.AnimationUtils; public class Main { public static void performScaleYAnimation(Context context, View view) { view.startAnimation(AnimationUtils.loadAnimation(context, 0x7f04000c));/*from w w w .j a v a2 s. co m*/ } }