Clear old notifications the moment you sign in

0

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.

    
asked by anonymous 04.10.2016 / 16:07

1 answer

2

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.

    
04.10.2016 / 16:10