I'm using google map v2 for showing locations in my application. When I want to navigate to that particular location I use the following code which starts the default navigation application installed in my phone.
Intent navigation = new Intent(Intent.ACTION_VIEW, Uri.parse("http://maps.google.com/maps?saddr=aa,bb&daddr=xx,yy"));
startActivity(navigation);
So obviously we will leave our application and go to the default navigation application. Is there any chance that I can do the turn-by-turn navigation within the google map which is to be shown in my application itself?