Some apps have notifications which can´t be dismissed by swiping them away.
How can I manage such behaviour?
Use the flag,FLAG_ONGOING_EVENT to make it persistent.
FLAG_ONGOING_EVENT
Notification notification = new Notification(icon, tickerText, when); notification.flags = Notification.FLAG_ONGOING_EVENT;
Also you can check, FLAG_NO_CLEAR