flashlight
flashlight copied to clipboard
Off doesn't turn off flashlight, DROID Turbo
Not sure why. Button works to turn it on, but does not turn it back off.
If I happen to stumble across why, or a fix, I'll let you know.
Although I don't have access to that phone, I've updated it to try and turn off more aggressively.
It is worked on my case.
public synchronized void off() {
if (camera != null) {
cameraParameters.setFlashMode(Camera.Parameters.FLASH_MODE_OFF);
camera.setParameters(cameraParameters);
camera.stopPreview(); <-------------- Like this!!!!!!!!!!!!!!!!!!!!
}
}