如果我没有在 requestLocationUpdates() 中定义任何时间和距离,会发生什么?
如果我无法通过这种方法的最小时间和距离,会发生什么?什么时候会调用这个方法?
locationManager.requestLocationUpdates(provider,0, 0,locationListener);
If I cant pass minimum time and distance in this method, what will happen? When will this method be called?
locationManager.requestLocationUpdates(provider,0, 0,locationListener);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
通过将 minTime 和 minDistance 设置为 0,您的手机将会死机。
由文档:
您将得到非常非常快的响应,而且设备上的电池消耗将非常严重。
by setting minTime and minDistance to 0 you will get a dead phone.
by the docs:
you will just get very very rapid responses and also the battery drain on a device will be horrendous.