use this to turn on the notification sound -
Settings.System.putInt(getContentResolver(),android.provider.Settings.System.NOTIFICATION_SOUND, 1);
Remember to give permission in the manifest -
<uses-permission android:name="android.permission.WRITE_SETTINGS"/>
mjosh source share