Sto sviluppando un app che svolgono un'azione su:coda di SMS Gestione SMS per il fallimento
- Ricevere SMS
- Invio di SMS
- Facendo qualche compito computazionale al mittente.
E 'possibile che SMS non è riuscito a inviare. Qualcuno può dirmi come gestire la coda dei messaggi SMS inviati falliti e continuare a riprovare a inviarli dopo un po 'di tempo.
Ho visto il codice ma non so come gestire la coda degli SMS e rinviarli.
Ecco il codice:
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));
SmsManager sms = SmsManager.getDefault();
sms.sendTextMessage(phoneNumber, null, message, sentPI, deliveredPI);
}
cosa è che vuoi aiuto? Il tuo uso di PendingIntent sembra corretto per me. – wojciii
hey wojci il mio codice va bene, ma ora sto trovando il modo di avanzare ulteriormente, è possibile che sms non è riuscito a inviare al mittente, perché l'utente non ha credito in là account, quindi gestiamo una coda e controlliamo la coda dopo un certo intervallo e Restry per inviare il messaggio. grazie – Fawad