Reputation: 87
I want to send SMS with more 160 characters, but I only have a problem with the 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);
}
Upvotes: 0
Views: 1488
Reputation: 1276
SmsManager sms = SmsManager.getDefault();
ArrayList<String> parts = sms.divideMessage(message);
sms.sendMultipartTextMessage(phoneNumber, null, parts, null, null);
sendMultipartTextMessage
will send as many messages as it needs until all parts have been sent.
Upvotes: 1
Reputation: 2848
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;
}
If you want to make more robust , you can add some unique ID to each chunk.
Upvotes: 0