I'm searching a method to use front facing camera but with compatibility with Android 2.2.

I've seen than Android 2.3 bring Camera.open(Idx) but I need to use with Android 2.2 too.

link|improve this question
feedback

1 Answer

Try something like this, I'm working through this as well.

Camera camera = Camera.open();
camera.setDisplayOrientation(90);

Camera.Parameters params = camera.getParameters();
params.set("camera-id", 2);
camera.setParameters(params);
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.