2

I googled to find front flash light to use as a torch but I am not able to find any answer. Is there a way or not if so ? How to ?

Md Aman
  • 310
  • 3
  • 9

1 Answers1

0

Sample for turning on front camera flashlight:

CameraManager cameraManager = (CameraManager) getSystemService(Context.CAMERA_SERVICE);
String cameraId = cameraManager.getCameraIdList()[1]; //Id 1 is front camera
cameraManager.setTorchMode(cameraId, true);
Suryakant Bharti
  • 632
  • 1
  • 5
  • 23