无法创建多个NotificationCompat.builders

发布于 2025-02-11 19:59:30 字数 3234 浏览 0 评论 0原文

在我们的Android应用中,我们正在尝试发送不同的两种通知,该通知持续更长的时间并使用.setfullscreenintent参数,而一个无setfullscreenintent。因此,我们创建了两个Notification Compat Builder Vide代码,如本文所述:

NotificationCompat.Builder notificationBuilder = new NotificationCompat.Builder(this, MainActivity.asw_fcm_channel)
                    .setSmallIcon(R.mipmap.ic_launcher)
                    .setContentTitle(title)
                    .setContentText(message)
                    .setDefaults(Notification.DEFAULT_ALL)
                    .setPriority(NotificationCompat.PRIORITY_HIGH)
                    .setTimeoutAfter(60000)
                    .setCategory(NotificationCompat.CATEGORY_CALL)
                    .setSound(RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION))
                    .setAutoCancel(true)
                    .addAction(action)
                    .addAction(action1)
                    .setVisibility(NotificationCompat.VISIBILITY_PUBLIC)
                    .setFullScreenIntent(pendingIntent2, true)
                    .setVibrate(new long[]{100, 200, 300, 400, 500, 400, 300, 200, 400});

        NotificationCompat.Builder notificationBuilder1 = new NotificationCompat.Builder(this, MainActivity.asw_fcm_channel)
                .setSmallIcon(R.mipmap.ic_launcher)
                .setContentTitle(title)
                .setContentText(message)
                .setDefaults(Notification.DEFAULT_ALL)
                .setPriority(NotificationCompat.PRIORITY_HIGH)
                .setTimeoutAfter(60000)
                .setCategory(NotificationCompat.CATEGORY_CALL)
                .setSound(RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION))
                .setAutoCancel(true)
                .addAction(action)
                .addAction(action1)
                .setVisibility(NotificationCompat.VISIBILITY_PUBLIC)
                .setVibrate(new long[]{100, 200, 300, 400, 500, 400, 300, 200, 400});

现在在Firebase Messaging Post Process中用于发送通知,我们有一个称为“ TAG”的参数。

$fcmUrl = 'https://fcm.googleapis.com/fcm/send';

 $token=$to;

     $data = [
            'title' =>$title,
            'body' =>$msg,
            'image'=>'https://mbracecloud.com/appln_enterprise/images_user/file_2022_37_46_2372744327498576956.jpg',
            'uri'=>"",
            'tag'=>'View Message'
            ];

现在基于该参数,我们尝试使用标签:“查看消息”作为“ if”来使用NotificationBuilder模板和TAG:“ start”用于使用上面指定的NotificationBuilder1模板。但是它只是不起作用,

if (tag=="View Message") {
                Notification noti = notificationBuilder.build();
                noti.flags = Notification.DEFAULT_LIGHTS | Notification.DEFAULT_SOUND | Notification.DEFAULT_VIBRATE | Notification.FLAG_AUTO_CANCEL;
                notificationManager.notify(notification_id, notificationBuilder.build());
            }

        if (tag=="Start") {
            Notification noti = notificationBuilder1.build();
            noti.flags = Notification.DEFAULT_LIGHTS | Notification.DEFAULT_SOUND | Notification.DEFAULT_VIBRATE | Notification.FLAG_AUTO_CANCEL;
            notificationManager.notify(notification_id, notificationBuilder1.build());
        }

如果您指导我们是如何做到这一点的,那将不胜感激

In our android app, we are trying to send different two types of notifications, one that stays for a longer time and uses .setFullScreenIntent parameter and one that is without setFullscreenIntent. So we created two notification compat builder vide code as given hereunder:

NotificationCompat.Builder notificationBuilder = new NotificationCompat.Builder(this, MainActivity.asw_fcm_channel)
                    .setSmallIcon(R.mipmap.ic_launcher)
                    .setContentTitle(title)
                    .setContentText(message)
                    .setDefaults(Notification.DEFAULT_ALL)
                    .setPriority(NotificationCompat.PRIORITY_HIGH)
                    .setTimeoutAfter(60000)
                    .setCategory(NotificationCompat.CATEGORY_CALL)
                    .setSound(RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION))
                    .setAutoCancel(true)
                    .addAction(action)
                    .addAction(action1)
                    .setVisibility(NotificationCompat.VISIBILITY_PUBLIC)
                    .setFullScreenIntent(pendingIntent2, true)
                    .setVibrate(new long[]{100, 200, 300, 400, 500, 400, 300, 200, 400});

        NotificationCompat.Builder notificationBuilder1 = new NotificationCompat.Builder(this, MainActivity.asw_fcm_channel)
                .setSmallIcon(R.mipmap.ic_launcher)
                .setContentTitle(title)
                .setContentText(message)
                .setDefaults(Notification.DEFAULT_ALL)
                .setPriority(NotificationCompat.PRIORITY_HIGH)
                .setTimeoutAfter(60000)
                .setCategory(NotificationCompat.CATEGORY_CALL)
                .setSound(RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION))
                .setAutoCancel(true)
                .addAction(action)
                .addAction(action1)
                .setVisibility(NotificationCompat.VISIBILITY_PUBLIC)
                .setVibrate(new long[]{100, 200, 300, 400, 500, 400, 300, 200, 400});

And now in Firebase messaging post process that is used to send the notification, we have a parameter called "tag".

$fcmUrl = 'https://fcm.googleapis.com/fcm/send';

 $token=$to;

     $data = [
            'title' =>$title,
            'body' =>$msg,
            'image'=>'https://mbracecloud.com/appln_enterprise/images_user/file_2022_37_46_2372744327498576956.jpg',
            'uri'=>"",
            'tag'=>'View Message'
            ];

Now based on that parameter, we tried to use tag:"View Message" as an "if" to use notificationBuilder template and tag:"Start" for using notificationBuilder1 template as specified above. But its just not working

if (tag=="View Message") {
                Notification noti = notificationBuilder.build();
                noti.flags = Notification.DEFAULT_LIGHTS | Notification.DEFAULT_SOUND | Notification.DEFAULT_VIBRATE | Notification.FLAG_AUTO_CANCEL;
                notificationManager.notify(notification_id, notificationBuilder.build());
            }

        if (tag=="Start") {
            Notification noti = notificationBuilder1.build();
            noti.flags = Notification.DEFAULT_LIGHTS | Notification.DEFAULT_SOUND | Notification.DEFAULT_VIBRATE | Notification.FLAG_AUTO_CANCEL;
            notificationManager.notify(notification_id, notificationBuilder1.build());
        }

Shall appreciate should you guide us as how to do this

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文