I want to join two cursors so that the contents of the second cursor also appear in the first cursor after joining.
This is where my code is,
public final Uri AllImage_URI_Int = MediaStore.Images.Media.INTERNAL_CONTENT_URI; public final Uri AllAudio_URI = MediaStore.Audio.Media.EXTERNAL_CONTENT_URI; cContentList = managedQuery(AllImage_URI_Int, null, null, null, MediaStore.Images.ImageColumns.TITLE); cList_Int = managedQuery(AllImage_URI, null, null, null, MediaStore.Images.ImageColumns.TITLE);
Should I use CursorJoiner in this case?
I want to pass this cursor to SimpleListAdapter? How can I join these two cursors?
Thanks!!
source share