Wenn Sie Probleme mit einer Benachrichtigung haben, möchte ich diese in der Benachrichtigungsleiste anzeigen. Obwohl ich das Benachrichtigungsflag auf Notification.DEFAULT_LIGHTS & Notification.FLAG_AUTO_CANCEL
die Benachrichtigung gesetzt habe, verschwindet es nicht, nachdem ich darauf geklickt habe. Irgendwelche Ideen, was ich falsch mache?
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);
und NotificationBuildermNotificationManager.notify(1, mBuilder.build());
? Vielen Dank.notificationBuilder.setAutoCancel(true);
arbeitet nicht für mich. Soll ich meine anstehende Absicht vorlegen?Aus der Dokumentation:
quelle
Notification.DEFAULT_LIGHTS
ist Teil derNotification.defaults
Klasse, nicht derNotification.flags
Klasse. Siehe meine Antwort für die entsprechenden Setter.quelle
2016 Zustand: Sie können verwenden
mBuilder.setAutoCancel(true)
.Quelle: https://developer.android.com/reference/android/app/Notification.Builder.html
quelle
Die Antwort für mich war zu verwenden
mBuilder.setOngoing(false)
quelle
Verwenden Sie das Flag Notification.FLAG_AUTO_CANCEL
und um die App zu starten:
quelle
Entfernen Sie eine Benachrichtigung
Benachrichtigungen bleiben sichtbar, bis eine der folgenden Aktionen ausgeführt wird:
Weitere Informationen finden Sie unter: https://developer.android.com/training/notify-user/build-notification?hl=de
quelle