Restricting Android camera
Posted
by Johnson Tey
on Stack Overflow
See other posts from Stack Overflow
or by Johnson Tey
Published on 2010-02-24T20:12:57Z
Indexed on
2010/03/29
0:03 UTC
Read the original article
Hit count: 460
Hello!
Avoiding having to create a whole camera app myself, I am calling up:
Intent camera = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
this.startActivityForResult(camera, PICTURE_RESULT);
However, the camera is very advanced and beautiful :) but not for my purposes. :(
Is there a way to restrict the camera to control size, resolution, disable setup button, flash, face recognition, etc...?
© Stack Overflow or respective owner