summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTom Taylor <tomtaylor@google.com>2012-11-16 10:42:58 -0800
committerAndroid Git Automerger <android-git-automerger@android.com>2012-11-16 10:42:58 -0800
commita9c047e134d38ce3993bf75588b3c02ad9b11ff3 (patch)
tree0dad0f7005bbc0484816800086aec1fb37eeb7f7
parent9a5bd4040c704812e5b7cc80825f8cc9eec8c37e (diff)
parent160a0ef8b362614c702ee2f9c34318578a91cc00 (diff)
downloadandroid_frameworks_ex-a9c047e134d38ce3993bf75588b3c02ad9b11ff3.tar.gz
android_frameworks_ex-a9c047e134d38ce3993bf75588b3c02ad9b11ff3.tar.bz2
android_frameworks_ex-a9c047e134d38ce3993bf75588b3c02ad9b11ff3.zip
am 160a0ef8: am f5ac3286: SMS text messaging omits numbers in parentheses
* commit '160a0ef8b362614c702ee2f9c34318578a91cc00': SMS text messaging omits numbers in parentheses
-rw-r--r--chips/src/com/android/ex/chips/RecipientEditTextView.java12
1 files changed, 11 insertions, 1 deletions
diff --git a/chips/src/com/android/ex/chips/RecipientEditTextView.java b/chips/src/com/android/ex/chips/RecipientEditTextView.java
index 011b1e9..5327389 100644
--- a/chips/src/com/android/ex/chips/RecipientEditTextView.java
+++ b/chips/src/com/android/ex/chips/RecipientEditTextView.java
@@ -88,6 +88,7 @@ import java.util.HashMap;
import java.util.HashSet;
import java.util.Set;
import java.util.regex.Matcher;
+import java.util.regex.Pattern;
/**
* RecipientEditTextView is an auto complete text view for use with applications
@@ -194,6 +195,15 @@ public class RecipientEditTextView extends MultiAutoCompleteTextView implements
private boolean mDragEnabled = false;
+ // This pattern comes from android.util.Patterns. It has been tweaked to handle a "1" before
+ // parens, so numbers such as "1 (425) 222-2342" match.
+ private static final Pattern PHONE_PATTERN
+ = Pattern.compile( // sdd = space, dot, or dash
+ "(\\+[0-9]+[\\- \\.]*)?" // +<digits><sdd>*
+ + "(1?[ ]*\\([0-9]+\\)[\\- \\.]*)?" // 1(<digits>)<sdd>*
+ + "([0-9][0-9\\- \\.][0-9\\- \\.]+[0-9])"); // <digit><digit|sdd>+<digit>
+
+
private final Runnable mAddTextWatcher = new Runnable() {
@Override
public void run() {
@@ -938,7 +948,7 @@ public class RecipientEditTextView extends MultiAutoCompleteTextView implements
return false;
}
- Matcher match = Patterns.PHONE.matcher(number);
+ Matcher match = PHONE_PATTERN.matcher(number);
return match.matches();
}