I have two totally unrelated tables Notes and Tasks. I need to show both of them together in a combined list view. To achieve this, the combined cursor given to list adapter should have a FULL OUTER JOIN of the two tables. I am not sure which of CursorJoiner/MergeCursor is the way to go.Can someone give some working example of how to achieve this?
(Changing the content provider is not possible. So I have to work with cursors.)
EDIT: Also I need to be able to sort the items in a combined form. Notes has a subject column and Tasks has a title column. I want the combined cursor sorted alphabetically based on both of them.