Following is the object of my song which I am playing.
song = new Song() {
@Override
public String getTitle() {
return "Song Name Test";
}
@Override
public String getArtist() {
return "Artist Name Test";
}
@Override
public String getAlbumTitle() {
return "Album Name Test";
}
@Override
public Uri getAlbumArt() {
return Uri.parse("http://m.taazi.com/uploads/thumbs/album_cover.jpg");
}
@Override
public Uri getUri() {
return Uri.parse("http://sound21.mp3slash.net/indian/killdil/%5BSongs.PK%5D%2008%20-%20Kill%20Dil%20-%20Nakhriley.mp3");
}
@Override
public Bundle getExtra() {
return null;
}
};
In notification AlbumArt is not being loaded.
following is the screenshot.

Following is the object of my song which I am playing.
In notification AlbumArt is not being loaded.

following is the screenshot.