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