如果应用程序位于前台,则在单击FCM通知后移至另一个活动

时间:2017-07-19 09:47:41

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

我希望点击通知后,应用程序移动到特定活动。它发生在应用程序处于后台或未运行时,但当应用程序处于前台时,它会移至“我的主要活动”。

这是我使用FCM发送通知的方式。

            JSONObject root = new JSONObject();

            JSONObject notification = new JSONObject();
            notification.put("body", message);
            notification.put("title", "My Application");
            notification.put("click_action", action);


            JSONObject data = new JSONObject();

            data.put("message", message);
            data.put("user_id", user_id);

            root.put("notification", notification);
            root.put("data", data);
            root.put("to", token);


            String result = postToFCM(root.toString());

0 个答案:

没有答案