如何从具有不同数据的通知中意图不同的活动?

Posted

技术标签:

【中文标题】如何从具有不同数据的通知中意图不同的活动?【英文标题】:How to intent to different activities from notification with different data? 【发布时间】:2021-02-27 20:58:47 【问题描述】:

我的应用程序中有一些不同类型的操作,它们分别使用 FCM 发送 notifications 及其数据。数据大部分是相同的,所以我只对数据模型类使用一个 sendNotification 方法。我成功发送notifications,但我很困惑为他们设置意图操作,所以他们总是让我只ChatActivity。这些通知是来自 ChatActivity 的消息通知、来自个人资料活动的好友请求通知和来自 CommentActivity 的评论通知。

private fun sendNotification(mRemoteMessage: RemoteMessage) 

        val user = mRemoteMessage.data["user"]
        val icon = mRemoteMessage.data["icon"]
        val title= mRemoteMessage.data["title"]
        val body = mRemoteMessage.data["body"]

        val notification = mRemoteMessage.notification
        val j = user!!.replace("[\\D]".toRegex(), "").toInt()
        val intent = Intent(this, ChatActivity::class.java)

        val bundle = Bundle()
        bundle.putString("userId", user)
        intent.putExtras(bundle)
        intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP)

        val pendingIntent = PendingIntent.getActivity(this, j, intent, PendingIntent.FLAG_ONE_SHOT)

        val defaultSound = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION)

        val builder : NotificationCompat.Builder = NotificationCompat.Builder(this)
                .setSmallIcon(icon!!.toInt())
                .setContentTitle(title)
                .setContentText(body)
                .setAutoCancel(true)
                .setSound(defaultSound)
                .setContentIntent(pendingIntent)

        val noti = getSystemService(Context.NOTIFICATION_SERVICE) as NotificationManager

        var i = 0

        if (j > 0)
            i=j
        
        noti.notify(i, builder.build())

    

【问题讨论】:

【参考方案1】:

简单的解决方案是添加一个通知类型,例如:new_message, add_friend,.. 因此,使用该类型,您可以确定您想要传递的意图。 示例:

if (type == "new_message")  
 // let's new an intent of chat activity here
 else if (type == "add_friend") 
// let's new an intent of friend activity

然后像这样将意图放入待处理的意图中: val pendingIntent = PendingIntent.getActivity(this, j, intent, PendingIntent.FLAG_ONE_SHOT)

【讨论】:

非常感谢您,先生,您是天才?

以上是关于如何从具有不同数据的通知中意图不同的活动?的主要内容,如果未能解决你的问题,请参考以下文章

使用具有不同活动和最终电子邮件意图的多个意图

如何将 PendingIntent 用于两个不同的活动?

从解析接收通知时如何打开不同的活动

具有相同意图的推送通知打开 Activity

从服务启动活动

在不同的活动中将数据从 ListView 传递到 TextView,Android