我每天发送超过400条短信,但只有大约95%的短信我收到短信发送到广播接收器。消息以5秒的间隔发送。
ArrayList<String> partsArray = SmsManager.getDefault().divideMessage(this.message);
ArrayList<PendingIntent> sentPendingIntents = new ArrayList<>(partsArray.size());
ArrayList<PendingIntent> deliveredPendingIntents = new ArrayList<>(partsArray.size());
.....
for (int i = 0; i < partsArray.size(); i++) {
sentIntent = new Intent("SMS_SENT_2");
deliveredIntent = new Intent(C.SMS_DELIVERED);
sentPI = PendingIntent.getBroadcast(context, 0,sentIntent, PendingIntent.FLAG_ONE_SHOT);
deliveredPI = PendingIntent.getBroadcast(context, 0, deliveredIntent, PendingIntent.FLAG_ONE_SHOT);
sentPendingIntents.add(sentPI);
deliveredPendingIntents.add(deliveredPI);
}
SmsManager sms = SmsManager.getDefault();
sms.sendMultipartTextMessage(phoneNumber, null,partsArray, sentPendingIntents, deliveredPendingIntents);
和清单中的广播接收器:
<receiver android:name="._broadcastReceivers.SMSSentBroadcastReceiver">
<intent-filter android:priority="999">
<action android:name="SMS_SENT_2" />
</intent-filter>
</receiver>
我知道一个事实是,对于某些消息,广播接收器没有得到意图,但实际发送了短信。
我如何可靠地确定短信是否“离开了手机”?
答案 0 :(得分:2)
您应该确保FLAG_ONE_SHOT
是唯一的,而不是使用PendingIntent
。最简单的方法是使用显式Intent
而不是隐式Intent
,并确保每个Intent
中的ACTION都是唯一的。这是一个例子:
for (int i = 0; i < partsArray.size(); i++) {
sentIntent = new Intent(this, _broadcastReceivers.SMSSentBroadcastReceiver.class);
sentIntent.setAction("SMS_SENT_2" + System.currentTimeMillis());
deliveredIntent = new Intent(this, DeliveryReceiver.class);
deliveredIntent.setAction(C.SMS_DELIVERED + System.currentTimeMillis());
sentPI = PendingIntent.getBroadcast(context, 0, sentIntent, 0);
deliveredPI = PendingIntent.getBroadcast(context, 0, deliveredIntent, 0);
sentPendingIntents.add(sentPI);
deliveredPendingIntents.add(deliveredPI);
}
通过将当前时间戳附加到每个ACTION,我确保ACTION是唯一的。
您现在可以从<intent-filter>
的清单定义中移除BroadcastReceiver
,因为您不再需要它(您使用的是明确的Intent
)。但是,请确保将android:exported="true"
添加到BroadcastReceiver
的清单定义中,因为除非您拥有<intent-filter>
或明确声明它已导出,否则不会导出它。