通知自定义声音在前台播放,但在后台应用程序时不播放
Posted
技术标签:
【中文标题】通知自定义声音在前台播放,但在后台应用程序时不播放【英文标题】:Notification custom sound play in foreground but not playing while app in background 【发布时间】:2019-03-28 12:38:53 【问题描述】:我正在为我的应用程序添加自定义声音。应用程序在前台时播放自定义铃声,但应用程序在后台时不播放自定义声音。
private void sendMyNotification(String message)
Intent intent = new Intent(this, BaseActivity.class);
intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
PendingIntent pendingIntent = PendingIntent.getActivity(this, 0, intent, PendingIntent.FLAG_ONE_SHOT);
Uri soundUri = Uri.parse("android.resource://" + getApplicationContext().getPackageName() + "/" + R.raw.ring);
NotificationCompat.Builder notificationBuilder = new NotificationCompat.Builder(this, "CH_ID")
.setSmallIcon(R.mipmap.iconfinal)
.setContentTitle(getString(R.string.app_name))
.setContentText(message)
.setAutoCancel(true)
.setSound(soundUri)
.setContentIntent(pendingIntent);
NotificationManager mNotificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.O)
if(soundUri != null)
// Changing Default mode of notification
notificationBuilder.setDefaults(Notification.DEFAULT_VIBRATE);
// Creating an Audio Attribute
AudioAttributes audioAttributes = new AudioAttributes.Builder()
.setContentType(AudioAttributes.CONTENT_TYPE_SONIFICATION)
.setUsage(AudioAttributes.USAGE_ALARM)
.build();
// Creating Channel
NotificationChannel notificationChannel = new NotificationChannel("CH_ID","Testing_Audio",NotificationManager.IMPORTANCE_HIGH);
notificationChannel.setSound(soundUri,audioAttributes);
mNotificationManager.createNotificationChannel(notificationChannel);
mNotificationManager.notify(1, notificationBuilder.build());
【问题讨论】:
我已经尝试了这么多代码。请帮我解决。 【参考方案1】:首先你需要从服务器端传递你的声音文件名。 像下面的例子:
"to": "firebase_notification_token",
"notification":
"title": "Push notification title",
"body": "Push body",
"sound": "filename", <-- point to src/res/raw/filename.mp3
您需要添加以下代码以在应用处于后台时播放自定义声音。
val channelId = getString(R.string.app_name)
val NOTIFICATION_SOUND_URI =
Uri.parse(ContentResolver.SCHEME_ANDROID_RESOURCE + "://" + BuildConfig.APPLICATION_ID + "/" + R.raw.filename)
val notificationBuilder = NotificationCompat.Builder(this, channelId)
val notification: Notification
notification = notificationBuilder.setSmallIcon(R.drawable.ic_logo_white).setTicker(getString(R.string.app_name)).setWhen(0)
.setAutoCancel(true)
.setContentTitle(getString(R.string.app_name))
.setSound(NOTIFICATION_SOUND_URI)
.setSmallIcon(R.mipmap.ic_launcher)
.setContentText(messageBody)
.build()
有关更多详细信息,请参阅此Document。 感谢Ilya Eremin 的精彩文章。
【讨论】:
以上是关于通知自定义声音在前台播放,但在后台应用程序时不播放的主要内容,如果未能解决你的问题,请参考以下文章
Swift 2.0 在后台模式下在应用程序委托中播放自定义声音