J'ai créé une application et avec un événement, je parviens à ajouter une notification dans la barre de notification Android. Maintenant, j'ai besoin d'exemple pour savoir comment supprimer cette notification de la barre de notification d'un événement?
Réponses
Trop de publicités?
Ankit Patial
Points
908
C'est assez simple. Vous devez appeler annuler sur votre NotificationManager. Le paramètre de la méthode d'annulation est l'ID de la notification à annuler.
Voir l'API: http://developer.android.com/reference/android/app/NotificationManager.html#cancel(int )
Stephane Mathis
Points
1806
Muhammad Usman Ghani
Points
622
Utiliser le NotificationManager pour annuler votre notification. Vous devez uniquement fournir votre id de notification
mNotificationManager.cancel(YOUR_NOTIFICATION_ID) ;
également vérifier ce lien Voir développeur lien