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
Setting Background restricts you from choosing a background color or drawable later! So my advice is to add this style to your styles.xml:
Background
styles.xml
And then on every view you only need to add:
android:theme="@style/TouchableView"
Like ANY VIEW!
Don't forget to add onClickListener to see the results.
onClickListener