Animation bounce

ObjectAnimator anim = ObjectAnimator.ofFloat(textView, "ScaleY", 0, 1);

anim.setInterpolator(new BounceInterpolator());
anim.setDuration(1000);
anim.start();