public static final class CarrierMessagingService.SendMmsResult
extends Object
| java.lang.Object | |
| ↳ | android.service.carrier.CarrierMessagingService.SendMmsResult |
发送彩信的结果。
Public constructors |
|
|---|---|
CarrierMessagingService.SendMmsResult(int sendStatus, byte[] sendConfPdu) 使用MMS发送结果和SendConf PDU构造SendMmsResult。 |
|
Public methods |
|
|---|---|
byte[] |
getSendConfPdu() 返回SendConf PDU,它确认消息已发送。 |
int |
getSendStatus() 返回刚发送的彩信的发送状态。 |
Inherited methods |
|
|---|---|
java.lang.Object
|
|
CarrierMessagingService.SendMmsResult (int sendStatus,
byte[] sendConfPdu)
使用MMS发送结果和SendConf PDU构造SendMmsResult。
| Parameters | |
|---|---|
sendStatus |
int: send status, one of SEND_STATUS_OK, SEND_STATUS_RETRY_ON_CARRIER_NETWORK, and SEND_STATUS_ERROR |
sendConfPdu |
byte: a possibly {code null} SendConf PDU, which confirms that the message was sent. sendConfPdu is ignored if the result is not SEND_STATUS_OK. |
byte[] getSendConfPdu ()
返回SendConf PDU,它确认消息已发送。
| Returns | |
|---|---|
byte[] |
the SendConf PDU |
int getSendStatus ()
返回刚发送的彩信的发送状态。
| Returns | |
|---|---|
int |
the send status which is one of SEND_STATUS_OK, SEND_STATUS_RETRY_ON_CARRIER_NETWORK, and SEND_STATUS_ERROR |