最佳答案
任何人都知道我们如何能够从应用程序中删除通知,这被称为使用挂起意图。
我使用以下方法取消通知。
AlarmManager am=(AlarmManager)getSystemService(Context.ALARM_SERVICE);
Intent intent = new Intent(Display.this, TwoAlarmService.class);
PendingIntent pi = PendingIntent.getBroadcast(Display.this, AlarmNumber, intent, PendingIntent.FLAG_CANCEL_CURRENT);
am.cancel(pi);
但问题是已经触发的通知没有从通知栏中删除。
先谢谢你。