In fact I have 2 Cursor
s one is SQLite cursor, another one comes from ContentProvider
- beneath it lies complicated SQLite query - but I don't have access to it.
Both cursors has the same unique _ID
field. In a pure SQL it would be really easy to join them using those id field, but not in my case, since 2nd Cursor is not SQLite query.
I need to produce resulting joined Cursor
. Neither CursorJoiner
nor MergeCursor
doesn't help me.
Any ideas, clues, hints?