来自“Resent apps”时意图未更新

时间:2022-11-12 17:08:38

When a notification is pressed in my app, it goes to the onNewIntent() and the app is processing the extras in the intent. I am not doing setIntent any where in my code.

当我的应用程序中按下通知时,它会转到onNewIntent()并且应用程序正在处理意图中的额外内容。我没有在我的代码中的任何位置执行setIntent。

All is working good except for this weird behavior: If, after the notification was processed, the user presses the back button, which closes the activity) and then in the resent apps menu he presses on my app then the intent that gets to the app is the same intent that came from the push.

一切都很好,除了这种奇怪的行为:如果,在处理通知后,用户按下后退按钮,关闭活动)然后在重新发送的应用程序菜单中,他按下我的应用程序然后获取到应用程序的意图与推动产生的意图相同。

Just to be clear, If the user presses on the launcher Icon, it's not happening. It happens only if he presses on the recent apps.

需要明确的是,如果用户按下启动器图标,则不会发生这种情况。只有当他按下最近的应用程序时才会发生这种情况

why is that so?

为什么?

I even tried to do a setIntent with new extras but it's still stuck on the old intent. Why is that and how can I fix this?

我甚至试图用新的额外内容做一个setIntent,但它仍然坚持旧的意图。为什么这样,我该如何解决这个问题?

Update:

extraMatchId = intent.getStringExtra(StaticParams.KEY_MATCH_ID);
    extraUrl = intent.getStringExtra(StaticParams.KEY_URL);

1 个解决方案

#1


2  

This is either an Android bug or a feature, depending on whether you want it to happen or not ;-) This case isn't clearly documented, but it is clear that it behaves the way you describe.

这可能是Android错误或功能,取决于您是否希望它发生;-)此案例没有明确记录,但很明显它的行为与您描述的方式相同。

I recently answered a similar question and made some suggestions about how to deal with this problem. See my answer for more information.

我最近回答了一个类似的问题,并就如何处理这个问题提出了一些建议。请参阅我的回答以获取更多信息

#1


2  

This is either an Android bug or a feature, depending on whether you want it to happen or not ;-) This case isn't clearly documented, but it is clear that it behaves the way you describe.

这可能是Android错误或功能,取决于您是否希望它发生;-)此案例没有明确记录,但很明显它的行为与您描述的方式相同。

I recently answered a similar question and made some suggestions about how to deal with this problem. See my answer for more information.

我最近回答了一个类似的问题,并就如何处理这个问题提出了一些建议。请参阅我的回答以获取更多信息