我想要使用CursorLoader獲取不在給定播放列表中的所有音樂。可能嗎?在Android中找到所有不在播放列表中的音樂
我們可以使用下面的代碼
loader = new CursorLoader(context, MediaStore.Audio.Playlists.Members
.getContentUri("external", playlistID), proj,
MediaStore.Audio.Media.IS_MUSIC + " != 0 ", null, ORDER_BY);
獲取列表中的所有音樂,但我需要做的相反,後者是讓所有不在給定播放列表中的音樂。我怎樣才能做到這一點?
我認爲有些事情應該工作作爲selectionArgs兩個 – Imon
是否有從另一個光標減去光標的內容的方式?像allSongsCursor - singlePlaylistCursor ..... – Imon