Ho sviluppato codici per inviare SMS a più di una persona. Ma il problema attuale è che non posso sapere quale persona ha ricevuto il messaggio e che viene inviata fallita. Voglio sapere qual è lo stato di tutti gli SMS inviati e il numero di telefono del destinatario, si può fare?Come monitorare ciascuno stato di SMS inviati?
risposta
Ecco il frammento di codice siete alla ricerca di ...
//---sends an SMS message to another device---
private void sendSMS(String phoneNumber, String message)
{
String SENT = "SMS_SENT";
String DELIVERED = "SMS_DELIVERED";
PendingIntent sentPI = PendingIntent.getBroadcast(this, 0,
new Intent(SENT), 0);
PendingIntent deliveredPI = PendingIntent.getBroadcast(this, 0,
new Intent(DELIVERED), 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));
//---when the SMS has been delivered---
registerReceiver(new BroadcastReceiver(){
@Override
public void onReceive(Context arg0, Intent arg1) {
switch (getResultCode())
{
case Activity.RESULT_OK:
Toast.makeText(getBaseContext(), "SMS delivered",
Toast.LENGTH_SHORT).show();
break;
case Activity.RESULT_CANCELED:
Toast.makeText(getBaseContext(), "SMS not delivered",
Toast.LENGTH_SHORT).show();
break;
}
}
}, new IntentFilter(DELIVERED));
SmsManager sms = SmsManager.getDefault();
sms.sendTextMessage(phoneNumber, null, message, sentPI, deliveredPI);
}
Vorrei anche raccomandare questo sito. .. http://mobiforge.com/developing/story/sms-messaging-android –
se si inviano più sms in un loop allo stesso tempo, come si identificano gli SMS a cui è destinata la trasmissione? Qual è l'identificatore univoco? –
Non è in getResultData()/getResultExtras() ... –
ottenuto qualche soluzione? – Hunt
Ho implementato con successo questo nella mia app .. Si prega di controllare - http://stackoverflow.com/questions/16388236/not-able-to-pass-retrieve-extras-inside-broadcast-receiver – mboy