Found this posted in Samsung Java ME forum..

Yes the front face camera 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.

I Hope this helps someone

On Aug 5, 3:25 pm, HP <harshap...@gmail.com> wrote:
> I would like to know if the APIs for accessing thefrontfacingcamera
> of this phone are available.

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to