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
  • 340
  • 3
  • 10

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
  • 673
  • 1
  • 6
  • 24