通知用户新闻服务更新
我正在开发一个 Toast 通知新闻服务。
我可以成功解析并第一次在 Android 应用程序屏幕上显示 xml 文件(带有新闻)和带有新闻的 toast。 xml 文件是从我每小时发布新闻的服务器中提取的。 但是,当有最新消息时,我需要用吐司(可能?)通知用户,在这种情况下,rss 文件正在更新。 所以我需要在稍后的某个时候显示更多新闻。 我怎样才能做到这一点?
I am developing a toast notification news service.
I can successfully parse and display the first time - on the Android application screen - the xml file (with the news) and the toast with the news one by one.
The xml file file is pulled from a server where I publish news hourly.
But, I need to notify the user, with the toast (possibly?) when there is latest news, in which case the rss file is being updated.
So I need to display more news at some point later.
How can I do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该通过NotificationManager 使用通知。这是通知用户并邀请他打开更完整的视图以了解更多详细信息的最佳方式。
You should use Notifications through the NotificationManager. It is the best way to notify the user and invite him to open a more complete view to have more details.