According to android design tips, you should add up your notifications. Therefore, you should avoid displaying multiple notifications for the same application.
You can add your notifications using
NotificationManager.notify(ID, notification) , where you specify the same identifier for each notification.
You can check the docs on how to implement it.
For your case
Is there a way to know how many live notifications i have - No
But you can track notifications using the general settings, where you store the notification ID and delete it when the user clicks on the note
Is it possible to approach these notification and cancel them? - Yes
You can cancel the notification using the cancel(int id) method, where you pass the identifier of the notification you want to delete.
Thus, you can use this method to achieve what you want, but it is advisable to combine all the notifications.
source share