android 可以修复打开相机时的错误吗?
您好,我编写了一个应用程序,在部署时显示 mCamera=Camera.open(); 行错误 其中mCamera是Camera的引用。
请问如何解决?
谢谢
Hello I wrote an application and while deploying shows error in line mCamera=Camera.open();
Where mCamera is the reference of Camera.
How can it be solved any help please?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要首先检查并调用释放函数是否有其他应用程序正在使用相机。
我使用了以下代码,效果很好。它捕获图像并将其保存到媒体卡上。不要忘记将权限放入清单文件中。
代码:
You need to first check and call release function if some other application is using the Camera.
I've used the following code which works fine. It captures the image and saves it to the media card. Don't forget to put the permissions in manifest file.
Code: