Camera ISO setting/ shutter speed

前端 未结 3 1321
遇见更好的自我
遇见更好的自我 2020-12-30 09:46

I am looking for a way to change the light sensitivity of my Evo 4G camerea. I know it is not the camera\'s shutter speed because it is a digital camera. The next most relev

3条回答
  •  陌清茗
    陌清茗 (楼主)
    2020-12-30 10:18

    You can use mCamera.getParameters().flatten() to see all the settings your camera support.

    In my situation, the key of the ISO parameter is "iso-speed-values".

    You can use String isoSpeedValues = mCamera.getParameters().get("iso-speed-values") to get all the support values.

    And use mCamera.getParameters().set("iso-speed", value) to set a specify value.

    But I can't find any parameter to set a Shutter Speed(Exposure Time). Any idea?

提交回复
热议问题