I have a Notification which is refreshed (i.e. sent) every three seconds. I\'ve set the FLAG_ONGOING_EVENT flag and the FLAG_NO_CLEAR flag so that is always shown. The probl
You shouldn't keep sending the notification. Just use the ongoing event flag, like you already have in your code. Other notifications may come in and obscure yours, but that's just the way Android works.