In my Android app, I have a TextView. The text can contain links. This is an example of a text:
This is just a test. Click the following link http://www.google.com to visit Google.
Note that the text is not in HTML; it will be just a regular text.
I want to do something like textView.parseLinks(), then in the TextView, http://www.google.com will be hyper-linked and clickable to open up the page.
Is this possible?
Thanks
the text is not HTML it will be just regular text a normal person will put in.If the user will put in text, then is this EditText or TextView ? My question is will the user put the text or it would be pre-defined ?