Como posso exibir a arte do álbum usando o MediaStore.Audio.Albums.ALBUM_ART?

Estou tentando construir um MP3 player e quero que o ImageView exiba a arte do álbum das respectivas músicas. Eu tentei o seguinte, mas não funciona.

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);

Quando tento tocar as músicas, tudo que consigo é uma tela em branco no ImageView.

questionAnswers(7)

yourAnswerToTheQuestion