Android OS Forum banner
1 - 1 of 1 Posts

· Android Beginner
Joined
·
1 Posts
Discussion Starter · #1 ·
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:
<br />
<br />
Camera camera = Camera.open();<br />
Camera.Parameters parameters = camera.getParameters();<br />
parameters.set("camera-id", 2);<br />
camera.setParameters(parameters);<br />
<br />
<br />
 
1 - 1 of 1 Posts
This is an older thread, you may not receive a response, and could be reviving an old thread. Please consider creating a new thread.
Top