如何以编程方式关闭 Blackberry 上的 GPS

发布于 2024-08-04 18:12:03 字数 33 浏览 6 评论 0原文

有谁知道如何以编程方式关闭黑莓内部 GPS 接收器?

Does anyone know how to programmatically turn off the Blackberry internal GPS receiver?

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

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

发布评论

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

评论(1

嗫嚅 2024-08-11 18:12:03

您能做的最好的事情就是通过 LocationListener 接口通知系统您的程序不再对位置感兴趣:

locationProvider.setLocationListener(null, -1, -1, -1);

对 GPS 的访问是通过 JSR 179 进行管理的,它满足所有位置数据请求并管理 GPS 硬件以提供服务。

The best you can do is inform the system that your program is no longer interested in positions via the LocationListener interface:

locationProvider.setLocationListener(null, -1, -1, -1);

Access to the GPS is managed through JSR 179 which satisfies all location data requests and manages the GPS hardware to provide service.

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