Ive just changed my code to use CursorLoader as opposed to the depreciated manageCursor() methods.
But have no idea how to get fields from the cursor at current clicked position
public Loader<Cursor> onCreateLoader(int id, Bundle args) {
return new SQLiteCursorLoader(getActivity(), new DatabaseHelper(getActivity()), "SELECT M.id as _id, M.name as desc FROM myTable M", null);
}
@Override
public void onListItemClick(ListView l, View v, int position, long id) {
// before I did,
// cursor.moveTo(position);
// cursor.getInt(1);
// WHat goes here?
Surely I dont have to take the id and requery what the cursor already contains. That would defeat some of the point of this managed concept.
There must be a way to access the fields at a given position.