我正在意图启动Google导航:
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("http://maps.google.com/maps?daddr=" + mCity));
intent.setClassName("com.google.android.apps.maps", "com.google.android.maps.MapsActivity");
startActivity(intent);
它建立从我当前位置到目的地城市的路线。但有时候它给我的路线很少。是否有办法强制给我总是只有一条路线?
答案 0 :(得分:0)
它只是推出了包含目的地和当前地址的Google导航应用,所以它将取决于用户选择一条路线,就像常规导航应用一样。