2012-09-30 23 views

回答

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);