다음과 같은 경우에 onMessageReceived (RemoteMessage remoteMessage) 메소드가 호출됩니다.
{
"to": "device token list",
"notification": {
"body": "Body of Your Notification",
"title": "Title of Your Notification"
},
"data": {
"body": "Body of Your Notification in Data",
"title": "Title of Your Notification in Title",
"key_1": "Value for key_1",
"image_url": "www.abc.com/xyz.jpeg",
"key_2": "Value for key_2"
}
}
- 포 그라운드의 앱 :
onMessageReceived (RemoteMessage remoteMessage)가 호출되면 알림 표시 줄에 LargeIcon 및 BigPicture가 표시됩니다. 알림 과 데이터 블록 모두에서 내용을 읽을 수 있습니다
- 백그라운드의 앱 :
onMessageReceived (RemoteMessage remoteMessage) 가 호출되지 않으면 시스템 트레이는 메시지를 수신하고 알림 블록 에서 본문과 제목을 읽으며 알림 표시 줄에 기본 메시지와 제목을 표시합니다.
이 경우 json에서 알림 블록을 제거하십시오.
{
"to": "device token list",
"data": {
"body": "Body of Your Notification in Data",
"title": "Title of Your Notification in Title",
"key_1": "Value for key_1",
"image_url": "www.abc.com/xyz.jpeg",
"key_2": "Value for key_2"
}
}
onMessageReceived () 호출을위한 솔루션
- 포 그라운드의 앱 :
onMessageReceived (RemoteMessage remoteMessage)가 호출되면 알림 표시 줄에 LargeIcon 및 BigPicture가 표시됩니다. 알림 과 데이터 블록 모두에서 내용을 읽을 수 있습니다
- 백그라운드의 앱 :
onMessageReceived (RemoteMessage remoteMessage)가 호출되면 알림 키가 응답에 없기 때문에 시스템 트레이가 메시지를 수신하지 못합니다 . 알림 표시 줄에 LargeIcon 및 BigPicture를 표시합니다.
암호
private void sendNotification(Bitmap bitmap, String title, String
message, PendingIntent resultPendingIntent) {
NotificationCompat.BigPictureStyle style = new NotificationCompat.BigPictureStyle();
style.bigPicture(bitmap);
Uri defaultSound = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);
NotificationManager notificationManager = (NotificationManager) mContext.getSystemService(Context.NOTIFICATION_SERVICE);
String NOTIFICATION_CHANNEL_ID = mContext.getString(R.string.default_notification_channel_id);
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
NotificationChannel notificationChannel = new NotificationChannel(NOTIFICATION_CHANNEL_ID, "channel_name", NotificationManager.IMPORTANCE_HIGH);
notificationManager.createNotificationChannel(notificationChannel);
}
Bitmap iconLarge = BitmapFactory.decodeResource(mContext.getResources(),
R.drawable.mdmlogo);
NotificationCompat.Builder notificationBuilder = new NotificationCompat.Builder(mContext, NOTIFICATION_CHANNEL_ID)
.setSmallIcon(R.drawable.mdmlogo)
.setContentTitle(title)
.setAutoCancel(true)
.setSound(defaultSound)
.setContentText(message)
.setContentIntent(resultPendingIntent)
.setStyle(style)
.setLargeIcon(iconLarge)
.setWhen(System.currentTimeMillis())
.setPriority(Notification.PRIORITY_MAX)
.setChannelId(NOTIFICATION_CHANNEL_ID);
notificationManager.notify(1, notificationBuilder.build());
}
참조 링크 :
https://firebase.google.com/docs/cloud-messaging/android/receive