Android通知:使用电子邮件声音和提醒声音,而不是默认的(短信?)声音

Android通知:使用电子邮件声音和提醒声音,而不是默认的(短信?)声音,android,audio,notifications,Android,Audio,Notifications,我正在使用模拟器,所以我不知道它会发出什么声音,但据一位客户(不懂技术)说,它发出的声音与短信一样 这是我正在使用的代码 Notification notification = new Notification(R.drawable.stat_notify_email_generic, "New Email", timeInMillis); if (soundAndVibrate) notification.defaults |= Notification.DEFAULT_SOUND |

我正在使用模拟器,所以我不知道它会发出什么声音,但据一位客户(不懂技术)说,它发出的声音与短信一样

这是我正在使用的代码

Notification notification = new Notification(R.drawable.stat_notify_email_generic, "New Email", timeInMillis);
if (soundAndVibrate)
    notification.defaults |= Notification.DEFAULT_SOUND | Notification.DEFAULT_VIBRATE;
notification.defaults |= Notification.DEFAULT_LIGHTS;
notification.flags |= Notification.FLAG_AUTO_CANCEL;
Intent notificationIntent = new Intent(Intent.ACTION_MAIN, Uri.EMPTY, context, MyActivityFoo.class).putExtra(......
PendingIntent contentIntent = PendingIntent.getActivity(context, 0, notificationIntent, 0);
notification.setLatestEventInfo(context, contentTitle, contentText, contentIntent);
manager.notify(1, notification);
我将如何更改它以使用新的电子邮件声音?因为它实际上是一个电子邮件通知。另外,我希望类似的说明能够发出与日历闹钟/提醒相同的声音。

我认为“文本消息”声音只是默认的“通知”声音。电子邮件和日历声音是只有这些应用程序才知道的自定义声音。