Android中重复动画时执行动作
我正在尝试使用 android 动画,我想知道是否有办法在每次重复动画时执行一些代码?我查看了谷歌文档,但没有找到任何方法来做到这一点......
I'm trying stuff with android animation and I would like to know if there is a way to execute some code every time an animation is repeated? I looked at the google doc but didn"t find any method to do that...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
AnimationListener
,重写onAnimationRepeat()
。Use an
AnimationListener
, overridingonAnimationRepeat()
.