在 Android 设备上分组 Firebase FCM

Group Firebase FCM on Android Device(在 Android 设备上分组 Firebase FCM)
本文介绍了在 Android 设备上分组 Firebase FCM的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试使用 Firebase 控制台发送云消息.我正在为 android 设备执行此操作.

I am trying to send cloud messages using the Firebase console. I am doing this for android device.

推送通知与随其发送的数据一起显示在设备上.

The push notifications do appear on the device fine along with the data sent with it.

但每个通知都会单独显示.这意味着如果我发送 3 个通知,通知栏中会显示三个项目.

But each notification shows up on its own. Meaning if I send 3 notifications three items show up in the notification bar.

我想要实现的是将所有通知分组在一个标题下.正如您在 WhatsApp 或 Facebook 中所做的那样.

What I want to achieve is that all the notifications to be grouped under one heading. As you have in WhatsApp or Facebook.

如何使用 Firebase 控制台实现这一点?

How can this be achieved using the Firebase Console?

推荐答案

分组通知,你的意思是 stacking 还是 捆绑通知?

By grouping the notification, do you mean stacking or bundling notifications?

如果是这样,这实际上取决于您在客户端应用程序中处理通知的方式.您只需使用 setGroup() 将所有通知添加到单个组,然后调用 notify() 来让 NotificationManager 进行更改.

If so, this is actually depends on how you handle notifications in your client app. You simply have to make use of the setGroup() to add all your notifications to a single group then calling notify() to let the NotificationManager of the changes.

这个将每个通知添加到组 文档很漂亮很多总结了这一切.

This Add Each Notification to a Group documentation pretty much sums it all up.

这篇关于在 Android 设备上分组 Firebase FCM的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

How to target newer versions in .gitlab-ci.yml using auto devops (java 11 instead of 8 and Android 31 instead of 29)(如何在.gitlab-ci.yml中使用自动开发工具(Java 11而不是8,Android 31而不是29)瞄准较新的版本)
Android + coreLibraryDesugaring: which Java 11 APIs can I expect to work?(Android+core LibraryDesugering:我可以期待哪些Java 11API能够工作?)
How to render something in an if statement React Native(如何在If语句中呈现某些内容Reaction Native)
How can I sync two flatList scroll position in react native(如何在本机Reaction中同步两个平面列表滚动位置)
Using Firebase Firestore in offline only mode(在仅脱机模式下使用Firebase FiRestore)
Crash on Google Play Pre-Launch Report: java.lang.NoSuchMethodError(Google Play发布前崩溃报告:java.lang.NoSuchMethodError)