来自gps的城市名称

时间:2016-07-15 12:41:22

标签: android gps location android-gps

我正在尝试在应用程序中获取城市名称。就像GPS显示纽约所以这个地方应该在文本视图中设置为纽约,如果GPS显示位置为印度,那么文本视图应该显示为印度

1 个答案:

答案 0 :(得分:0)

试试这段代码:

Geocoder geocoder;
List<Address> addresses;
geocoder = new Geocoder(this, Locale.getDefault());

addresses = geocoder.getFromLocation(latitude, longitude, 1); 

String city = addresses.get(0).getLocality();