我正在根据事件创建通知。通知代码确实有效 我只是发出一声嘟嘟声而不是连续响。 我已将通知标志设置为“坚持”。但我仍然没有连续的声音。 我搜索了很多,但无法得到解决方案。 这是我的代码
**notification.flags = notification.flags |Notification.FLAG_INSISTENT;
notification.sound = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_ALARM);
notification.vibrate = new long[]{1000,1000,1000,1000,1000};
NotificationManager manager =
(NotificationManager)context.getSystemService(context.NOTIFICATION_SERVICE);
manager.notify(1, notification);**
我想知道我的代码是否有任何问题。
提前致谢
答案 0 :(得分:0)
重复播放所选的mp3文件,直到用户打开通知....!
notification.sound = Uri.parse("http://www.robtowns.com/music/blind_willie.mp3");
notification.flags |= Notification.FLAG_INSISTENT;
它解决了我的问题..我希望它也可以解决你的问题。 http://developer.android.com/guide/topics/ui/notifiers/notifications.html">create Notification