繁体   English   中英

如何区分通知中单击了哪个操作?

[英]How can I differentiate which action has been clicked in a notification?

我正在制作和 Android 应用程序,每天多次发送带有操作的通知,问题是此时用户单击哪个操作并不重要,它总是将第一个意图发送到广播接收器。

我的代码:

fun sendNotification(title: String, content: String, tomaID: Int){
    val takeShotIntent = Intent(context, TreatmentBroadcastReceiver::class.java).apply {
        putExtra("TomaID", tomaID)
        putExtra("AcctionToma", 0)

    }
    val takeShotPendingIntent = PendingIntent.getBroadcast(context, NOTIFICACION_ID, takeShotIntent, PendingIntent.FLAG_ONE_SHOT)

    val skipShotIntent = Intent(context, TreatmentBroadcastReceiver::class.java).apply {
        putExtra("TomaID", tomaID)
        putExtra("AcctionToma", 1)

    }
    val skipShotPendingIntent = PendingIntent.getBroadcast(context, NOTIFICACION_ID, skipShotIntent, PendingIntent.FLAG_ONE_SHOT)

    val postPoneShotIntent = Intent(context, TreatmentBroadcastReceiver::class.java).apply {
        putExtra("TomaID", tomaID)
        putExtra("AcctionToma", 2)
    }
    val postPoneShotPendingIntent = PendingIntent.getBroadcast(context, NOTIFICACION_ID, postPoneShotIntent, PendingIntent.FLAG_ONE_SHOT)


    val notifyBuilder = getNotificationBuilder(title,content)
    notifyBuilder.addAction(R.drawable.ic_capsula, context.getString(R.string.tomar), takeShotPendingIntent)
    notifyBuilder.addAction(R.drawable.ic_capsula,context.getString(R.string.saltar), skipShotPendingIntent)
    notifyBuilder.addAction(R.drawable.ic_capsula,context.getString(R.string.posponer), postPoneShotPendingIntent)
    mNotifyManager = context.getSystemService(NOTIFICATION_SERVICE) as NotificationManager
    mNotifyManager.notify(NOTIFICACION_ID, notifyBuilder.build())
}

和广播接收器类:

class TreatmentBroadcastReceiver : BroadcastReceiver() {

    override fun onReceive(context: Context, intent: Intent) {
        val idToma = intent.getIntExtra("TomaID", -1)
        val acctionToma = intent.getIntExtra("AcctionToma", -1)
        Log.d("EstasReciviendo", idToma.toString() + " " + acctionToma)

    }
}

我需要发送一个 ID 和一个数字,代表应用程序应根据用户选择执行的操作。 ID 发送没有问题,但正如我上面提到的,无论点击哪个操作,onReceive 方法中的“AccionToma”始终为 0。

我的 logcat 输出:

2019-07-21 17:09:10.993 20286-20286/com.kps.spart.moskimedicationreminder D/EstasReciviendo: 1049 0

那么,如何区分单击了哪个操作?

为您的三个PendingIntent.getBroadcast()调用使用不同的唯一值,而不是NOTIFICACION_ID

就目前而言,您的第二个PendingIntent.getBroadcast()调用替换了第一个调用,第三个PendingIntent.getBroadcast()调用替换了第二个调用。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM