0
private void cameraIntent() {
        Intent intent = new Intent(MediaStore.INTENT_ACTION_STILL_IMAGE_CAMERA);
        List<ResolveInfo> activities = getActivity().getPackageManager().queryIntentActivities(intent, 0);
       if(activities.size()>0) {
           startActivityForResult(intent, REQUEST_CAMERA);
       }
       else
       {

       }
    }

This is my code i am trying to capture image i want capture image multiple pic but this code is not working can any one suggest me how take multiple capture image in android

MARSH
  • 117
  • 1
  • 7
  • 22
  • "i am trying to capture image" -- that code brings up a compatible camera app. Whether the user takes a photo or not is up to the user, and you are not told whether the user takes zero, one, or several photos. – CommonsWare Apr 21 '18 at 05:44
  • please suggest me how to capture multiple pic from camera – MARSH Apr 21 '18 at 05:46
  • That is covered in [the duplicate question](https://stackoverflow.com/questions/45429837/how-to-take-multiple-images-using-camera-in-android). – CommonsWare Apr 21 '18 at 05:58

0 Answers0