Firebase消息 - 在后台应用时创建单挑显示

时间:2016-09-25 00:03:46

标签: android android-notifications firebase-cloud-messaging heads-up-notifications

使用FCM,当应用程序处于后台或未运行时,我会在系统托盘中收到推送通知。当应用程序位于前台时,我可以覆盖onMessageReceived并使用NotificationCompat创建自己的抬头通知。

当我的应用程序在后台运行或未运行时,有没有办法创建抬头通知?

由于

编辑:此处参考的是我通过curl使用的消息有效负载https://fcm.googleapis.com/fcm/send

{
  "to":"push-token",
    "content_available": true,
    "priority": "high",
    "notification": {
      "title": "Test",
      "body": "Mary sent you a message!",
      "sound": "default"
    },
    "data": {
      "message": "Mary sent you a Message!",
      "notificationKey":"userID/notification_type",
      "priority": "high",
      "sound": "default"
    }
}

2 个答案:

答案 0 :(得分:6)

我找到了解决方案: 我只是从我们的本地服务器发送到firebase服务器的json中删除了通知标记,然后我在MyFirebaseMessagingService:onMessageReceived()方法中生成回调。在这个方法中,我使用NotificationCompat.Builder类生成本地通知。这是android的代码:

private void sendNotification(RemoteMessage remoteMessage) {
        Intent intent = new Intent(this, SplashActivity.class);
        intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
        intent.putExtra(AppConstant.PUSH_CATEGORY, remoteMessage.getData().get("category"));
        intent.putExtra(AppConstant.PUSH_METADATA, remoteMessage.getData().get("metaData"));
        intent.putExtra(AppConstant.PUSH_ACTIVITY, remoteMessage.getData().get("activity"));
        intent.putExtra(AppConstant.PUSH_ID_KEY, remoteMessage.getData().get("_id"));

        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.mipmap.ic_launcher)
                .setContentTitle(remoteMessage.getData().get("title"))
                .setContentText(remoteMessage.getData().get("body"))
                .setAutoCancel(true)
                .setSound(defaultSoundUri)
                .setPriority(NotificationCompat.PRIORITY_HIGH)
                .setContentIntent(pendingIntent);

        NotificationManager notificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);

        notificationManager.notify(0, notificationBuilder.build());
    }

答案 1 :(得分:2)

只有当您的应用处于后台或未运行时使用其他应用时,才会收到抬头通知。如果您的手机没有使用,那么您将收到系统托盘通知或锁定屏幕通知。

如果您使用app服务器通过http协议发送推送通知,那么您甚至可以在发送到fcm端点的json数据中将优先级设置为高。

如果您使用的是firebase控制台,则在高级通知部分设置下确保优先级较高。

高优先级将确保您在大多数情况下收到抬头通知。

编辑:这是您编辑的json成功测试的样子 -

{
  "to":"push-token",
    "priority": "high",
    "notification": {
      "title": "Test",
      "body": "Mary sent you a message!",
      "sound": "default",
      "icon": "youriconname"
    }
}

youriconname 是您要设置为通知图标的可绘制资源的名称。

我省略了用于测试目的的数据。这么多应该会给你提醒通知。