如果有多个通知,如何给出计数器
我已经使用 C2dm 实现了 PushNotification。我也收到 c2dm 的通知。我的问题是,当我收到多个通知时,我想给出一个计数器,我的意思是“您有一个通知(计数)”。我怎样才能实现这个。
I have implemented PushNotification Using C2dm. I am getting notification from c2dm also. My problem is I want to give a counter when I get more than one notifications, I mean like "You have a Notification(count)". How can I implement this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您可以将数字值设置到通知对象中,
这里是链接
http://developer.android.com/reference/android/app/Notification.html#number
http://developer.android.com/guide/topics/ui/notifiers/notifications.html
Android 通知条数
you can do to set the number value into the Notification object
here is the link
http://developer.android.com/reference/android/app/Notification.html#number
http://developer.android.com/guide/topics/ui/notifiers/notifications.html
Android Notification Bar Number
您是否在寻找
Notification#number
?Are you looking for
Notification#number
?这将创建 notificationManager 类实例。然后您将拥有可以进行任何调整的通知对象。要设置您收到的消息数量,只需设置以下内容:
This creates the notificationManager class instance. Then you will have notification object with which you can do any adjustment. To set the number of the messages you have received, simply set this: