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 ?
Asked
Active
Viewed 171 times
2
-
Check the `Camera` class in the Android documentation. – Zelig63 Feb 07 '20 at 16:43
1 Answers
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