I have some code which executes two queries against a database and returns two cursor objects. Is there any way that I can combine these two cursors so that all the ListView gets the data from both?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
||||
|
|
|
There's MergeCursor for that (if there's no way to join tables). |
|||
|
|
FYI - An example of using MergeCursor() c = Cursor containing Contacts columns from Contacts.CONTENT_URI
|
|||
|
|
|
You can also use cwac-merge.
|
|||
|
|
|
Check out MatrixCursor. Maybe this will help you also Android - Database Table Join |
|||
|
|