Android examples for android.view.animation:Animation
play Animation by animation Id
import android.content.Context; import android.view.View; import android.view.animation.Animation; import android.view.animation.AnimationUtils; public class Main { public static void playAnimation(Context context, int animationId, View v) { Animation a = AnimationUtils.loadAnimation(context, animationId); v.startAnimation(a);/*from ww w . jav a 2 s .c o m*/ } }