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
It's been some time since I've done code for Android, but if I remember correctly, whenever you call NotificationManager.notify(), it's because you want to alert the user by having an icon move or flash. However, there are ways of modifying the actual notifications you're sending.
You can also call .cancel() on it if that helps.
Here's the Android API documentation for help, although you've probably already seen them:
Notification
NotificationManager
Hope that helped!