NotificationManager.cancel(id) is not working inside a broadcast receiver

后端 未结 6 928
温柔的废话
温柔的废话 2020-12-16 00:49

Android: I am trying to cancel a notification from the notification bar after a package being installed. What I am doing is the following:

 public class MyBr         


        
6条回答
  •  清歌不尽
    2020-12-16 01:10

    Following worked for me:

    final NotificationManagerCompat mNotificationManager = NotificationManagerCompat.from(context.getApplicationContext());
    mNotificationManager.cancel();
    

提交回复
热议问题