I know that i can do it with this:
Intent intent = new Intent(android.content.Intent.ACTION_VIEW,
Uri.parse("http://maps.google.com/maps?saddr=39.45798340851973,-0.3835865820296931&daddr=39.44353524837272,-0.3760334814437556"));
startActivity(intent);
But i need to remove the dialog, and forze it to launch navigator ¿how to do it?
I know that i can forze the dialog to open googlemap application with intent.setClassName("com.google.android.apps.maps", "com.google.android.maps.MapsActivity");
But i need just the opposite, to launch the navigator.
try