简体   繁体   中英

How to get songs from album in android?

I am getting all album details. Now I want to get all songs from any album. How to query for songs in a specific album?

I've used this code to get album details:

Cursor cursor = contentResolver.query(
                MediaStore.Audio.Albums.getContentUri("external"),
                new String[] { 
                    MediaStore.Audio.Albums.ARTIST, 
                    MediaStore.Audio.Albums._ID,
                    MediaStore.Audio.Albums.NUMBER_OF_SONGS, 
                    MediaStore.Audio.Albums.ALBUM}, null, null,
                MediaStore.Audio.Albums.ALBUM + " ASC");

Please anybody help me.

Thanks

You can write simple sqlite query for 'selection' string on contentResolver.query by fields on MediaStore.Audio.Media properties. Please check my answer on How to get songs and other media from an Album ID?

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM