Notification 加入本地的声音文件

有时候需要在Notification中加入声音,可在res/raw中放入我们的声音文件,然后通过下面的方式读取:


NotificationManager manger = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE); 

Notification notification = new Notification(); 
notification.sound=Uri.parse("android.resource://" + getPackageName() + "/" +R.raw.mm); 
manger.notify(1, notification);

你可能感兴趣的:(Android)