(Not specific to ListView, but to Adapter).
I keep implementing this when I subclass BaseAdapter:
@Override public long getItemId(int positio
Yes it is an abstract function which is called by android to map the adapter data-set row id to your list position.
You are welcome to dig deeper