Nexus 5x reverse landscape sensor fix in a android camera preview app

前端 未结 3 1576
轮回少年
轮回少年 2020-12-03 03:51

I am kind of newbie in Android development, so my apologies in advance if my question is trivial. In one part of my app I need a live preview of my rear camera, so I created

3条回答
  •  臣服心动
    2020-12-03 04:16

    if (Build.MODEL.equals("Nexus 5X")){
         // rotate camera 180°
         mCamera.setDisplayOrientation(180);
    }
    

    Change 5x to 5X will be ok.

提交回复
热议问题