为什么无法从位置获取地址?

时间:2012-12-13 09:56:11

标签: android

if (isOnline()) {
                    Geocoder geocoder = new Geocoder(con, Locale.getDefault());
                    p = new GeoPoint((int) (location.getLatitude() * 1E6),
                            (int) (location.getLongitude() * 1E6));
                    List<Address> add = null;
                    try {
                        add = geocoder.getFromLocation(p.getLatitudeE6() / 1E6,
                                p.getLongitudeE6() / 1E6, 1);

                    } catch (IOException e) {
                        // TODO Auto-generated catch block
                        // e.printStackTrace();
                    }
}

昨天,我得到的地址还可以,但今天,我无法获得地址(add = null)。

0 个答案:

没有答案