Archives for: "January 2015, 18"
Id in onItemClick is not your Object Id
public abstract void onItemClick (AdapterView<?> parent, View view, int position, long id) in AdapterView Last parameter calls id, but that will be row id, not the data object id in item. You should use position and getItemAtPosition to get the data… more »