summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
Diffstat (limited to 'core')
-rw-r--r--core/java/android/content/Intent.java19
1 files changed, 19 insertions, 0 deletions
diff --git a/core/java/android/content/Intent.java b/core/java/android/content/Intent.java
index 519eb36..da254fd 100644
--- a/core/java/android/content/Intent.java
+++ b/core/java/android/content/Intent.java
@@ -2293,6 +2293,25 @@ public class Intent implements Parcelable, Cloneable {
"android.intent.action.NEW_OUTGOING_CALL";
/**
+ * Broadcast Action: An outgoing sms is about to be sent.
+ *
+ * The Intent will have the following extras:
+ * destAddr - the phone number originally intended to be dialled
+ * scAddr - the service center address
+ * multipart - indicate whether this is a multipart or single message
+ * parts - ArrayList<String> of text parts (one item if multipart=false)
+ * sentIntents - ArrayList<PendingIntent> to send on send
+ * deliveryIntents - ArrayList<PendingIntent> to send on delivery
+ *
+ * Once the broadcast is finished, resultData is used as the actual
+ * number to text.
+ *
+ * @hide
+ */
+ public static final String ACTION_NEW_OUTGOING_SMS =
+ "android.intent.action.NEW_OUTGOING_SMS";
+
+ /**
* Broadcast Action: Have the device reboot. This is only for use by
* system code.
*