是否可以从一个应用程序的代号调用其他移动应用程序

Is it possible to invoke other mobile app from a code name one app

我想调用 google 地图应用程序,方法是从代号为 one 的移动应用程序传递位置详细信息。可能吗?

在Android中,这是打开任何其他应用程序的方法 How to call one android application from another android application

现在代号一可以使用原生接口进行原生调用 http://www.codenameone.com/blog/native-interface.html

您也可以将此 CN1 本机接口与 iPhone 一起使用,但您必须为此编写 iOS 代码

您可以使用 Display.execute(String) call, this is described here.

从所有 OS 中的代号 One 调用第 3 方应用程序

不过对于地图,还有更好的方法。您可以使用 Display.isOpenNativeNavigationAppSupported() & Display.openNativeNavigationApp(double latitude, double longitude).