当应用程序在后台(安卓)时,FCM 无法正常工作的意图



我正在使用FCM推送通知。 当单击通知时,我传递了启动新活动的意图。当应用程序处于前台时,应用程序工作正常并且意图启动新活动,但是当应用程序在后台时,它不会启动新活动,而是启动默认活动的实例。

public class MyFirebaseMessagingService extends FirebaseMessagingService {
private static final String TAG = "MyFirebaseMsgService";
@Override
public void onMessageReceived(RemoteMessage remoteMessage) {
    //Displaying data in log
    //It is optional



    Log.d(TAG, "From: " + remoteMessage.getFrom());
    Log.d(TAG, "Notification Message Body: " + remoteMessage.getNotification().getBody());
    //Calling method to generate notification
    sendNotification(remoteMessage.getNotification().getBody());
}
private void sendNotification(String messageBody) {
    Intent intent = new Intent(this, SecActivity.class);
    intent.putExtra("started_from","notification");
    intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
    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("Firebase Push Notification")
            .setContentText(messageBody)
            .setAutoCancel(true)
            .setSound(defaultSoundUri)
            .setContentIntent(pendingIntent);
    NotificationManager notificationManager =
            (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
    notificationManager.notify(0, notificationBuilder.build());
}

}

希望您在收到消息时尝试启动主活动。当应用程序从后台恢复时,您当前的活动将被清除。从FLAG_ACTIVITY_CLEAR_TOP文档中:如果设置了,并且正在启动的活动已在当前任务中运行,则不会启动该活动的新实例,而是关闭其上的所有其他活动,并且此 Intent 将作为新 Intent 传递到旧活动(现在位于顶部(。

尝试删除此标志。

我也有同样的问题,但我设法用这个解决了它,

在清单中提到的默认活动中,在onCreate中执行此操作

if (bundle != null) {
    if ((String) bundle.get("tag") != null) {
        String tag = (String) bundle.get("tag");
        if (tag.equals("abc")) {
            Intent intent = new Intent(SplashActivity.this, MessageDetailsActivity.class);
            startActivity(intent);
        } else if (tag.equals("def")) {
            openSpecificActivity(tag, (String) bundle.get("id"));
        }
    } else {
        Intent i = new Intent(SplashActivity.this, HomeActivity.class);
        i.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
        startActivity(i);
    }
}

我得到了一个解决方案。只需将以下代码放在启动器活动的oncreate方法中即可。

if (bundle != null) {
        String value = bundle.getString("key");
        if (value != null) {
            startActivity(new Intent(MainActivity.this, secActivity.class));
        }
}

当应用程序在后台或被杀死时,FCM 不会调用 onmessagerecieved 方法,但它会将数据发送到系统托盘以显示 notification.so datapayload(从 FCM 控制台发送(不会由 onmessagerecieved 方法处理。当用户点击通知时,它将启动应用程序的默认活动,并且数据有效负载将通过意图传递.因此在启动器活动的 oncreate 方法中进行更改(如上所述(即使应用程序在后台,我们也可以获取数据有效负载或被杀。(EX 密钥由 FCM 控制台发送(。当应用程序处于前台数据有效负载时,将由 FCM 服务的消息接收方法处理。

基于安蒂尼奥的回答

https://stackoverflow.com/a/37845174/4454119

为什么会这样?

FCM(Firebase Cloud Messaging(中有两种类型的消息:

显示消息:仅当应用处于前台时,这些消息才会触发 onMessageReceived(( 回调

数据消息:这些消息触发 onMessageReceived(( 回调,即使您的应用程序处于前台/后台/已终止Firebase 团队尚未开发出向您的设备发送数据消息的用户界面。

所以你需要使用数据消息。

在 FCM 中,您有两种类型的消息

  • 通知消息
  • 数据消息

如果您希望 FCM 代表客户端应用处理显示通知,请使用通知消息。如果要在客户端应用中处理消息,请使用数据消息。

如果需要在将消息发送到系统托盘之前对其进行处理,最好使用数据消息,对于这些类型的消息,回调首先到达 onMessageRecieved 方法,然后再转到系统托盘。

使用这个:

intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP | Intent.FLAG_ACTIVITY_SINGLE_TOP);
在您的

服务

 "to": token, 
 "notification": {
     "title": "Title,
     "body": "Body"        
 },                    
"data" : {
     "update": "yes"
 }

在安卓科特林

val intent = Intent(this,MainActivity::class.java)
intent.putExtra("update","yes")
......

相关内容

  • 没有找到相关文章

最新更新