tags:

views:

42

answers:

2

by default for an android listview, when you touch it, it has an orange color. does anyone know how to override this? there doesn't seem to be a method for it.

A: 

In the layout xml file, add the property

android:clickable="false"

to the listview.

AndrewKS
didn't work for me
ok wrong one then. Updated my answer. Try that.
AndrewKS
+1  A: 

You have to define a background for your item views based on a State List Drawable.

Kevin Gaudin