0
我正在嘗試編輯MediaStore的Mp3-信息。 所有編輯過的Mp3歌曲都沒有相冊名稱。更新MediaStore音頻標記將不起作用
ContentResolver res = FindCoverActivity.this.getContentResolver();
Uri sSongUri = MediaStore.Audio.Media.EXTERNAL_CONTENT_URI;
Uri uri2 = ContentUris.withAppendedId(sSongUri, song_id);
ContentValues values2 = new ContentValues();
values2.put(MediaStore.Audio.Media.ALBUM_ID,"9999"); //new album_id. I dont know how to get an unused id..
values2.put(MediaStore.Audio.Media.ALBUM, "test_album");
Integer as = res.update(uri2, values2,null,null);
if (as != 0) {
// got updated
}
此代碼不起作用。結果是一個雜亂的媒體商店..
有誰知道更多?謝謝!