I have an HTTP link in my layout: <string name="contact_us">Please <a href="mailto:SERVICES@some.com">email services</a> or call <a href="tel:4399999999">(408) 888-5555</a> for questions.</string>
And in my activity:
disclaimer = (TextView) view.findViewById(R.id.disclaimer);
disclaimer.setMovementMethod(LinkMovementMethod.getInstance());
This works by opening a browser or the dial. But now I want to track some statistics before opening the links. Is there a way to "Listen" when this links are clicked?