How to make links clickable in text view. This is the problem
(1). view.setMovementMethod(LinkMovementMethod.getInstance());
this works only when textview contains link(anchor tag/href) like this:
<a href="http link">Go to Google</a>
it does'nt work when textview contains link like this: http link
(2). While android:autoLink="web"
this works only when textview contains link like this:
http link
it does'nt work when textview contains link like this:
<a href="httplink">Go to Google</a>
What to do when textview contains both types of link. Please help.