在前台服务中,检查是否有其他应用程序正在使用相机?
我在前台服务中使用相机拍照,可以长期使用,例如 5 到 10 小时。问题是,当前台服务正在运行时另一个应用程序开始使用相机时,它会停止拍照,并且用户必须手动重新启动该服务。
我正在循环拍照(我初始化相机实例拍照,然后释放相机并重复)。我在这里看到的解决方案是,在每次循环迭代开始时,我应该添加一个检查以查看相机当前是否正在使用。
如何准确检查相机是否正在被设备上的任何其他应用程序或进程使用?或者有更好的方法来解决我的问题吗?
I am using camera to take pictures in the foreground service, which can be used long term like 5 to 10 hours. The problem is when another app starts using camera while the foreground service is running it stop taking pictures and user have to manually restart the service.
I am taking pictures in a loop ( I initializes the camera instance takes a picture then releases the camera and repeat). The solution I see here, is that at the start of each loop iteration I should add a check to see if the camera is currently in use.
How exactly can I check if the camera is in use by any other application or process on device? or is there a better approach to my problem?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您使用的是camera2 api,请查看CameraManager.AvailabilityCallback回调。
当cameraID可用/不可用时,它会通过回调通知您。
If you are using camera2 api, checkout CameraManager.AvailabilityCallback callback.
it will inform you via callback when a cameraID is available/unavailable.
这对我有用!
如果返回 true,则表示相机空闲
This worked for me!!
if returns true, means camera is free