Yes the front face camera of the Galaxy S I9000 is accessible in the following way:
Camera camera = Camera.open();
Camera.Parameters parameters = camera.getParameters();
parameters.set("camera-id", 2);
camera.setParameters(parameters);
This is the normal way a camera is accessed in Android only that you set the parameter 'camera-id' on 2 for the front camera. For the normal camera this is 1.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.