Search code examples
androidvideoandroid-gallery

How to pick only videos from gallery?


I want to be able to pick only videos from gallery but I only found tutorials that select images but I only want to be able to select videos. Can anyone help?


Solution

  • For example, when you use an intent, you can set the type of your intent. Here I'm using "video/*" to get all videos of my device.

    Intent galleryIntent = new Intent(Intent.ACTION_PICK);
    galleryIntent.setType("video/*");
    startActivity(galleryIntent);