Se houver algum problema com uma notificação, quero mostrar na barra de notificação. Embora eu defina o sinalizador de Notification.DEFAULT_LIGHTS & Notification.FLAG_AUTO_CANCEL
notificação, a notificação não desaparece após clicar nele. Alguma idéia do que estou fazendo de errado?
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);
mNotificationManager.notify(1,notification);
e o NotificationBuildermNotificationManager.notify(1, mBuilder.build());
? Obrigado.