I have a straight forward ListView with a ListAdapter and custom onItemClick method for the list. My ListView items are clickable to perform other functions. However, some of my ListView elements contain an email address that should be clickable too.
I found Linkify, and added it to the email address textview per the docs.
After doing so, the ListView item containing such a "clickable" textview is now no longer clickable to perform the other functions.
I have tried adding the OnItemClickListener after I create the entire view, to no avail :(
Any idea's on how to have my ListView items clickable eventhough they contain a Linkified textView?
My deepest appologies for not searching further before asking the question to begin with. I have found the answer to my question, and posted it as an answer.