Play sound in Android notifications although phone silent mode is set

Sergio Viudes picture Sergio Viudes · May 21, 2013 · Viewed 11.3k times · Source

My app is showing notifications, and when a notification is shown, a sound is played. But when my phone is on "silent mode" the notification is not played. I want to "override" volume settings, and play a sound although silent mode is set. There is a way to do it?

Answer

Abdullah picture Abdullah · May 27, 2013

Hi you can use MediaPlayer as the notification sound, by starting a Service that play's the MediaPlayer when the notification is shown.

To make the sound stop, stop the service in the BroadCastReceiver of the notification's PendingIntent.

Also, don't forget to stop the sound when the notification cancels.