I am having trouble loading album covers in a music player app.
When using Glide i code in onBindViewHolder i code it as follows:
val uri: Uri = ContentUris.withAppendedId((Uri.parse("content://media/external/audio/albumart"),albumId)
Glide.with(context)
.load(uri)
into(holder.cover_image_view)
but only a small percentage of the albums are shown with a cover image but i know that the other albums have cover images as i can load them using ContentResolver.getThumbnailImage(....)
Anyone else used Glide to load album covers into a recyclerview?