我目前正在编写和申请,即发送/接收短信。
为了进行单元测试,我需要以编程方式创建PDU。解码非常简单:
Bundle bundle = intent.getExtras();
if (bundle != null) {
/* Get all messages contained in the Intent*/
Object[] pdusObj = (Object[]) bundle.get("pdus");
for (int i = 0; i < pdusObj.length; i++) {
SmsMessage msg = SmsMessage.createFromPdu((byte[])pdusObj[i]);
}
}
有没有合适的方法以编程方式创建 PDU?