I had problems with automatic links, so I turned it off, and instead I use html text generation plus this code:
TextView textView = (TextView) findViewById(R.id.TextBox);
textView.setMovementMethod(LinkMovementMethod.getInstance());
textView.setText(Html.fromHtml(strText));
Email link is coming <a href="mailto:my@email.com">my@email.com</a>
Lumis source
share