android - TextView with autoLink="web" inside ListView has animation issue -


i have listview. there textview each list row. textview, have set following properties in xml file:

android:autolink="web" android:focusable="false" android:focusableintouchmode="false" 

also, parent layout of list row, have set:

android:descendantfocusability="blocksdescendants" 

the 3 focus-related properties set after going through several answers problem in textview used become un-clickable if contained link (e.g., www.example.com).

now clicks registered properly. however, problem following: textviews have link, setonitemclicklistener , setonitemlongclicklistener animations lost. animations lost when click textview part of listview row. still occur when click remaining part of listview row.

that is, clicks working, animation lost. how back?


Comments