I use
Uri deviceMusic = MediaStore.Audio.Media.EXTERNAL_CONTENT_URI;
String selection = MediaStore.Audio.Media.IS_MUSIC + " != 0";
String sortOrder = MediaStore.Audio.Media.DISPLAY_NAME;
Cursor cursor = this.getContentResolver().query(deviceMusic, null,
selection, null, sortOrder);
to quer music from device,
but it can not find music in "extSdCard".
So, How to query music when the device have mnt/sdcrad and "extSdCard" in the same time?
Edit: Sorry, what i mean is i can get music in mnt/sdcard
but i can not get music in mnt/extSdCard
extSdCard is a real sdcard which can remove by hand on the device
picture: enter link description here