I have some data in JSON format that I'd like to convert into a cursor so it can be returned by a content provider. What's the best way to go about this?
I considered using a MatrixCursor
but my content provider needs to return type Cursor
, not MatrixCursor
.
Any suggestions would be much appreciated!
Thanks.