Skip to content

Instantly share code, notes, and snippets.

@ssaurel
Created October 19, 2017 12:35
Show Gist options
  • Save ssaurel/4ca0486c04ede46c317d2c76a3fb8e6d to your computer and use it in GitHub Desktop.
Save ssaurel/4ca0486c04ede46c317d2c76a3fb8e6d to your computer and use it in GitHub Desktop.
Flash Light On Method on the SSaurel's Blog
private void flashLightOn() {
CameraManager cameraManager = (CameraManager) getSystemService(Context.CAMERA_SERVICE);
try {
String cameraId = cameraManager.getCameraIdList()[0];
cameraManager.setTorchMode(cameraId, true);
flashLightStatus = true;
imageFlashlight.setImageResource(R.drawable.btn_switch_on);
} catch (CameraAccessException e) {
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment