In my Android app, I have a LinearLayout View that contains other views. The LinearLayout is clickable, but when it is clicked, it does not flash orange like it should. How can I get it to flash?
feedback
|
|
To produce the same flash effect you see when you click a listView item try this in your LinearLayout click handler:
| |||
feedback
|
|
I think you need to define 2 states for your layout if it is not natively defined for it. Have a look here if you want, it explains how to do it for a button for instance. | |||
|
feedback
|