【发布时间】:2023-03-04 07:59:07
【问题描述】:
我正在使用以下代码用于通知生成器,以便通过 firebase 云功能在 android 设备上接收通知。我正在成功收到通知。但是通知的上下文并不像您在图像中看到的那样完全可见。
左上角图标显示为灰色,不显示实际图标,文本未完全显示。
我应该如何纠正以上问题?
通知生成器
NotificationCompat.Builder notificationBuilder = new NotificationCompat.Builder(this, ADMIN_CHANNEL_ID)
.setSmallIcon(R.drawable.finalicon)
.setLargeIcon(largeIcon)
.setContentTitle(messageTitle)
.setContentText(messageBody)
.setAutoCancel(true)
.setSound(notificationSoundUri)
.setContentIntent(pendingIntent);
【问题讨论】:
标签: java android firebase firebase-cloud-messaging android-notifications