Android Utililty Methods View Fade Out

List of utility methods to do View Fade Out

Description

The list of methods to do View Fade Out are organized into topic(s).

Method

voidfadeOut(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);