我正在使用rnfirebase在android中成功发送仅通知和通知数据推送通知。 我如何在跟踪时仅发送带有图片的推送通知数据 https://rnfirebase.io/docs/v5.x.x/notifications/receiving-notifications
答案 0 :(得分:4)
如果您使用firebase.notifications().displayNotification
显示通知,则可以使用Notification.BigPictureStyle,以便通过在notification.android
上调用setBigPicture来在通知中显示图像。
示例:
const notification = new firebase.notifications.Notification()
.setTitle(title)
notification.android.setBigPicture('url of your image')
firebase.notifications().displayNotification(notification)