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
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?