can you give me a hint how to animate letters in the text string? For example, for a string “Hello World”, scale H first from 0 to size, then e, then l etc? like a bouncing text effect if you know what I mean.
And I would the first letter in a string to be in a different color.
I do know how to animate the entire view or draw text on canvas, but that way animate the entire text string not the letters.
found an easy way by using two TextView controls. First is set to the first latter of a word by mytext.substring(0,1) and second one to mytext.substring(1).
when do startAnimation for both or you can have one animation for the first view and another one for the second one.
on layout file, i put them next to each other on RelativeLayout: