1

我在 android 应用程序中使用 LocationManager 来获取用户当前坐标。它对我来说很好,但第二步我想向用户显示格式化的地址,而不是以 logn 和 lat 格式显示它。你能帮帮我吗?

4

1 回答 1

0

尝试这个:

Geocoder geocoder = new Geocoder(context);
List<Address> address = geocoder.getFromLocation(Latitude, Longitude, 1);       
于 2011-09-08T17:07:20.827 回答