如何为标题栏中的图像添加动画效果?

发布于 2024-11-04 02:05:28 字数 465 浏览 1 评论 0原文

我正在尝试在标题栏中制作徽标动画。 如果动画不需要触发器,一切都会正常工作。

我有一个方法

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

浮光之海 2024-11-11 02:05:28

尝试从 onWindowFocusChanged() 而不是从 onCreate() 启动动画。我想动画在创建过程完全完成之后才会开始。

Try starting the animation from onWindowFocusChanged() instead of from onCreate(). I guess animations won't start until after the creation process is totally finished.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文