What is the best way to choose a video on Android?

I have a perfect Intent.ACTION_PICK with my picture.

startActivityForResult (new Intention (Intent.ACTION_PICK, android.provider.MediaStore.Images.Media.INTERNAL_CONTENT_URI), SELECT_IMAGE);

But this does not work with the video. When I click on a video from my list, he plays vidoe instead of sending me back.

startActivityForResult (new Intent (Intent.ACTION_PICK, android.provider.MediaStore.Video.Media.INTERNAL_CONTENT_URI), SELECT_VIDEO);

enter image description here

Idea?

+7
source share
1 answer

You want to use Intent.ACTION_GET_CONTENT and specify video/* to go to Intent.setType . See https://stackoverflow.com>

+12
source

All Articles