Merge pull request #62 from tjwoon/noflashingflash
Resolve alternating flash during autofocus
This commit is contained in:
commit
c80f254496
@ -45,12 +45,6 @@ Status:
|
||||
- Android: DONE
|
||||
- iOS: DONE
|
||||
|
||||
Quirks:
|
||||
|
||||
- __Android__: On Android API Level < 14, flash "on" may cause the flash to
|
||||
alternate between on and off at about a half second/one second interval,
|
||||
instead of making it stay on...
|
||||
|
||||
|
||||
## LICENSE [Apache 2.0](LICENSE.md)
|
||||
|
||||
|
@ -179,7 +179,7 @@ implements SurfaceHolder.Callback {
|
||||
|
||||
Camera.Parameters camParams = camera.getParameters();
|
||||
if(flashMode.equals("on")) {
|
||||
camParams.setFlashMode(Camera.Parameters.FLASH_MODE_ON);
|
||||
camParams.setFlashMode(Camera.Parameters.FLASH_MODE_TORCH);
|
||||
} else if(flashMode.equals("off")) {
|
||||
camParams.setFlashMode(Camera.Parameters.FLASH_MODE_OFF);
|
||||
} else {
|
||||
|
Loading…
Reference in New Issue
Block a user