| java.lang.Object | |
| ↳ | android.telephony.gsm.SmsManager | 
       
        This class was deprecated
      in API level 4.
       
       
       Replaced by android.telephony.SmsManager that supports both GSM and CDMA.
      
Manages SMS operations such as sending data, text, and pdu SMS messages. Get this object by calling the static method SmsManager.getDefault().
| Constants | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| int | RESULT_ERROR_GENERIC_FAILURE | This constant was deprecated in API level 4. Use android.telephony.SmsManager. | |||||||||
| int | RESULT_ERROR_NO_SERVICE | This constant was deprecated in API level 4. Use android.telephony.SmsManager. | |||||||||
| int | RESULT_ERROR_NULL_PDU | This constant was deprecated in API level 4. Use android.telephony.SmsManager. | |||||||||
| int | RESULT_ERROR_RADIO_OFF | This constant was deprecated in API level 4. Use android.telephony.SmsManager. | |||||||||
| int | STATUS_ON_SIM_FREE | This constant was deprecated in API level 4. Use android.telephony.SmsManager. | |||||||||
| int | STATUS_ON_SIM_READ | This constant was deprecated in API level 4. Use android.telephony.SmsManager. | |||||||||
| int | STATUS_ON_SIM_SENT | This constant was deprecated in API level 4. Use android.telephony.SmsManager. | |||||||||
| int | STATUS_ON_SIM_UNREAD | This constant was deprecated in API level 4. Use android.telephony.SmsManager. | |||||||||
| int | STATUS_ON_SIM_UNSENT | This constant was deprecated in API level 4. Use android.telephony.SmsManager. | |||||||||
| Public Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
|  | 
          
           This method was deprecated
      in API level 4.
    Use android.telephony.SmsManager.
          
          | ||||||||||
|  | 
          
           This method was deprecated
      in API level 4.
    Use android.telephony.SmsManager.
          
          | ||||||||||
|  | 
          
           This method was deprecated
      in API level 4.
    Use android.telephony.SmsManager.
          
          | ||||||||||
|  | 
          
           This method was deprecated
      in API level 4.
    Use android.telephony.SmsManager.
          
          | ||||||||||
|  | 
          
           This method was deprecated
      in API level 4.
    Use android.telephony.SmsManager.
          
          | ||||||||||
| [Expand] 
          Inherited Methods
          | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
|  From class
         
          java.lang.Object | |||||||||||
        
         This constant was deprecated
      in API level 4.
        
        
        Use android.telephony.SmsManager.
       
Generic failure cause
        
         This constant was deprecated
      in API level 4.
        
        
        Use android.telephony.SmsManager.
       
Failed because service is currently unavailable
        
         This constant was deprecated
      in API level 4.
        
        
        Use android.telephony.SmsManager.
       
Failed because no pdu provided
        
         This constant was deprecated
      in API level 4.
        
        
        Use android.telephony.SmsManager.
       
Failed because radio was explicitly turned off
        
         This constant was deprecated
      in API level 4.
        
        
        Use android.telephony.SmsManager.
       
Free space (TS 51.011 10.5.3).
        
         This constant was deprecated
      in API level 4.
        
        
        Use android.telephony.SmsManager.
       
Received and read (TS 51.011 10.5.3).
        
         This constant was deprecated
      in API level 4.
        
        
        Use android.telephony.SmsManager.
       
Stored and sent (TS 51.011 10.5.3).
        
         This constant was deprecated
      in API level 4.
        
        
        Use android.telephony.SmsManager.
       
Received and unread (TS 51.011 10.5.3).
        
         This constant was deprecated
      in API level 4.
        
        
        Use android.telephony.SmsManager.
       
Stored and unsent (TS 51.011 10.5.3).
        
         This method was deprecated
      in API level 4.
        
        
        Use android.telephony.SmsManager.
       
Divide a text message into several messages, none bigger than the maximum SMS message size.
| text | the original message. Must not be null. | 
|---|
           ArrayList
          
          of strings that, in order,
   comprise the original message
         
        
         This method was deprecated
      in API level 4.
        
        
        Use android.telephony.SmsManager.
       
Get the default instance of the SmsManager
        
         This method was deprecated
      in API level 4.
        
        
        Use android.telephony.SmsManager.
       
Send a data based SMS to a specific application port.
| destinationAddress | the address to send the message to | 
|---|---|
| scAddress | is the service center address or null to use the current default SMSC | 
| destinationPort | the port to deliver the message to | 
| data | the body of the message to send | 
| sentIntent | if not NULL this 
            PendingIntent
           is
  broadcast when the message is sucessfully sent, or failed.
  The result code will be
            Activity.RESULT_OK
           
            for success,
  or one of these errors:
           
            RESULT_ERROR_GENERIC_FAILURE
           
            RESULT_ERROR_RADIO_OFF
           
            RESULT_ERROR_NULL_PDU
           .
  The per-application based SMS control checks sentIntent. If sentIntent
  is NULL the caller will be checked against all unknown applicaitons,
  which cause smaller number of SMS to be sent in checking period. | 
| deliveryIntent | if not NULL this 
            PendingIntent
           is
  broadcast when the message is delivered to the recipient.  The
  raw pdu of the status report is in the extended data ("pdu"). | 
| IllegalArgumentException | if destinationAddress or data are empty | 
|---|
        
         This method was deprecated
      in API level 4.
        
        
        Use android.telephony.SmsManager.
       
         Send a multi-part text based SMS.  The callee should have already
 divided the message into correctly sized parts by calling
         
          divideMessage
         
         .
        
| destinationAddress | the address to send the message to | 
|---|---|
| scAddress | is the service center address or null to use the current default SMSC | 
| parts | an 
            ArrayList
           of strings that, in order,
   comprise the original message | 
| sentIntents | if not null, an 
            ArrayList
           of
            PendingIntent
           s (one for each message part) that is
   broadcast when the corresponding message part has been sent.
   The result code will be
            Activity.RESULT_OK
           
            for success,
   or one of these errors:
           
            RESULT_ERROR_GENERIC_FAILURE
           
            RESULT_ERROR_RADIO_OFF
           
            RESULT_ERROR_NULL_PDU
           .
   The per-application based SMS control checks sentIntent. If sentIntent
   is NULL the caller will be checked against all unknown applicaitons,
   which cause smaller number of SMS to be sent in checking period. | 
| deliveryIntents | if not null, an 
            ArrayList
           of
            PendingIntent
           s (one for each message part) that is
   broadcast when the corresponding message part has been delivered
   to the recipient.  The raw pdu of the status report is in the
   extended data ("pdu"). | 
| IllegalArgumentException | if destinationAddress or data are empty | 
|---|
        
         This method was deprecated
      in API level 4.
        
        
        Use android.telephony.SmsManager.
       
Send a text based SMS.
| destinationAddress | the address to send the message to | 
|---|---|
| scAddress | is the service center address or null to use the current default SMSC | 
| text | the body of the message to send | 
| sentIntent | if not NULL this 
            PendingIntent
           is
  broadcast when the message is successfully sent, or failed.
  The result code will be
            Activity.RESULT_OK
           
            for success,
  or one of these errors:
           
            RESULT_ERROR_GENERIC_FAILURE
           
            RESULT_ERROR_RADIO_OFF
           
            RESULT_ERROR_NULL_PDU
           .
  The per-application based SMS control checks sentIntent. If sentIntent
  is NULL the caller will be checked against all unknown applications,
  which cause smaller number of SMS to be sent in checking period. | 
| deliveryIntent | if not NULL this 
            PendingIntent
           is
  broadcast when the message is delivered to the recipient.  The
  raw pdu of the status report is in the extended data ("pdu"). | 
| IllegalArgumentException | if destinationAddress or text are empty | 
|---|