Camera.Parameters.FLASH_MODE_TORCH replacement for Android 2.1

后端 未结 2 1172
独厮守ぢ
独厮守ぢ 2020-12-01 13:29

I am trying to write an app that requires the LED flash to go into torch mode. The problem is, Android 2.1 does not support this mode and therefore I cannot support the pla

2条回答
  •  眼角桃花
    2020-12-01 13:52

    In my case for Samsung devices I needed to set focus mode to infinity and it started to work

    params.setFocusMode(Camera.Parameters.FOCUS_MODE_INFINITY);
    mCamera.setParameters(params);
    mCamera.startPreview();
    

提交回复
热议问题