0

我正在尝试在本地通知上使用自定义振动。在阅读了一下之后,我在通知通道中设置了自定义振动模式,如下所示:

 if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
        val notificationChannel =
            NotificationChannel(NotificationChannels.CHANNEL_ID, channelName, importance)

        ...

        notificationChannel.enableVibration(true)
        notificationChannel.vibrationPattern = vibrationPattern
        notificationManager.createNotificationChannel(notificationChannel)
    }

但它只振动一次,只执行前四个索引。

例如,如果我的模式如下所示:

val vibrationPattern = longArrayOf(
        0, 200, 500, 50,
        0, 200, 500, 50,
        0, 200, 500, 50,
        0, 200, 500, 50,
        0, 200, 500, 50,
        0, 200, 500, 50)

它仅在第一行振动并停止。振动等价于:

val vibrationPattern = longArrayOf(0, 200, 500, 50)

我有一个想法,将模式设置为看起来像最后一个模式,并将系统设置为重复几次,但到目前为止我还没有找到方法。

我很高兴在这里得到一些帮助。

4

1 回答 1

0

用这个 :

notification.flags = Notification.FLAG_INSISTENT

在投入之前NotificationManager.notify

于 2021-07-09T16:11:18.230 回答