Android 有本地通知吗?
在我的应用程序中,我想使用本地通知。 我不知道 Android 是否有任何本地通知可用。
如果是,请给我任何示例来实现它。
谢谢。
In my application I want to use the Local Notification.
I don't know is there any local notification available in Android or not.
If yes then please give me any sample example to implement it.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
Android 并没有真正区分远程(Apple 术语中的推送)和本地通知。使用 Android 的 C2DM,您不会免费获得弹出框或任何 UI。
我想你只想看看:
对于在某个时间做某事,您想查看:
Android doesn't really have a distinction between remote (push in Apple terms) and local notifications. You don't get a box pop up or any UI at all for free with Android's C2DM.
I think you just want to look at:
For doing something at a certain time you want to look at:
有一个带有 PendingIntent 的新通知示例,用于在用户单击时调用 Activity。
PendingIntent 通知不要第二次调用我的 Activity
there is a sample of new Notification with PendingIntent for call Activity when the user click on.
PendingIntent of Notification don't call my Activity second time
是的,android中有本地通知。要了解如何使用它们,请参阅此答案 - 如何安排本地通知 Android?< /a>
yes, there are local notifications in android. To understand how to work with them see this answer - How schedule local notifications Android?