LocationManager locationManager =(LocationManager) getSystemService(Context.LOCATION_SERVICE);locationManager.requestLocationUpdates( LocationManager.GPS_PROVIDER,WLConstants.DELAY_HOUR,gpsl .getMindistance(),gpsl);
一段时间后,我通过以下代码停止监听器
locationManager.removeUpdates(this);
但问题是它仍在搜索我的gps任何解决方案???如何停止GPS?
@R_403_6120@ 您需要将实现您请求位置更新的LocationListener的同一对象传递给locationManager.removeUpdates()方法.所以,除非这和gpsl是同一个,你应该调用:
locationManager.removeUpdates(gpsl);总结
以上是内存溢出为你收集整理的android如何停止gps全部内容,希望文章能够帮你解决android如何停止gps所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)