Dies ist möglich, aber die Art, wie Sie es implementieren, hängt von der API-Ebene ab, für die Sie entwickeln.
Für API-Level unter 11 können Sie Notification.FLAG_NO_CLEAR einstellen.
// Create notification
Notification note = new Notification(R.drawable.your_icon, "Example notification", System.currentTimeMillis());
// Set notification message
note.setLatestEventInfo(context, "Some text", "Some more text", clickIntent);
// THIS LINE IS THE IMPORTANT ONE
// This notification will not be cleared by swiping or by pressing "Clear all"
note.flags |= Notification.FLAG_NO_CLEAR;
Für API Ebenen über 11, oder wenn die Android Support Library verwendet wird, kann man es so implementieren: Dies kann wie folgt implementiert werden
Notification noti = new Notification.Builder(mContext)
.setContentTitle("Notification title")
.setContentText("Notification content")
.setSmallIcon(R.drawable.yourIcon)
.setLargeIcon(R.drawable.yourBigIcon)
.setOngoing(true) // Again, THIS is the important line
.build();
In combitation mit Post antew, war ich genau für Notification.FLAG_ONGOING_EVENT suchen. Danke vielmals – Kelib