Having the textView with autoLinkMask
set to Linkify.ALL
, i'm able to open the links and the browser shows the web-page.
I need to call another activity that will do it with it's webView not leaving the application.
Important notes:
- changing the textView content is not an option, i need to have the links displayed as they are with the schemes they have,
- there's lot of text in the textView, not only the link.
I looked through movementMethod
and IntentFilters
, might miss something but looks like it can't help.
So, any option to intercept the touched link in the TextView
to do something with it not opening the browser ?
If you want to mention this SO question, please give some arguments why cause it doesn't seem to solve the same problem as I have.