List of utility methods to do View Fade Out
void | fadeOut(View view) fade Out if (view.getVisibility() != View.VISIBLE) return; view.setEnabled(false); Animation animation = new AlphaAnimation(1F, 0F); animation.setDuration(400); view.startAnimation(animation); view.setVisibility(View.GONE); |