我想在没有预览的情况下设置和使用相机。
Intent cameraIntent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
cameraIntent.putExtra(MediaStore.EXTRA_OUTPUT, outputFileUri);
这不起作用,因为它只会打开相机应用程序。我想要的是在不打开相机应用程序的情况下拍照,例如按下按钮拍摄照片时不会显示任何预览。
我查看了Android
开发者网站关于相机的信息,但这很令人困惑。
任何有用的链接或代码示例都将受到赞赏。
答案 0 :(得分:0)
为此,您必须创建自己的摄像机代码,以下链接将有助于此目的 how to take camera capture without a preview from a service or thread?