diff options
| author | 2015-02-25 21:43:48 +0000 | |
|---|---|---|
| committer | 2015-02-25 21:43:50 +0000 | |
| commit | 001f0b31b6f86a528f13dcc4e9378275f7f03a2c (patch) | |
| tree | 8763bebff4d7e834320e91b36314aad4b35fd758 | |
| parent | 47ed3195f9d57af1fa5a35d8a9146d68dadaa624 (diff) | |
| parent | 1ff7196be945f29c0ba75595d447e504dbafffc7 (diff) | |
Merge "Document the limitations of Linkify addresses"
| -rw-r--r-- | core/java/android/text/util/Linkify.java | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/core/java/android/text/util/Linkify.java b/core/java/android/text/util/Linkify.java index c1341e16f803..8e9eb48268b8 100644 --- a/core/java/android/text/util/Linkify.java +++ b/core/java/android/text/util/Linkify.java @@ -78,7 +78,10 @@ public class Linkify { /** * Bit field indicating that street addresses should be matched in methods that - * take an options mask + * take an options mask. Note that this uses the + * {@link android.webkit.WebView#findAddress(String) findAddress()} method in + * {@link android.webkit.WebView} for finding addresses, which has various + * limitations. */ public static final int MAP_ADDRESSES = 0x08; |