Where would I get started to create an app that would grab your Album Art based on Album or Artist of the mp3 from the internet (ie. via amazon, play.com, etc..)?

I would likely be using Eclipse.

link|improve this question

feedback

1 Answer

up vote 0 down vote accepted
 Cusor cur = getContentResolver().query(Albums.EXTERNAL_CONTENT_URI, new String[] {Albums.ALBUM_ART}, Albums._ID + "=?", new String[] {albumid}, null);

Album Artist is still undocumented and not available before 2.3.3, I believe.

link|improve this answer
Interesting. I didn't know that about artist. I have seen the ArtistAlbumBrowserActivity.java but I couldn't make much of it nor with what exactly i'm trying to accomplish. – ToddN Aug 5 '11 at 20:51
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.