From the Android documentation for Notification :
FLAG_ONLY_ALERT_ONCE
A bit for bitwise input in the flag field that must be set if you want sound and / or vibration to be played every time a notification is sent, even if it has not been canceled before.
Doesn't this description look like what it should be? Also, if I want the notification to be notified every time, should I OR on the flags field or not? I also see conflicting statements if this "works" ... whatever that means!
source
share