Search code examples
androidgoogle-photos

A problem with Google Photos media intent


 val mediaIntent = Intent(Intent.ACTION_PICK, MediaStore.Images.Media.EXTERNAL_CONTENT_URI)
 mediaIntent.type = "image/*, video/*"
 startActivityForResult(mediaIntent, REQUEST_MEDIA)

When I call this intent Google Photos shows me only images?


Solution

  • Try this

    val mediaIntent = Intent(Intent.ACTION_PICK, MediaStore.Images.Media.EXTERNAL_CONTENT_URI)
    mediaIntent.type = "*/*"
    mediaIntent.putExtra(Intent.EXTRA_MIME_TYPES, arrayOf( "video/*","image/*"))
    startActivityForResult(mediaIntent, REQUEST_MEDIA)