Im trying get the neighborhood from a LatLng Object.
Im using Geocoder Object from Android API for do this.
List<Address> addresses = geocoder.getFromLocation(location.getLatitude(), location.getLongitude(), 5);
I get the neighborhood name sometimes, in List Address, but I don't know how differentiate the City Name with neighborhood name.
There are any way to differentiate it?