15

在具有最新MI UI 10.0 和 Oreo的MI Note 5 Pro中,所以当我尝试发送推送通知时默认声音是禁用的,所以当我为此创建频道时,我无法以编程方式启用声音

在其他 Oreo 设备中,通知声音即将到来,但在 MI 中,自定义 Oreo OS 声音默认为禁用

让我展示我的通知代码

    var intent = Intent(mContext, HomeActivity::class.java)
    intent.putExtra(Constants.EXTRA_FROM_NOTIFICATION, true)
    var pendingIntent = PendingIntent.getActivity(mContext, 0, intent, PendingIntent.FLAG_UPDATE_CURRENT)

    var uri = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION)

    var mBuilder = NotificationCompat.Builder(mContext, NOTIFICATION_CHANNEL_ID)
            .setContentTitle(mContext.getString(R.string.app_name))
            .setContentText(mFirstContactName + " : " + mListChatWindow[0].message)
            .setPriority(if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) NotificationManager.IMPORTANCE_HIGH else Notification.PRIORITY_HIGH)
            .setContentIntent(pendingIntent)
            .setSound(uri)
            .setSmallIcon(R.drawable.ic_app_icon)
            .setColor(ContextCompat.getColor(mContext, R.color.colorPrimary))
            .setVibrate(longArrayOf(0, 100, 1000, 300))
            .setAutoCancel(true)

    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
        var channel = NotificationChannel(NOTIFICATION_CHANNEL_ID, "NOTIFICATION_CHANNEL_NAME", NotificationManager.IMPORTANCE_HIGH)
        channel.description = "NOTIFICATION_DESCRIPTION"
        channel.lightColor = Color.LTGRAY
        channel.enableVibration(true)
        channel.lockscreenVisibility = Notification.VISIBILITY_PUBLIC

        val attributes = AudioAttributes.Builder().setUsage(AudioAttributes.USAGE_NOTIFICATION).build()
        channel.setSound(uri, attributes)
        var notificationManager = mContext.getSystemService(Context.NOTIFICATION_SERVICE) as NotificationManager
        notificationManager.createNotificationChannel(channel)
    }

    var notificationManager = NotificationManagerCompat.from(mContext)
    notificationManager.notify(NOTIFICATION_CHAT_ID, mBuilder.build())

我也在 cannel 中设置了channel.setSound(uri, attributes)但声音不来

这是通知频道的屏幕截图,看到声音图标被禁用,如何启用?

请帮忙

在此处输入图像描述

4

3 回答 3

3

我在使用 oreo 的 MIUI Global 10.1 中遇到了类似的问题,但这只是在使用自定义声音时,而不是像你的默认声音。无论如何,让我解释一下我如何解决它,并希望它可以解决你的问题。

首先要考虑的是在哪里执行通知通道的注册。它必须在 Application.onCreate 中执行,以便在通知到达之前创建通道。我是在 onMessageReceived 中做的。

其次,正如我所说的它适用于默认通知声音而不是自定义通知声音,我在创建通知通道时插入了下面的代码并且它有效。

NotificationCompat.Builder notificationBuilder = new NotificationCompat.Builder(this,CHANNEL_ID);

    if (Build.VERSION.SDK_INT>= Build.VERSION_CODES.O) {
        notificationBuilder.setDefaults(Notification.DEFAULT_SOUND); // This line did the magic for me.

        Uri sound = Uri.parse("android.resource://" + getPackageName() + "/" + R.raw.sound_notification_plucky);
        AudioAttributes audioAttributes = new AudioAttributes.Builder()
                .setUsage(AudioAttributes.USAGE_NOTIFICATION)
                .build();

        CharSequence name = "MyChild";
        String description = "All MyChild messages";
        int importance = NotificationManager.IMPORTANCE_HIGH;

        NotificationChannel notificationChannel = new NotificationChannel(CHANNEL_ID, name, importance);
        notificationChannel.setDescription(description);
        notificationChannel.enableVibration(true);
        notificationChannel.setSound(sound, audioAttributes);

        NotificationManager notificationManager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
        notificationManager.createNotificationChannel(notificationChannel);
    }
于 2019-05-28T00:50:24.103 回答
2

我面临同样的问题,但仍然没有得到令人满意的答案,但在那之前我们可以像这样解决它:

final Uri NOTIFICATION_SOUND = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);
RingtoneManager.getRingtone(context, NOTIFICATION_SOUND).play();

你需要在之后调用它:

notificationManager.notify(notificationId, notification);

这样,即使您的应用程序关闭了“允许声音”,您也将始终播放声音,并且播放的声音将来自系统而不是媒体(通知中的预期行为)。

为了避免同时播放两种声音(对于没有此问题的设备),您可以像这样关闭声音:

1- 对于生成器:

notificationBuilder.setContentTitle(title)
    .set.....
    .set.....
    .setSound(null);

2- 对于频道:

channel.setSound(null, null);
于 2020-05-31T00:52:03.997 回答
0
mBuilder.setPriority(NotificationCompat.PRIORITY_HIGH)

这行代码对我有用,它启用了所有通知设置。

于 2020-07-25T17:56:49.203 回答