I am working upon a music player app for android. I'm trying to use Picasso (an external library) to load the album arts efficiently. But the album arts are not getting displayed. There's no error in the code and the project compiles properly but the images are not getting displayed.
To do this, I'm fetching the album art Uri from "MediaStore.Audio.AlbumColumns.ALBUM_ART". Then I use this in my list adapter's getView() method:
Picasso.with(context).load(Uri.parse(album_art_uri)).into(myImageView);
I don't know what's wrong here? Please help me figure it out.