Get your latitude and longitude in a string and then use
String url1 = "http://maps.google.com/maps?daddr=" + strLatLong;
Intent intent = new Intent(android.content.Intent.ACTION_VIEW,
Uri.parse(url1)); startActivity(intent);
It will open the location in google maps.
0
solved How get latitude and longitude from an Android listview and put it in google maps? [closed]