是否可以从 Flex 4.5 启动手机本机导航工具?
我正在 Flex 4.5 中构建一个移动应用程序,我想从这个应用程序启动设备的本机导航工具,例如 Google 导航。
有没有办法使用 Flex 4.5 打开导航应用程序?
I am building a mobile application in Flex 4.5 and from this app I would like to start the device's native navigation tool, like Google Navigation for example.
Is there a way to open the Navigation App using Flex 4.5?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
据我所知,无法从移动 Flex 应用程序启动其他应用程序。
某些本机应用程序可以使用 URL 打开。基本上,它是 Flash 平台版本的“让操作系统处理它”。例如,如果您通过 HTTP 链接到视频,则它可能会在本机播放器中打开,也可能会在浏览器中打开。
您可以使用 sms 作为协议打开本机短信程序。据我所知,没有通用的URL来打开导航服务。
这篇文章暗示了这样一个事实:链接到maps.google.com就可以了它。
您可以考虑使用 AIR 地理定位服务 API;但这是为了应用程序内使用而不是启动其他应用程序。
As far as I knew, there was no way to launch other applications from a mobile Flex App.
Some native apps can be opened using URLs. It is, basically, the Flash Platform version of saying "Let the OS Handle it." If you HTTP link to a video, for example, it may open in a native player or it may open in the browser.
You can open the native text messaging program using sms as the protocol. As far as I know, there is no universal URL to open navigation services.
This post alludes to the fact that linking to maps.google.com will do it.
You can look into using the AIR Geolocation services APIs; but that is intended for in-app usage not launching other apps.
您可以尝试使用 StageWebView 打开谷歌地图什么的。我认为没有办法打开本机导航应用程序,因为它可能不存在,而且每个设备的导航应用程序都不同。
You can try using StageWebView to open up google maps or something. I don't think there's a way to open the native navigation app because it might not be there and they're different for each device.