调用 Camera.takePicture Android 后禁用相机快照

发布于 2024-10-18 07:34:46 字数 121 浏览 3 评论 0原文

我在相机对象上调用 takePicture(),同时显示使用 SurfaceView 拍摄的内容的预览。我希望能够调用 takePicture() 而不会导致预览屏幕冻结并显示刚刚拍摄的快照。如何禁用此功能并保持预览在后台运行?

I am calling takePicture() on my camera object while showing a preview of what is being taken using a surfaceView. I want to be able to call takePicture() without the preview screen freezing with a snapshot of what has just been taken. How can I disable this and keep the preview running in the background?

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

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

发布评论

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

评论(2

两个我 2024-10-25 07:34:47

我希望能够调用 takePicture(),而预览屏幕不会冻结,并显示刚刚拍摄的快照。如何禁用此功能并保持预览在后台运行?

你不知道。当设备从 CCD 读取数据并转换为 JPEG 时,SurfaceView 预览不会更新。

I want to be able to call takePicture() without the preview screen freezing with a snapshot of what has just been taken. How can I disable this and keep the preview running in the background?

You don't. While the device is reading the data off the CCD and converting into JPEG, the SurfaceView preview is not updated.

绝不服输 2024-10-25 07:34:47
(new AsyncTask<byte[], String, String>() {

                @Override
                protected String doInBackground(byte[]... params) {
                    savePictureToSDCard(params[0]);
                    return null;
                }
            }).execute(imageData);
(new AsyncTask<byte[], String, String>() {

                @Override
                protected String doInBackground(byte[]... params) {
                    savePictureToSDCard(params[0]);
                    return null;
                }
            }).execute(imageData);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文