如何从我的应用程序打开非谷歌导航?

时间:2014-07-22 12:39:30

标签: android android-intent navigation

我正在使用以下代码启动Google导航。有没有办法从应用程序打开非谷歌导航?

Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("google.navigation:q=Berlin+Germany")); 
        startActivity(intent);

1 个答案:

答案 0 :(得分:1)

没有为非Google导航应用定义特定的URI格式。您可以通过检查特定应用是否具有可以实施的URI来添加对特定应用的支持,但是无法创建单个“打开”导航应用程序'意图。