How to create notification icon badge on Android apps (like iPhone)

后端 未结 3 913
萌比男神i
萌比男神i 2020-12-09 12:43

I am very new to programming and would like to know what is the best way to go about creating a notification icon badge similar to the ones on the iPhone apps. This would be

相关标签:
3条回答
  • 2020-12-09 13:21

    This is actually an answer from Mark Murphy:

    For most phones, you use the number field of the Notification object. See here: http://github.com/commonsguy/cw-android/tree/master/Notifications/Notify1/

    Now, there are a few phones by one major device manufacturer that have a bug, whereby the number field is ignored. I am working on getting them to fix it. So you can't absolutely rely on that red bubble being there, though it will be on most phones.

    0 讨论(0)
  • 2020-12-09 13:32

    I know this is very old question. May be this link is helpful is you are still looking for answer. https://github.com/leolin310148/ShortcutBadger

    0 讨论(0)
  • 2020-12-09 13:43

    Are you talking about a graphical icon? I created a transparent PNG using the gimp and pass that drawable id as the 1st argument to the Notification constructor.

    Notification notification = new Notification(R.drawable.someicon,title,System.currentTimeMillis())
    
    0 讨论(0)
提交回复
热议问题