3

通知をプッシュするFCMを実装していますが、通知の内容が大きいときに通知を拡大しようとしています。アプリはここで背景アプリがバックグラウンドのときにFCM通知が展開されない

にあるときには実装できない
は私のコードは、アプリがバックグラウンドで動作しているとき、どのように私はそれを拡張することができます

PendingIntent pendingIntent = PendingIntent.getActivity(this, 0, intent, PendingIntent.FLAG_ONE_SHOT); 
    Uri defaultSoundUri = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION); 

    NotificationCompat.Builder notificationBuilder = new NotificationCompat.Builder(this) 
      .setSmallIcon(R.drawable.ic_stat_new_logo).setTicker(title).setWhen(0) 
      .setLargeIcon(BitmapFactory.decodeResource(getResources(), R.drawable.ic_stat_new_logo)) 
      .setContentTitle("SuezApp") 
      .setContentText(remoteMessage.getNotification().getBody()) 
      .setAutoCancel(true) 
      .setStyle(new NotificationCompat.BigTextStyle().bigText(title)) 
      .setStyle(new NotificationCompat.BigTextStyle().bigText(remoteMessage.getNotification().getBody())) 
      .setPriority(Notification.PRIORITY_MAX) 
      .setSound(defaultSoundUri) 
      .setContentIntent(pendingIntent); 
    final NotificationCompat.BigTextStyle style = new NotificationCompat.BigTextStyle(notificationBuilder); 
    NotificationManager notificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE); 
    notificationManager.notify(0, notificationBuilder.build()); 

のですか? Firebase 9.4 release notes当たり

答えて

0

拡張ジェスチャーは、現在の通知の本体は、単一の行を超えた場合に、複数の行を表示するには、AndroidのUIを可能にする、メッセージのために支持されています。

依存関係としてFirebase 9.4以上を使用していることを確認してください。

+0

ありがとうございました –

関連する問題