0

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.

Huy Hoàng Phạm
  • 145
  • 1
  • 2
  • 10

1 Answers1

0

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

Ibungo
  • 1,137
  • 12
  • 23
The Original Android
  • 6,147
  • 3
  • 26
  • 31