I want to set an animation for each character in a textview sequentially. I can add it for an entire text view like this
Animation textAnim; textAnim = AnimationUtils.loadAnimation(getApplicationContext(),R.anim.rotate); txtInput.startAnimation(textAnim);
But I want the same animation for each character. Also I would like to combine multiple animations.
2.1m questions
2.1m answers
60 comments
57.0k users