Android 中的推送通知
请指导我如何在android中实现推送通知。根据我的应用程序,当服务器随时命中任何信息时,我想当时显示该信息。我需要什么才能在我的 Android 平台上实现这一点。
please guide me how to implement the push notification in android. according to my application when server hits any information at any time i want to display that info at that time. what i need to implement this in my android plateform.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
对于 Android 2.2,可以使用 云设备消息传送。
With Android 2.2 it is possible using the Cloud to Device Messaging.
正如 Alopix 提到的,自 Android 2.2 起,自动执行此操作的方法是通过 Android Cloud。
现在,如果您想在 2.2 之前使用它,我选择在我的应用程序中启用它:
首先,在您的应用程序中放置一个开关,测试您正在运行的手机的 Android 系统版本(使用 Build.VERSION,然后是字段 SDK_INT)。这样您就知道您的版本是否等于或高于 2.2 或更低。
然后,如果你在下面,你需要创建一个小的 php 页面,例如一个计时器,它将由你的服务器定期执行,并且你在此页面上执行一个简单的 http 请求来检查是否有可用的新闻应用程序。
这有帮助吗?
As Alopix mentionned, the automatic way to do that is through Android Cloud, since Android 2.2.
Now If you want it before 2.2, here is what I choose to do to enable it in my application :
First, put a switch in your application, testing for the version of the Android system of the phone you are running on (with Build.VERSION and then the field SDK_INT).this way you know if you are in equal or above 2.2 or below.
Then, if you are below, you need to create a small php page, with for instance a timer, that will be executed regularly by your server, and you do a simple http request on this page to check if there are news available for your application.
Does that help?