Application icon with counter on android

青春壹個敷衍的年華 提交于 2019-12-13 17:47:34

问题


How can I implement counter on application icon on the desktop? (like SMS application shows number of unread messages)

Should I implement widget for the same? Is there any tutorial?


回答1:


You cannot modify an application icon - the path to icon is stored inside AndroidManifest.xml, both files are signed with your certificate, application cannot write to it's own .apk file. You may try a hack - install one "wrapper" app, and let it install/uninstall bunch of other dummy apps, which will have an icons with different numbers on them. However this will require app install permission, which users will be warned about.

So you have to implement a widget.



来源:https://stackoverflow.com/questions/5500432/application-icon-with-counter-on-android

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!