I have a list from SQLDatabase using a custom CursorAdaptor. I would like to go back to the activity that I used to create items, when I click on them in listview.so that I can edit posts. But nothing happens when I implement the OnItemClick and getItemId () methods in the CursorAdapter, although I'm not sure if I'm right. Here is my code:
public void onItemClick(AdapterView<?> adapview, View view, int position, long rowId) { Cursor c = adapter.retrieveRow(rowId);
source share