Android TextView 动画
我基本上有 5 个文本视图,一个在另一个之上填充。我希望他们都带着一些动画,一个接一个地出现,而不是像现在一样全部出现。有人有关于如何为 TextView 对象设置动画的教程的链接吗?我在 android 文档中看到的唯一一个涉及使用图像以及需要在背景中使用图像。
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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
动画
TextView
基本上就像 动画任何其他视图。如果你想让它一个接一个地显示,你可以实现一个AnimationListener
并在前一个完成后启动相应的TextView
。Animating a
TextView
is basically like animating any other view. If you want it to show up one after one, you can implement anAnimationListener
and start the correspondingTextView
when the previous has finished.