我尝试在通知中播放自定义声音。
这是我使用的代码:
NotificationCompat.Builder mBuilder = new NotificationCompat.Builder(context)
.setContentTitle("")
.setSmallIcon(R.drawable.notification_icon)
.setContentText("")
.setAutoCancel(true)
.setSound(Uri.parse("android.resource://" + context.getPackageName() + "/" + R.raw.notification_sound));
在Galaxy S3上它运行良好,但在Galaxy s6上它无法正常工作。生成通知但未播放声音。
任何人都可以告诉我问题可能是什么或者给我一个提示在哪里搜索?