I have a TextView in my ArrayAdapter that may contain some hyperlinks. For those links I use Linkify:
TextView
ArrayAdapter
Linkify
public View get
If you are interested to open a link, you can use
String text = "Google"; holder.content.setText(Html.fromHtml(text)); holder.content.setMovementMethod(LinkMovementMethod.getInstance());
this would would work fine for you inside a ListView.