I have read many examples of how to create notification messages. What i wanted to achieve, is because the notification will be executed by a widget, i would like the notification intent when clicked to clear it self when the user clicks on it.I do not have an activity to return to. The notification for my purposes will just plainly notify, nothing else. So what would be the code of an intent that just clear/cancel itself. The code below is an activity launched by a button(button code not included) the notification will be fired up by a background service.

CharSequence title = "Hello";
CharSequence message = "Hello, Android!";
final NotificationManager notificationManager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
final Notification notification = new Notification(R.drawable.icon,"A New Message!",System.currentTimeMillis());

notification.defaults=Notification.FLAG_ONLY_ALERT_ONCE+Notification.FLAG_AUTO_CANCEL;
Intent notificationIntent = new Intent(this, AndroidNotifications.class);
PendingIntent pendingIntent = PendingIntent.getActivity(this, 0,notificationIntent, 0);

notification.setLatestEventInfo(AndroidNotifications.this, title,message, pendingIntent);
notificationManager.notify(NOTIFICATION_ID, notification);

Thanks

link|improve this question

57% accept rate
feedback

4 Answers

Check out FLAG_AUTO_CANCEL

Bit to be bitwise-ored into the flags field that should be set if the notification should be canceled when it is clicked by the user.

link|improve this answer
My code is already using FLAG_AUTO_CANCEL but actually the notification is not going away on click. – John Aug 14 '10 at 9:16
9  
Your code uses wrong (puts in defaults field), you need to bitwise-or in the flags field like this: notification.flags |= Notification.FLAG_AUTO_CANCEL; – Pentium10 Aug 14 '10 at 16:11
2  
Thanks notification.flags |= Notification.FLAG_AUTO_CANCEL; Worked. – John Aug 15 '10 at 9:04
Thank you very much. :-) – ninetwozero Dec 8 '11 at 9:30
feedback

Set the flags in notification.flags instead of notification.defaults.

Example:

notification.flags |= Notification.FLAG_ONLY_ALERT_ONCE | Notification.FLAG_AUTO_CANCEL;
link|improve this answer
feedback

The only way I can see of doing this is to have your Notification's Intent point to a background Service. When this Service is launched, it would clear the given Notification using NotificationManager.cancel(int id). The Service would then stop itself. It's not pretty, and would not be easy to implement, but I can't find any other way of doing it.

link|improve this answer
If you want by code to cancel the notification use the NOTIFICATION_ID on cancel call. – Pentium10 Aug 13 '10 at 18:17
Yes i would be calling that from a button, but i would like to call that from the code when the user selects the notification. – John Aug 14 '10 at 9:18
Works-for-me solution, however a bit messy (additional service to be written). But in Service I have access to calling Intent in which the notification ID as argument can be given. – lechlukasz Feb 20 at 15:17
feedback
 notificationManager.notify(NOTIFICATION_ID, notification);//   After this add the below                                                                        //line. Then it will be cleared.
 notificationmanager.cancel(NOTIFICATION_ID);
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.