Android - Deleteintent, How To Use?
I currently have a notification in my Android application that has a PendingIntent so that when it is clicked an activity is opened. I currently keep a counter for the notification
Solution 1:
Create a broadcast or service PendingIntent, pointing to a BroadcastReceiver or IntentService that will reset your counter, and associate that PendingIntent with your Notification via deleteIntent.
Post a Comment for "Android - Deleteintent, How To Use?"