What I'm trying to archive is: When user press a button (only 1 times), the camera will take 5,6 continous picture and save it to SD card.
Is there any way to do that? In my code, I'm calling a Camera Intent.
What I'm trying to archive is: When user press a button (only 1 times), the camera will take 5,6 continous picture and save it to SD card.
Is there any way to do that? In my code, I'm calling a Camera Intent.
One way is to launch an intent
like so:
Intent mIntent = new Intent(MediaStore.INTENT_ACTION_STILL_IMAGE_CAMERA_SECURE);
startActivityForResult(mIntent, IMAGE_CAPTURE);
Please read up on Intent, MediaStore, and Camera for further details.
T Kwee