Android:在 Widget 中淡入和淡出文本
如何在更改小部件中的文本时使用淡入和淡出效果?我可以立即切换文本,但我想淡出文本并更改它,然后再次淡入。我尝试过使用 loadAnimation,但小部件似乎不喜欢那样。
任何有关如何使这项工作正常进行的帮助将不胜感激。
谢谢 :)
How can I use a fade in and fade out effect while changing text in a widget? I have the text switching instantly but I would like to fade the text out change it and then fade it back in again. I have tried using loadAnimation, but widgets don't seem to like that.
Any help on how I can get this working will be really appreciated.
Thank you :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 属性动画 对 TextView 的属性进行动画处理。在您的情况下,您需要对
alpha
属性。由于您需要淡出、更改文本然后淡入,因此您需要两个动画。
You can animate a property of the TextView with property animation. In your case you'd animate the
alpha
property.Since you ned to fade out, change text and then fade in, you'll need two animations.