byBy using linkify:
Linkify taketakes 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.domainexample.com"); Linkify.addLinks(textView, Linkify.WEB_URLS); Don't forget to
import android.widget.TextView;