How can I display Album Art using MediaStore.Audio.Albums.ALBUM_ART?
I'm trying to build a MP3 player and I want the ImageView to display the album art of respective songs. I've tried the following, but it doesn't work. albumcover = (ImageView) findViewById(R.id.cover); String coverPath = songsList.get(songIndex).get(MediaStore.Audio.Albums.ALBUM_ART); Drawable img = Drawable.createFromPath(coverPath); albumcover.setImageDrawable(img); When I try to play the songs, all I get is a blank screen in the ImageView. Ken Wolf Here's how I get album art for a song: Cursor cursor = getContentResolver().query(MediaStore.Audio.Albums.EXTERNAL_CONTENT_URI, new String[]