I am trying to capture still Image and Video using same intent like default camera app. Don't want to Create custom camera.
Android allows me to either take picture or Capture video.
Is it possible and How.If not why?
I am trying to capture still Image and Video using same intent like default camera app. Don't want to Create custom camera.
Android allows me to either take picture or Capture video.
Is it possible and How.If not why?
It is completely impossible to have Android take photo and take video simultaneously, as a software limitation not a hardware one.
It would require:
A better approach would be to take the video and pull a frame out of it. You can find/use libraries to process videos or you can take a look at AOSP source for thumbnail caching for code examples.