October 2018
Intermediate to advanced
464 pages
15h 17m
English
It's the same process if you want to call the default video capture application. Just change the Intent in step 5, as follows:
Intent takeVideoIntent = new Intent(MediaStore.ACTION_VIDEO_CAPTURE);
You can get the URI to the video in onActivityResult(), as follows:
Uri videoUri = intent.getData();