如何为标题栏中的图像添加动画效果?
我正在尝试在标题栏中制作徽标动画。 如果动画不需要触发器,一切都会正常工作。
我有一个方法
public void animateLogo() {
if (imageView != null) {
imageView.setBackgroundResource(R.drawable.logo_animation);
logoAnimation = (AnimationDrawable) imageView.getBackground();
logoAnimation.start();
}
}
,当由按钮触发时效果很好。但我希望它能够独立于按下任何按钮而启动。从启动应用程序到结束,它应该可以正常工作,无需任何交互。
当调用 OnCreate(..) 中的方法时,它不起作用。 onStart() 相同。
有什么想法如何实现结果吗?
I'm trying to make a logo animation in a TitleBar.
Everything would work just fine, if an animation didn't reuqire a trigger.
I have a method
public void animateLogo() {
if (imageView != null) {
imageView.setBackgroundResource(R.drawable.logo_animation);
logoAnimation = (AnimationDrawable) imageView.getBackground();
logoAnimation.start();
}
}
When triggered by a button works just fine. But I want it to start independently of any button presses. It should work since starting the App till the end without any interactions.
When calling the method in OnCreate(..) it doesn't work. onStart() the same.
Any ideas how to achieve the result ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试从
onWindowFocusChanged()
而不是从onCreate()
启动动画。我想动画在创建过程完全完成之后才会开始。Try starting the animation from
onWindowFocusChanged()
instead of fromonCreate()
. I guess animations won't start until after the creation process is totally finished.