I want to get all the musics which are not in a given playlist using CursorLoader. Is it possible?
We can get all the music in a list using the following code
loader = new CursorLoader(context, MediaStore.Audio.Playlists.Members
.getContentUri("external", playlistID), proj,
MediaStore.Audio.Media.IS_MUSIC + " != 0 ", null, ORDER_BY);
But I need to do the opposite, which is to get all the music that are not in a given playlist. How can I do that?