Android: disabling highlight on listView click
Posted
by John Moffitt
on Stack Overflow
See other posts from Stack Overflow
or by John Moffitt
Published on 2010-05-25T18:20:38Z
Indexed on
2010/05/26
0:01 UTC
Read the original article
Hit count: 235
I want to disable the orange highlight that occurs when touching a listView row. So far in my xml I have tried the following:
android:focusable="false"
android:focusableInTouchMode="false"
android:clickable="false"
More information: I want there to be zero difference when a user touches the screen on this listView object.
© Stack Overflow or respective owner