Launching Google Maps Directions via an intent on Android

后端 未结 15 1643
小鲜肉
小鲜肉 2020-11-22 03:46

My app needs to show Google Maps directions from A to B, but I don\'t want to put the Google Maps into my application - instead, I want to launch it using an Intent. Is this

15条回答
  •  生来不讨喜
    2020-11-22 04:13

    Well you can try to open the built-in application Android Maps by using the Intent.setClassName method.

    Intent i = new Intent(Intent.ACTION_VIEW,Uri.parse("geo:37.827500,-122.481670"));
    i.setClassName("com.google.android.apps.maps",
        "com.google.android.maps.MapsActivity");
    startActivity(i);
    

提交回复
热议问题