1

如何使用 GCM 或 C2DM 在 Android 中创建推送通知我已经尝试并检查了一些网站但没有得到确切的答案。我需要知道它是如何工作的。任何人都可以为我提供关于推送通知的好教程

任何人都可以帮助我。谢谢!!

4

2 回答 2

8

它取决于您的要求,您必须做什么。

这是 C2DM 的示例:在此示例中,android 设备在服务器向所有设备发送消息后注册到服务器。所以只有一种通信方式(服务器到 Android 设备)

在此处输入图像描述

所以所有事情都在服务器端完成。只需下载本教程。服务器端 (PHP) 和 Android 代码均可用。

编辑:

你从谷歌服务获得了应用程序密钥,你必须把它放在服务器端。

SENDER_ID – 当您想向服务器注册您的设备时必须发送的 Google 项目 ID。

于 2013-04-22T09:24:08.360 回答
0

You can use GCM demo app supported by Google. One needs to install GCM libs using SDK manager and then create API keys in Google APIs console. Follow instructions from the link and you can create an app that receives push notifications from GCM server. I did try this and it worked even on my Android emulators. You need to use Emulator that targets Google APIs though.

于 2013-10-11T05:22:11.057 回答