【发布时间】:2015-06-15 05:25:47
【问题描述】:
您好我正在尝试使用默认意图打开谷歌地图方向并且我通过运动模式行走但它打开默认驾驶我如何以特定运动模式打开地图
我的代码
uri = "http://maps.google.com/maps?saddr=" + sLatitude + "," + sLongitude + "&daddr=" + dLatitude + ","+ dLongitude + "&mode=walking";
Intent intent = new Intent(android.content.Intent.ACTION_VIEW, Uri.parse(uri));
intent.setPackage("com.google.android.apps.maps");
startActivity(intent);
【问题讨论】:
标签: android google-maps android-intent