• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Apps samsung galaxy s 4g front cam app help

exodot

Lurker
Hello,
I'm trying to make a simple app where it uses the front cam to take a pic. The problem is that I just want see the preview or view finder (what ever you call it), also to make it smaller.

can any one help?


here what i got so far


Code:
Camera camera = Camera.open();
Camera.Parameters parameters = camera.getParameters();
parameters.set("camera-id", 2);
camera.setParameters(parameters);
 
Back
Top Bottom