get cursor from array
Is it possib开发者_Go百科le to get an android cursor from an array (either ArrayList
or StringaArray
)?
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
.
精彩评论