gpt4 book ai didi

android - 当前位置的纬度和经度

转载 作者:搜寻专家 更新时间:2023-11-01 09:17:06 27 4
gpt4 key购买 nike

我如何从android获取当前位置的纬度和经度?

最佳答案

您可以使用 LocationListener 类在移动时获取坐标。

在不移动时使用以下方法获取坐标。

LocationManager lm = (LocationManager) getSystemService(Context.LOCATION_SERVICE);    
Location location = lm.getLastKnownLocation(LocationManager.GPS_PROVIDER);

if(location == null){
LAT = 0.0;
LONG = 0.0;
loc.setText("No Location");
}

深入讨论--

http://www.devx.com/wireless/Article/39239/1954

关于android - 当前位置的纬度和经度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3862731/

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