是否可以在不重新启动设备的情况下解决ICS上地理编码器的“服务不可用”问题?
这里描述的问题是:getFromLocationName error, Service not available. Have been working, stopped
我疯了......
这是我正在使用的代码:
Geocoder coder = new Geocoder(this);
List<Address> address = null;
try {
address = coder.getFromLocationName(navAddr,5);
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}