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
This is what worked for me:
Intent intent = new Intent(Intent.ACTION_VIEW); intent.setData(Uri.parse("http://maps.google.co.in/maps?q=" + yourAddress)); if (intent.resolveActivity(getPackageManager()) != null) { startActivity(intent); }