How to remove notification from notification bar programmatically in android?

后端 未结 4 733
旧时难觅i
旧时难觅i 2020-12-04 11:56

Anybody have idea how can we remove notification from application programmatically which is called using Pending intent.

I have used to cancel notification using fol

4条回答
  •  感情败类
    2020-12-04 12:27

    I believe the most RECENT and UPDATED way of doing (Kotlin and Java) this should be done as:

    NotificationManagerCompat.from(context).cancel(NOTIFICATION_ID)
    

    Or to cancel all notifications is:

    NotificationManagerCompat.from(context).cancelAll()
    

    Made for AndroidX or Support Libraries.

提交回复
热议问题