如何解决“Android 2.3.4 中的 minTime 不起作用”问题错误

发布于 2024-12-07 09:02:22 字数 600 浏览 0 评论 0原文

漫画...我已经在 android 1.62.3.3 中测试了一个非常简单的 GPS 位置...基本上是这样的:

LocationManager lm = (LocationManager)getSystemService(Context.LOCATION_SERVICE);
Location myLocation = lm.getLastKnownLocation(LocationManager.GPS_PROVIDER);
lm.requestLocationUpdates( LocationManager.GPS_PROVIDER, 10000, 0, listener);

我已经在 [1.6和 2.3.3] 等待通知者 10 秒[在 onLocationChanged... 处显示祝酒词...],但奇怪的是在 2.3.4 版本中android 它只是忽略 minTime [不管它是 10000 还是 120000] 它一直在寻找变化......

有人遇到这个问题吗?也许不是 2.3.4 的问题,但其他人也有这个问题吗?

Comic... I've tested in an android 1.6 and 2.3.3 a very simple gps location... with basically this:

LocationManager lm = (LocationManager)getSystemService(Context.LOCATION_SERVICE);
Location myLocation = lm.getLastKnownLocation(LocationManager.GPS_PROVIDER);
lm.requestLocationUpdates( LocationManager.GPS_PROVIDER, 10000, 0, listener);

I've tested in both [1.6 and 2.3.3] with the 10 seconds waiting for the notifiers [showing a toast at onLocationChanged...], But strangely in an 2.3.4 version of android it simply ignores the minTime [does not matter if it is 10000 or 120000] it keep looking for changes all the time...

Anyone with this problem? Maybe it is not in the 2.3.4 the problem but anyone else had this problem too?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

桜花祭 2024-12-14 09:02:22

这是按记录工作的。 minTime 是一个建议,而不是规则。引用文档:

此字段仅用作节省电量的提示,位置更新之间的实际时间可能大于或小于此值。

This is working as documented. minTime is a suggestion, not a rule. Quoting the documentation:

This field is only used as a hint to conserve power, and actual time between location updates may be greater or lesser than this value.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文