How do I confirm that a notification already exists?

I don’t see any methods in NotificationManager to check whether this notification is already active, should I save my own logic for this, or am I missing something ??

+3
source share
1 answer

Ideally, you should write your application in such a way that you do not care if an existing one exists on the screen Notification.

At the same time, between deleteIntentand contentIntentyou can track whether the screen Notificationitself will be , if you wish.

+2
source

All Articles