Android上如何用react-native-push-notification获取所有通知,相当于PushNotificationIOS getDeliveredNotifications?

问题描述 投票:0回答:3

当应用程序处于后台或关闭时,收到的推送通知会转到顶部栏(通知中心)。
稍后点击一个通知将打开应用程序并调用该特定消息的 onNotification 回调。 在 iOS 中,getDelievedNotifications 返回所有待处理通知的数组。
在安卓中如何实现呢?

谢谢。

(编辑:我正在使用https://github.com/zo0r/react-native-push-notification

android react-native notifications google-cloud-messaging react-native-push-notification
3个回答
0
投票

您可以使用这个库 - https://github.com/zo0r/react-native-push-notification

奇怪的是,这个库支持 Android 上的重复通知,而 React-native 库支持 IOS 设备上的重复通知。


0
投票

我发现在 Android 中执行此操作的唯一方法是在本地保留传入通知,以便稍后检查是否有任何待处理的通知。


0
投票

您可以使用

getDisplayedNotifications
使用 notifee 库

https://notifee.app/react-native/reference/getdisplayednotifications#notifee

© www.soinside.com 2019 - 2024. All rights reserved.