可以动态更改状态栏(通知图标)的图标吗?
我有一个android APP,有很多活动。
在我的应用程序的登录活动中,我在状态栏中启动一个通知图标,它会固定在那里,直到我的应用程序停止。好的,它有效。
但现在我还需要一件事,我需要通过我的应用程序的服务以编程方式动态更改图标。我该怎么做?
如何访问我的应用程序的通知图标,然后更改图标?
我希望通过代码示例来说明如何实现这一目标。
I have an android APP, with a lot of activities.
In the login activiti of my app, i start a notification icon in the status bar, and it is fixed there until my app stops. Ok, it works.
But now i need one more thing, i need to changue the icon dynamically, programatically, with a service of my app. How can i do it?
How can i access to the notification icon of my app and then change the icon?
I would appreciate code examples to illustrate how to achieve this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
只需使用新的
Notification
再次调用NotificationManager
上的notify()
即可,但唯一 ID 与您在第一个通知中使用的唯一 ID 相同。它将替换现有通知
的图标(或者如果用户清除了第一个通知,则显示新的通知
)。Just call
notify()
again onNotificationManager
with a newNotification
but the same unique ID as you used for the first one. It will replace your icon of the existingNotification
(or display the newNotification
if the user cleared the first one).您可以在通知上使用 iconLevel:
http://developer.android.com/guide/topics/ui /notifiers/notifications.html#More
在 res/drawable/myicon.xml 中创建不同级别的 xml 文件(不同的图标)
http://developer.android.com/reference/android/graphics/drawable /LevelListDrawable.html
并设置或(更新)级别:
You could use the iconLevel on the Notification:
http://developer.android.com/guide/topics/ui/notifiers/notifications.html#More
Create a xml file in res/drawable/myicon.xml with different level (different icon)
http://developer.android.com/reference/android/graphics/drawable/LevelListDrawable.html
and set or (update) the level with: