Is it possible to take a picture with out opening camera ? I tried with intents but its opening camera, but i don't want to open camera.I tried following
Intent takePictureIntent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
startActivityForResult(takePictureIntent, 1);
and after that receiving the activity.But how to do with out opening the camera?
Yes it is possible for that use SurfaceHolder.Callback Interface . And
For that use dummy surfaceview so you can take picture from background.
like
And do some reasearch work on this dummy Surfaceview.