Android中根据坐标获取地址,一般用Geocoder,大概像下面这样:

try{    Geocoder geo = new Geocoder(NewCommentActivity.this, Locale.getDefault());      List<Address> addresses = geo.getFromLocation(23.0897174,113.3116872, 1);      if (addresses.isEmpty()) {          Log.i("location", "addressed is Empty");      }      else {          if (addresses.size() > 0) {              Log.i("location", addresses.get(0).getFeatureName() + ", " + addresses.get(0).getLocality() +", " + addresses.get(0).getAdminArea() + ", " + addresses.get(0).getCountryName());          }      }  } 

当我使用这段代码在真机上运行时,报错:
java.io.IOException:Sevice not Available
at android.location.Geocoder.getFromLocation

Google了一下,都说是在模拟器上才有这个问题,真机不会有此问题。但我确确实实在真机上遇到了这个问题。
查看Android官方文档,发现人家已经说的很明白了:
The Geocoder API is available for this purpose. Note that behind the scene, the API is dependent on a web service. If such service is unavailable on the device, the API will throw a "Service not Available exception" or return an empty list of addresses. A helper method calledisPresent() was added in Android 2.3 (API level 9) to check for the existence of the service.


看来对于没有这个服务的机型,确实是用不了这个方法的。那只能另辟蹊径了。在网上找到另外的方法:
访问Google的这个URL可以获得地址信息的JSON字符串。
String url = String.format("http://ditu.google.cn/maps/geo?output=json&key=abc&q=%s,%s", latitude, longitude);

更多相关文章

  1. 浅谈Java中Collections.sort对List排序的两种方法
  2. Python list sort方法的具体使用
  3. python list.sort()根据多个关键字排序的方法实现
  4. Android(安卓)Timer类的使用
  5. Android(安卓)回调详解及简单实例
  6. Android(安卓)复习笔记之图解TextView类及其XML相关属性和方法
  7. android完全退出应用程序
  8. android.support library找不到的解决方法
  9. android 调用 react-native方法

随机推荐

  1. android 横竖屏等设置
  2. android 获取手机设备信息
  3. Android(安卓)源码阅读之MMS
  4. android Camera模块分析
  5. Android实现对imageview的拖动以及缩放
  6. android 常用代码
  7. Android(安卓)创建与解析XML(五)—— Dom4j
  8. android handle ui 更新
  9. Android(安卓)View.startAnimation()动画
  10. android设置图片变化的四种效果代码