Java tutorial
//package com.java2s; import android.view.View; import android.view.animation.TranslateAnimation; public class Main { public static void animSlideOutFromBottom(final View view) { TranslateAnimation animate = new TranslateAnimation(0, 0, 0, -view.getHeight()); animate.setDuration(500); animate.setFillAfter(true); view.startAnimation(animate); view.setVisibility(View.GONE); } }