Answers for "open the map and get longitude and latitude android app"

2

android coding how to open map

//Moves you to different intent with the map on it

String uri = String.format(Locale.ENGLISH, "geo:%f,%f", latitude, longitude);
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(uri));
context.startActivity(intent);
Posted by: Guest on October-06-2020

Code answers related to "open the map and get longitude and latitude android app"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language