I have some clickable views and I want to set the default available background that is present on list click (in ICS is a blue color). I have tried putting as background thi
A solution similar to flx's answer, but without additional attribute definition.
Platform independent style used for pre-Holo devices (in res\values\styles.xml):
res\values\styles.xml
Style for Holo devices (API Level 14+) (in res\values-v14\styles.xml):
res\values-v14\styles.xml
Apply style to needed view, e.g., LinearLayout:
LinearLayout
...