Is there a way to animate a text color change (from anycolor to white)?
The only variant I came up with, is placing two textviews (with the same text) in one place,
The Easiest solution will be to use Object Animators :
ObjectAnimator colorAnim = ObjectAnimator.ofInt(yourTextView, "textColor", Color.RED, Color.GREEN); colorAnim.setEvaluator(new ArgbEvaluator()); colorAnim.start();