Does anyone know how I clean old notifications from my app from the moment I enter the app through the Icon and not the notification itself. Whatsapp does this on android, but I can not find a way to work with it, thank you.
Does anyone know how I clean old notifications from my app from the moment I enter the app through the Icon and not the notification itself. Whatsapp does this on android, but I can not find a way to work with it, thank you.
You can put this in the onCreate of your UI Thread:
NotificationManager nMgr = (NotificationManager) getApplicationContext().getSystemService(Context.NOTIFICATION_SERVICE);
nMgr.cancelAll();
The system will fetch all active notifications and clean them up.