I want to enable the orange highlight that occurs when touching a listView row.
If the onclick event was generated from the row itself, I can adjust the hightlight by setting the style of the listview. However in my case, the clicking event is generated by the TextView underneath with onclick event attached to it.
When touch event occurs, Listview isn't aware of clicking is happening. It doesn't receive focused or pressed event.
Is there bubbling or capturing technique I could use like Flex did? Or any suggestion/solution?
Thank you very much.