我指的是发送来自Android的短信的this文章。
我尝试通过实现循环向10个不同的数字发送10个短信。
例如循环sendSMS(phoneNo, message);
但是在发送了6个短信后,sms.sendTextMessage(phoneNumber, null, message, sentPI, deliveredPI);
给出了NullPointerExeption。
仅供参考,我在传递的PI中传递null,因为我不关心短信的传递。但是知道sms是否真的被发送是非常重要的,这可以通过注册广播接收器来检索。
我注册了广播接收器,但似乎整个过程没有同步。我们应该在收到前一个短信的状态后发送第二个短信。
我假设减慢发送短信的速度将帮助我删除NullPointerExeption。等待状态将是发送另一个短信之间保持时间差距的最佳方法。
总之,我想做 - >发送一个短信 - >等待状态 - >更新db中的状态 - >发送另一个短信。
答案 0 :(得分:1)
我个人尚未测试我发布的代码,但它被接受为this other question的答案,所以我认为它会起作用。
SmsManager smsMan = new SmsManager.getDefault();
ArrayList<String> contactList = new ArrayList();
//add contacts to contactList with contactList.add(string)
for (int i = 0; i <= contactList().size(); i++) {
String SENT = contactList.get(i).toString();// you could replace this with i,
//or something like "sms_sent_myappname" + i.toString());
PendingIntent sentPI = PendingIntent.getBroadcast(this, 0,
new Intent(SENT, 0);
//---when the SMS has been sent---
registerReceiver(new BroadcastReceiver(){
@Override
public void onReceive(Context arg0, Intent arg1) {
switch (getResultCode())
{
case Activity.RESULT_OK:
Toast.makeText(getBaseContext(), "SMS sent",
Toast.LENGTH_SHORT).show();
break;
case SmsManager.RESULT_ERROR_GENERIC_FAILURE:
Toast.makeText(getBaseContext(), "Generic failure",
Toast.LENGTH_SHORT).show();
break;
case SmsManager.RESULT_ERROR_NO_SERVICE:
Toast.makeText(getBaseContext(), "No service",
Toast.LENGTH_SHORT).show();
break;
case SmsManager.RESULT_ERROR_NULL_PDU:
Toast.makeText(getBaseContext(), "Null PDU",
Toast.LENGTH_SHORT).show();
break;
case SmsManager.RESULT_ERROR_RADIO_OFF:
Toast.makeText(getBaseContext(), "Radio off",
Toast.LENGTH_SHORT).show();
break;
}
}
}, new IntentFilter(SENT));
smsManager.sendTextMessage(contactList.get(i).toString(), null, message, sentPI, null);
}
以上方式,您将向Android发送请求,逐个发送每条消息。如果您想在Activity.RESULT_OK
之后实际发送下一条短信,那么我建议仍然使用ArrayList
方法,但不是for循环,您可以使用以下内容:
public void onCreate(Bundle savedInstanceState) {
smsMan = new SmsManager.getDefault(); //assuming you declared SmsManager smsMan in class body.
contactList = new ArrayList(); //assuming you declared ArrayList<String> contactList in class body.
//add contacts to contactList with contactList.add(string);
}
public void sendSms(int position){
//add contacts to contactList with contactList.add(string)
String SENT = contactList.get(position).toString();// you could replace this with i,
//or something like "sms_sent_myappname" + i.toString());
PendingIntent sentPI = PendingIntent.getBroadcast(this, 0,
new Intent(SENT, 0);
//---when the SMS has been sent---
registerReceiver(new BroadcastReceiver(){
@Override
public void onReceive(Context arg0, Intent arg1) {
switch (getResultCode())
{
case Activity.RESULT_OK
context.unregisterReceiver(this);
i++;
if (contactList.size()<i){
sendSms(i);
} else {
//You are done sending - Do what you want.
}
break;
case SmsManager.RESULT_ERROR_GENERIC_FAILURE:
Toast.makeText(getBaseContext(), "Generic failure",
Toast.LENGTH_SHORT).show();
break;
case SmsManager.RESULT_ERROR_NO_SERVICE:
Toast.makeText(getBaseContext(), "No service",
Toast.LENGTH_SHORT).show();
break;
case SmsManager.RESULT_ERROR_NULL_PDU:
Toast.makeText(getBaseContext(), "Null PDU",
Toast.LENGTH_SHORT).show();
break;
case SmsManager.RESULT_ERROR_RADIO_OFF:
Toast.makeText(getBaseContext(), "Radio off",
Toast.LENGTH_SHORT).show();
break;
}
}
}, new IntentFilter(SENT));
smsManager.sendTextMessage(contactList.get(position).toString(), null, message, sentPI, null);
}
再次。我没有测试它,但它应该工作。如果您有任何其他问题,或者我不清楚任何事情,请告诉我。
答案 1 :(得分:0)
我将评论作为答案,因为我无法发表评论。 Jakar,您提供的解决方案无效。您不是在任何地方取消注册广播接收器。您的代码会引发错误。
答案 2 :(得分:0)
我认为你已经找到了答案。但由于这个问题仍然存在......它会使用sendMultipartTextMessage()吗?使用sendTextMessage()时,有一个限制等于160个符号,这是一个标准的单个SMS消息最大长度。