Is FLAG_ONLY_ALERT_ONCE broken or wrong, or both?

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!

+5
source share
1 answer

, FLAG_ONLY_ALERT_ONCE , , API.

, , , FLAG_ONLY_ALERT_ONCE .flags.

: https://code.google.com/p/android/issues/detail?id=33003

+6

All Articles