我正在查询 contentresolver 以列出设备上的所有专辑。但是我丢失了重复项。这是我的查询还是android数据库的问题?也许是因为我从歌曲表中获取专辑?
String[] projection = {
MediaStore.Audio.Albums.ALBUM_ID,
MediaStore.Audio.Albums.ALBUM,
MediaStore.Audio.Albums.ARTIST
};
String selection = null;
Cursor cursor = context.getContentResolver().query(
MediaStore.Audio.Media.EXTERNAL_CONTENT_URI,
projection,
selection,
null,
null);
谢谢