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.