问题
I am able to send a single SMS on BlackBerry, but when I try to send more than one SMS, only the first is sent.
回答1:
AFAIK you can send sms to multiple numbers using loop.
you have the code to send single sms,
for (int i = 0; i < mobileNumbers.length; i++) {
//method for sending single sms
sendSMS(mobileNumbers[i],msg);
}
回答2:
Maybe you can use MultipartMessage to send large messages.
来源:https://stackoverflow.com/questions/4144169/send-multiple-sms-on-blackberry