gpt4 book ai didi

android - 在通知中心轻按推送通知的操作

转载 作者:行者123 更新时间:2023-11-29 01:41:27 26 4
gpt4 key购买 nike

我正在测试 GCM 服务以在我的应用程序中实现推送通知。当我收到通知时,它会显示在通知中心。现在,当我点击它时,它会打开应用程序,我想将一个 url 加载到 web View 中(该 url 在有效负载中传递)。关于如何完成它的任何想法?

最佳答案

假设您有一个 Intent 服务类来处理传入的 GCM 消息(如 official demo 中所示)。

假设您在名为 url 的参数中从服务器传递 url

当您创建将启动 Activity 的 Intent 时,您将 url 添加到 Intent 的附加项中。

protected void onHandleIntent(Intent intent) {
Bundle extras = intent.getExtras();
String url = (String) extras.get("url");
String msg = (String) extras.get("message");
Intent activityIntent = new Intent(this, DemoActivity.class);
activityIntent.putExtra ("url",url);
PendingIntent contentIntent = PendingIntent.getActivity(this, 0,
activityIntent, PendingIntent.FLAG_CANCEL_CURRENT);

NotificationCompat.Builder mBuilder =
new NotificationCompat.Builder(this)
.setSmallIcon(R.drawable.ic_stat_gcm)
.setContentTitle("GCM Notification")
.setStyle(new NotificationCompat.BigTextStyle()
.bigText(msg))
.setContentText(msg);

mBuilder.setContentIntent(contentIntent);
mNotificationManager.notify(NOTIFICATION_ID, mBuilder.build());
}

当 Activity 启动时,您可以从 Intent 的 extras 中获取 url 并将其加载到您的 Web View 中。

关于android - 在通知中心轻按推送通知的操作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24395482/

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