在 Android 版 Adobe AIR 上拨打电话
我想通过 Android 上的 AIR 应用程序拨打电话。我知道你可以这样做:
navigateToURL(new URLRequest(tel:555555555));
但我想要控制电话。
目的是应用程序漏接选定的号码。所以它拨打电话,等待响铃 1 秒,然后挂断电话。但通过上述方法,应用程序无法控制通话。
谢谢
I'd like to make a phone call via an AIR application on android. I know you can do this:
navigateToURL(new URLRequest(tel:555555555));
But I want control of the phone call.
The aim is that the app missed calls a selected number. So it calls, waits for it to ring for 1 second and then cuts the call. But with the method above, the app has no control of the phone call.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
截至目前,您无法使用 AIR 应用程序“控制”呼叫流程。您能做的最好的事情就是使用您提到的“tel”协议调用本机呼叫应用程序。
As of now, there is no way that you can 'control' the call flow using AIR apps. The best you can do is invoke the native call application using 'tel' protocol, which you have mentioned.