Reputation: 840
I basically have 5 text views that fill in one on top of the other. Rather then just all showing up like they do now, I want them to all come in with some animation, one after the other. Anyone have a link to a tutorial on how to animate TextView objects? only one I saw in the android docs involved using images as well as needing an image in the background.
Upvotes: 0
Views: 2226
Reputation: 26925
Animating a TextView
is basically like animating any other view. If you want it to show up one after one, you can implement an AnimationListener
and start the corresponding TextView
when the previous has finished.
Upvotes: 1