如何使用rnfirebase在react-native android中发送带有图像的推送通知

Muk*_*gid 3 firebase react-native react-native-android

我正在使用rnfirebase在android中成功发送仅通知和通知数据推送通知。我如何按照https://rnfirebase.io/docs/v5.xx/notifications/receiving-notifications发送仅带有图像的推送通知

Don*_*nut 5

如果使用显示通知firebase.notifications().displayNotification,则可以使用Notification.BigPictureStyle通过在上调用setBigPicture来通知中显示图像notification.android

例:

const notification = new firebase.notifications.Notification()
    .setTitle(title)

notification.android.setBigPicture('url of your image')

firebase.notifications().displayNotification(notification)
Run Code Online (Sandbox Code Playgroud)