In fact, Im finds the latitude and longitude for an address such as (hard rock cafe, toit, etc.), but gets the maximum time . So whenever I get this exception using google api, but both answers are different. If I use google api for some places of my return center to Bangalore. java.io.IOException: Timed out waiting for response from server
private class GeocoderTask extends AsyncTask<String, Void, List<Address>> {
@Override
protected void onPreExecute() {
Dialog.setCancelable(false);
Dialog.setMessage(getString(R.string.serachingForParking));
Dialog.show();
}
@Override
protected List<Address> doInBackground(String... locationName) {
Geocoder geocoder = new Geocoder(getBaseContext());
List<Address> addresses = null;
try {
addresses = geocoder.getFromLocationName(locationName[0], 3);
} catch (IOException e) {
e.printStackTrace();
} catch (Exception e) {
e.printStackTrace();
}
return addresses;
}
@Override
protected void onPostExecute(List<Address> addresses) {
try {
if (Dialog.isShowing()) {
Dialog.dismiss();
}
if (addresses == null || addresses.size() == 0) {
} else {
for (int i = 0; i < addresses.size(); i++) {
Address address = (Address) addresses.get(0);
latlang = new LatLng(address.getLatitude(),
address.getLongitude());
}
} catch (Exception e) {
}
}
}
source
share