How would I go about adding clickable links inside a ListView?
If you have text that is already in HTML format, the best thing to do is the following:
TextView textcontent = (TextView) findViewById(...);
textcontent.setMovementMethod(LinkMovementMethod.getInstance());
String text = "stackoverflow.com";
textcontent.setText(Html.fromHtml(text));
This will cause any link tags to be clickable in your text view. Alternately, you could use android:autoLink="web" as suggested by Legend, but this has the side-effect of a) linkifying urls that are not wrapped in anchor tags, and b) potentially missing urls or linkifying things that aren't urls. If you want the smarts of autoLink then you should use it, but if all you want is to linkify the tags that are already there, you're better off using setMovementMethod().
See this bug report for more details: http://code.google.com/p/android/issues/detail?id=2219