Well i'm trying to open a google navigation within my app.
This snippet of code works fine.But this will call the google map app.
Intent intent = new Intent(android.content.Intent.ACTION_VIEW,
Uri.parse("http://maps.google.com/maps?daddr="+loc[0]+","+loc[1]));
intent.setClassName("com.google.android.apps.maps","com.google.android.maps.MapsActivity");
startActivity(intent);
Is there any way so that I can call the Google map within my application?