Animation Fade With Alpha

//IN

ObjectAnimator anim = ObjectAnimator.ofFloat(textView, "Alpha", 0, 1);
anim.setDuration(5000);
anim.start();

//Out

ObjectAnimator anim = ObjectAnimator.ofFloat(textView, "Alpha", 1, 0);
anim.setDuration(5000);
anim.start();