Как сделать пользовательское включение / выключение push-уведомлений в Background and Kill - PullRequest
0 голосов
/ 20 ноября 2018

Мне нужно разработать пользовательское отключение / включение push-уведомлений.Значение «on» или «off» я получаю из SharedPreferences.

В Foreground опция выключения работает хорошо, потому что она может быть установлена ​​в onMessageReceived.

Но как это сделать для Kill иФоновые режимы?

Для отправки push-уведомлений я использую Почтальон.

Мой код в FMC:

class MyFirebaseMessagingService : FirebaseMessagingService() {

private val CURRENT_PUSH = "currentPush"
private var sPref: SharedPreferences? = null

override fun onMessageReceived(remoteMessage: RemoteMessage?) {
    super.onMessageReceived(remoteMessage)

    if(loadCurrentPushNotification()) {
        if (remoteMessage!!.data != null) sendNotification(remoteMessage)
    }
}

private fun sendNotification(remoteMessage: RemoteMessage) {
    val data = remoteMessage.data

    val title = data["title"]
    val content = data["content"]

    val notificationManager = getSystemService(Context.NOTIFICATION_SERVICE) as NotificationManager
    val NOTIFICATION_CHANNEL_ID = "1234"

    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
        @SuppressLint("WrongConstant") val notificationChannel = NotificationChannel(NOTIFICATION_CHANNEL_ID,
                "SA Notification",
                NotificationManager.IMPORTANCE_MAX)

        notificationChannel.description = "SA channel notification"
        notificationChannel.enableLights(true)
        notificationChannel.lightColor = Color.RED
        notificationChannel.vibrationPattern = longArrayOf(0, 1000, 500, 1000)
        notificationChannel.enableVibration(true)

        notificationManager.createNotificationChannel(notificationChannel)
    }


    val notificationBuilder = NotificationCompat.Builder(this, NOTIFICATION_CHANNEL_ID)

    notificationBuilder.setAutoCancel(true)
            .setDefaults(Notification.DEFAULT_ALL)
            .setWhen(System.currentTimeMillis())
            .setSmallIcon(R.drawable.sa_launcher)
            .setContentTitle(title)
            .setContentText(content)
            .setContentInfo("Breaking")

    notificationManager.notify(1, notificationBuilder.build())
}

private fun loadCurrentPushNotification(): Boolean { //to read the status push notification from SharedPreferences
    sPref = getSharedPreferences("pushesOnOff", Context.MODE_PRIVATE)
    return sPref!!.getBoolean(CURRENT_PUSH, true)
}

}

1 Ответ

0 голосов
/ 20 ноября 2018

Я подозреваю, что ваша полезная нагрузка / контент push-уведомлений содержит клавишу notification, например

notification : { 'title':'This is title' }

Если это так, то вы не получите обратный вызов onMessageReceived, когдаваше приложение убито и, следовательно, ваш чек не будет работать.Чтобы предотвратить это, удалите notification из своей полезной нагрузки и отправьте только data, и он должен работать без каких-либо изменений на стороне Android.

Вы можете прочитать об этом поведении ЗДЕСЬ.

...