views:

45

answers:

1

Is it possible to get an android cursor from an array (either ArrayList or StringaArray)?

+2  A: 

Loxley has one solution: create your own Cursor class, extending AbstractCursor, to wrap around your collection.

Another option to not create an ArrayList, but instead create a MatrixCursor.

CommonsWare
MatrixCursor sounds gd, thanks
ng93