I have not been able to find how to let the user choose a video from their videos, then playback the video in the app. How can I do this?
This is all the code I have for videos right now:
Intent intent = new Intent( android.provider.MediaStore.ACTION_VIDEO_CAPTURE );
startActivityForResult(intent);
I don't know how to access the file the user chooses.