从 Windows Phone 7 后台应用程序拨打电话和发送短信
我能否提供一些有关我的“后台应用程序”如何在某个预定义的号码和预定义的日期时间拨打电话和发送短信的指示。
Can I have some pointers on how can my "background app" make a call and send sms at some pre-defined number and predefined datetime.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是不可能的。
Windows Phone 7 不支持在后台运行的应用程序。
如果您想从您的应用程序(当它[在前台]运行时)拨打电话或发送短信,您将需要使用 PhoneCallTask 或 SmsComposeTask。
请注意,这些任务实际上并不拨打电话或发送短信,而是提示用户能够执行此操作。该平台的设计意图之一是,在用户不知情的情况下,手机无法执行用户可能不希望执行的操作。
This is not possible.
Windows Phone 7 does not support apps running in the background.
If you wanted to make a call or send an SMS from your app (while it was running [in the foreground]) you will need to use the PhoneCallTask or SmsComposeTask, respectively.
Note that these tasks don't actually make the call or send the SMS but prompt the user to be able to do so. One of the design intents of the platform is that the phone can't do something the user might not want it to, without the user knowing.