服务中的传感器出现问题
我有一个前台服务,可以读取加速度计和方向传感器,并在手机移动时发送短信。
当显示器打开时它工作正常,但当显示器不打开时它不起作用或者会在很多次后发送短信。
服务中有一个广播接收器,用于读取传入的短信,如果我正确发送命令“状态”,它的回复就可以正常工作。
有什么问题吗?
谢谢!
i've a foreground service that read Accelerometer and Orientation sensors, and send a sms when the phone it's moved.
It works fine when the display is turned on, but when not it not works or it send the sms after lot of times.
There is a broadcastreceiver in the service for reading incoming sms that works fine, if i send the command "status" its reply correctly.
What's the problem?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要获取唤醒锁才能继续接收传感器事件。
http://developer.android.com/reference/android/os/PowerManager.html
我建议使用部分唤醒锁。
You need to acquire a wake lock to continue receiving sensor events.
http://developer.android.com/reference/android/os/PowerManager.html
I suggest a partial wake lock.