GPS 和 SensorManager 值应更新相机预览
大家好 我希望在 GPS 位置和传感器管理器值发生变化时更新我的相机预览,我目前为此目的使用两项服务,但我无法接收预览更新。是否可以将这些服务合并为一个,然后使用意图和广播接收器?或者有什么替代方案吗? 请在这方面指导我 谢谢
Hi everyone
I wish to update my camera preview whenever there is a change in GPSlocation and Sensor Manager values, i am currently using two services for this purpose,but i am not able to receive the updates on my preview. Is it possible to combine these services into one and then use intents and broadcastReceivers? or any alternative is present?
Please guide me on this
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
仅使用一个
Service
来跟踪 GPS 和传感器数据,并使用ResultReceiver
或Messenger
和Message
来传递返回对Activity
中的Handler
的更新。编辑:
抱歉,忘记提及您在用于启动
的
。Intent
中将ResultReceiver
或Message
作为可打包的额外内容传递服务Use just one
Service
to keep track of GPS and Sensor data and use aResultReceiver
orMessenger
andMessage
to pass back updates to theHandler
in yourActivity
.Edit:
Sorry, forgot to mention that you pass the
ResultReceiver
orMessage
as a parcelable extra in theIntent
you use to start theService
.