I want to draw actual route on mapview. I have tried examples but all seem to draw a line between two points not a route. I have used below code but it will automatically draw a route.
final Intent intent = new Intent(Intent.ACTION_VIEW,Uri.parse(String.valueOf(urlString)));
intent.setClassName("com.google.android.apps.maps","com.google.android.maps.MapsActivity");
startActivityForResult(intent, 5);
I want to draw a route with my own way points in map view.