in my code I have an EditText called soluzione and I animate it with this code:
textColorAnim = ObjectAnimator.ofInt(soluzione, "textColor", Color.RED, Color.WHITE);
textColorAnim.setDuration(100);
textColorAnim.setEvaluator(new ArgbEvaluator());
textColorAnim.setRepeatCount(4);
textColorAnim.setRepeatMode(ValueAnimator.REVERSE);
textColorAnim.start();
but when the animation ends i want to delete the text in the EditText, how can i do this?