前端之家收集整理的这篇文章主要介绍了
android如何停止gps,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
通过以下
代码启动监听器后工作正常.
LocationManager locationManager =(LocationManager) getSystemService(Context.LOCATION_SERVICE);
locationManager.requestLocationUpdates(
LocationManager.GPS_PROVIDER,WLConstants.DELAY_HOUR,gpsl
.getMinDistance(),gpsl);
一段时间后,我通过以下代码停止监听器
locationManager.removeUpdates(this);
但问题是它仍在搜索我的gps任何解决方案???如何停止GPS?
您需要将实现您请求位置更新的LocationListener的同一对象传递给locationManager.removeUpdates()
方法.
所以,除非这和gpsl是同一个,你应该调用:
locationManager.removeUpdates(gpsl);
原文链接:https://www.f2er.com/android/317707.html