How to get thumbnail for video in my /sdcard/Android/data/mypackage/files folder?

后端 未结 12 1722
情深已故
情深已故 2020-11-30 22:21

Query to MediaStore.Video.Media.EXTERNAL_CONTENT_URI returns only video in /sdcard/DCIM/100MEDIA

But I want to get thumbnails for video in

12条回答
  •  情歌与酒
    2020-11-30 23:09

    Use Glide it will fetch the thumbnail in async.

     Glide.with(context)
                        .load(videoFilePath) // or URI/path
                        .into(imgView); //imageview to set thumbnail to
    

提交回复
热议问题