Is it possible somehow to startActivityForResult() to bring out where I want to select a video, or record it from a camera, or choose from a gallery? Now I can only open the window with the record
Intent intent = new Intent(MediaStore.ACTION_VIDEO_CAPTURE); intent.putExtra(MediaStore.EXTRA_DURATION_LIMIT, 7); intent.putExtra(MediaStore.EXTRA_VIDEO_QUALITY, 0); startActivityForResult(intent, VIDEO_CAPTURE);