我想发送超过160个字符的短信,但我只对多部分有问题...
//---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);
}
答案 0 :(得分:1)
SmsManager sms = SmsManager.getDefault();
ArrayList parts = sms.divideMessage(message); sms.sendMultipartTextMessage(phoneNumber,null,parts,null,null);
答案 1 :(得分:0)
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;
}
如果您想要更强大,可以为每个块添加一些唯一ID。