Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE); intent.putExtra(Intent.EXTRA_ALLOW_MULTIPLE, true);
startActivityForResult(intent, CAMERA_CAPTURE_IMAGE_REQUEST_CODE);
I have tried that one but it will close the camera once I captured once. What I want to let the camera stay on as long as the user won't press back. Help.