summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYorke Lee <yorkelee@google.com>2015-07-29 17:21:08 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2015-07-29 17:21:08 +0000
commit7803a759563422a12eeaf5c54561d86fd41b0d49 (patch)
tree384dd985ec52e71bfa323398eef839474a83ca8d
parent3e9a75b7da4feb61307031591608996d936547b5 (diff)
parentc14a48169d527b19c476017907b7ceee9b431f98 (diff)
am c14a4816: Merge "Use ACTION_SENDTO for send sms intent" into mnc-dev
* commit 'c14a48169d527b19c476017907b7ceee9b431f98': Use ACTION_SENDTO for send sms intent
-rw-r--r--src/com/android/dialer/util/IntentUtil.java2
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() {