Как отправить SMS-сообщение, состоящее из нескольких частей .. для более 160 символов

Я хочу отправить SMS, содержащее более 160 символов, но у меня проблема только с multipart ...

//---sends a SMS message to another device---
public void sendSMS(String phoneNumber, String message, final String Id)
{      

    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();
                    getServerData("http://site.com","id",Id);

                    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)); 


  /*
                 Don't work
  SmsManager sms = SmsManager.getDefault();
  ArrayList<String> parts = sms.divideMessage(message);
  sms.sendMultipartTextMessage(phoneNumber, null, parts, null, null);
  */


  /* WORK FINE, BUT 160 chars limited */

  SmsManager sms = SmsManager.getDefault();
  sms.sendTextMessage(phoneNumber, null, message, sentPI, deliveredPI);  

}

person Shuty    schedule 24.01.2013    source источник
comment
Привет, мне кажется, я написал ваш дважды: пожалуйста, уберите теги в заголовке и не забудьте принимать ответы.   -  person rekire    schedule 24.01.2013
comment
Взгляните на эти вопросы: stackoverflow.com/questions/1981430/sending -long-sms-messages stackoverflow.com / questions / 4306020 / И здесь, в кукубуке Android: /   -  person Victor Ronin    schedule 24.01.2013


Ответы (2)


SmsManager sms = SmsManager.getDefault();
ArrayList<String> parts = sms.divideMessage(message);
sms.sendMultipartTextMessage(phoneNumber, null, parts, null, null);

sendMultipartTextMessage отправит столько сообщений, сколько нужно, пока не будут отправлены все части.

person dreamdeveloper    schedule 18.06.2015

 ArrayList<String> parts = (ArrayList<String>) splitInChunks(smsText, 120);
   for (String str : parts) {
        smsManager.sendTextMessage(phoneNumber, null, str, null, null);
  }


  /* Split message in chunks */
  public static List<String> splitInChunks(String id, int chunkSize) {
  ArrayList<String> result = new ArrayList<String>();
  int length = id.length();
  for (int i = 0, j = 1; i < length; j++, i += chunkSize) {
     result.add(SMSPRETAG + j + "," + id.substring(i, Math.min(length, i + chunkSize)));
  }
  return result;

}

Если вы хотите сделать более надежным, вы можете добавить уникальный идентификатор к каждому блоку.

person Jambaaz    schedule 24.01.2013