Skip to content

Instantly share code, notes, and snippets.

@anotherdev
Last active August 29, 2015 14:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anotherdev/ac3a027a440187cb1b3d to your computer and use it in GitHub Desktop.
Save anotherdev/ac3a027a440187cb1b3d to your computer and use it in GitHub Desktop.
Works on pre-lollipop but not on lollipop. :(
TextView tv = ButterKnife.findById(layout, R.id.tv);
tv.setAutoLinkMask(Linkify.PHONE_NUMBERS);
tv.setLinksClickable(true);
Pattern pattern = Pattern.compile("(\\d[\\s-]*){4,22}\\d");
Linkify.addLinks(tv, pattern, "tel:");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment