I have the following TextView defined:
by using linkify: Linkify take a piece of text and a regular expression and turns all of the regex matches in the text into clickable links
TextView textView = (TextView) findViewById(R.id.textView);
textView.setText("http://www.domain.com");
Linkify.addLinks(textView, Linkify.WEB_URLS);
Don't forget to
import android.widget.TextView;