I have a TextView, in which I am putting some HTML content using Html.fromHtml(). The TextView has an onClick() method, which is used to perform several actions. Sometimes the HTML that is in the TextView contains links, which are recognised as links, but are unclickable. I can make them clickable, but then that stops the onClick method.
My question is, is there a way that, if the user clicks on a link then the link opens, but if the user doesnt click on a link then the onClick() method for the TextView is called, rather than it being either one or the other for every click.
Thanks