How To Take Multiple Pictures Using Android Android.provider.mediastore.action_image_capture?
I have the following code. Uri outputFileUri = Uri.fromFile( new File(path +'/image01.jpg') ); camera_intent = new Intent(android.provider.MediaStore.ACTION_IMAGE_CAPTURE ); camera
Solution 1:
I believe that the camera activity handles one pic at a time. But you could start it again from onActivityResult()
until you get the required number of pics.
Post a Comment for "How To Take Multiple Pictures Using Android Android.provider.mediastore.action_image_capture?"