这就是requestLocationUpdates的样子(我使用它的方式):
requestLocationUpdates(String provIDer, long minTime, float mindistance, LocationListener Listener)
我的问题是minTime和mindistance之间的逻辑连接是OR还是AND.
如果minTime已经过了,它会等待mindistance吗?
OR或AND
解决方法:
documentation on requestLocationUpdate()
说:
The mindistance parameter can also be used to control the frequency of location updates. If it is greater than 0 then the location provIDer will only send your application an update when the location has changed by at least mindistance meters, AND at least minTime milliseconds have passed
因此,如果指定非0值,则必须满足这两个参数才能收到更新.
总结以上是内存溢出为你收集整理的java – requestLocationUpdates参数全部内容,希望文章能够帮你解决java – requestLocationUpdates参数所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)