avivh
avivh

Reputation: 173

How launch all maps app android intent

I want to open all the maps app through intent.

I tried it, and the app crashes, the intent doesn't open

    Intent myIntent = new Intent("android.intent.category.APP_MAPS");
    startActivity(myIntent);

Upvotes: 1

Views: 400

Answers (1)

John R
John R

Reputation: 2064

Intent intent = new Intent(android.content.Intent.ACTION_VIEW, 
    Uri.parse("http://maps.google.com/maps?saddr=20.344,34.34&daddr=20.5666,45.345"));
startActivity(intent);

Try this.

Upvotes: 2

Related Questions