我知道这个问题已被问过几次了,但我仍然遇到了这个错误。
尝试在模拟器和实际设备上,将模拟器的目标转移到Google API,并将项目的目标版本更改为Google API
需要这方面的帮助:(谢谢!
答案 0 :(得分:0)
我希望你现在解决了。正如你所说,有很多线索。在研究了所有线程后,我得到的答案是Geocoder并不总是返回一个值。您可以尝试在for循环中发送3次请求。我或许至少可以回归一次。如果没有,那么它们可能是连接问题,或者可能是其他问题,例如服务器没有回复您的请求。
我也有一个while循环,但我曾经尝试过最多10次。有时,即使它连接到互联网,也从未返回任何内容。然后,我使用this更可靠的方式每次获取地址:
我曾经获得纬度和经度,然后请求谷歌服务器,回复一个包含有关位置坐标的各种信息的JSON对象。这种获取地址字符串的方式不需要Geocoder。这是功能:
public JSONObject getLocationInfo() {
HttpGet httpGet = new HttpGet("http://maps.google.com/maps/api/geocode/json?latlng="+lat+","+lng+"&sensor=true");
HttpClient client = new DefaultHttpClient();
HttpResponse response;
StringBuilder stringBuilder = new StringBuilder();
try {
response = client.execute(httpGet);
HttpEntity entity = response.getEntity();
InputStream stream = entity.getContent();
int b;
while ((b = stream.read()) != -1) {
stringBuilder.append((char) b);
}
} catch (ClientProtocolException e) {
} catch (IOException e) {
}
JSONObject jsonObject = new JSONObject();
try {
jsonObject = new JSONObject(stringBuilder.toString());
} catch (JSONException e) {
e.printStackTrace();
}
return jsonObject;
}
我打电话给它如下:
JSONObject ret = getLocationInfo();
JSONObject location;
String location_string;
try {
location = ret.getJSONArray("results").getJSONObject(0);
location_string = location.getString("formatted_address");
Log.d("test", "formattted address:" + location_string);
} catch (JSONException e1) {
e1.printStackTrace();
}
希望这会有所帮助。我也厌倦了依靠Geocoder。这对我有用。虽然它可能比地理编码器慢一点。要测试其功能,您可以使用您拥有的纬度和经度坐标放置在URL中。尝试在Web浏览器中查看返回的JSON对象。您将看到如何提取地址字符串。尝试并阅读这些主题:
Geocoder doesn't always return a value和geocoder.getFromLocationName returns only null