1

I am making an android app, and need to use Google maps' reverse geocoding. The relevant code is:

  Geocoder geoCoder = new Geocoder(getApplicationContext(), Locale.getDefault());
  List<Address> matches = geoCoder.getFromLocation(latitude, longitude, 1);
  // latitude and longitude are double variables containing the coordinates.

On the first line of the code above I am getting the compiling error:

"The constructor Geocoder(Context, Locale) is undefined"

I tried googling but could not find a resolution. Thanks.

4

1 回答 1

1

构造函数Geocoder(Context, Locale)已定义。检查您是否导入了正确的类

 android.location.Geocoder

这里的文档

于 2013-05-16T17:47:23.347 回答