Skip to content

Instantly share code, notes, and snippets.

@vxhviet
Last active April 6, 2016 05:57
Show Gist options
  • Save vxhviet/5e3ba30be1dabe9fba212b9fd9805b3a to your computer and use it in GitHub Desktop.
Save vxhviet/5e3ba30be1dabe9fba212b9fd9805b3a to your computer and use it in GitHub Desktop.
Open gallery and choose video

Source: StackOverflow

Question: Open gallery and choose video.

Answer:

Use this for the picking Intent:

Intent intent = new Intent(Intent.ACTION_PICK, android.provider.MediaStore.Images.Media.EXTERNAL_CONTENT_URI);
intent.setType("video/*");
startActivityForResult(intent, REQUEST_TAKE_GALLERY_VIDEO);

Receive the result:

@Override
    protected void onActivityResult(int requestCode, int resultCode, Intent data) {
        super.onActivityResult(requestCode, resultCode, data);

        if (resultCode == RESULT_OK) {
            if (requestCode == REQUEST_TAKE_GALLERY_VIDEO) {
                Uri selectedVideoUri = data.getData();
                String selectedVideoPath = getPath(selectedVideoUri);
            }
        }
    }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment