gpt4 book ai didi

android - Geocoder.getFromLocation() 不返回任何地址

转载 作者:行者123 更新时间:2023-11-29 19:33:28 28 4
gpt4 key购买 nike

我正在尝试通过经度和纬度获取位置信息(国家名称、城市名称等)。但是,以下代码不返回任何地址,addresses.size() 始终为零!!我需要帮助。谢谢。

public class FirstUsage extends Activity{

private LocationListener myLocListener;
private LocationManager myLocManager;
private TextView tv;
private Button okButt;

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.first_use_page);

tv = (TextView)findViewById(R.id.TextView_firstPageCoordination);
okButt = (Button)findViewById(R.id.firstPageOKButt);

myLocManager = (LocationManager) getSystemService(LOCATION_SERVICE);
setLocationChangeListener();
}

private void setLocationChangeListener() {
myLocListener = new LocationListener() {
@Override
public void onLocationChanged(Location location) {

/*----------to get City-Name from coordinates ------------- */
String countryName = null;
Geocoder gcd = new Geocoder(FirstUsage.this, Locale.getDefault());
List<Address> addresses;
try {
addresses = gcd.getFromLocation(location.getLatitude(), location.getLongitude(), 1);
if (addresses.size() > 0) {

Address returnedAddress = addresses.get(0);
countryName = returnedAddress.getCountryName();
}
} catch (IOException e) {
e.printStackTrace();
}
tv.setText("Your current country is: " + countryName + "\n Your current coordination is:\n" + "Longitude: " + location.getLongitude() + " Latitude: " + location.getLatitude());


/////
if (ActivityCompat.checkSelfPermission(FirstUsage.this, Manifest.permission.ACCESS_FINE_LOCATION) != PackageManager.PERMISSION_GRANTED && ActivityCompat.checkSelfPermission(FirstUsage.this, Manifest.permission.ACCESS_COARSE_LOCATION) != PackageManager.PERMISSION_GRANTED) {
return;
}
myLocManager.removeUpdates(myLocListener);
}

最佳答案

来自android documentation :

The Geocoder class requires a backend service that is not included in the core android framework.

问题是 Geocoder 后端服务在您的设备/模拟器中不可用。您的设备/模拟器需要 Google API 才能与 Grocoder 一起正常工作。

关于android - Geocoder.getFromLocation() 不返回任何地址,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39578181/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com