How to turn on the Android Flashlight

后端 未结 5 978
南方客
南方客 2021-01-02 05:44

Update

Check out my answer

Original

I\'m trying to turn on the camera flashlight on the LG Revolution within my pro

5条回答
  •  慢半拍i
    慢半拍i (楼主)
    2021-01-02 06:38

    This worked well for LG Nexus:

    camera = Camera.open();
    camera.setPreviewTexture(new SurfaceTexture(0));
    camera.setParameters(p);
    camera.startPreview();
    

提交回复
热议问题