android通知使用系统默认声音或者自定义声音

NotificationManager manger = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE); 
Notification notification = new Notification(); 
//自定义声音   声音文件放在ram目录下,没有此目录自己创建一个
notification.sound=Uri.parse("android.resource://" + getPackageName() + "/" +R.raw.mm); 
//使用系统默认声音用下面这条
notification.defaults=Notification.DEFAULT_SOUND;
manger.notify(1, notification);


你可能感兴趣的:(android通知使用系统默认声音或者自定义声音)