The context: I want to have a ListView that wouldn't receive focus (e.g. won't highlight row when user touches it). Yet each row widget has it's own OnClickListener. Here's what I specify in layout xml:
android:choiceMode="none" android:focusableInTouchMode="false"
android:focusable="false"
The ListView still behaves exactly the same. Could someone plz explain
- the interrelation between the three
- what's the right way to create a ListView that doesn't receive focus?
TIA.