Android - How to handle when a link is clicked on a TextView via Linkify

I want to do something extra when the link is clicked on a TextView.

TextView is referenced using an xml installation or using the Linkify class. Like android:autoLink="true"orLinkify(textView, Linkify.WEB_URLS);

How to catch an event when a link is clicked?

+4
source share

Source: https://habr.com/ru/post/1534842/


All Articles