繁体   English   中英

谷歌地图驾驶模式网址方案无法在Android上运行

[英]Google maps driving mode url scheme not working on Android

我想从我的Android应用中调用外部Google Maps应用。

Intent mIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("http://maps.google.com/maps?saddr=" + stringLatitude + "," + stringLongitude + "&daddr=" + latitud + "," + longitud+"&dirflg=d"));

startActivity(mIntent);

它在Android 2.3.6上完美运行。

但不是在Android 4.2 ,我第一次点击执行该代码的按钮时Google Maps正确打开但是没有关于驾驶模式的信息。

但是一旦我回到主应用程序,我再次点击按钮一切正常。 它只在第一次尝试时失败。

我无法理解发生了什么

任何线索?

我正在使用以下代码在Android 4.2上正常工作

Intent i = new Intent(android.content.Intent.ACTION_VIEW, 
           Uri.parse("http://maps.google.com/maps?saddr="+a+","+b+"&daddr="+c+","+d+"&mode=driving"));
i.setClassName("com.google.android.apps.maps", "com.google.android.maps.MapsActivity");
startActivity(i);

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM