gpt4 book ai didi

android - Firebase 通知和数据

转载 作者:太空狗 更新时间:2023-10-29 15:40:36 24 4
gpt4 key购买 nike

我正在使用 Firebase 云消息传递 API 创建一个应用程序...我能够从服务器向我的客户端应用程序发送通知和数据。但问题是当应用程序打开时,通知不会在数据出现时触发(我的意思是我记录了它)这不是问题。但是当应用程序关闭时,会收到通知,当我单击通知时, Activity 已打开,但我看不到日志数据。我需要将数据更新到 TextView..

我的 MyFirebaseMessagingService :

public void onMessageReceived(RemoteMessage remoteMessage) {
// TODO: Handle FCM messages here.
// If the application is in the foreground handle both data and notification messages here.
// Also if you intend on generating your own notifications as a result of a received FCM
// message, here is where that should be initiated.
Log.d(TAG, "From: " + remoteMessage.getFrom());
Log.d(TAG, "Notification Message Body: " + remoteMessage.getNotification().getBody());
Log.e("FROM", "From: " + remoteMessage.getFrom());
String data = remoteMessage.getData().get("message");
Log.e("KOIII", "Notification Message Body: " + remoteMessage.getNotification().getBody());
// showNotificationS(remoteMessage.getNotification().getBody(),2);
if(data.equals("true")){
Log.e("DATA", "SUCCESS");
// Fragment1.getInstace().updateTheTextView(data, data, data);
}
}

我的 list :

<activity
android:name=".SplashScreen"
android:label="@string/app_name"
android:launchMode="singleInstance">
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".myHome"
android:label="@string/app_name">
</activity>
<service android:name=".MyFirebaseMessagingService">
<intent-filter>
<action android:name="com.google.firebase.MESSAGING_EVENT"/>
</intent-filter>
</service>
<service android:name=".FirebaseIDService">
<intent-filter>
<action android:name="com.google.firebase.INSTANCE_ID_EVENT"/>
</intent-filter>
</service>

最佳答案

当您发送带有数据负载(通知和数据)的通知消息并且应用程序在后台时,您可以从用户点击通知后启动的 Intent 的额外内容中检索数据。

来自FCM sample它在点击通知时启动 MainActivity:

if (getIntent().getExtras() != null) {
for (String key : getIntent().getExtras().keySet()) {
Object value = getIntent().getExtras().get(key);
Log.d(TAG, "Key: " + key + " Value: " + value);
}
}

关于android - Firebase 通知和数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38888917/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com