Skip to content

Instantly share code, notes, and snippets.

@msomu
Created October 28, 2015 14:38
Show Gist options
  • Select an option

  • Save msomu/2f25dd765a24dffa3802 to your computer and use it in GitHub Desktop.

Select an option

Save msomu/2f25dd765a24dffa3802 to your computer and use it in GitHub Desktop.
make a textview link
String str_text = "<a href=http://www.google.com >Google</a>";
textView.setMovementMethod(LinkMovementMethod.getInstance());
textView.setText(Html.fromHtml(str_text));
textView.setLinkTextColor(Color.BLUE);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment