Telephony | API reference | Android Developers (original) (raw)
public final class Telephonyextends [Object](/reference/java/lang/Object) ``
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 element in your manifest that declares the "android.hardware.telephony" hardware feature. Alternatively, you can check for telephony availability at runtime using either[hasSystemFeature(PackageManager.FEATURE_TELEPHONY)](/reference/android/content/pm/PackageManager#hasSystemFeature%28java.lang.String%29).
Creating an SMS app
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 Telephony class) and only the default SMS app receives the [Telephony.Sms.Intents.SMS_DELIVER_ACTION](/reference/android/provider/Telephony.Sms.Intents#SMS%5FDELIVER%5FACTION) broadcast when the user receives an SMS or the [Telephony.Sms.Intents.WAP_PUSH_DELIVER_ACTION](/reference/android/provider/Telephony.Sms.Intents#WAP%5FPUSH%5FDELIVER%5FACTION) 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:
- In a broadcast receiver, include an intent filter for
[Sms.Intents.SMS_DELIVER_ACTION](/reference/android/provider/Telephony.Sms.Intents#SMS%5FDELIVER%5FACTION)("android.provider.Telephony.SMS_DELIVER"). The broadcast receiver must also require the[Manifest.permission.BROADCAST_SMS](/reference/android/Manifest.permission#BROADCAST%5FSMS)permission.
This allows your app to directly receive incoming SMS messages. - In a broadcast receiver, include an intent filter for
[Sms.Intents.WAP_PUSH_DELIVER_ACTION](/reference/android/provider/Telephony.Sms.Intents#WAP%5FPUSH%5FDELIVER%5FACTION)} ("android.provider.Telephony.WAP_PUSH_DELIVER") with the MIME type"application/vnd.wap.mms-message". The broadcast receiver must also require the[Manifest.permission.BROADCAST_WAP_PUSH](/reference/android/Manifest.permission#BROADCAST%5FWAP%5FPUSH)permission.
This allows your app to directly receive incoming MMS messages. - In your activity that delivers new messages, include an intent filter for
[Intent.ACTION_SENDTO](/reference/android/content/Intent#ACTION%5FSENDTO)("android.intent.action.SENDTO") with schemas,sms:,smsto:,mms:, andmmsto:.
This allows your app to receive intents from other apps that want to deliver a message. - In a service, include an intent filter for
[TelephonyManager.ACTION_RESPOND_VIA_MESSAGE](/reference/android/telephony/TelephonyManager#ACTION%5FRESPOND%5FVIA%5FMESSAGE)("android.intent.action.RESPOND_VIA_MESSAGE") with schemas,sms:,smsto:,mms:, andmmsto:. This service must also require the[Manifest.permission.SEND_RESPOND_VIA_MESSAGE](/reference/android/Manifest.permission#SEND%5FRESPOND%5FVIA%5FMESSAGE)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 [Sms.Intents.SMS_RECEIVED_ACTION](/reference/android/provider/Telephony.Sms.Intents#SMS%5FRECEIVED%5FACTION) 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.
Summary
| Nested classes | |
|---|---|
| interface | Telephony.BaseMmsColumns Base columns for tables that contain MMSs. |
| interface | Telephony.CanonicalAddressesColumns Columns for the "canonical_addresses" table used by MMS and SMS. |
| class | Telephony.CarrierId Contains carrier identification information for the current subscriptions. |
| class | Telephony.Carriers Carriers class contains information about APNs, including MMSC information. |
| class | Telephony.Mms Contains all MMS messages. |
| class | Telephony.MmsSms Contains all MMS and SMS messages. |
| class | Telephony.ServiceStateTable Constants for interfacing with the ServiceStateProvider and the different fields of theServiceState class accessible through the provider. |
| class | Telephony.Sms Contains all text-based SMS messages. |
| interface | Telephony.TextBasedSmsColumns Base columns for tables that contain text-based SMSs. |
| class | Telephony.Threads Helper functions for the "threads" table used by MMS and SMS. |
| interface | Telephony.ThreadsColumns Columns for the "threads" table used by MMS and SMS. |
| Inherited methods |
|---|
| From class java.lang.Object Object clone() Creates and returns a copy of this object. boolean equals(Object obj) Indicates whether some other object is "equal to" this one. void finalize() Called by the garbage collector on an object when garbage collection determines that there are no more references to the object. finalClass<?> getClass() Returns the runtime class of this Object. int hashCode() Returns a hash code value for the object. final void notify() Wakes up a single thread that is waiting on this object's monitor. final void notifyAll() Wakes up all threads that are waiting on this object's monitor. String toString() Returns a string representation of the object. final void wait(long timeoutMillis, int nanos) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed. final void wait(long timeoutMillis) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed. final void wait() Causes the current thread to wait until it is awakened, typically by being notified or interrupted. |