Windows Mobile 7 上的服务
是否可以使用 XNA/Windows Mobile 7 创建服务?类似于 Android 中的方式吗?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
是否可以使用 XNA/Windows Mobile 7 创建服务?类似于 Android 中的方式吗?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
这在 7.0 中实际上是不可能的,但如果您使用(或瞄准)7.1 (Mango),那么您可以考虑使用 后台代理。该链接解释了基类,但您可以根据需要使用 ScheduledTaskAgent、AudioPlayerAgent 和 AudioStreamingAgent。有一个很棒的介绍性教程 这里和MSDN。这篇MSDN 帖子。
使用
后台代理
的原因是可以监控不同的应用程序,以确保某个应用程序不会占用所有资源。这意味着电池寿命更加优化,并且资源管理更加完善。如果您打算使用
Services
以便其他应用可以与您的服务进行通信,那么这是不可能的。出于安全原因,每个应用程序都被沙箱化,目前,这意味着它们无法直接与其他第三方应用程序通信。This isn't really possible in 7.0, but if you're using (or targetting) 7.1 (Mango), then you can look into using Background Agents. The link explains the base class, but you can use ScheduledTaskAgent, AudioPlayerAgent and AudioStreamingAgent depending on your need. There's a great introductory tutorial here and sample codes on MSDN. There's an XNA specific example in this MSDN post.
The reason
Background Agents
are used is so that different apps can be monitored to ensure one app isn't hogging all the resources. This means that the battery life is more optimised and there's better resource management.If you mean to use
Services
such that others apps can communicate with your service, this isn't really possible. Each app is sandboxed for security reasons and, at the moment, this means that they can't communicate with other third party apps directly.