catch on swipe to dismiss event
DeleteIntent: DeleteIntent is a PendingIntent object that can be associated with a notification and gets fired when the notification gets deleted, ether by : User specific action User Delete all the notifications. You can set the Pending Intent to a broadcast Receiver and then perform any action you want. Intent intent = new Intent(this, MyBroadcastReceiver.class); … Read more