【发布时间】:2011-05-03 11:04:19
【问题描述】:
我有以下代码来生成通知。通知出现但没有声音。我有以下代码可以打开声音
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);
泰德
【问题讨论】:
标签: android audio notifications