如何在不使用 GPS、加速计的情况下检测设备是否静止
他们有什么方法可以在不使用 GPS 和加速计的情况下确定设备是静止的吗?
我可以使用位置管理器的网络更新。
我尝试使用
mLocManager.requestLocationUpdates(LocationManager.NETWORK_PROVIDER, 0, 10, mLocListener);
“考虑到仅当设备移动至少 10 米时我才会收到位置更新”。因此,如果没有网络更新,则可以说设备位置静止。
但这似乎无法正常工作。我什至移动了 200 米或更远,但没有收到任何更新。 他们有什么办法让它发挥作用吗? 或者任何其他方式。
谢谢
任何帮助将不胜感激。
Is their any way for deciding the device is stationary without using GPS and accelerometer.
I can use network updates from location manager.
I tried using
mLocManager.requestLocationUpdates(LocationManager.NETWORK_PROVIDER, 0, 10, mLocListener);
Considering i will receive location updates only if device moves atleast 10 meters. So absence of network updates can say device position stationary.
But this didnt seem to work properly. I even moved 200 meters or more i got no updates.
Is their any way to make it work.
Or any other way.
Thank You
Any Help would be appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
network_provider 在很大程度上取决于您所在地区有多少个手机信号塔。使用这种方法,精度可以达到几英里。此链接提到了一些替代方案,例如使用范围内的 WiFi SSID 进行三角测量。希望这有帮助!
Android 中的 NETWORK_PROVIDER 位置精度问题
The network_provider depends hugely on how many cell towers are in your area. Using that method, accuracy can be as large as a few miles. This link mentions some alternatives like triangulating using what WiFi SSIDs are in range. Hope this helps!
NETWORK_PROVIDER Location Accuracy Issue in Android