Why Camera.setParameters(Camera.Parameters) does not work on Sony-Ericsson X10 and Droid?

Posted by mobilekid on Stack Overflow See other posts from Stack Overflow or by mobilekid
Published on 2010-05-01T20:20:33Z Indexed on 2010/05/01 22:07 UTC
Read the original article Hit count: 148

Filed under:
|
|

Has anyone come across a strange behaviour with the Camera API when used on Sony-Ericsson X10 or Droid?

For example the following code doesn't work on those devices. As a result I'm getting a lot of negative feedback on the Market translating into many cancelled orders...

mParameters.set("rotation", orientation);
mParameters.set("jpeg-quality", img_quality);
mParameters.set("picture-size", "1024x768");
mCamera.setParameters(mParameters);

Could you suggest an alternative way of achieving the same? Thanks.

© Stack Overflow or respective owner

Related posts about android

Related posts about android-sdk