我用
Cursor cursor=getContentResolver().query(MediaStore.Audio.Albums.EXTERNAL_CONTENT_URI, null,null, null, null);
String pathName=cursor.getString(cursor.getColumnIndex(Audio.Albums.ALBUM_ART));
找到路径。
然后用Bitmap bm=BitmapFactory.decodeFile(pathName);
bm为null。
用Drawable dra=Drawable.createFromPath(pathName);
dra也为null