2011-01-09 17 views
13

Opracowałem kody do wysyłania wiadomości SMS do więcej niż jednej osoby. Obecny problem polega jednak na tym, że nie wiem, która osoba otrzymała wiadomość, a która nie została wysłana. Chcę poznać każdy wysłany status SMS i numer telefonu odbiorcy, czy można to zrobić?Jak monitorować każdy z wysłanych wiadomości SMS?

+0

dostał jakieś rozwiązanie? – Hunt

+0

Z powodzeniem wdrożyłem to w mojej aplikacji. Proszę sprawdzić - http://stackoverflow.com/questions/16388236/notable-to-pass-retrieve-extras-inside-broadcast-receiver – mboy

Odpowiedz

10

Oto fragment kodu szukasz ...

//---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

Chciałbym również polecić tę stronę. .. http://mobiforge.com/developing/story/sms-messaging-android –

+2

jeśli wysyłasz wiele SMS-ów w pętli w tym samym czasie, w jaki sposób identyfikujesz, do której wiadomości SMS jest przeznaczona transmisja? Jaki jest unikalny identyfikator? –

+0

Nie ma go w getResultData()/getResultExtras() ... –

Powiązane problemy