diff options
author | Yorke Lee <yorkelee@google.com> | 2015-07-29 16:53:05 +0000 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2015-07-29 16:53:05 +0000 |
commit | c14a48169d527b19c476017907b7ceee9b431f98 (patch) | |
tree | 50b8abb922f9258bbeff78bd4aef75d1127ffaed | |
parent | 2b83b0f09ad01ec9651e86b21dc7a19ead6f7d74 (diff) | |
parent | 49b7eecea9e75ca1493ac57662e161e81397556f (diff) |
Merge "Use ACTION_SENDTO for send sms intent" into mnc-dev
-rw-r--r-- | src/com/android/dialer/util/IntentUtil.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com/android/dialer/util/IntentUtil.java b/src/com/android/dialer/util/IntentUtil.java index 7ed99c9c0..2ce3bd1f8 100644 --- a/src/com/android/dialer/util/IntentUtil.java +++ b/src/com/android/dialer/util/IntentUtil.java @@ -146,7 +146,7 @@ public class IntentUtil { } public static Intent getSendSmsIntent(CharSequence phoneNumber) { - return new Intent(Intent.ACTION_VIEW, Uri.parse(SMS_URI_PREFIX + phoneNumber)); + return new Intent(Intent.ACTION_SENDTO, Uri.parse(SMS_URI_PREFIX + phoneNumber)); } public static Intent getNewContactIntent() { |