I’m using a SimpleCursorAdapter to display data from a Cursor in a ListView. When the user clicks a list item, the Cursor moves to the item position and retrieves some data from that row. Is this okay when I have already set an Adapter for the Cursor? Or should I move back to the first row when I’m done fetching data?
I’m using a SimpleCursorAdapter to display data from a Cursor in a ListView. When
Share
It is the responsibility of anything using a
Cursorto set its own position. Hence, you should not need to “move back to the first row when I’m done fetching data”.