Windows Phone 7 后台查询
我来自 Android 开发者视角。
我确实对 win mobile 7 有一些疑问。
我的后台应用程序移植信息:
我当前的 android 应用程序每 5 分钟进行一次轮询,它将检索其当前位置,然后将其发送到服务器。我的应用程序还允许用户查看成员,然后能够通过将它们链接到呼叫者和消息应用程序来呼叫和发送短信
- Windows Mobile 7 是否允许后台服务,例如允许用户进行轮询的 android Alarmmanager?即使正在提供应用程序,
- Windows Mobile 7 是否允许将操作传递到其本机应用程序,例如呼叫和短信?
i am coming from an android developer pov.
I do have some query about win mobile 7.
My background app porting information:
My current android application does a polling of every 5 min, and it will retrieve its current location and then send it to the server. My application also does allows user to view member and then able to call and sms them by linking them to the caller and messaging application
- Does windows mobile 7 allows background services like android alarmmanager which allows user to do a polling? Even when the application is being offed
- Does windows mobile 7 allows passing of action to it's native application such as calling and sms?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
1) 对于应用程序关闭时的后台轮询,您有 2 个不同的选项使用后台代理。这是一篇 MSDN 文章,解释如何使用后台代理< /a>.
您可以使用定期代理,MSDN 文章将其描述为
或者您可以使用资源密集型任务
2) 您可以访问本机应用程序以从您的应用程序拨打电话和发送短信。这是通过任务
呼叫完成的,这里有一篇关于 的 MSDN 文章如何使用电话呼叫任务。
对于短信,这里有一篇关于如何使用的 MSDN 文章撰写短信任务。
1) For background polling when the app is off, you have 2 different options using Background Agents. Here's an MSDN article explaining how to use Background Agents.
You can use a Periodic Agent which the MSDN article desribes as
Or you can use a Resource Intensive Tasks
2) You can access the native applications for making a call and sms from your application. This is done via Tasks
For calling, here's an MSDN article for How To Use The Phone Call Task.
For SMS, here's an MSDN article for How To use The Compose SMS Task.