The twitter and facebook apps allow you to click on a username which in turn takes you to a new activity. How can this be achieved?
I know there is Linkify, but it seems like it can only send you to a browser/phonecall/ etc. How can I make text that are like “@mynamehere” clickable so that it starts a new activity?
First, you have to detect your link (using regular expressions for example) and then you have to attach a ClickableSpan to your text.
You have an example here.