Firebase云消息传递:推送通知并导航到特定的应用程序页面

时间:2017-07-31 10:12:52

标签: android firebase notifications firebase-cloud-messaging

我正在为我的Android应用程序使用Firebase Cloud Messaging。我上次使用GCMBaseIntentService进行推送通知。我找到了Firebase Cloud Messaging,FirebaseMessagingService与GCMBaseIntentService()不同。对于GCMBaseIntentService,当应用程序收到推送通知时,始终会调用onMessage()函数。当我点击推送通知时,我可以操纵收到的数据并导航到特定页面。

但是,我意识到FirebaseMessagingService中的onMessageReceived()没有被调用。我可以知道在收到推送通知时如何导航到应用程序的具体位置。问题是我需要根据收到的推送通知的内容导航到我的应用程序中的不同页面。

以下是我的代码

@Override
public void onMessageReceived(RemoteMessage remoteMessage) {
    sendNotification(remoteMessage.getNotification().getBody());
    Log.d(TAG, "From: " + remoteMessage.getFrom());
    Log.d(TAG, "Notification Message Body: " + remoteMessage.getNotification().getBody());
}

private void sendNotification(String messageBody) {
    Intent intent = new Intent(this, HomeControllerActivity.class);
    intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
    PendingIntent pendingIntent = PendingIntent.getActivity(this, 0 /* Request code */, intent,
            PendingIntent.FLAG_ONE_SHOT);

    Uri defaultSoundUri= RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);
    NotificationCompat.Builder notificationBuilder = new NotificationCompat.Builder(this)
            .setSmallIcon(R.drawable.ic_stat_ic_notification)
            .setContentTitle("FCM Message")
            .setContentText(messageBody)
            .setAutoCancel(true)
            .setSound(defaultSoundUri)
            .setContentIntent(pendingIntent);

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

    notificationManager.notify(0 /* ID of notification */, notificationBuilder.build());
}

1 个答案:

答案 0 :(得分:2)

使用数据消息代替通知。数据消息始终加载类onMessageReceived。