How to get Thumbnail in Android API 29

前端 未结 2 843
滥情空心
滥情空心 2021-01-19 16:38

Trying to get thumbnails from a video. Prior to API 29, this was managed using MediaStore.Images.Thumbnails. Code example

Bitmap bitmapThumbnail = ThumbnailU         


        
2条回答
  •  -上瘾入骨i
    2021-01-19 16:59

    //You can use this 
    val bitmapThumbnail = ThumbnailUtils.createVideoThumbnail(
                File(filePath),
                Size(120, 120),
                null)
    

提交回复
热议问题