Как преобразовать значение из SharedPrefereces в FirebaseMessagingService? - PullRequest
0 голосов
/ 18 ноября 2018

Я хочу создать пользовательское отключение / включение для push-уведомлений с помощью SharedPreferences.

Как я могу получить значение (true или false) из SharedPreferences в FirebaseMessagingService?

Оба моих вариантане работает:

  1. Чтобы получить значение непосредственно из SharedPrefences, но getPreferences не работает внутри FMS.

  2. Передать значение из действия в FirebaseMessagingService.Но как?

Может быть, есть третий вариант, который будет работать.Пожалуйста, помогите мне.

Ниже приведен мой файл кода FirebaseMessagingService

class MyFirebaseMessagingService : FirebaseMessagingService() {

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

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

        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())
}

override fun onNewToken(s: String?) {
    Log.i(C.T, "NEW_TOKEN" + s!!)
}

private fun loadCurrentPushNotification(): Boolean { //to read the status push notification from SharedPreferences
    sPref = getPreferences(Context.MODE_PRIVATE) //this is not working
    return sPref!!.getBoolean(CURRENT_PUSH, true)
}
}

1 Ответ

0 голосов
/ 18 ноября 2018
 sPref = getSharedPreferences(CONTEXT)

Не уверен, что Context.MODE_PRIVATE, поэтому вам, возможно, придется заменить контекст приложения

тогда

 return sPref!!.getBoolean(CURRENT_PUSH, true)
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...