I'm using Locationmanager to obtain users GeoPoints then convert it to city / state. The issue is that some users 'crash' when this happens, and when I take out the geopoint to city conversion as seen below they don't crash. So I pinpointed that, and I assume it returns null for some people depending on their geocoordinates. Is there a more reliable way to obtaining someones City if I absolutely need it?
public class UserLocation implements LocationListener {
@Override
public void onLocationChanged(Location loc) {
if (loc != null)
{
mLatitude = loc.getLatitude();
mLongitude = loc.getLongitude();
Geocoder geoCoder = new Geocoder(getActivity(), Locale.getDefault());
List<Address> addresses;
try {
addresses = geoCoder.getFromLocation(mLatitude, mLongitude, 10);
int i=1;
for(Address addObj:addresses)
{
// Looping once
if(i==1)
{
//Setting city
mCity = addObj.getSubLocality();
//setting state
mState = returnStateAbbreviation(addObj.getAdminArea());
i++;
}
}
} catch (IOException e1) {
e1.printStackTrace();
}}
else
{
Log.i(mTag, "No location found, hrmp?");
}
// Stopping Location Updates
mLocationManager.removeUpdates(mLocationListener);
}
Or would it be easier to just compare 2 geo points to display a distance between them to list rather then a city and state?
As @Selvin said, getFromLocation can return null according to the docs
You need to check if it's null before you loop through the addresses
Regarding your second question, it depends on what you want to do but calculating the distance between two points is easy. You could use this Location method