私は現在アンドロイドエミュレータ 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;