2011-01-09 10 views
13

Desarrollé códigos para enviar SMS a más de una persona. Pero el problema actual es que no puedo saber qué persona recibió el mensaje y cuál envió. Quiero saber cada uno de los estados de SMS enviados y el número de teléfono del receptor, ¿se puede hacer?¿Cómo controlar cada uno de los estados de SMS enviados?

+0

tiene alguna solución? – Hunt

+0

Implementé esto con éxito en mi aplicación. Por favor revise - http://stackoverflow.com/questions/16388236/not-able-to-pass-retrieve-extras-inside-broadcast-receptor – mboy

Respuesta

10

Aquí está el fragmento de código que está buscando ...

//---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);   
} 
+0

También recomendaría este sitio web. .. http://mobiforge.com/developing/story/sms-messaging-android –

+2

si está enviando múltiples sms en un bucle al mismo tiempo, ¿cómo identifica a qué SMS pertenece la transmisión? ¿Cuál es el identificador único? –

+0

No está en getResultData()/getResultExtras() ... –

Cuestiones relacionadas