Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

If got some issues with a notification I want to show in the notification bar. Although I set the notification flag to Notification.DEFAULT_LIGHTS & Notification.FLAG_AUTO_CANCEL the notification doesn't disappear after clicking it. Any ideas what I'm doing wrong?

NotificationManager mNotificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);

    int icon = R.drawable.icon;
    CharSequence tickerText = "Ticker Text";
    long time = System.currentTimeMillis();

    Notification notification = new Notification(icon, tickerText, time);
    notification.flags = Notification.DEFAULT_LIGHTS & Notification.FLAG_AUTO_CANCEL; 

    Context context = getApplicationContext();
    CharSequence contentTitle = "Title";
    CharSequence contentText = "Text";
    Intent notificationIntent = new Intent(this, SilentFlipConfiguration.class);
    PendingIntent contentIntent = PendingIntent.getActivity(this, 0, notificationIntent, 0);
    notification.setLatestEventInfo(context, contentTitle, contentText, contentIntent);
    mNotificationManager.notify(1,notification);
share|improve this question

2 Answers

up vote 52 down vote accepted
notification.flags = Notification.DEFAULT_LIGHTS | Notification.FLAG_AUTO_CANCEL

From the documentation:

"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"

share|improve this answer
Oh man, thanks! Next time I will read the documentation more properly. – Flo Apr 13 '10 at 19:18
1  
This is not the correct answer. Notification.DEFAULT_LIGHTS is part of the Notification.defaults class, not the Notification.flags class. See my answer for the appropriate setters. – Darcy Mar 2 '12 at 15:13
Thank you man , it helped me – Muhannad Jul 19 '12 at 11:08
notification.flags = Notification.DEFAULT_LIGHTS | Notification.FLAG_AUTO_CANCEL; this method is working thank you synic. – Ravikumar11 Apr 26 at 4:39
// Uses the default lighting scheme
notification.defaults |= Notification.DEFAULT_LIGHTS;

// Will show lights and make the notification disappear when the presses it
notification.flags |= Notification.FLAG_AUTO_CANCEL | Notification.FLAG_SHOW_LIGHTS;
share|improve this answer
I have gone through the android docs. I don't quite get when flags should be used. Why isn't just notification.defaults=notification.DEFAULT_LIGHTS enough to show the lights. Because the vibrate and sound work without the flag. – Ashwin Aug 17 '12 at 17:21

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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