当前位置:  开发笔记 > 编程语言 > 正文

android无法通过通知播放声音

如何解决《android无法通过通知播放声音》经验,为你挑选了1个好方法。

我有以下代码来生成通知.通知出现但没有声音.我有以下代码来打开声音

notification.defaults |= Notification.DEFAULT_SOUND;

代码清单

    NotificationManager manager = (NotificationManager)     gContext.getSystemService(Context.NOTIFICATION_SERVICE);

    Notification notification = new Notification(R.drawable.icon, "Teeth Alert", System.currentTimeMillis());
    PendingIntent contentIntent = PendingIntent.getActivity(gContext, 0, new Intent(gContext, NotifyMessage.class), 0);
    notification.setLatestEventInfo(gContext, "Your teeth appoitmernt:", "Date:", contentIntent);

    notification.defaults |= Notification.DEFAULT_SOUND;
    notification.defaults |= Notification.DEFAULT_LIGHTS;

    manager.notify(1,notification);
    cDates.SetAlarm(i);

摊晒



1> rekaszeru..:

你应该尝试设置

notification.defaults = Notification.DEFAULT_SOUND | Notification.DEFAULT_LIGHTS;

或明确设置:

notification.sound = 
    RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);

推荐阅读
小妖694_807
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有