Я хочу добавить уведомление о тревоге по настраиваемому звуковому звонку непрерывно в Android.когда я добавляю звук по умолчанию, он непрерывно звонит, это нормально, но если я добавляю собственный звук, он звонит только один раз.
NotificationCompat.Builder builder = new NotificationCompat.Builder(context)
.setSmallIcon(R.mipmap.ic_launcher)
.setColor(ContextCompat.getColor(context, R.color.colorAccent))
.setContentTitle(context.getString(R.string.app_name))
.setContentText(alarm.getLabel())
.setTicker(alarm.getLabel())
.setSound(uri)
.setDefaults(Notification.DEFAULT_LIGHTS | Notification.DEFAULT_VIBRATE)
.setContentIntent(pIntent)
.setPriority(Notification.PRIORITY_HIGH);
manager.notify(id, builder.build());