在前台服务中,检查是否有其他应用程序正在使用相机?

发布于 2025-01-11 15:22:31 字数 234 浏览 0 评论 0原文

我在前台服务中使用相机拍照,可以长期使用,例如 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 技术交流群。

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

发布评论

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

评论(2

铁轨上的流浪者 2025-01-18 15:22:31

如果您使用的是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.

他不在意 2025-01-18 15:22:31

这对我有用!

如果返回 true,则表示相机空闲

public boolean isCameraFree() {
        Camera camera = null;
        try {
            camera = Camera.open();
        } catch (RuntimeException e) {
            return false;
        } finally {
            if (camera != null) camera.release();
        }
        return true;
    }

This worked for me!!

if returns true, means camera is free

public boolean isCameraFree() {
        Camera camera = null;
        try {
            camera = Camera.open();
        } catch (RuntimeException e) {
            return false;
        } finally {
            if (camera != null) camera.release();
        }
        return true;
    }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文