Maybe try this :
NotificationManager notificationManager = (NotificationManager) getApplicationContext().getSystemService(Context.NOTIFICATION_SERVICE);
notificationManager.cancel(NOTIFICATION_ID);
OR, you can also do this to cancel all notifications in given context:
notificationManager.cancelAll();
See this link to the documentation : NotificationManager