Android Animation of TextViews
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.
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.
精彩评论