Windows Phone 7 后台查询

发布于 2024-12-10 21:01:47 字数 332 浏览 0 评论 0原文

我来自 Android 开发者视角。

我确实对 win mobile 7 有一些疑问。

我的后台应用程序移植信息:

我当前的 android 应用程序每 5 分钟进行一次轮询,它将检索其当前位置,然后将其发送到服务器。我的应用程序还允许用户查看成员,然后能够通过将它们链接到呼叫者和消息应用程序来呼叫和发送短信

  1. Windows Mobile 7 是否允许后台服务,例如允许用户进行轮询的 android Alarmmanager?即使正在提供应用程序,
  2. 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

  1. Does windows mobile 7 allows background services like android alarmmanager which allows user to do a polling? Even when the application is being offed
  2. Does windows mobile 7 allows passing of action to it's native application such as calling and sms?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

时间海 2024-12-17 21:01:47

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

Periodic agents run for a small amount of time on a regular recurring
interval. Typical scenarios for this type of task include uploading
the device’s location and performing small amounts of data
synchronization.

Or you can use a Resource Intensive Tasks

Resource-intensive agents run for a relatively long period of time
when the phone meets a set of requirements relating to processor
activity, power source, and network connection. A typical scenario for
this type of task is synchronizing large amounts of data to the phone
while it is not being actively used by the user.

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文