Android: Let user pick image or video from Gallery

后端 未结 8 628
死守一世寂寞
死守一世寂寞 2021-01-30 20:44

Is it possible to to start Gallery in such a way so both pictures and videos are shown?

Thanks

8条回答
  •  旧巷少年郎
    2021-01-30 21:10

    UPDATE 2021

    FINALLY a solution working for Android 9.

    This piece of code only open image apps, and you can select both images and videos. I tried a bunch of different combinations and this exact code will make it work.

        libraryIntent.setType("video/*, image/*");
        String[] mimetypes = {"image/*", "video/*"};
        libraryIntent.putExtra(Intent.EXTRA_MIME_TYPES, mimetypes);
    

提交回复
热议问题