当GCMIntentService onMessage触发时如何播放声音文件?

时间:2012-09-30 20:26:29

标签: android android-mediaplayer google-cloud-messaging

在我的应用程序中,我正在使用GCM服务。我想在onMessage函数上发出嘟嘟声或播放一个小的mp3文件。

我的GCMIntentService是从GCMBaseIntentService扩展的。

有人可以分享代码或建议我如何实现这一目标。

由于

1 个答案:

答案 0 :(得分:6)

您可以使用:

Notification notification = new Notification(icon, title, when);
notification.flags |= Notification.FLAG_AUTO_CANCEL;
notification.defaults |= Notification.DEFAULT_SOUND; // To play default notification sound
notification.sound = Uri.parse("PATH_TO_YOUR_SOUND_FILE"); // to play custom notification sound
NotificationManager nm = (NotificationManager)   getApplicationContext().getSystemService(Context.NOTIFICATION_SERVICE);
nm.notify(System.currentTimeMillis(), notification);