删除OnDestroy事件中的通知

时间:2016-08-18 20:07:09

标签: android android-studio notifications ondestroy android-ondestroy

当我的应用程序终止时(当它从任务管理器中删除时)我需要取消我的应用程序的通知。为了清除通知,我写了这个方法。

public void deleteNotification(){
    NotificationManager notifManager = (NotificationManager) getApplicationContext().getSystemService(Context.NOTIFICATION_SERVICE);
    notifManager.cancelAll();
}

我把它放在OnDestroy中,但通知仍然有效并且没有消失。我知道Android并不总是马上带来这个事件,我该怎么办?提前谢谢你

0 个答案:

没有答案