Description: I am using Google maps API V2
.I have implemented Android Reverse Geocoding
at touched location.
Problem: It throws exception on
try {
addresses = geocoder.getFromLocation(latitude, longitude,1);}
catch (IOException e)
{
e.printStackTrace();
if(AppConstants.DEBUG)Log.v(AppConstants.DEBUG_TAG," e.printStackTrace(): "+e.getMessage());
}
I am receiving latitude
and longitude
values correct, but i can't understand why it throws exception
and i have also done Google search but it couldn't help.
Can anybody please explain in details??
question from:
https://stackoverflow.com/questions/16119130/android-java-io-ioexception-service-not-available 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…