标签: android android-notifications android-pendingintent
在做通知代码的过程中,我想到了一个疑问。 pendingIntent.cancel()和notificationManager.cancel(notification_id)之间有什么区别。我的意思是哪一个会清除通知,另一个会做什么?。
答案 0 :(得分:1)
哪一个会清除通知
cancel()
NotificationManager将删除Notification。
NotificationManager
Notification
另一个人会做什么?
取消PendingIntent,因此无法再使用。
PendingIntent