I\'m brand new to Android development... coming from iPhone and .Net background. I\'ve seen very similar questions to this one, but none of them dealt with the SimpleCursorA
Another way:
listView.setOnItemClickListener(new AdapterView.OnItemClickListener() { @Override public void onItemClick(AdapterView> parent, View arg1, int position, long arg3) { Cursor cursor = (Cursor) parent.getAdapter().getItem(position); //TODO } });