Skip to content Skip to sidebar Skip to footer

Send Sms With Accents

I send SMS with this code SmsManager smsManager = SmsManager.getDefault(); smsManager.sendTextMessage('Numerber', null, 'Text to send', null, null); It works pretty well in Englis

Solution 1:

Thanks to all of you. Yes, it is what you said. Here is the solution:

ArrayList<String> arrSMS = smsManager.divideMessage("Text to send");
smsManager.sendMultipartTextMessage("Number", null, arrSMS, null, null);

Post a Comment for "Send Sms With Accents"