Android set Album Thumbnail
问题 I have retrieved some cover art for an album (I have the id and a Bitmap) and now I want to set it into the MediaStore. I tried a bunch of stuff: private static final Uri ARTWORK_URI = Uri.parse("content://media/external/audio/albumart"); public static void writeArtwork(Context context, Bitmap bmp, int albumId) { ContentResolver res = context.getContentResolver(); Uri uri = ContentUris.withAppendedId(ARTWORK_URI, albumId); LogUtil.i(TAG, "uri= " + uri); if (uri != null) {