gpt4 book ai didi

android - 收到 GCM 通知时启动应用程序

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:27:38 26 4
gpt4 key购买 nike

我有 GCM 通知实现。我知道客户端应用程序无论是在前台、后台还是被杀死状态都会收到通知。我想知道的是,当应用程序处于终止状态时,如何根据收到的通知启动我的应用程序?

最佳答案

在消息接收器中,我执行以下操作:

final Intent notificationIntent = new Intent(context, YourActivity.class);
notificationIntent.setAction(Intent.ACTION_MAIN);
notificationIntent.addCategory(Intent.CATEGORY_LAUNCHER);

此处将 YourActivity.class 替换为入口 Activity 。这对我有用。

关于android - 收到 GCM 通知时启动应用程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13602014/

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