我无法在通知中添加自定义声音

时间:2019-06-07 18:44:41

标签: android audio kotlin

我正在通知我的应用,但我无法自定义声音,我尝试了很多方式,但我注意到在Android 9中无法正常工作,但在Android 7中可以正常工作

我尝试过 .setSound(Uri.parse(“ android.resource://” + context.packageName +“ /” + R.raw.seatbelt))

    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
        val mChannel = NotificationChannel(channelId, channelName, importance)
        notificationManager.createNotificationChannel(mChannel)
    }



    val mBuilder = NotificationCompat.Builder(context, channelId)
        .setSmallIcon(R.drawable.ic_app_icon)
        .setContentTitle(body.getString("title"))
        .setContentText(body.getString("alert"))
        .setAutoCancel(true)
        .setStyle(
            NotificationCompat.BigTextStyle()
                .bigText(body.getString("alert")))
        .setPriority(NotificationCompat.PRIORITY_DEFAULT)

        val notification = Uri.parse("android.resource://"+context.packageName+"/raw/mysong.mp3")
        val r = RingtoneManager.getRingtone(getApplicationContext(), notification)
        r.play()

我有一个带android 9的Samsung Galaxy s8,其结果是始终播放默认的声音通知,但是我在装有android 7的Motorola上尝试了它,然后播放了声音

1 个答案:

答案 0 :(得分:1)

您需要使用channel来向AudioAttributes添加声音

    AudioAttributes audioAttributes = new AudioAttributes.Builder()
            .setContentType(AudioAttributes.CONTENT_TYPE_SONIFICATION)
            .setUsage(AudioAttributes.USAGE_NOTIFICATION)
            .build();

并像这样将其添加到您的频道中:

    mChannel.setSound(soundUri,audioAttributes);

您可能需要卸载应用程序才能更改声音设置,请查看link以获得更多详细信息。