I have spent some days trying to solve a problem I have with ListViews on Android. I would like to implement a single selection list box using a ListView. So, I would like t
I believe this is due to the way ListViews number and re-use rows. So, rather than using parent.getChildAt(i) to get the row you wish to manipulate, use the View object passed to onItemClick itself.