2

我发现在 Google 上支持在最新的 Android 上驾驶导航。http://www.google.com/mobile/navigation/index.html

但是,我找不到任何类型的 API 集来提供这些功能。有导航支持API吗?还是还没有发布?

我不明白为什么它不包含在 Ginger 面包版本中。他们说 Nexus S 已经支持驾驶导航。

你有关于这个问题的任何信息吗?请告诉我。谢谢。

4

1 回答 1

1

Are you trying to send intents to the navigation app to navigate to a location? Apparently it is not "officially" supported, however here is how you tell the navigation app to navigate to a location.

String url = "google.navigation:q=" + lat + ","
            + lng;
Intent i = new Intent(Intent.ACTION_VIEW, Uri.parse(url));
startActivity(i);
于 2011-06-23T04:29:11.513 回答