SmsResponsepublic class SmsResponse extends Object Object returned by the RIL upon successful completion of sendSMS.
Contains message reference and ackPdu. |
Fields Summary |
---|
int | mMessageRefMessage reference of the just-sent SMS. | String | mAckPduackPdu for the just-sent SMS. | int | mErrorCodeerrorCode: See 3GPP 27.005, 3.2.5 for GSM/UMTS,
3GPP2 N.S0005 (IS-41C) Table 171 for CDMA, -1 if unknown or not applicable. |
Constructors Summary |
---|
public SmsResponse(int messageRef, String ackPdu, int errorCode)
mMessageRef = messageRef;
mAckPdu = ackPdu;
mErrorCode = errorCode;
|
Methods Summary |
---|
public java.lang.String | toString()
String ret = "{ mMessageRef = " + mMessageRef
+ ", mErrorCode = " + mErrorCode
+ ", mAckPdu = " + mAckPdu
+ "}";
return ret;
|
|