How to get country name in Android, If are known geo coordinates? How to make it the simplest way?
Here you go
Geocoder gcd = new Geocoder(context, Locale.getDefault()); List<Address> addresses = gcd.getFromLocation(lat, lng, 1); if (addresses.size() > 0) { String countryName=addresses.get(0).getCountryName(); }
1.4m articles
1.4m replys
5 comments
57.0k users