Android应用程序图标随运行时变化

发布于 2024-11-08 04:37:25 字数 104 浏览 4 评论 0原文

在我的应用程序中,我想显示应用程序的不同图标。应根据场景进行更改。例如,它将标记任务完成的剩余天数。在 Android 菜单上,此图标将显示剩余天数。如果有人对此有任何想法,我将不胜感激。谢谢。

In my app I want to display different icons for the application. Changes should be according to the scenario. For example, it will mark the number of days remaining for the task completion. On the android menu this icon will display the number of days remaining. If anyone has any idea for this, I would appreciate it. Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(4

你好,陌生人 2024-11-15 04:37:25

实际上有很多方法可以实现这一目标。如果你最近注意到谷歌的时钟应用程序,它确实会显示当前时间。

您可以参考本教程:https://blog.jakelee.co。 uk/programmatically-change-app-icon/

或者在这里找到更多方法:如何在 Android 中以编程方式更改应用程序图标?

There are actually a number of ways to achieve this. If you notice Google's clock app these days, it does show the current time.

You can refer to this tutorial: https://blog.jakelee.co.uk/programmatically-changing-app-icon/

Or find even more ways here: How to change an application icon programmatically in Android?

路弥 2024-11-15 04:37:25

据我所知,你不能。另请参阅此答案:

Android 应用程序图标更改

As far as i know, you cant. Also refer to this answer:

Android Application Icon Change

年华零落成诗 2024-11-15 04:37:25

恐怕您无法以编程方式更改应用程序的图标。 如何在 Android 中以编程方式更改应用程序图标?

I am afraid you can't change your app's icon programmatically. How to change an application icon programmatically in Android?

夏雨凉 2024-11-15 04:37:25

这很容易做到。在您的活动代码中,只需编写:

getActionBar().setIcon(R.drawable.new_icon);

This can be done easily. Within your activity code, just write:

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