Android: how to check the flash light is available on device?

前端 未结 4 527
一生所求
一生所求 2021-01-18 10:27

How I check the flash light available on device?also want to know how can I On/Off the flash light? I have put the code but not working right now? I search out this

4条回答
  •  青春惊慌失措
    2021-01-18 10:39

    This can help full to turn on/off flash light of device. This is give me satisfaction, Hope be useful to you also.

    Turn On camera Flash

    camera = Camera.open();
    Parameters p = camera.getParameters();
    p.setFlashMode(Parameters.FLASH_MODE_TORCH);
    camera.setParameters(p);
    camera.startPreview();
    

    Turn Off camera Flash

    camera = Camera.open();
    Parameters p = camera.getParameters();
    p.setFlashMode(Parameters.FLASH_MODE_OFF);
    camera.setParameters(p);
    camera.stopPreview();
    

    Put this Permission in manifest file

    
    
    

    For more detail you can go HERE.

提交回复
热议问题