I'm experiencing a weird and apparently undocumented issue on Android ICS. This is the xml code of my listview:
<ListView
android:id="@android:id/list"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:divider="@android:color/transparent"
android:cacheColorHint="@android:color/transparent"
android:focusable="false"
android:listSelector="@drawable/cell_selected_small"
android:descendantFocusability="afterDescendants" />
On Android 2.2 (tested on multiple devices) the listview selection is cleared right after the touch on it ends. I think this is the correct behavior.
On Android 4.0 and above, the listview selection stays selected, even if the onListItemClick() pushes a new Activity on the stack and then the back button is pressed. If then I scroll the listview for a while, the selection disappears after an apparently random amount of time.
Did any of you experience the same issue? Thanks!