I want to develop camera functionality for my app where I have to capture 10 images. The camera should not close, rather it should continuously take pictures while I hold the shutter button. I am using intent for opening the camera, but after taking one image the camera is stopping. How can I achieve the desired functionality?
Asked
Active
Viewed 117 times
-1
-
1For this kind functionality you need to implement custom camera – akhilesh0707 Jun 30 '17 at 10:56
-
can you just clearyfy how to make – androidking Jun 30 '17 at 10:59
-
Do you mean you want to implement burst mode? – Abhi Jun 30 '17 at 11:01
-
no if i click image then i want 1 image but camera still open then if i click again i want second image – androidking Jun 30 '17 at 11:06
-
like android inbuild camera after tacking image you can tack onother image without closing camera – androidking Jun 30 '17 at 11:07
1 Answers
3
You would need to write your own camera code, using android.hardware.Camera
and/or the android.hardware.camera2.*
classes. There is no Intent
structure that camera app developers are required to support that handles your use case.

CommonsWare
- 986,068
- 189
- 2,389
- 2,491