Android Get latitude and longitude with location manager(Android 使用位置管理器获取经纬度)
问题描述
我正在尝试使用位置管理器获取用户位置,但该位置始终返回 null.我还要求用户打开 gps.
I'm trying to get the user location with location manager but the location always returns null. I also am asking to the user to turn on the gps.
这是我的代码:
int permisioncheck = ContextCompat.checkSelfPermission(getActivity(), Manifest.permission.ACCESS_FINE_LOCATION);
if(permisioncheck == 0){
lm = (LocationManager)getContext().getSystemService(Context.LOCATION_SERVICE);
List<String> providers = lm.getProviders(true);
Location bestLocation = null;
for (String provider : providers) {
Location location = lm.getLastKnownLocation(provider);
if (location == null) {
continue;
}
if (bestLocation == null || location.getAccuracy() < bestLocation.getAccuracy()) {
// Found best last known location: %s", l);
bestLocation = location;
}
}
if(bestLocation == null){
System.out.println("is NULL!");
}
}else{
ActivityCompat.requestPermissions(getActivity(), new String[]{Manifest.permission.ACCESS_FINE_LOCATION}, 1);
}
希望有人能帮我找出错误,谢谢.
I hope that someone could help me to find the error, thanks.
推荐答案
错误"是您假设 getLastKnownLocation()
将返回 Location
.通常,它会返回 null
.使用 getLastKnownLocation()
作为可能的优化,否则您需要 requestLocationUpdates()
,然后使用 onLocationChanged()
方法中的位置.
The "error" is that you are assuming that getLastKnownLocation()
will return a Location
. Frequently, it will return null
. Use getLastKnownLocation()
as a possible optimization, but otherwise you need to requestLocationUpdates()
, then use the location in the onLocationChanged()
method.
查看这个示例项目和文档了解更多信息.
这篇关于Android 使用位置管理器获取经纬度的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Android 使用位置管理器获取经纬度


基础教程推荐
- 在 Java 中创建日期的正确方法是什么? 2022-01-01
- 如何在 JFrame 中覆盖 windowsClosing 事件 2022-01-01
- 如何在 Spring @Value 注解中正确指定默认值? 2022-01-01
- 从 python 访问 JVM 2022-01-01
- Java 实例变量在两个语句中声明和初始化 2022-01-01
- 不推荐使用 Api 注释的描述 2022-01-01
- 大摇大摆的枚举 2022-01-01
- Java Swing计时器未清除 2022-01-01
- 验证是否调用了所有 getter 方法 2022-01-01
- 多个组件的复杂布局 2022-01-01