在Android中如何计数通知数和显示单个图标?

前端之家收集整理的这篇文章主要介绍了在Android中如何计数通知数和显示单个图标?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有多个 Android通知,但是当我从网络服务器发送消息时,Android设备会在状态栏上创建一个新的通知图标.我想计数未读通知数量,在状态栏上显示单个图标,并且当通知被读取时,通知必须更改未读通知数量.我该怎么做?在这个图像中看起来像“3其他”: Notification Icon

解决方法

看看这里的答案: How to give counter if more than one Notifications are there

你只需要设置Notification.number

Notification notification = new Notification(R.drawable.direction,"Cool Notification",System.currentTimeMillis());
        /********LIKE THIS*********/
        notification.number = notificationCount++;
        /********LIKE THIS*********/

        notification.setLatestEventInfo(context,"Cool Notification Title","updated notificaiton message",null);


        NotificationManager nm = (NotificationManager) context.getSystemService(context.NOTIFICATION_SERVICE);
        nm.notify(R.id.my_motification,notification);

您必须通过NotificationManager.notify方法发送您的通知,所有这些方法具有相同的id.如文档所述,id是您应用程序中该通知的唯一标识符.如果您重复使用相同的ID,它将只更新该通知的文本和数字.

要查看用户何时点击通知,您需要提供一个PendingIntent(请参阅tutorial).要检查用户何时清除通知,您需要使用仅在Api级别11中可用的Notification.Builder.

原文链接:/android/313203.html

猜你在找的Android相关文章