Most visited

Recently visited

Added in API level 22

CarrierMessagingService.SendMmsResult

public static final class CarrierMessagingService.SendMmsResult
extends Object

java.lang.Object
    android.service.carrier.CarrierMessagingService.SendMmsResult


发送彩信的结果。

摘要(Summary)

Public constructors

CarrierMessagingService.SendMmsResult(int sendStatus, byte[] sendConfPdu)

使用MMS发送结果和SendConf PDU构造SendMmsResult。

公共方法(Public methods)

byte[] getSendConfPdu()

返回SendConf PDU,它确认消息已发送。

int getSendStatus()

返回刚发送的彩信的发送状态。

继承方法(Inherited methods)

From class java.lang.Object

Public constructors

CarrierMessagingService.SendMmsResult

Added in API level 22
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.

公共方法(Public methods)

getSendConfPdu

Added in API level 22
byte[] getSendConfPdu ()

返回SendConf PDU,它确认消息已发送。

返回(Returns)
byte[] the SendConf PDU

getSendStatus

Added in API level 22
int getSendStatus ()

返回刚发送的彩信的发送状态。

返回(Returns)
int the send status which is one of SEND_STATUS_OK, SEND_STATUS_RETRY_ON_CARRIER_NETWORK, and SEND_STATUS_ERROR

Hooray!