How can I set sound for notification for my android application. In my application notification will be shown after 30 seconds. I want to give options for this alerts such as silent mode, vibration mode and an option to select from the available tones from the device. I am using the preference screen to show the settings menu. I want to to set the notification ring type application specific. Is there any way to establish this..

link|improve this question

Hi dijo....even am facing the same issue....did u find any solution – Sanjai Palliyil Feb 28 '11 at 11:22
feedback

1 Answer

up vote 0 down vote accepted

http://developer.android.com/reference/android/app/Notification.Builder.html#setSound(android.net.Uri)

Notification.Builder.setSound();

Use a ringtone preference in the preference activity to get the URI of the selected sound.

link|improve this answer
Thank you Marcus. However when I try to get the id of the ringtone by setting an onclick listener for the ringtone preference, I m getting the following errors: 03-01 10:49:59.021: DEBUG/MediaPlayer(308): Couldn't open file on client side, trying server side 03-01 10:49:59.031: ERROR/MediaPlayerService(34): Couldn't open fd for content://settings/system/notification_sound 03-01 10:49:59.031: ERROR/MediaPlayer(308): Unable to to create media player 03-01 10:49:59.041: ERROR/RingtoneManager(308): Failed to open ringtone content://settings/system/notification_sound – Dijo David Mar 1 '11 at 5:29
notification.sound = Uri.withAppendedPath(Audio.Media.INTERNAL_CONTENT_URI, ringtoneId); – Dijo David Mar 14 '11 at 5:54
1  
You can also reference sound resources you bundle with your application: notification.sound = Uri.parse("android.resource://com.company.package/" + soundResourceId); – Jerry Brady Apr 15 '11 at 14:22
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.