Android - 增量状态栏通知图标

Bos*_*one 9 notifications android statusbar

您知道我在说什么:例如,当您收到多封新电子邮件时,状态栏中的通知图标会增加一个包含未读邮件数量的小红圈.Twitroid有相同的图标.知道它是如何完成的吗?我不认为(或者我希望)有10000个相似的图标.这个红色圆圈是否生成并覆盖了通知图标?如果是这样 - 任何代码片段将非常感激.

Dan*_*Lew 18

这个很简单,只需更改Notification.number为您希望在通知中显示的数字,例如:

Notification notification = new Notification(icon, tickerText, when);
notification.number = 4;
Run Code Online (Sandbox Code Playgroud)