Android Camera2 front camera

前端 未结 4 1574
刺人心
刺人心 2021-02-19 02:46

I recently noticed that the Camera API is deprecated and I found the new API called Camera2.

I have read the documentation but I don\'t really understand it.

So

4条回答
  •  醉酒成梦
    2021-02-19 03:31

    0 for Back 1 for Front

    For Back Camera, we have to do this inside openCamera method:

    cameraId = manager.getCameraIdList()[0];

    For Facing Front camera, we have to add this below line inside openCamera method:

    cameraId = manager.getCameraIdList()[1];

    I have added all the codes and screenshot here

提交回复
热议问题