Windows Phone 7 Toast 通知
在 Windows Phone 7 的 toast 消息中,单击该消息时 应用程序打开没问题,
我只想在单击 toast 消息时导航到特定页面,
有什么方法可以做到吗?
7和芒果都更新了???
或
在 http://samidipbasu.com/2011/06/14/push- notification-payloads/ 在此链接中,当我们读取 toast 通知时,我们有一个名为 wp:Param 的 xml 格式的额外参数要发送。他们如何在 Windows 7.0 中发送此 wp:Param 数据(在芒果更新之前)。有什么想法吗?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
Mango 支持导航到特定页面。下面是一个不需要 HTTP 通道的示例,但必须由后台代理(而不是应用程序本身)执行:
注意:通过 HTTP 推送通知发送的 toast 也支持 NavigationUri 功能
Support for navigating to a particular page is supported in Mango. Below is an example that does not require an HTTP channel, but must be executed by a background agent (not the application itself):
NOTE: The NavigationUri functionality is also supported by toast sent via HTTP push notifications
@curiosity ..吐司和Tile 有效负载是预先定义的,以便操作系统可以在您的应用程序注册 shellToast/shellTile 后处理来自 MPNS 的这些位。负载中的额外参数应该从 Mango 开始支持。当应用程序的首页(或 URL 中的任何 XAML 页面)从 Deep-toast 启动时,开发人员应该能够侦听 OnNavigedTo() 事件,以对传入 URL 中的参数(查询字符串)执行一些特殊操作)。请参阅我博客上的一些后续帖子以获取示例和信息。让我知道是否有帮助。
谢谢!
@curiosity .. Toast & Tile payloads are pre-defined so that the OS can process these bits coming from MPNS after your app registers shellToast/shellTile. The extra parameters in the payloads are supposed to supported starting with Mango. As your app's first page (or whichever XAML page is in the URL) launches from the deep-toast, the developer should be able to listen in on the OnNavigatedTo() event to do something special with the params in the incoming URL (query string). Please see some later posts on my blog for examples & let me know if it helps.
Thanks!
您需要了解的有关推送通知的所有信息是 此处
all the info you need to know about push notifications is here