/* * Copyright (C) 2006 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package android.provider; import android.annotation.IntDef; import android.annotation.RequiresPermission; import android.annotation.SdkConstant; import android.annotation.SdkConstant.SdkConstantType; import android.annotation.SystemApi; import android.annotation.TestApi; import android.annotation.UnsupportedAppUsage; import android.app.job.JobService; import android.content.ComponentName; import android.content.ContentResolver; import android.content.ContentValues; import android.content.Context; import android.content.Intent; import android.database.ContentObserver; import android.database.Cursor; import android.database.sqlite.SqliteWrapper; import android.net.Uri; import android.os.Build; import android.telephony.Rlog; import android.telephony.ServiceState; import android.telephony.SmsMessage; import android.telephony.SubscriptionManager; import android.telephony.TelephonyManager; import android.text.TextUtils; import android.util.Patterns; import com.android.internal.telephony.PhoneConstants; import com.android.internal.telephony.SmsApplication; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.util.HashSet; import java.util.Set; import java.util.regex.Matcher; import java.util.regex.Pattern; /** * The Telephony provider contains data related to phone operation, specifically SMS and MMS * messages, access to the APN list, including the MMSC to use, and the service state. * *
Note: These APIs are not available on all Android-powered
* devices. If your app depends on telephony features such as for managing SMS messages, include
* a {@code
Only the default SMS app (selected by the user in system settings) is able to write to the * SMS Provider (the tables defined within the {@code Telephony} class) and only the default SMS * app receives the {@link android.provider.Telephony.Sms.Intents#SMS_DELIVER_ACTION} broadcast * when the user receives an SMS or the {@link * android.provider.Telephony.Sms.Intents#WAP_PUSH_DELIVER_ACTION} broadcast when the user * receives an MMS.
* *Any app that wants to behave as the user's default SMS app must handle the following intents: *
"android.provider.Telephony.SMS_DELIVER"). The broadcast receiver must also
* require the {@link android.Manifest.permission#BROADCAST_SMS} permission.
* This allows your app to directly receive incoming SMS messages.
"application/vnd.wap.mms-message".
* The broadcast receiver must also require the {@link
* android.Manifest.permission#BROADCAST_WAP_PUSH} permission.
* This allows your app to directly receive incoming MMS messages.
"android.intent.action.SENDTO"
* ) with schemas, sms:, smsto:, mms:, and
* mmsto:.
* This allows your app to receive intents from other apps that want to deliver a * message.
"android.intent.action.RESPOND_VIA_MESSAGE") with schemas,
* sms:, smsto:, mms:, and mmsto:.
* This service must also require the {@link
* android.Manifest.permission#SEND_RESPOND_VIA_MESSAGE} permission.
* This allows users to respond to incoming phone calls with an immediate text message * using your app.
Other apps that are not selected as the default SMS app can only read the SMS * Provider, but may also be notified when a new SMS arrives by listening for the {@link * Sms.Intents#SMS_RECEIVED_ACTION} * broadcast, which is a non-abortable broadcast that may be delivered to multiple apps. This * broadcast is intended for apps that—while not selected as the default SMS app—need to * read special incoming messages such as to perform phone number verification.
* *For more information about building SMS apps, read the blog post, Getting Your SMS Apps Ready for KitKat.
* */ public final class Telephony { private static final String TAG = "Telephony"; /** * Not instantiable. * @hide */ private Telephony() { } /** * Base columns for tables that contain text-based SMSs. */ public interface TextBasedSmsColumns { /** Message type: all messages. */ public static final int MESSAGE_TYPE_ALL = 0; /** Message type: inbox. */ public static final int MESSAGE_TYPE_INBOX = 1; /** Message type: sent messages. */ public static final int MESSAGE_TYPE_SENT = 2; /** Message type: drafts. */ public static final int MESSAGE_TYPE_DRAFT = 3; /** Message type: outbox. */ public static final int MESSAGE_TYPE_OUTBOX = 4; /** Message type: failed outgoing message. */ public static final int MESSAGE_TYPE_FAILED = 5; /** Message type: queued to send later. */ public static final int MESSAGE_TYPE_QUEUED = 6; /** * The type of message. *Type: INTEGER
*/ public static final String TYPE = "type"; /** * The thread ID of the message. *Type: INTEGER
*/ public static final String THREAD_ID = "thread_id"; /** * The address of the other party. *Type: TEXT
*/ public static final String ADDRESS = "address"; /** * The date the message was received. *Type: INTEGER (long)
*/ public static final String DATE = "date"; /** * The date the message was sent. *Type: INTEGER (long)
*/ public static final String DATE_SENT = "date_sent"; /** * Has the message been read? *Type: INTEGER (boolean)
*/ public static final String READ = "read"; /** * Has the message been seen by the user? The "seen" flag determines * whether we need to show a notification. *Type: INTEGER (boolean)
*/ public static final String SEEN = "seen"; /** * {@code TP-Status} value for the message, or -1 if no status has been received. *Type: INTEGER
*/ public static final String STATUS = "status"; /** TP-Status: no status received. */ public static final int STATUS_NONE = -1; /** TP-Status: complete. */ public static final int STATUS_COMPLETE = 0; /** TP-Status: pending. */ public static final int STATUS_PENDING = 32; /** TP-Status: failed. */ public static final int STATUS_FAILED = 64; /** * The subject of the message, if present. *Type: TEXT
*/ public static final String SUBJECT = "subject"; /** * The body of the message. *Type: TEXT
*/ public static final String BODY = "body"; /** * The ID of the sender of the conversation, if present. *Type: INTEGER (reference to item in {@code content://contacts/people})
*/ public static final String PERSON = "person"; /** * The protocol identifier code. *Type: INTEGER
*/ public static final String PROTOCOL = "protocol"; /** * Is the {@code TP-Reply-Path} flag set? *Type: BOOLEAN
*/ public static final String REPLY_PATH_PRESENT = "reply_path_present"; /** * The service center (SC) through which to send the message, if present. *Type: TEXT
*/ public static final String SERVICE_CENTER = "service_center"; /** * Is the message locked? *Type: INTEGER (boolean)
*/ public static final String LOCKED = "locked"; /** * The subscription to which the message belongs to. Its value will be * < 0 if the sub id cannot be determined. *Type: INTEGER (long)
*/ public static final String SUBSCRIPTION_ID = "sub_id"; /** * The MTU size of the mobile interface to which the APN connected * @hide */ public static final String MTU = "mtu"; /** * Error code associated with sending or receiving this message *Type: INTEGER
*/ public static final String ERROR_CODE = "error_code"; /** * The identity of the sender of a sent message. It is * usually the package name of the app which sends the message. *Note: * This column is read-only. It is set by the provider and can not be changed by apps. *
Type: TEXT
*/ public static final String CREATOR = "creator"; } /** * Contains all text-based SMS messages. */ public static final class Sms implements BaseColumns, TextBasedSmsColumns { /** * Not instantiable. * @hide */ private Sms() { } /** * Used to determine the currently configured default SMS package. * @param context context of the requesting application * @return package name for the default SMS package or null */ public static String getDefaultSmsPackage(Context context) { ComponentName component = SmsApplication.getDefaultSmsApplication(context, false); if (component != null) { return component.getPackageName(); } return null; } /** * Return cursor for table query. * @hide */ public static Cursor query(ContentResolver cr, String[] projection) { return cr.query(CONTENT_URI, projection, null, null, DEFAULT_SORT_ORDER); } /** * Return cursor for table query. * @hide */ @UnsupportedAppUsage(maxTargetSdk = Build.VERSION_CODES.P, trackingBug = 115609023) public static Cursor query(ContentResolver cr, String[] projection, String where, String orderBy) { return cr.query(CONTENT_URI, projection, where, null, orderBy == null ? DEFAULT_SORT_ORDER : orderBy); } /** * The {@code content://} style URL for this table. */ public static final Uri CONTENT_URI = Uri.parse("content://sms"); /** * The default sort order for this table. */ public static final String DEFAULT_SORT_ORDER = "date DESC"; /** * Add an SMS to the given URI. * * @param resolver the content resolver to use * @param uri the URI to add the message to * @param address the address of the sender * @param body the body of the message * @param subject the pseudo-subject of the message * @param date the timestamp for the message * @param read true if the message has been read, false if not * @param deliveryReport true if a delivery report was requested, false if not * @return the URI for the new message * @hide */ @UnsupportedAppUsage public static Uri addMessageToUri(ContentResolver resolver, Uri uri, String address, String body, String subject, Long date, boolean read, boolean deliveryReport) { return addMessageToUri(SubscriptionManager.getDefaultSmsSubscriptionId(), resolver, uri, address, body, subject, date, read, deliveryReport, -1L); } /** * Add an SMS to the given URI. * * @param resolver the content resolver to use * @param uri the URI to add the message to * @param address the address of the sender * @param body the body of the message * @param subject the psuedo-subject of the message * @param date the timestamp for the message * @param read true if the message has been read, false if not * @param deliveryReport true if a delivery report was requested, false if not * @param subId the subscription which the message belongs to * @return the URI for the new message * @hide */ @UnsupportedAppUsage public static Uri addMessageToUri(int subId, ContentResolver resolver, Uri uri, String address, String body, String subject, Long date, boolean read, boolean deliveryReport) { return addMessageToUri(subId, resolver, uri, address, body, subject, date, read, deliveryReport, -1L); } /** * Add an SMS to the given URI with the specified thread ID. * * @param resolver the content resolver to use * @param uri the URI to add the message to * @param address the address of the sender * @param body the body of the message * @param subject the pseudo-subject of the message * @param date the timestamp for the message * @param read true if the message has been read, false if not * @param deliveryReport true if a delivery report was requested, false if not * @param threadId the thread_id of the message * @return the URI for the new message * @hide */ @UnsupportedAppUsage public static Uri addMessageToUri(ContentResolver resolver, Uri uri, String address, String body, String subject, Long date, boolean read, boolean deliveryReport, long threadId) { return addMessageToUri(SubscriptionManager.getDefaultSmsSubscriptionId(), resolver, uri, address, body, subject, date, read, deliveryReport, threadId); } /** * Add an SMS to the given URI with thread_id specified. * * @param resolver the content resolver to use * @param uri the URI to add the message to * @param address the address of the sender * @param body the body of the message * @param subject the psuedo-subject of the message * @param date the timestamp for the message * @param read true if the message has been read, false if not * @param deliveryReport true if a delivery report was requested, false if not * @param threadId the thread_id of the message * @param subId the subscription which the message belongs to * @return the URI for the new message * @hide */ @UnsupportedAppUsage public static Uri addMessageToUri(int subId, ContentResolver resolver, Uri uri, String address, String body, String subject, Long date, boolean read, boolean deliveryReport, long threadId) { ContentValues values = new ContentValues(8); Rlog.v(TAG,"Telephony addMessageToUri sub id: " + subId); values.put(SUBSCRIPTION_ID, subId); values.put(ADDRESS, address); if (date != null) { values.put(DATE, date); } values.put(READ, read ? Integer.valueOf(1) : Integer.valueOf(0)); values.put(SUBJECT, subject); values.put(BODY, body); if (deliveryReport) { values.put(STATUS, STATUS_PENDING); } if (threadId != -1L) { values.put(THREAD_ID, threadId); } return resolver.insert(uri, values); } /** * Move a message to the given folder. * * @param context the context to use * @param uri the message to move * @param folder the folder to move to * @return true if the operation succeeded * @hide */ @UnsupportedAppUsage public static boolean moveMessageToFolder(Context context, Uri uri, int folder, int error) { if (uri == null) { return false; } boolean markAsUnread = false; boolean markAsRead = false; switch(folder) { case MESSAGE_TYPE_INBOX: case MESSAGE_TYPE_DRAFT: break; case MESSAGE_TYPE_OUTBOX: case MESSAGE_TYPE_SENT: markAsRead = true; break; case MESSAGE_TYPE_FAILED: case MESSAGE_TYPE_QUEUED: markAsUnread = true; break; default: return false; } ContentValues values = new ContentValues(3); values.put(TYPE, folder); if (markAsUnread) { values.put(READ, 0); } else if (markAsRead) { values.put(READ, 1); } values.put(ERROR_CODE, error); return 1 == SqliteWrapper.update(context, context.getContentResolver(), uri, values, null, null); } /** * Returns true iff the folder (message type) identifies an * outgoing message. * @hide */ @UnsupportedAppUsage public static boolean isOutgoingFolder(int messageType) { return (messageType == MESSAGE_TYPE_FAILED) || (messageType == MESSAGE_TYPE_OUTBOX) || (messageType == MESSAGE_TYPE_SENT) || (messageType == MESSAGE_TYPE_QUEUED); } /** * Contains all text-based SMS messages in the SMS app inbox. */ public static final class Inbox implements BaseColumns, TextBasedSmsColumns { /** * Not instantiable. * @hide */ private Inbox() { } /** * The {@code content://} style URL for this table. */ public static final Uri CONTENT_URI = Uri.parse("content://sms/inbox"); /** * The default sort order for this table. */ public static final String DEFAULT_SORT_ORDER = "date DESC"; /** * Add an SMS to the Draft box. * * @param resolver the content resolver to use * @param address the address of the sender * @param body the body of the message * @param subject the pseudo-subject of the message * @param date the timestamp for the message * @param read true if the message has been read, false if not * @return the URI for the new message * @hide */ @UnsupportedAppUsage public static Uri addMessage(ContentResolver resolver, String address, String body, String subject, Long date, boolean read) { return addMessageToUri(SubscriptionManager.getDefaultSmsSubscriptionId(), resolver, CONTENT_URI, address, body, subject, date, read, false); } /** * Add an SMS to the Draft box. * * @param resolver the content resolver to use * @param address the address of the sender * @param body the body of the message * @param subject the psuedo-subject of the message * @param date the timestamp for the message * @param read true if the message has been read, false if not * @param subId the subscription which the message belongs to * @return the URI for the new message * @hide */ @UnsupportedAppUsage public static Uri addMessage(int subId, ContentResolver resolver, String address, String body, String subject, Long date, boolean read) { return addMessageToUri(subId, resolver, CONTENT_URI, address, body, subject, date, read, false); } } /** * Contains all sent text-based SMS messages in the SMS app. */ public static final class Sent implements BaseColumns, TextBasedSmsColumns { /** * Not instantiable. * @hide */ private Sent() { } /** * The {@code content://} style URL for this table. */ public static final Uri CONTENT_URI = Uri.parse("content://sms/sent"); /** * The default sort order for this table. */ public static final String DEFAULT_SORT_ORDER = "date DESC"; /** * Add an SMS to the Draft box. * * @param resolver the content resolver to use * @param address the address of the sender * @param body the body of the message * @param subject the pseudo-subject of the message * @param date the timestamp for the message * @return the URI for the new message * @hide */ @UnsupportedAppUsage public static Uri addMessage(ContentResolver resolver, String address, String body, String subject, Long date) { return addMessageToUri(SubscriptionManager.getDefaultSmsSubscriptionId(), resolver, CONTENT_URI, address, body, subject, date, true, false); } /** * Add an SMS to the Draft box. * * @param resolver the content resolver to use * @param address the address of the sender * @param body the body of the message * @param subject the psuedo-subject of the message * @param date the timestamp for the message * @param subId the subscription which the message belongs to * @return the URI for the new message * @hide */ @UnsupportedAppUsage public static Uri addMessage(int subId, ContentResolver resolver, String address, String body, String subject, Long date) { return addMessageToUri(subId, resolver, CONTENT_URI, address, body, subject, date, true, false); } } /** * Contains all sent text-based SMS messages in the SMS app. */ public static final class Draft implements BaseColumns, TextBasedSmsColumns { /** * Not instantiable. * @hide */ private Draft() { } /** * The {@code content://} style URL for this table. */ public static final Uri CONTENT_URI = Uri.parse("content://sms/draft"); /** * @hide */ @UnsupportedAppUsage public static Uri addMessage(ContentResolver resolver, String address, String body, String subject, Long date) { return addMessageToUri(SubscriptionManager.getDefaultSmsSubscriptionId(), resolver, CONTENT_URI, address, body, subject, date, true, false); } /** * Add an SMS to the Draft box. * * @param resolver the content resolver to use * @param address the address of the sender * @param body the body of the message * @param subject the psuedo-subject of the message * @param date the timestamp for the message * @param subId the subscription which the message belongs to * @return the URI for the new message * @hide */ @UnsupportedAppUsage public static Uri addMessage(int subId, ContentResolver resolver, String address, String body, String subject, Long date) { return addMessageToUri(subId, resolver, CONTENT_URI, address, body, subject, date, true, false); } /** * The default sort order for this table. */ public static final String DEFAULT_SORT_ORDER = "date DESC"; } /** * Contains all pending outgoing text-based SMS messages. */ public static final class Outbox implements BaseColumns, TextBasedSmsColumns { /** * Not instantiable. * @hide */ private Outbox() { } /** * The {@code content://} style URL for this table. */ public static final Uri CONTENT_URI = Uri.parse("content://sms/outbox"); /** * The default sort order for this table. */ public static final String DEFAULT_SORT_ORDER = "date DESC"; /** * Add an SMS to the outbox. * * @param resolver the content resolver to use * @param address the address of the sender * @param body the body of the message * @param subject the pseudo-subject of the message * @param date the timestamp for the message * @param deliveryReport whether a delivery report was requested for the message * @return the URI for the new message * @hide */ @UnsupportedAppUsage public static Uri addMessage(ContentResolver resolver, String address, String body, String subject, Long date, boolean deliveryReport, long threadId) { return addMessageToUri(SubscriptionManager.getDefaultSmsSubscriptionId(), resolver, CONTENT_URI, address, body, subject, date, true, deliveryReport, threadId); } /** * Add an SMS to the Out box. * * @param resolver the content resolver to use * @param address the address of the sender * @param body the body of the message * @param subject the psuedo-subject of the message * @param date the timestamp for the message * @param deliveryReport whether a delivery report was requested for the message * @param subId the subscription which the message belongs to * @return the URI for the new message * @hide */ public static Uri addMessage(int subId, ContentResolver resolver, String address, String body, String subject, Long date, boolean deliveryReport, long threadId) { return addMessageToUri(subId, resolver, CONTENT_URI, address, body, subject, date, true, deliveryReport, threadId); } } /** * Contains all sent text-based SMS messages in the SMS app. */ public static final class Conversations implements BaseColumns, TextBasedSmsColumns { /** * Not instantiable. * @hide */ private Conversations() { } /** * The {@code content://} style URL for this table. */ public static final Uri CONTENT_URI = Uri.parse("content://sms/conversations"); /** * The default sort order for this table. */ public static final String DEFAULT_SORT_ORDER = "date DESC"; /** * The first 45 characters of the body of the message. *Type: TEXT
*/ public static final String SNIPPET = "snippet"; /** * The number of messages in the conversation. *Type: INTEGER
*/ public static final String MESSAGE_COUNT = "msg_count"; } /** * Contains constants for SMS related Intents that are broadcast. */ public static final class Intents { /** * Not instantiable. * @hide */ private Intents() { } /** * Set by BroadcastReceiver to indicate that the message was handled * successfully. */ public static final int RESULT_SMS_HANDLED = 1; /** * Set by BroadcastReceiver to indicate a generic error while * processing the message. */ public static final int RESULT_SMS_GENERIC_ERROR = 2; /** * Set by BroadcastReceiver to indicate insufficient memory to store * the message. */ public static final int RESULT_SMS_OUT_OF_MEMORY = 3; /** * Set by BroadcastReceiver to indicate that the message, while * possibly valid, is of a format or encoding that is not * supported. */ public static final int RESULT_SMS_UNSUPPORTED = 4; /** * Set by BroadcastReceiver to indicate a duplicate incoming message. */ public static final int RESULT_SMS_DUPLICATED = 5; /** * Activity action: Ask the user to change the default * SMS application. This will show a dialog that asks the * user whether they want to replace the current default * SMS application with the one specified in * {@link #EXTRA_PACKAGE_NAME}. */ @SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION) public static final String ACTION_CHANGE_DEFAULT = "android.provider.Telephony.ACTION_CHANGE_DEFAULT"; /** * The PackageName string passed in as an * extra for {@link #ACTION_CHANGE_DEFAULT} * * @see #ACTION_CHANGE_DEFAULT */ public static final String EXTRA_PACKAGE_NAME = "package"; /** * Broadcast Action: A new text-based SMS message has been received * by the device. This intent will only be delivered to the default * sms app. That app is responsible for writing the message and notifying * the user. The intent will have the following extra values: * *The extra values can be extracted using * {@link #getMessagesFromIntent(Intent)}.
* *If a BroadcastReceiver encounters an error while processing * this intent it should set the result code appropriately.
* *Note:
* The broadcast receiver that filters for this intent must declare
* {@link android.Manifest.permission#BROADCAST_SMS} as a required permission in
* the {@code
*
Requires {@link android.Manifest.permission#RECEIVE_SMS} to receive.
*/ @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION) public static final String SMS_DELIVER_ACTION = "android.provider.Telephony.SMS_DELIVER"; /** * Broadcast Action: A new text-based SMS message has been received * by the device. This intent will be delivered to all registered * receivers as a notification. These apps are not expected to write the * message or notify the user. The intent will have the following extra * values: * *The extra values can be extracted using * {@link #getMessagesFromIntent(Intent)}.
* *If a BroadcastReceiver encounters an error while processing * this intent it should set the result code appropriately.
* *Requires {@link android.Manifest.permission#RECEIVE_SMS} to receive.
*/ @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION) public static final String SMS_RECEIVED_ACTION = "android.provider.Telephony.SMS_RECEIVED"; /** * Broadcast Action: A new data based SMS message has been received * by the device. This intent will be delivered to all registered * receivers as a notification. The intent will have the following extra * values: * *The extra values can be extracted using * {@link #getMessagesFromIntent(Intent)}.
* *If a BroadcastReceiver encounters an error while processing * this intent it should set the result code appropriately.
* *Requires {@link android.Manifest.permission#RECEIVE_SMS} to receive.
*/ @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION) public static final String DATA_SMS_RECEIVED_ACTION = "android.intent.action.DATA_SMS_RECEIVED"; /** * Broadcast Action: A new WAP PUSH message has been received by the * device. This intent will only be delivered to the default * sms app. That app is responsible for writing the message and notifying * the user. The intent will have the following extra values: * *If a BroadcastReceiver encounters an error while processing * this intent it should set the result code appropriately.
* *The contentTypeParameters extra value is map of content parameters keyed by * their names.
* *If any unassigned well-known parameters are encountered, the key of the map will * be 'unassigned/0x...', where '...' is the hex value of the unassigned parameter. If * a parameter has No-Value the value in the map will be null.
* *Requires {@link android.Manifest.permission#RECEIVE_MMS} or * {@link android.Manifest.permission#RECEIVE_WAP_PUSH} (depending on WAP PUSH type) to * receive.
* *Note:
* The broadcast receiver that filters for this intent must declare
* {@link android.Manifest.permission#BROADCAST_WAP_PUSH} as a required permission in
* the {@code
*
If a BroadcastReceiver encounters an error while processing * this intent it should set the result code appropriately.
* *The contentTypeParameters extra value is map of content parameters keyed by * their names.
* *If any unassigned well-known parameters are encountered, the key of the map will * be 'unassigned/0x...', where '...' is the hex value of the unassigned parameter. If * a parameter has No-Value the value in the map will be null.
* *Requires {@link android.Manifest.permission#RECEIVE_MMS} or * {@link android.Manifest.permission#RECEIVE_WAP_PUSH} (depending on WAP PUSH type) to * receive.
*/ @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION) public static final String WAP_PUSH_RECEIVED_ACTION = "android.provider.Telephony.WAP_PUSH_RECEIVED"; /** * Broadcast Action: A new Cell Broadcast message has been received * by the device. The intent will have the following extra * values: * *The extra values can be extracted using * {@link #getMessagesFromIntent(Intent)}.
* *If a BroadcastReceiver encounters an error while processing * this intent it should set the result code appropriately.
* *Requires {@link android.Manifest.permission#RECEIVE_SMS} to receive.
*/ @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION) public static final String SMS_CB_RECEIVED_ACTION = "android.provider.Telephony.SMS_CB_RECEIVED"; /** * Action: A SMS based carrier provision intent. Used to identify default * carrier provisioning app on the device. * @hide */ @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION) @TestApi public static final String SMS_CARRIER_PROVISION_ACTION = "android.provider.Telephony.SMS_CARRIER_PROVISION"; /** * Broadcast Action: A new Emergency Broadcast message has been received * by the device. The intent will have the following extra * values: * *The extra values can be extracted using * {@link #getMessagesFromIntent(Intent)}.
* *If a BroadcastReceiver encounters an error while processing * this intent it should set the result code appropriately.
* *Requires {@link android.Manifest.permission#RECEIVE_EMERGENCY_BROADCAST} to * receive.
* @removed */ @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION) public static final String SMS_EMERGENCY_CB_RECEIVED_ACTION = "android.provider.Telephony.SMS_EMERGENCY_CB_RECEIVED"; /** * Broadcast Action: A new CDMA SMS has been received containing Service Category * Program Data (updates the list of enabled broadcast channels). The intent will * have the following extra values: * *The extra values can be extracted using * {@link #getMessagesFromIntent(Intent)}.
* *If a BroadcastReceiver encounters an error while processing * this intent it should set the result code appropriately.
* *Requires {@link android.Manifest.permission#RECEIVE_SMS} to receive.
*/ @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION) public static final String SMS_SERVICE_CATEGORY_PROGRAM_DATA_RECEIVED_ACTION = "android.provider.Telephony.SMS_SERVICE_CATEGORY_PROGRAM_DATA_RECEIVED"; /** * Broadcast Action: The SIM storage for SMS messages is full. If * space is not freed, messages targeted for the SIM (class 2) may * not be saved. * *Requires {@link android.Manifest.permission#RECEIVE_SMS} to receive.
*/ @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION) public static final String SIM_FULL_ACTION = "android.provider.Telephony.SIM_FULL"; /** * Broadcast Action: An incoming SMS has been rejected by the * telephony framework. This intent is sent in lieu of any * of the RECEIVED_ACTION intents. The intent will have the * following extra value: * *Requires {@link android.Manifest.permission#RECEIVE_SMS} to receive.
*/ @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION) public static final String SMS_REJECTED_ACTION = "android.provider.Telephony.SMS_REJECTED"; /** * Broadcast Action: An incoming MMS has been downloaded. The intent is sent to all * users, except for secondary users where SMS has been disabled and to managed * profiles. * @hide */ @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION) public static final String MMS_DOWNLOADED_ACTION = "android.provider.Telephony.MMS_DOWNLOADED"; /** * Broadcast Action: A debug code has been entered in the dialer. This intent is * broadcast by the system and OEM telephony apps may need to receive these broadcasts. * These "secret codes" are used to activate developer menus by dialing certain codes. * And they are of the form {@code *#*#<code>#*#*}. The intent will have the data * URI: {@code android_secret_code://<code>}. It is possible that a manifest * receiver would be woken up even if it is not currently running. * *Requires {@code android.Manifest.permission#CONTROL_INCALL_EXPERIENCE} to * send and receive.
* @deprecated it is no longer supported, use {@link * TelephonyManager#ACTION_SECRET_CODE} instead */ @Deprecated @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION) public static final String SECRET_CODE_ACTION = "android.provider.Telephony.SECRET_CODE"; /** * Broadcast action: When the default SMS package changes, * the previous default SMS package and the new default SMS * package are sent this broadcast to notify them of the change. * A boolean is specified in {@link #EXTRA_IS_DEFAULT_SMS_APP} to * indicate whether the package is the new default SMS package. */ @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION) public static final String ACTION_DEFAULT_SMS_PACKAGE_CHANGED = "android.provider.action.DEFAULT_SMS_PACKAGE_CHANGED"; /** * The IsDefaultSmsApp boolean passed as an * extra for {@link #ACTION_DEFAULT_SMS_PACKAGE_CHANGED} to indicate whether the * SMS app is becoming the default SMS app or is no longer the default. * * @see #ACTION_DEFAULT_SMS_PACKAGE_CHANGED */ public static final String EXTRA_IS_DEFAULT_SMS_APP = "android.provider.extra.IS_DEFAULT_SMS_APP"; /** * Broadcast action: When a change is made to the SmsProvider or * MmsProvider by a process other than the default SMS application, * this intent is broadcast to the default SMS application so it can * re-sync or update the change. The uri that was used to call the provider * can be retrieved from the intent with getData(). The actual affected uris * (which would depend on the selection specified) are not included. */ @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION) public static final String ACTION_EXTERNAL_PROVIDER_CHANGE = "android.provider.action.EXTERNAL_PROVIDER_CHANGE"; /** * Same as {@link #ACTION_DEFAULT_SMS_PACKAGE_CHANGED} but it's implicit (e.g. sent to * all apps) and requires * {@link android.Manifest.permission#MONITOR_DEFAULT_SMS_PACKAGE} to receive. * * @hide */ @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION) public static final String ACTION_DEFAULT_SMS_PACKAGE_CHANGED_INTERNAL = "android.provider.action.DEFAULT_SMS_PACKAGE_CHANGED_INTERNAL"; /** * Broadcast action: When SMS-MMS db is being created. If file-based encryption is * supported, this broadcast indicates creation of the db in credential-encrypted * storage. A boolean is specified in {@link #EXTRA_IS_INITIAL_CREATE} to indicate if * this is the initial create of the db. Requires * {@link android.Manifest.permission#READ_SMS} to receive. * * @see #EXTRA_IS_INITIAL_CREATE * * @hide */ @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION) public static final String ACTION_SMS_MMS_DB_CREATED = "android.provider.action.SMS_MMS_DB_CREATED"; /** * Boolean flag passed as an extra with {@link #ACTION_SMS_MMS_DB_CREATED} to indicate * whether the DB creation is the initial creation on the device, that is it is after a * factory-data reset or a new device. Any subsequent creations of the DB (which * happens only in error scenarios) will have this flag set to false. * * @see #ACTION_SMS_MMS_DB_CREATED * * @hide */ public static final String EXTRA_IS_INITIAL_CREATE = "android.provider.extra.IS_INITIAL_CREATE"; /** * Broadcast intent action indicating that the telephony provider SMS MMS database is * corrupted. A boolean is specified in {@link #EXTRA_IS_CORRUPTED} to indicate if the * database is corrupted. Requires the * {@link android.Manifest.permission#READ_PRIVILEGED_PHONE_STATE permission. * * @hide */ @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION) @RequiresPermission(android.Manifest.permission.READ_PRIVILEGED_PHONE_STATE) public static final String ACTION_SMS_MMS_DB_LOST = "android.provider.action.SMS_MMS_DB_LOST"; /** * Boolean flag passed as an extra with {@link #ACTION_SMS_MMS_DB_LOST} to indicate * whether the DB got corrupted or not. * * @see #ACTION_SMS_MMS_DB_LOST * * @hide */ public static final String EXTRA_IS_CORRUPTED = "android.provider.extra.IS_CORRUPTED"; /** * Read the PDUs out of an {@link #SMS_RECEIVED_ACTION} or a * {@link #DATA_SMS_RECEIVED_ACTION} intent. * * @param intent the intent to read from * @return an array of SmsMessages for the PDUs */ public static SmsMessage[] getMessagesFromIntent(Intent intent) { Object[] messages; try { messages = (Object[]) intent.getSerializableExtra("pdus"); } catch (ClassCastException e) { Rlog.e(TAG, "getMessagesFromIntent: " + e); return null; } if (messages == null) { Rlog.e(TAG, "pdus does not exist in the intent"); return null; } String format = intent.getStringExtra("format"); int subId = intent.getIntExtra(PhoneConstants.SUBSCRIPTION_KEY, SubscriptionManager.getDefaultSmsSubscriptionId()); Rlog.v(TAG, " getMessagesFromIntent sub_id : " + subId); int pduCount = messages.length; SmsMessage[] msgs = new SmsMessage[pduCount]; for (int i = 0; i < pduCount; i++) { byte[] pdu = (byte[]) messages[i]; msgs[i] = SmsMessage.createFromPdu(pdu, format); if (msgs[i] != null) msgs[i].setSubId(subId); } return msgs; } } } /** * Base column for the table that contain Carrier Public key. * @hide */ public interface CarrierColumns extends BaseColumns { public static final String MCC = "mcc"; public static final String MNC = "mnc"; public static final String KEY_TYPE = "key_type"; public static final String MVNO_TYPE = "mvno_type"; public static final String MVNO_MATCH_DATA = "mvno_match_data"; public static final String PUBLIC_KEY = "public_key"; public static final String KEY_IDENTIFIER = "key_identifier"; public static final String EXPIRATION_TIME = "expiration_time"; public static final String LAST_MODIFIED = "last_modified"; /** * The {@code content://} style URL for this table. * @hide */ public static final Uri CONTENT_URI = Uri.parse("content://carrier_information/carrier"); } /** * Base columns for tables that contain MMSs. */ public interface BaseMmsColumns extends BaseColumns { /** Message box: all messages. */ public static final int MESSAGE_BOX_ALL = 0; /** Message box: inbox. */ public static final int MESSAGE_BOX_INBOX = 1; /** Message box: sent messages. */ public static final int MESSAGE_BOX_SENT = 2; /** Message box: drafts. */ public static final int MESSAGE_BOX_DRAFTS = 3; /** Message box: outbox. */ public static final int MESSAGE_BOX_OUTBOX = 4; /** Message box: failed. */ public static final int MESSAGE_BOX_FAILED = 5; /** * The thread ID of the message. *Type: INTEGER (long)
*/ public static final String THREAD_ID = "thread_id"; /** * The date the message was received. *Type: INTEGER (long)
*/ public static final String DATE = "date"; /** * The date the message was sent. *Type: INTEGER (long)
*/ public static final String DATE_SENT = "date_sent"; /** * The box which the message belongs to, e.g. {@link #MESSAGE_BOX_INBOX}. *Type: INTEGER
*/ public static final String MESSAGE_BOX = "msg_box"; /** * Has the message been read? *Type: INTEGER (boolean)
*/ public static final String READ = "read"; /** * Has the message been seen by the user? The "seen" flag determines * whether we need to show a new message notification. *Type: INTEGER (boolean)
*/ public static final String SEEN = "seen"; /** * Does the message have only a text part (can also have a subject) with * no picture, slideshow, sound, etc. parts? *Type: INTEGER (boolean)
*/ public static final String TEXT_ONLY = "text_only"; /** * The {@code Message-ID} of the message. *Type: TEXT
*/ public static final String MESSAGE_ID = "m_id"; /** * The subject of the message, if present. *Type: TEXT
*/ public static final String SUBJECT = "sub"; /** * The character set of the subject, if present. *Type: INTEGER
*/ public static final String SUBJECT_CHARSET = "sub_cs"; /** * The {@code Content-Type} of the message. *Type: TEXT
*/ public static final String CONTENT_TYPE = "ct_t"; /** * The {@code Content-Location} of the message. *Type: TEXT
*/ public static final String CONTENT_LOCATION = "ct_l"; /** * The expiry time of the message. *Type: INTEGER (long)
*/ public static final String EXPIRY = "exp"; /** * The class of the message. *Type: TEXT
*/ public static final String MESSAGE_CLASS = "m_cls"; /** * The type of the message defined by MMS spec. *Type: INTEGER
*/ public static final String MESSAGE_TYPE = "m_type"; /** * The version of the specification that this message conforms to. *Type: INTEGER
*/ public static final String MMS_VERSION = "v"; /** * The size of the message. *Type: INTEGER
*/ public static final String MESSAGE_SIZE = "m_size"; /** * The priority of the message. *Type: INTEGER
*/ public static final String PRIORITY = "pri"; /** * The {@code read-report} of the message. *Type: INTEGER (boolean)
*/ public static final String READ_REPORT = "rr"; /** * Is read report allowed? *Type: INTEGER (boolean)
*/ public static final String REPORT_ALLOWED = "rpt_a"; /** * The {@code response-status} of the message. *Type: INTEGER
*/ public static final String RESPONSE_STATUS = "resp_st"; /** * The {@code status} of the message. *Type: INTEGER
*/ public static final String STATUS = "st"; /** * The {@code transaction-id} of the message. *Type: TEXT
*/ public static final String TRANSACTION_ID = "tr_id"; /** * The {@code retrieve-status} of the message. *Type: INTEGER
*/ public static final String RETRIEVE_STATUS = "retr_st"; /** * The {@code retrieve-text} of the message. *Type: TEXT
*/ public static final String RETRIEVE_TEXT = "retr_txt"; /** * The character set of the retrieve-text. *Type: INTEGER
*/ public static final String RETRIEVE_TEXT_CHARSET = "retr_txt_cs"; /** * The {@code read-status} of the message. *Type: INTEGER
*/ public static final String READ_STATUS = "read_status"; /** * The {@code content-class} of the message. *Type: INTEGER
*/ public static final String CONTENT_CLASS = "ct_cls"; /** * The {@code delivery-report} of the message. *Type: INTEGER
*/ public static final String DELIVERY_REPORT = "d_rpt"; /** * The {@code delivery-time-token} of the message. *Type: INTEGER
* @deprecated this column is no longer supported. * @hide */ @Deprecated public static final String DELIVERY_TIME_TOKEN = "d_tm_tok"; /** * The {@code delivery-time} of the message. *Type: INTEGER
*/ public static final String DELIVERY_TIME = "d_tm"; /** * The {@code response-text} of the message. *Type: TEXT
*/ public static final String RESPONSE_TEXT = "resp_txt"; /** * The {@code sender-visibility} of the message. *Type: TEXT
* @deprecated this column is no longer supported. * @hide */ @Deprecated public static final String SENDER_VISIBILITY = "s_vis"; /** * The {@code reply-charging} of the message. *Type: INTEGER
* @deprecated this column is no longer supported. * @hide */ @Deprecated public static final String REPLY_CHARGING = "r_chg"; /** * The {@code reply-charging-deadline-token} of the message. *Type: INTEGER
* @deprecated this column is no longer supported. * @hide */ @Deprecated public static final String REPLY_CHARGING_DEADLINE_TOKEN = "r_chg_dl_tok"; /** * The {@code reply-charging-deadline} of the message. *Type: INTEGER
* @deprecated this column is no longer supported. * @hide */ @Deprecated public static final String REPLY_CHARGING_DEADLINE = "r_chg_dl"; /** * The {@code reply-charging-id} of the message. *Type: TEXT
* @deprecated this column is no longer supported. * @hide */ @Deprecated public static final String REPLY_CHARGING_ID = "r_chg_id"; /** * The {@code reply-charging-size} of the message. *Type: INTEGER
* @deprecated this column is no longer supported. * @hide */ @Deprecated public static final String REPLY_CHARGING_SIZE = "r_chg_sz"; /** * The {@code previously-sent-by} of the message. *Type: TEXT
* @deprecated this column is no longer supported. * @hide */ @Deprecated public static final String PREVIOUSLY_SENT_BY = "p_s_by"; /** * The {@code previously-sent-date} of the message. *Type: INTEGER
* @deprecated this column is no longer supported. * @hide */ @Deprecated public static final String PREVIOUSLY_SENT_DATE = "p_s_d"; /** * The {@code store} of the message. *Type: TEXT
* @deprecated this column is no longer supported. * @hide */ @Deprecated public static final String STORE = "store"; /** * The {@code mm-state} of the message. *Type: INTEGER
* @deprecated this column is no longer supported. * @hide */ @Deprecated public static final String MM_STATE = "mm_st"; /** * The {@code mm-flags-token} of the message. *Type: INTEGER
* @deprecated this column is no longer supported. * @hide */ @Deprecated public static final String MM_FLAGS_TOKEN = "mm_flg_tok"; /** * The {@code mm-flags} of the message. *Type: TEXT
* @deprecated this column is no longer supported. * @hide */ @Deprecated public static final String MM_FLAGS = "mm_flg"; /** * The {@code store-status} of the message. *Type: TEXT
* @deprecated this column is no longer supported. * @hide */ @Deprecated public static final String STORE_STATUS = "store_st"; /** * The {@code store-status-text} of the message. *Type: TEXT
* @deprecated this column is no longer supported. * @hide */ @Deprecated public static final String STORE_STATUS_TEXT = "store_st_txt"; /** * The {@code stored} of the message. *Type: TEXT
* @deprecated this column is no longer supported. * @hide */ @Deprecated public static final String STORED = "stored"; /** * The {@code totals} of the message. *Type: TEXT
* @deprecated this column is no longer supported. * @hide */ @Deprecated public static final String TOTALS = "totals"; /** * The {@code mbox-totals} of the message. *Type: TEXT
* @deprecated this column is no longer supported. * @hide */ @Deprecated public static final String MBOX_TOTALS = "mb_t"; /** * The {@code mbox-totals-token} of the message. *Type: INTEGER
* @deprecated this column is no longer supported. * @hide */ @Deprecated public static final String MBOX_TOTALS_TOKEN = "mb_t_tok"; /** * The {@code quotas} of the message. *Type: TEXT
* @deprecated this column is no longer supported. * @hide */ @Deprecated public static final String QUOTAS = "qt"; /** * The {@code mbox-quotas} of the message. *Type: TEXT
* @deprecated this column is no longer supported. * @hide */ @Deprecated public static final String MBOX_QUOTAS = "mb_qt"; /** * The {@code mbox-quotas-token} of the message. *Type: INTEGER
* @deprecated this column is no longer supported. * @hide */ @Deprecated public static final String MBOX_QUOTAS_TOKEN = "mb_qt_tok"; /** * The {@code message-count} of the message. *Type: INTEGER
* @deprecated this column is no longer supported. * @hide */ @Deprecated public static final String MESSAGE_COUNT = "m_cnt"; /** * The {@code start} of the message. *Type: INTEGER
* @deprecated this column is no longer supported. * @hide */ @Deprecated public static final String START = "start"; /** * The {@code distribution-indicator} of the message. *Type: TEXT
* @deprecated this column is no longer supported. * @hide */ @Deprecated public static final String DISTRIBUTION_INDICATOR = "d_ind"; /** * The {@code element-descriptor} of the message. *Type: TEXT
* @deprecated this column is no longer supported. * @hide */ @Deprecated public static final String ELEMENT_DESCRIPTOR = "e_des"; /** * The {@code limit} of the message. *Type: INTEGER
* @deprecated this column is no longer supported. * @hide */ @Deprecated public static final String LIMIT = "limit"; /** * The {@code recommended-retrieval-mode} of the message. *Type: INTEGER
* @deprecated this column is no longer supported. * @hide */ @Deprecated public static final String RECOMMENDED_RETRIEVAL_MODE = "r_r_mod"; /** * The {@code recommended-retrieval-mode-text} of the message. *Type: TEXT
* @deprecated this column is no longer supported. * @hide */ @Deprecated public static final String RECOMMENDED_RETRIEVAL_MODE_TEXT = "r_r_mod_txt"; /** * The {@code status-text} of the message. *Type: TEXT
* @deprecated this column is no longer supported. * @hide */ @Deprecated public static final String STATUS_TEXT = "st_txt"; /** * The {@code applic-id} of the message. *Type: TEXT
* @deprecated this column is no longer supported. * @hide */ @Deprecated public static final String APPLIC_ID = "apl_id"; /** * The {@code reply-applic-id} of the message. *Type: TEXT
* @deprecated this column is no longer supported. * @hide */ @Deprecated public static final String REPLY_APPLIC_ID = "r_apl_id"; /** * The {@code aux-applic-id} of the message. *Type: TEXT
* @deprecated this column is no longer supported. * @hide */ @Deprecated public static final String AUX_APPLIC_ID = "aux_apl_id"; /** * The {@code drm-content} of the message. *Type: TEXT
* @deprecated this column is no longer supported. * @hide */ @Deprecated public static final String DRM_CONTENT = "drm_c"; /** * The {@code adaptation-allowed} of the message. *Type: TEXT
* @deprecated this column is no longer supported. * @hide */ @Deprecated public static final String ADAPTATION_ALLOWED = "adp_a"; /** * The {@code replace-id} of the message. *Type: TEXT
* @deprecated this column is no longer supported. * @hide */ @Deprecated public static final String REPLACE_ID = "repl_id"; /** * The {@code cancel-id} of the message. *Type: TEXT
* @deprecated this column is no longer supported. * @hide */ @Deprecated public static final String CANCEL_ID = "cl_id"; /** * The {@code cancel-status} of the message. *Type: INTEGER
* @deprecated this column is no longer supported. * @hide */ @Deprecated public static final String CANCEL_STATUS = "cl_st"; /** * Is the message locked? *Type: INTEGER (boolean)
*/ public static final String LOCKED = "locked"; /** * The subscription to which the message belongs to. Its value will be * < 0 if the sub id cannot be determined. *Type: INTEGER (long)
*/ public static final String SUBSCRIPTION_ID = "sub_id"; /** * The identity of the sender of a sent message. It is * usually the package name of the app which sends the message. *Note: * This column is read-only. It is set by the provider and can not be changed by apps. *
Type: TEXT
*/ public static final String CREATOR = "creator"; } /** * Columns for the "canonical_addresses" table used by MMS and SMS. */ public interface CanonicalAddressesColumns extends BaseColumns { /** * An address used in MMS or SMS. Email addresses are * converted to lower case and are compared by string * equality. Other addresses are compared using * PHONE_NUMBERS_EQUAL. *Type: TEXT
*/ public static final String ADDRESS = "address"; } /** * Columns for the "threads" table used by MMS and SMS. */ public interface ThreadsColumns extends BaseColumns { /** * The date at which the thread was created. *Type: INTEGER (long)
*/ public static final String DATE = "date"; /** * A string encoding of the recipient IDs of the recipients of * the message, in numerical order and separated by spaces. *Type: TEXT
*/ public static final String RECIPIENT_IDS = "recipient_ids"; /** * The message count of the thread. *Type: INTEGER
*/ public static final String MESSAGE_COUNT = "message_count"; /** * Indicates whether all messages of the thread have been read. *Type: INTEGER
*/ public static final String READ = "read"; /** * The snippet of the latest message in the thread. *Type: TEXT
*/ public static final String SNIPPET = "snippet"; /** * The charset of the snippet. *Type: INTEGER
*/ public static final String SNIPPET_CHARSET = "snippet_cs"; /** * Type of the thread, either {@link Threads#COMMON_THREAD} or * {@link Threads#BROADCAST_THREAD}. *Type: INTEGER
*/ public static final String TYPE = "type"; /** * Indicates whether there is a transmission error in the thread. *Type: INTEGER
*/ public static final String ERROR = "error"; /** * Indicates whether this thread contains any attachments. *Type: INTEGER
*/ public static final String HAS_ATTACHMENT = "has_attachment"; /** * If the thread is archived *Type: INTEGER (boolean)
*/ public static final String ARCHIVED = "archived"; } /** * Helper functions for the "threads" table used by MMS and SMS. * * Thread IDs are determined by the participants in a conversation and can be used to match * both SMS and MMS messages. * * To avoid issues where applications might cache a thread ID, the thread ID of a deleted thread * must not be reused to point at a new thread. */ public static final class Threads implements ThreadsColumns { @UnsupportedAppUsage private static final String[] ID_PROJECTION = { BaseColumns._ID }; /** * Private {@code content://} style URL for this table. Used by * {@link #getOrCreateThreadId(android.content.Context, java.util.Set)}. */ @UnsupportedAppUsage private static final Uri THREAD_ID_CONTENT_URI = Uri.parse( "content://mms-sms/threadID"); /** * The {@code content://} style URL for this table, by conversation. */ public static final Uri CONTENT_URI = Uri.withAppendedPath( MmsSms.CONTENT_URI, "conversations"); /** * The {@code content://} style URL for this table, for obsolete threads. */ public static final Uri OBSOLETE_THREADS_URI = Uri.withAppendedPath( CONTENT_URI, "obsolete"); /** Thread type: common thread. */ public static final int COMMON_THREAD = 0; /** Thread type: broadcast thread. */ public static final int BROADCAST_THREAD = 1; /** * Not instantiable. * @hide */ private Threads() { } /** * This is a single-recipient version of {@code getOrCreateThreadId}. * It's convenient for use with SMS messages. * @param context the context object to use. * @param recipient the recipient to send to. */ public static long getOrCreateThreadId(Context context, String recipient) { Set
* If a thread exists containing the provided participants, return its thread ID. Otherwise,
* this will create a new thread containing the provided participants and return its ID.
*/
public static long getOrCreateThreadId(
Context context, Set Type: INTEGER (long) Type: INTEGER (long) Type: TEXT Type: INTEGER Type: INTEGER Type: INTEGER Type: INTEGER Type: TEXT Type: TEXT Type: TEXT Type: TEXT Type: TEXT Type: INTEGER Type: INTEGER Type: INTEGER Type: TEXT Type: INTEGER Type: TEXT Type: INTEGER (long) Type: INTEGER Type: INTEGER (long) Type: INTEGER Type: INTEGER Type: INTEGER Type: INTEGER Type: INTEGER (long) Type: INTEGER (long) Type: INTEGER (long) Type: INTEGER (long) Type: INTEGER (long) Type: INTEGER Type: TEXT Type: TEXT Type: TEXT Type: TEXT Type: TEXT Type: TEXT Type: TEXT Type: TEXT Type: TEXT Type: TEXT Type: TEXT Type: TEXT Type: TEXT Type: TEXT Type: INTEGER Type: TEXT Type: TEXT Type: TEXT Type: INTEGER (boolean) Type: INTEGER (boolean) Type: INTEGER Type: INTEGER Type: INTEGER Type: TEXT Type: TEXT Type: INTEGER (long) Type: INTEGER Type: INTEGER (boolean) Type: INTEGER Type: INTEGER Type: INTEGER Type: INTEGER Type: INTEGER Type: INTEGER (boolean) Type: INTEGER (boolean) Type: INTEGER Type: INTEGER Type: INTEGER Type: INTEGER Type: INTEGER Type: INTEGER Type: INTEGER Type: INTEGER Type: STRING Type: INTEGER Type: INTEGER Type: TEXT Type: INTEGER Type: INTEGER Type: INTEGER Type: INTEGER Type: INTEGER Type: TEXT Type: TEXT Type: INTEGER (long) Type: INTEGER (boolean) Type: INTEGER Type: INTEGER Type: INTEGER Type: INTEGER Type: INTEGER Type: INTEGER Type: INTEGER Type: INTEGER Type: INTEGER
* Use this {@link Uri} with a {@link ContentObserver} to be notified of changes to the
* {@link ServiceState} while your app is running. You can also use a {@link JobService} to
* ensure your app is notified of changes to the {@link Uri} even when it is not running.
* Note, however, that using a {@link JobService} does not guarantee timely delivery of
* updates to the {@link Uri}.
*
* @param subscriptionId the subscriptionId to receive updates on
* @param field the ServiceState field to receive updates on
* @return the Uri used to observe {@link ServiceState} changes
*/
public static Uri getUriForSubscriptionIdAndField(int subscriptionId, String field) {
return CONTENT_URI.buildUpon().appendEncodedPath(String.valueOf(subscriptionId))
.appendEncodedPath(field).build();
}
/**
* Generates a content {@link Uri} used to receive updates on every field in the
* ServiceState provider.
*
* Use this {@link Uri} with a {@link ContentObserver} to be notified of changes to the
* {@link ServiceState} while your app is running. You can also use a {@link JobService} to
* ensure your app is notified of changes to the {@link Uri} even when it is not running.
* Note, however, that using a {@link JobService} does not guarantee timely delivery of
* updates to the {@link Uri}.
*
* @param subscriptionId the subscriptionId to receive updates on
* @return the Uri used to observe {@link ServiceState} changes
*/
public static Uri getUriForSubscriptionId(int subscriptionId) {
return CONTENT_URI.buildUpon().appendEncodedPath(String.valueOf(subscriptionId)).build();
}
/**
* Used to insert a ServiceState into the ServiceStateProvider as a ContentValues instance.
*
* @param state the ServiceState to convert into ContentValues
* @return the convertedContentValues instance
* @hide
*/
public static ContentValues getContentValuesForServiceState(ServiceState state) {
ContentValues values = new ContentValues();
values.put(VOICE_REG_STATE, state.getVoiceRegState());
values.put(DATA_REG_STATE, state.getDataRegState());
values.put(VOICE_ROAMING_TYPE, state.getVoiceRoamingType());
values.put(DATA_ROAMING_TYPE, state.getDataRoamingType());
values.put(VOICE_OPERATOR_ALPHA_LONG, state.getVoiceOperatorAlphaLong());
values.put(VOICE_OPERATOR_ALPHA_SHORT, state.getVoiceOperatorAlphaShort());
values.put(VOICE_OPERATOR_NUMERIC, state.getVoiceOperatorNumeric());
values.put(DATA_OPERATOR_ALPHA_LONG, state.getDataOperatorAlphaLong());
values.put(DATA_OPERATOR_ALPHA_SHORT, state.getDataOperatorAlphaShort());
values.put(DATA_OPERATOR_NUMERIC, state.getDataOperatorNumeric());
values.put(IS_MANUAL_NETWORK_SELECTION, state.getIsManualSelection());
values.put(RIL_VOICE_RADIO_TECHNOLOGY, state.getRilVoiceRadioTechnology());
values.put(RIL_DATA_RADIO_TECHNOLOGY, state.getRilDataRadioTechnology());
values.put(CSS_INDICATOR, state.getCssIndicator());
values.put(NETWORK_ID, state.getCdmaNetworkId());
values.put(SYSTEM_ID, state.getCdmaSystemId());
values.put(CDMA_ROAMING_INDICATOR, state.getCdmaRoamingIndicator());
values.put(CDMA_DEFAULT_ROAMING_INDICATOR, state.getCdmaDefaultRoamingIndicator());
values.put(CDMA_ERI_ICON_INDEX, state.getCdmaEriIconIndex());
values.put(CDMA_ERI_ICON_MODE, state.getCdmaEriIconMode());
values.put(IS_EMERGENCY_ONLY, state.isEmergencyOnly());
values.put(IS_USING_CARRIER_AGGREGATION, state.isUsingCarrierAggregation());
return values;
}
/**
* An integer value indicating the current voice service state.
*
* Valid values: {@link ServiceState#STATE_IN_SERVICE},
* {@link ServiceState#STATE_OUT_OF_SERVICE}, {@link ServiceState#STATE_EMERGENCY_ONLY},
* {@link ServiceState#STATE_POWER_OFF}.
*
* This is the same as {@link ServiceState#getState()}.
*/
public static final String VOICE_REG_STATE = "voice_reg_state";
/**
* An integer value indicating the current data service state.
*
* Valid values: {@link ServiceState#STATE_IN_SERVICE},
* {@link ServiceState#STATE_OUT_OF_SERVICE}, {@link ServiceState#STATE_EMERGENCY_ONLY},
* {@link ServiceState#STATE_POWER_OFF}.
*
* This is the same as {@link ServiceState#getDataRegState()}.
* @hide
*/
public static final String DATA_REG_STATE = "data_reg_state";
/**
* An integer value indicating the current voice roaming type.
*
* This is the same as {@link ServiceState#getVoiceRoamingType()}.
* @hide
*/
public static final String VOICE_ROAMING_TYPE = "voice_roaming_type";
/**
* An integer value indicating the current data roaming type.
*
* This is the same as {@link ServiceState#getDataRoamingType()}.
* @hide
*/
public static final String DATA_ROAMING_TYPE = "data_roaming_type";
/**
* The current registered voice network operator name in long alphanumeric format.
*
* This is the same as {@link ServiceState#getVoiceOperatorAlphaLong()}.
* @hide
*/
public static final String VOICE_OPERATOR_ALPHA_LONG = "voice_operator_alpha_long";
/**
* The current registered operator name in short alphanumeric format.
*
* In GSM/UMTS, short format can be up to 8 characters long. The current registered voice
* network operator name in long alphanumeric format.
*
* This is the same as {@link ServiceState#getVoiceOperatorAlphaShort()}.
* @hide
*/
public static final String VOICE_OPERATOR_ALPHA_SHORT = "voice_operator_alpha_short";
/**
* The current registered operator numeric id.
*
* In GSM/UMTS, numeric format is 3 digit country code plus 2 or 3 digit
* network code.
*
* This is the same as {@link ServiceState#getOperatorNumeric()}.
*/
public static final String VOICE_OPERATOR_NUMERIC = "voice_operator_numeric";
/**
* The current registered data network operator name in long alphanumeric format.
*
* This is the same as {@link ServiceState#getDataOperatorAlphaLong()}.
* @hide
*/
public static final String DATA_OPERATOR_ALPHA_LONG = "data_operator_alpha_long";
/**
* The current registered data network operator name in short alphanumeric format.
*
* This is the same as {@link ServiceState#getDataOperatorAlphaShort()}.
* @hide
*/
public static final String DATA_OPERATOR_ALPHA_SHORT = "data_operator_alpha_short";
/**
* The current registered data network operator numeric id.
*
* This is the same as {@link ServiceState#getDataOperatorNumeric()}.
* @hide
*/
public static final String DATA_OPERATOR_NUMERIC = "data_operator_numeric";
/**
* The current network selection mode.
*
* This is the same as {@link ServiceState#getIsManualSelection()}.
*/
public static final String IS_MANUAL_NETWORK_SELECTION = "is_manual_network_selection";
/**
* This is the same as {@link ServiceState#getRilVoiceRadioTechnology()}.
* @hide
*/
public static final String RIL_VOICE_RADIO_TECHNOLOGY = "ril_voice_radio_technology";
/**
* This is the same as {@link ServiceState#getRilDataRadioTechnology()}.
* @hide
*/
public static final String RIL_DATA_RADIO_TECHNOLOGY = "ril_data_radio_technology";
/**
* This is the same as {@link ServiceState#getCssIndicator()}.
* @hide
*/
public static final String CSS_INDICATOR = "css_indicator";
/**
* This is the same as {@link ServiceState#getCdmaNetworkId()}.
* @hide
*/
public static final String NETWORK_ID = "network_id";
/**
* This is the same as {@link ServiceState#getCdmaSystemId()}.
* @hide
*/
public static final String SYSTEM_ID = "system_id";
/**
* This is the same as {@link ServiceState#getCdmaRoamingIndicator()}.
* @hide
*/
public static final String CDMA_ROAMING_INDICATOR = "cdma_roaming_indicator";
/**
* This is the same as {@link ServiceState#getCdmaDefaultRoamingIndicator()}.
* @hide
*/
public static final String CDMA_DEFAULT_ROAMING_INDICATOR =
"cdma_default_roaming_indicator";
/**
* This is the same as {@link ServiceState#getCdmaEriIconIndex()}.
* @hide
*/
public static final String CDMA_ERI_ICON_INDEX = "cdma_eri_icon_index";
/**
* This is the same as {@link ServiceState#getCdmaEriIconMode()}.
* @hide
*/
public static final String CDMA_ERI_ICON_MODE = "cdma_eri_icon_mode";
/**
* This is the same as {@link ServiceState#isEmergencyOnly()}.
* @hide
*/
public static final String IS_EMERGENCY_ONLY = "is_emergency_only";
/**
* This is the same as {@link ServiceState#getDataRoamingFromRegistration()}.
* @hide
*/
public static final String IS_DATA_ROAMING_FROM_REGISTRATION =
"is_data_roaming_from_registration";
/**
* This is the same as {@link ServiceState#isUsingCarrierAggregation()}.
* @hide
*/
public static final String IS_USING_CARRIER_AGGREGATION = "is_using_carrier_aggregation";
}
/**
* Contains carrier identification information for the current subscriptions.
* @see SubscriptionManager#getActiveSubscriptionIdList()
*/
public static final class CarrierId implements BaseColumns {
/**
* Not instantiable.
* @hide
*/
private CarrierId() {}
/**
* The {@code content://} style URI for this provider.
*/
public static final Uri CONTENT_URI = Uri.parse("content://carrier_id");
/**
* The authority string for the CarrierId Provider
* @hide
*/
public static final String AUTHORITY = "carrier_id";
/**
* Generates a content {@link Uri} used to receive updates on carrier identity change
* on the given subscriptionId
*
* Use this {@link Uri} with a {@link ContentObserver} to be notified of changes to the
* carrier identity {@link TelephonyManager#getSimCarrierId()}
* while your app is running. You can also use a {@link JobService} to ensure your app
* is notified of changes to the {@link Uri} even when it is not running.
* Note, however, that using a {@link JobService} does not guarantee timely delivery of
* updates to the {@link Uri}.
*
* @param subscriptionId the subscriptionId to receive updates on
* @return the Uri used to observe carrier identity changes
*/
public static Uri getUriForSubscriptionId(int subscriptionId) {
return CONTENT_URI.buildUpon().appendEncodedPath(
String.valueOf(subscriptionId)).build();
}
/**
* Generates a content {@link Uri} used to receive updates on precise carrier identity
* change on the given subscriptionId returned by
* {@link TelephonyManager#getSimPreciseCarrierId()}.
* @see TelephonyManager#ACTION_SUBSCRIPTION_PRECISE_CARRIER_IDENTITY_CHANGED
*
* Use this {@link Uri} with a {@link ContentObserver} to be notified of changes to the
* precise carrier identity {@link TelephonyManager#getSimPreciseCarrierId()}
* while your app is running. You can also use a {@link JobService} to ensure your app
* is notified of changes to the {@link Uri} even when it is not running.
* Note, however, that using a {@link JobService} does not guarantee timely delivery of
* updates to the {@link Uri}.
*
* @param subscriptionId the subscriptionId to receive updates on
* @return the Uri used to observe precise carrier identity changes
*/
public static Uri getPreciseCarrierIdUriForSubscriptionId(int subscriptionId) {
return Uri.withAppendedPath(Uri.withAppendedPath(CONTENT_URI, "precise"),
String.valueOf(subscriptionId));
}
/**
* A user facing carrier name.
* @see TelephonyManager#getSimCarrierIdName()
* Type: TEXT Type: INTEGER Type: INTEGER Type: TEXT Type: TEXT Type: TEXT Type: TEXT Type: TEXT Type: TEXT Type: TEXT Type: TEXT Type: TEXT in hex string
*
* @hide
*/
@UnsupportedAppUsage
public static final Pattern NAME_ADDR_EMAIL_PATTERN =
Pattern.compile("\\s*(\"[^\"]*\"|[^<>\"]+)\\s*<([^<>]+)>\\s*");
/**
* Helper method to query this table.
* @hide
*/
public static Cursor query(
ContentResolver cr, String[] projection) {
return cr.query(CONTENT_URI, projection, null, null, DEFAULT_SORT_ORDER);
}
/**
* Helper method to query this table.
* @hide
*/
public static Cursor query(
ContentResolver cr, String[] projection,
String where, String orderBy) {
return cr.query(CONTENT_URI, projection,
where, null, orderBy == null ? DEFAULT_SORT_ORDER : orderBy);
}
/**
* Helper method to extract email address from address string.
* @hide
*/
@UnsupportedAppUsage
public static String extractAddrSpec(String address) {
Matcher match = NAME_ADDR_EMAIL_PATTERN.matcher(address);
if (match.matches()) {
return match.group(2);
}
return address;
}
/**
* Is the specified address an email address?
*
* @param address the input address to test
* @return true if address is an email address; false otherwise.
* @hide
*/
@UnsupportedAppUsage
public static boolean isEmailAddress(String address) {
if (TextUtils.isEmpty(address)) {
return false;
}
String s = extractAddrSpec(address);
Matcher match = Patterns.EMAIL_ADDRESS.matcher(s);
return match.matches();
}
/**
* Is the specified number a phone number?
*
* @param number the input number to test
* @return true if number is a phone number; false otherwise.
* @hide
*/
@UnsupportedAppUsage
public static boolean isPhoneNumber(String number) {
if (TextUtils.isEmpty(number)) {
return false;
}
Matcher match = Patterns.PHONE.matcher(number);
return match.matches();
}
/**
* Contains all MMS messages in the MMS app inbox.
*/
public static final class Inbox implements BaseMmsColumns {
/**
* Not instantiable.
* @hide
*/
private Inbox() {
}
/**
* The {@code content://} style URL for this table.
*/
public static final Uri
CONTENT_URI = Uri.parse("content://mms/inbox");
/**
* The default sort order for this table.
*/
public static final String DEFAULT_SORT_ORDER = "date DESC";
}
/**
* Contains all MMS messages in the MMS app sent folder.
*/
public static final class Sent implements BaseMmsColumns {
/**
* Not instantiable.
* @hide
*/
private Sent() {
}
/**
* The {@code content://} style URL for this table.
*/
public static final Uri
CONTENT_URI = Uri.parse("content://mms/sent");
/**
* The default sort order for this table.
*/
public static final String DEFAULT_SORT_ORDER = "date DESC";
}
/**
* Contains all MMS messages in the MMS app drafts folder.
*/
public static final class Draft implements BaseMmsColumns {
/**
* Not instantiable.
* @hide
*/
private Draft() {
}
/**
* The {@code content://} style URL for this table.
*/
public static final Uri
CONTENT_URI = Uri.parse("content://mms/drafts");
/**
* The default sort order for this table.
*/
public static final String DEFAULT_SORT_ORDER = "date DESC";
}
/**
* Contains all MMS messages in the MMS app outbox.
*/
public static final class Outbox implements BaseMmsColumns {
/**
* Not instantiable.
* @hide
*/
private Outbox() {
}
/**
* The {@code content://} style URL for this table.
*/
public static final Uri
CONTENT_URI = Uri.parse("content://mms/outbox");
/**
* The default sort order for this table.
*/
public static final String DEFAULT_SORT_ORDER = "date DESC";
}
/**
* Contains address information for an MMS message.
*/
public static final class Addr implements BaseColumns {
/**
* Not instantiable.
* @hide
*/
private Addr() {
}
/**
* The ID of MM which this address entry belongs to.
*
*
*
*
*