Query songs of an album with CursorLoader
问题 I'd like to get the list of songs of an album by querying the MediaStore with CursorLoader How can i do this ? I can get all the songs of the device with this code : static final String[] TRACK_SUMMARY_PROJECTION = { MediaStore.Audio.Media._ID, MediaStore.Audio.Media.TITLE}; public Loader<Cursor> onCreateLoader(int id, Bundle args) { String sortOrder = MediaStore.Audio.Media.TITLE + " ASC"; String select = null; return new CursorLoader(getActivity(), MediaStore.Audio.Media.EXTERNAL_CONTENT