As you can see from the screenshot below I have a ListView with multiple items in it. No matter what I try I can’t seem to make the list item’s not be selectable. I’ve tried all of the follow (in the XML layout for the ListView), but the items are STILL selectable with both a finger and the scroll wheel.
android:clickable="false"
android:longClickable="false"
android:focusable="false"
android:focusableInTouchMode="false"
Any suggestions?

Each row of a
ListVieware selectable, you might be interested inTableLayout, where items are not selectable, to achieve what you are looking for.EDIT:
After searching a bit more, I found this archive post which suggests you try:
Hopefully that works for you.