2

我想开发一个短信应用程序,它可以一次发送多条短信。我想为 SMS 设置一个 ID。在 SMS SENT 报告中,我想获取此 ID。所以,我会知道已经发送了一条特定的消息。

我已经添加了广播接收器。我也收到 SMS SENT 报告。

例如:我发送了 10 条短信,收到了 8 条短信发送报告。我怎样才能知道哪些 2 条消息没有发送,以便我可以重新发送它们?

4

1 回答 1

0

对于您发送的每条 SMS(或部分 SMS),您提供一个 PendingIntent。在该 PendingIntent 中,您放置了一个 Intent,无论 SMS(或部分)是否成功发送,您都会收到该 Intent。在这个 Intent 中,您可以使用 extras 来添加额外的信息。因此,例如,在发送消息时,代码可能如下所示......

String receiverCodeForThisMessage = "STRING_CODE_FOR_MY_SMS_OUTCOME_RECEIVER";
int uniqueCodeForThisPartOfThisSMS = 100*numberSMSsentSoFar+PartNumberOfThisSMSpart;

Intent intent = new Intent(receiverCodeForThisMessage);
intent.putExtra("TagIdentifyIngPieceOfInformationOne", piece1);
intent.putExtra("TagIdentifyIngPieceOfInformationTwo", piece2);

PendingIntent pendingIntent = PendingIntent.getBroadcast(this, uniqueCodeForThisPartOfThisSMS, intent, 0);

SmsManager sms = SmsManager.getDefault();
sms.sendTextMessage("phonenumber", "Fred Bloggs", "Hello!", pendingIntent, null);

但在此之前,您将注册一个接收器,该接收器将获得您设置的结果和意图;从那个意图你提取信息片段:

registerReceiver(new BroadcastReceiver(){

    @Override
    public void onReceive(Context context, Intent intent) {
        // Get information about this message
        int piece1 = intent.getIntExtra("TagIdentifyIngPieceOfInformationOne", -1);
        int piece2 = intent.getIntExtra("TagIdentifyIngPieceOfInformationTwo", -1);

        if (getResultCode() == Activity.RESULT_OK) {
            // success code
        }
        else {
            // failure code
        }
}, new IntentFilter(receiverCodeForThisMessage));
于 2012-10-10T15:33:12.800 回答