Home | History | Annotate | Download | only in calendar

Lines Matching defs:Linkify

51 import android.text.util.Linkify;
1764 * This is really just an enhanced version of Linkify.addLinks().
1776 * the current Linkify code will identify "94043" as a phone number and invite
1778 * use Linkify result iff it spans the entire text. Otherwise send the user to maps.
1782 Linkify.addLinks(spanText, Linkify.ALL);
1784 // If Linkify links the entire text, use that result.
1799 Linkify.addLinks(spanText, mWildcardPattern, "geo:0,0?q=");
1806 * any of the existing annotations. Ideally this would be addressed by improving Linkify.
1818 * Start by letting Linkify find anything that isn't a phone number. We have to let it
1824 boolean linkifyFoundLinks = Linkify.addLinks(spanText,
1825 Linkify.ALL & ~(Linkify.PHONE_NUMBERS));
1828 * Get a list of any spans created by Linkify, for the coordinate overlapping span check.
1877 * The Linkify code takes the matching span and strips out everything that isn't a
1906 Linkify.addLinks(spanText, mWildcardPattern, "geo:0,0?q=");