Lines Matching full:linkify
50 import android.text.util.Linkify;
1734 * This is really just an enhanced version of Linkify.addLinks().
1746 * the current Linkify code will identify "94043" as a phone number and invite
1748 * use Linkify result iff it spans the entire text. Otherwise send the user to maps.
1752 Linkify.addLinks(spanText, Linkify.ALL);
1754 // If Linkify links the entire text, use that result.
1769 Linkify.addLinks(spanText, mWildcardPattern, "geo:0,0?q=");
1776 * any of the existing annotations. Ideally this would be addressed by improving Linkify.
1788 * Start by letting Linkify find anything that isn't a phone number. We have to let it
1794 boolean linkifyFoundLinks = Linkify.addLinks(spanText,
1795 Linkify.ALL & ~(Linkify.PHONE_NUMBERS));
1798 * Get a list of any spans created by Linkify, for the coordinate overlapping span check.
1847 * The Linkify code takes the matching span and strips out everything that isn't a
1876 Linkify.addLinks(spanText, mWildcardPattern, "geo:0,0?q=");