I'm trying to use Linkify with a custom pattern which is supposed to match phone numbers which are either 10 or 11 digits long. I've written the following code -
Pattern japPhoneNoPattern = Pattern.compile("[0-9]{10,11}");
Linkify.addLinks(viewHolder.right_message, japPhoneNoPattern, "");
But it's not converting the text to link. Any idea what wrong I might be doing ?
In case it matters, I'm using linkify inside a ListView.