我正在制作一个在Android上发送短信的程序。 它可以正常发送,但我有一个小问题,知道发送的消息。 以下代码是代码的主要部分: 它从字符串 resp 中读取许多消息,等待一段随机时间并发送每个消息。但是,我不知道短信 onReceive 正在确认的方法。
所以,这是我的问题:我怎么知道onReceive确认的短信发送? 我试图在两个参数 context 和 intent 中查找变量和方法,但它对我没有帮助。
谢谢!
final PendingIntent pi = PendingIntent.getBroadcast(this, 0, new Intent("SMS_SENT"),0);
registerReceiver(new BroadcastReceiver() {
// executed when the sms is sended
public void onReceive(Context context, Intent intent) {
switch(getResultCode()){
case Activity.RESULT_OK:
Toast.makeText(getApplicationContext(), "SMS sended",
Toast.LENGTH_LONG).show();
break;
default:
Toast.makeText(getApplicationContext(), "Error",
Toast.LENGTH_LONG).show();
break;
}
}
}, new IntentFilter("SMS_SENT"));
// resp is a String with a number and a body by line: <number><body>\n<number><body>\n...
final Scanner scan = new Scanner(resp);
String to;
String body;
SmsManager sms = SmsManager.getDefault();
while (scan.hasNext()){
long r = new Random().nextInt(20000) + 1000;
synchronized(this){
try {
this.wait(r);
} catch (InterruptedException e) {
Toast.makeText(getApplicationContext(), "ERROR on WAIT",Toast.LENGTH_LONG).show();
}
}
to = scan.next();
body = scan.nextLine();
Toast.makeText(getApplicationContext(), "Sending to " + to,
Toast.LENGTH_LONG).show();
sms.sendTextMessage(to, null, body, pi, null);
}
scan.close();
答案 0 :(得分:1)
编辑:略微修改代码,以便能够保存BroadcastReceiver以取消注册
您可以通过向传递给Intent
的{{1}}添加“额外内容”,或者在PendingIntent.getBroadcast()
中添加的“操作”中对消息ID进行编码来执行此操作您传递给Intent
。
由于在getBroadcast()
中如何处理额外内容,使用“extras”会更复杂。以下是我在ACTION中编码消息ID的含义示例:
PendingIntent