我制作了一个简单的应用程序来在 android 上发送多条短信。我找不到已发送/已发送的短信,因为发送通知没有说明它是针对哪个短信发送的。
这是我的代码:
this.destination = data[0];
this.body = data[1];
PendingIntent piSend = PendingIntent.getBroadcast(aCtx, 0, new Intent(Cons.SMS_SENT),0);
PendingIntent piDelivered = PendingIntent.getBroadcast(aCtx, 0, new Intent(Cons.SMS_DELIVERED), 0);
SmsManager smsManager = SmsManager.getDefault();
smsManager.sendTextMessage(destination, null, body, piSend, piDelivered);
然后我使用广播接收器来获取交付状态
public class DeliverSMSBroadcastReceiver extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
switch (getResultCode())
{
case Activity.RESULT_OK:
Toast.makeText(context, "SMS delivered",
Toast.LENGTH_SHORT).show();
Log.d(Cons.TAGS+" RK","RESULT_OK=> DELIVER");
break;
case Activity.RESULT_CANCELED:
Toast.makeText(context, "SMS not delivered",
Toast.LENGTH_SHORT).show();
Log.d(Cons.TAGS+" RK","RESULT_CANCELED");
break;
}}
}
这是我的活动:
public class SenderPage extends Activity {
private EditText txtRecepients = null;
private EditText inputSMSText = null;
private Button btnSendSMS = null;
private final BroadcastReceiver outgoingSMSBR = new OutgoingSMSBroadcastReceiver();
private final BroadcastReceiver deliverSMSBR = new DeliverSMSBroadcastReceiver();
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.senderpage);
Log.i(Cons.TAGS, "Sender Page Start");
this.setTitle("Send Message");
this.txtRecepients = (EditText) findViewById(R.id.txtRecepients);
this.inputSMSText = (EditText) findViewById(R.id.inputSMSText);
this.btnSendSMS = (Button) findViewById(R.id.btnSendSMS);
txtRecepients.setText("087722079905"); //087722079905 //081214571542
btnSendSMS.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
//Toast.makeText(SenderPage.this, "Clicked send", Toast.LENGTH_SHORT).show();
String txtRecepients = SenderPage.this.txtRecepients.getText().toString();
String inputSMSText = SenderPage.this.inputSMSText.getText().toString();
new Sender(SenderPage.this,Cons.TAGS).execute(txtRecepients, inputSMSText);
}
});
//txtRecepients.getText().toString();
}
@Override
protected void onResume() {
registerReceiver(outgoingSMSBR, new IntentFilter(Cons.SMS_SENT));
registerReceiver(deliverSMSBR, new IntentFilter(Cons.SMS_DELIVERED));
super.onResume();
}
@Override
protected void onPause() {
unregisterReceiver(outgoingSMSBR);
unregisterReceiver(deliverSMSBR);
super.onPause();
}
}
当我发送多条短信时,如何获取发送信息以确定发送的是哪条短信?