android mute camera shutter sound?

后端 未结 5 415
梦如初夏
梦如初夏 2020-12-09 19:11

I am using this

camera.takePicture(null, rawCallback, jpegCallback);

but with some devices it makes a sound when the camera captures the image.<

5条回答
  •  伪装坚强ぢ
    2020-12-09 20:08

    You can turn it off programmatically from 4.2 onwards with:

    Camera.CameraInfo info = new Camera.CameraInfo();
    Camera.getCameraInfo(id, info);
    if (info.canDisableShutterSound) {
        mCamera.enableShutterSound(false);
    }
    

提交回复
热议问题