我有两个设备。一个是 HTC WildFire S ,另一个是 HTC 1V 。我在我的应用程序中使用了Geocoder.getFromLocationName()
。它在 HTC wildfire S 中成功运行。但是在 HTC 1V 中我收到了以下错误。为什么会来?我怎么解决这个问题?请任何人帮助我。
代码
Geocoder geoCoder = new Geocoder(getBaseContext(), Locale.getDefault());
//s is the address
List<Address> addresses = geoCoder.getFromLocationName(s, 5); //Here i got the following Exception.
错误
06-18 16:28:17.933: W/System.err(4960): java.io.IOException: Service not Available
06-18 16:28:17.953: W/System.err(4960):at android.location.Geocoder.getFromLocationName(Geocoder.java:178)
位置标签
答案 0 :(得分:5)
最后我找到答案:https://code.google.com/p/android/issues/detail?id=38009
重新启动设备以使Geocoder正常工作。希望它可以帮助某人
注意:有人说如果您使用Google API 16
,它会有效答案 1 :(得分:-1)
GeoPoint point = new GeoPoint(
(int) (LATITUDE * 1E6),
(int) (LONGITUDE * 1E6));
String n;
public void someRandomMethod() {
n = convertPointToLocation(point);
}
public String convertPointToLocation(GeoPoint point) {
String address = "";
Geocoder geoCoder = new Geocoder(
getBaseContext(), Locale.getDefault());
try {
List<Address> addresses = geoCoder.getFromLocation(
point.getLatitudeE6() / 1E6,
point.getLongitudeE6() / 1E6, 1);
if (addresses.size() > 0) {
for (int index = 0; index < addresses.get(0).getMaxAddressLineIndex(); index++)
address += addresses.get(0).getAddressLine(index) + " ";
}
}
catch (IOException e) {
e.printStackTrace();
}
return address;
}