-3

我想显示 Lat 和 long 的持续更新以及 location address 。

我能够接收到连续的 lat/lng 但无法找到位置地址。

基本上,想将这两者结合起来: https ://developer.android.com/training/location/receive-location-updates.html

https://developer.android.com/training/location/display-address.html

我怎样才能做到这一点?

谢谢。

4

1 回答 1

0

嗨,您可以使用 Geocoder 类获取位置地址

Geocoder gcd = new Geocoder(this, Locale.getDefault());

List<Address> addresses;
String city;

try {

    addresses = gcd.getFromLocation(lat,lon, 1);

    if (addresses.size() > 0) 
        city = addresses.get(0).getLocality();

} catch (IOException e) {
    e.printStackTrace();
}
于 2015-07-16T09:19:32.993 回答