1

我目前正在使用 android 模拟器 2.3.3 。我想从坐标中获取位置。但我得到了这个“服务不可用”的例外。这是我的代码:

    @Override
    public boolean onTouchEvent(MotionEvent e, MapView mapView) {
        if (e.getAction() == 1) {
            GeoPoint point = mapView.getProjection().fromPixels(
                    (int) e.getX(), (int) e.getY());
            Geocoder coder = new Geocoder(GoogleMaps.this, Locale.ENGLISH);
            try {
                List<Address> addresses = coder.getFromLocation(
                        point.getLatitudeE6() / 1E6,
                        point.getLongitudeE6() / 1E6, 1);
                String address = "";
                Address a = addresses.get(0);
                Toast.makeText(GoogleMaps.this, a.getCountryName(), 300).show();
            } catch (IOException e1) {
                Toast.makeText(GoogleMaps.this, e1.getMessage(), Toast.LENGTH_LONG).show();
            }

        }

        return false;
4

1 回答 1

0

前段时间我也遇到过同样的问题,我发现Android 2.3.3的模拟器确实存在这样的问题。我可以找到比使用具有不同 Android 版本的另一个模拟器更好的解决方案。

于 2013-01-30T12:01:52.993 回答