Android I have a button "Capture image or video", the button "On" I want to either capture an image or video.
But when I name this intention,
Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE); startActivityForResult(intent, CAMERA_REQUEST);
his button to record a camcorder with a hidden camera, and if I name this intention,
Intent intent = new Intent(MediaStore.ACTION_VIDEO_CAPTURE);
its initial video recording is missing for image capture. What should I do? Any help?
source share