Is there any way to have WebView auto-link URLs and phone numbers in Android?

If you are loading your own (web) content from a String, then you can do something like this:

final String content = "My email is: [email protected] ...";
Spannable sp = new SpannableString(content);
Linkify.addLinks(sp, Linkify.ALL);
final String html = "<body>" + Html.toHtml(sp) + "</body>";
myWebView.loadData(html, "text/html", "utf-8");

Leave a Comment