Java tutorial
//package com.java2s; //License from project: Open Source License import android.content.Context; import android.view.View; import android.view.animation.Animation; import android.view.animation.AnimationUtils; public class Main { public static Animation runFadeOutAnimationOn(Context ctx, View target) { Animation animation = AnimationUtils.loadAnimation(ctx, android.R.anim.fade_out); target.startAnimation(animation); return animation; } }